Opened 18 years ago

Last modified 18 years ago

#48 closed defect (fixed)

Simulation of simple model fails

Reported by: kajny Owned by: kajny
Priority: critical Milestone:
Component: Version:
Keywords: Cc: kajny, adrpo

Description


Change History (2)

comment:1 Changed 18 years ago by kajny

When simulating the model

model test

Real x;
Real y;

equation

x=1;
x-y=5;

end test;

The following error occurs. Note that it tries to access test.makefile.makefile
which is probably wrong.


loadModel(test)

true

instantiateModel(test)

"fclass test
Real x;
Real y;
equation

x = 1.0;
x - y = 5.0;

end test;
"

simulate(test,startTime=0,stopTime=10)

record

resultFile = "Simulation failed.

#Error building simulation code.

buildlog:

make: test.makefile.makefile: No such file or directory
make: * No rule to make target `test.makefile.makefile'. Stop.

# build_model failed

"
end record

comment:2 Changed 18 years ago by kajny

The fault was (probably) due to incomplete checkouts from the repository,
confliting withe recent updates in the build process. Seams to work better now.

Note: See TracTickets for help on using tickets.