Opened 19 years ago

Last modified 19 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, Adrian Pop

Description


Change History (2)

comment:1 by kajny, 19 years ago

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 by kajny, 19 years ago

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.