Reputation: 3
I'm new using open modelica
. I need to plot a sin(t)?
sin= sin fuction
t = time
You can see this
Upvotes: 0
Views: 87
Reputation: 4231
Make a model.
model SinModel
Real x;
equation
x = sin(time);
end SinModel;
Then simulate SinModel and plot x.
Upvotes: 1