Opened 13 years ago
Closed 9 years ago
#1938 closed defect (invalid)
Stack overflow in frontend
| Reported by: | Willi Braun | Owned by: | somebody |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Frontend | Version: | trunk |
| Keywords: | Cc: |
Description
On 15/11/12 09:37, Mikelsons Lars (DC/ETI22) wrote:
model actuatedPrismatic
PlanarMechanicsForTesting.Joints.ActuatedPrismatic actuatedPrismatic(r={0,1});
PlanarMechanicsForTesting.Parts.Fixed fixed ;
PlanarMechanicsForTesting.Parts.Body body(m=100, I=0.1);
PlanarMechanicsForTesting.Parts.FixedTranslation fixedTranslation;
Modelica.Mechanics.Translational.Components.Spring spring1(
c=20000,
s_rel(start=0.5),
s_rel0=1);
Modelica.Mechanics.Translational.Components.Fixed fixed1;
equation
connect(actuatedPrismatic.frame_a, fixed.frame_a) ;
connect(body.frame_a, fixedTranslation.frame_b) ;
connect(fixedTranslation.frame_a, actuatedPrismatic.frame_b) ;
connect(fixed1.flange, spring1.flange_a) ;
connect(spring1.flange_b, actuatedPrismatic.flange_a) ;
Change History (10)
comment:1 by , 13 years ago
| Summary: | Stack overflow in frontent → Stack overflow in frontend |
|---|
comment:2 by , 13 years ago
comment:4 by , 11 years ago
| Milestone: | 1.9.1 → 1.9.2 |
|---|
This ticket was not closed for 1.9.1, which has now been released. It was batch modified for milestone 1.9.2 (but maybe an empty milestone was more appropriate; feel free to change it).
comment:5 by , 11 years ago
| Milestone: | 1.9.2 → 1.9.3 |
|---|
Milestone changed to 1.9.3 since 1.9.2 was released.
comment:9 by , 9 years ago
Does this stack overflow ticket still exist?
With the model code above I cannot reproduce anything...
comment:10 by , 9 years ago
| Milestone: | 1.10.0 |
|---|---|
| Resolution: | → invalid |
| Status: | new → closed |
The library changed a lot and there is no total model, so let's assume it works fine...
Note:
See TracTickets
for help on using tickets.

This one fails:
model actuatedPrismatic PlanarMechanicsStandard.Joints.ActuatedPrismatic actuatedPrismatic(r={0,1}); end actuatedPrismatic;This one succeeds:
model actuatedPrismatic PlanarMechanicsStandard.Joints.ActuatedPrismatic actuatedPrismaticX(r={0,1}); end actuatedPrismatic;