Changes between Initial Version and Version 2 of Ticket #2098
- Timestamp:
- 2013-06-24T11:32:48Z (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2098
- Property Component Backend → Run-time
- Property Owner changed from to
- Property Status new → assigned
-
Ticket #2098 – Description
initial v2 1 1 In the following model, I am getting different simulation results depending on the output format (MAT v. CSV). The problematic variable is fixed1.flange.phi. If you simulate with a csv output and plot this variable you get a broken sine wave. If you simulate with a mat output, you get the correct result fixed1.flange.phi=0. 2 2 {{{#!mo 3 3 model SimpleController 4 4 Modelica.Blocks.Continuous.LimPID PID(k = 1, Ti = 0.1, yMax = 12, Ni = 0.1, limitsAtInit = false, controllerType = Modelica.Blocks.Types.SimpleController.PI, Td = 0.1) annotation(Placement(visible = true, transformation(origin = {-19.2366,32.3664}, extent = {{-12,-12},{12,12}}, rotation = 0))); … … 19 19 connect(const.y,PID.u_s) annotation(Line(points = {{-61.6092,32.9771},{-34.8092,32.9771},{-34.8092,32.3664},{-33.6366,32.3664}})); 20 20 end SimpleController; 21 }}}