Skip to content

Commit

Permalink
Task #206 fix the errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
ngat_di authored and ngat_di committed Mar 20, 2024
1 parent fb05cbb commit 7e534b1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions de.dlr.sc.virsat.model.extension.cefx/concept/concept.concept
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Concept de.dlr.sc.virsat.model.extension.cefx

Ref: massTotal = summary{SubSystemMassParameters.massTotal, 0};
Ref: massTotalWithMargin = summary{SubSystemMassParameters.massTotalWithMargin};
Ref: massTotalWithMarginWithSystemMargin = massTotalWithMargin * (0 + SystemParameters.systemMargin);
Ref: massTotalWithMarginWithSystemMargin = massTotalWithMargin * (1 + SystemParameters.systemMargin);
Ref: massLaunch = massTotalWithMarginWithSystemMargin + massPropellant + massAdapter;
Ref: massBuffer = massLaunchMax - massLaunch;
}
Expand All @@ -77,10 +77,10 @@ Concept de.dlr.sc.virsat.model.extension.cefx
Type powerEnergyWithMargin of Category Parameter quantityKind "Energy and Work" unit "Joule";
Type powerEnergyWithSystemMargin of Category Parameter quantityKind "Energy and Work" unit "Joule";

Ref: powerAvgWithMargin = summary{SubSystemPowerParameters.powerAvgWithMargin, 0};
Ref: powerAvgWithSystemMargin = powerAvgWithMargin * (0 + SystemParameters.systemMargin);
Ref: powerAvgWithMargin = summary{SubSystemPowerParameters.powerAvgWithMargin};
Ref: powerAvgWithSystemMargin = powerAvgWithMargin * (1 + SystemParameters.systemMargin);
Ref: powerEnergyWithMargin = summary{SubSystemPowerParameters.powerEnergyWithMargin};
Ref: powerEnergyWithSystemMargin = powerEnergyWithMargin * (0 + SystemParameters.systemMargin);
Ref: powerEnergyWithSystemMargin = powerEnergyWithMargin * (1 + SystemParameters.systemMargin);
}

/** SubSystem level specific collections of data and parameters */
Expand Down

0 comments on commit 7e534b1

Please sign in to comment.