Example #1
0
 protected SimpleExchangeItem(string locationID, string quantityID, SimpleLinkableComponent linkableComponent)
 {
     _id = locationID + "." + quantityID;
     _linkableComponent = linkableComponent;
     _values            = new ValueSet <Double>(Double.NaN);
     _valueDefinition   = new SimpleQuantity(quantityID);
 }
Example #2
0
 public SimpleOutput(string elementSetName, string quantityName, SimpleLinkableComponent linkableComponent) :
     base(elementSetName, quantityName, linkableComponent)
 {
     _simpleOutputIndex = ++_simpleOutputCounter;
     _spatialDefinition = new SimpleElementSet(elementSetName);
     TimeSet            = new SimpleTimeSet(linkableComponent.TimeExtent.TimeHorizon.StampAsModifiedJulianDay);
 }
Example #3
0
 public SimpleInput(string elementSetName, string quantityName, SimpleLinkableComponent linkableComponent) :
     base(elementSetName, quantityName, linkableComponent)
 {
 }