-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
167 changed files
with
3,031 additions
and
851 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...py/sima/environment/blueprints/npdwind.py → ...a/environment/blueprints/iso199011wind.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
|
||
from .nodeinputslot import NodeInputSlot # noqa | ||
from .nodeoutputslot import NodeOutputSlot # noqa | ||
from .point import Point # noqa |
11 changes: 5 additions & 6 deletions
11
src/simapy/sima/report/blueprints/formula.py → ...py/sima/graph/blueprints/nodeinputslot.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,17 @@ | ||
# | ||
# Generated with FormulaBlueprint | ||
# Generated with NodeInputSlotBlueprint | ||
from dmt.blueprint import Blueprint | ||
from dmt.dimension import Dimension | ||
from dmt.attribute import Attribute | ||
from dmt.enum_attribute import EnumAttribute | ||
from dmt.blueprint_attribute import BlueprintAttribute | ||
from .reportitem import ReportItemBlueprint | ||
from ...sima.blueprints.named import NamedBlueprint | ||
|
||
class FormulaBlueprint(ReportItemBlueprint): | ||
class NodeInputSlotBlueprint(NamedBlueprint): | ||
"""""" | ||
|
||
def __init__(self, name="Formula", package_path="sima/report", description=""): | ||
def __init__(self, name="NodeInputSlot", package_path="sima/graph", description=""): | ||
super().__init__(name,package_path,description) | ||
self.add_attribute(Attribute("description","string","",default="")) | ||
self.add_attribute(BlueprintAttribute("scriptableValues","sima/sima/ScriptableValue","",True,Dimension("*"))) | ||
self.add_attribute(Attribute("latex","string","")) | ||
self.add_attribute(Attribute("caption","string","Caption")) | ||
self.add_attribute(Attribute("name","string","")) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# | ||
# Generated with NodeOutputSlotBlueprint | ||
from dmt.blueprint import Blueprint | ||
from dmt.dimension import Dimension | ||
from dmt.attribute import Attribute | ||
from dmt.enum_attribute import EnumAttribute | ||
from dmt.blueprint_attribute import BlueprintAttribute | ||
from ...sima.blueprints.named import NamedBlueprint | ||
|
||
class NodeOutputSlotBlueprint(NamedBlueprint): | ||
"""""" | ||
|
||
def __init__(self, name="NodeOutputSlot", package_path="sima/graph", description=""): | ||
super().__init__(name,package_path,description) | ||
self.add_attribute(Attribute("description","string","",default="")) | ||
self.add_attribute(BlueprintAttribute("scriptableValues","sima/sima/ScriptableValue","",True,Dimension("*"))) | ||
self.add_attribute(Attribute("name","string","")) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.