Opened 18 years ago
Last modified 14 years ago
#87 closed defect (fixed)
lower_statement_input_outputs finished yet
Reported by: | ms6ep | Owned by: | ms6ep |
---|---|---|---|
Priority: | critical | Milestone: | |
Component: | Simulation Code Generation | Version: | 1.4.0 |
Keywords: | Cc: | ms6ep, haklu |
Description
See comments.
Change History (4)
comment:1 by , 18 years ago
comment:2 by , 18 years ago
When clauses in algorithms is not implemented yet. However, we have now a better
error message for this. Also, workaround is to use when clauses in algorithms
instead.
comment:4 by , 14 years ago
Note:
See TracTickets
for help on using tickets.
I get the above error message when I attempt to compile the following model.
It's coming from DAELow.mo:3916. Sorry, the model is kind of long. I assume
the error message should actually read "lower_statement_input_outputs not
finished yet". Is there a workaround?
type LitresPerHour = Real(final quantity="LitresPerHour",final unit="l.h-1");
type TemperatureChange = Real(final quantity="TemperatureChange", final
unit="degC.h-1");
type InverseHour = Real(final quantity="InverseHour",final unit="h-1");
type CoolingPower = Real(final quantity="CoolingPower",final unit="degC.m3.h-1");
model MilkingModel
equation
end MilkingModel;
model MilkTemperature
equation
algorithm
end MilkTemperature;
model ListeriaGrowth
equation
initial equation
end ListeriaGrowth;