In [ ]:
%matplotlib inline
In [ ]:
from IPython.display import display, HTML
In [ ]:
import matplotlib.pyplot as plt
plt.rcParams['figure.figsize'] = (14.0, 8.0)
In [ ]:
import numpy as np
In [ ]:
from dtocean_core import start_logging
from dtocean_core.core import Core
from dtocean_core.menu import ModuleMenu, ProjectMenu
from dtocean_core.pipeline import Tree
In [ ]:
def html_list(x):
message = "<ul>"
for name in x:
message += "<li>{}</li>".format(name)
message += "</ul>"
return message
def html_dict(x):
message = "<ul>"
for name, status in x.iteritems():
message += "<li>{}: <b>{}</b></li>".format(name, status)
message += "</ul>"
return message
In [ ]:
# Bring up the logger
start_logging()
In [ ]:
new_core = Core()
project_menu = ProjectMenu()
module_menu = ModuleMenu()
pipe_tree = Tree()
In [ ]:
project_title = "DTOcean"
new_project = project_menu.new_project(new_core, project_title)
In [ ]:
options_branch = pipe_tree.get_branch(new_core, new_project, "System Type Selection")
variable_id = "device.system_type"
my_var = options_branch.get_input_variable(new_core, new_project, variable_id)
my_var.set_raw_interface(new_core, "Wave Floating")
my_var.read(new_core, new_project)
In [ ]:
project_menu.initiate_pipeline(new_core, new_project)
In [ ]:
names = module_menu.get_available(new_core, new_project)
message = html_list(names)
HTML(message)
In [ ]:
module_name = 'Electrical Sub-Systems'
module_menu.activate(new_core, new_project, module_name)
In [ ]:
electrical_branch = pipe_tree.get_branch(new_core, new_project, 'Electrical Sub-Systems')
input_status = electrical_branch.get_input_status(new_core, new_project)
message = html_dict(input_status)
HTML(message)
In [ ]:
project_menu.initiate_dataflow(new_core, new_project)
In [ ]:
%run test_data/inputs_wp3.py
In [ ]:
electrical_branch.read_test_data(new_core,
new_project,
"test_data/inputs_wp3.pkl")
In [ ]:
can_execute = module_menu.is_executable(new_core, new_project, module_name)
display(can_execute)
In [ ]:
input_status = electrical_branch.get_input_status(new_core, new_project)
message = html_dict(input_status)
HTML(message)
The "current" module refers to the next module to be executed in the chain (pipeline) of modules. This command will only execute that module and another will be used for executing all of the modules at once.
Note, any data supplied by the module will be automatically copied into the active data state.
In [ ]:
module_menu.execute_current(new_core, new_project)
In [ ]:
array_efficiency = new_core.get_data_value(new_project, "project.array_efficiency")
meta = new_core.get_metadata("project.array_efficiency")
name = meta.title
value = array_efficiency
message_two = "<p><b>{}:</b> <i>{}</i></p>".format(name, value)
HTML(message_two)
In [ ]:
electrical_economics = new_core.get_data_value(new_project, "project.electrical_economics_data")
electrical_economics
In [ ]:
umbilicals = new_core.get_data_value(new_project, "project.umbilical_cable_data")
umbilicals
In [ ]: