Load-Stepping Method / TS & UDL Error

Hallo zusammen,

Ich habe eine Ortbeton-Rahmenbrücke und möchte die sogenannte “Load-Stepping Method” gemäß der Anleitung Concrete Slab Bridge — SOFiSTiK Tutorials 2022 ansetzten.

Es funktioniert gut für die Achsen .10 und .20, aber wenn ich das TS an der Achse .1 (Zentrum der Fahrbahn) einstellen möchte, erhalte ich eine Warnmeldung.

" +++++ Warnung Nr. 10720 in Programm CDB_LFT_APPLY
Spur Nummer AXIS wurde nicht definiert. Die Default-Werte können,
insbesondere beim Schwingbeiwert oder dem UDL-Lastwert zu ungünstig sein."

Weiß jemand, woran das liegen könnte?

Vielen Dank Im Voraus

Ioannis
Load Stepping.dwg (649.0 KB)
Load Stepping.sofistik (148.3 KB)

Hi,
please review the report of the task called ‘Lanes’. You will find there is no lane defined with number 2. The existing ones are:
axis.0
axis.1
axis.10
axis.11
axis.20
axis.21
When you change the input to:

loop#j #n_steps $ loop for loadcases
let#pos 1+#j
lf #lc_min3 typ none BEZ ‘LM1:TS Lane 1/2/3 pos#pos’
copy nr #lzug(0) fakt 1.0 typ gr0 ref ‘axis.0’ dx #j*#l_bridge/(#n_steps-1)+#start
copy nr #lzug(1) fakt 1.0 typ gr0 ref ‘axis.1’ dx #j*#l_bridge/(#n_steps-1)+#start
let#lc_min3 #lc_min3+1
endloop
sto#lc_max3 #lc_min3-1

then no warning will be triggered.

Hi,

Thank you very much for the quick and insightful help.

The script is indeed now working, however, when i set the axis as .0 and .1, the output is clearly not correct.


Why do you think the applied loading is not correct? What would be your expectation? Please elaborate. Stating that it is not correct does not help me finding a solution.
Nevethelessm I would start reviewing the input of the loading of the last loop.

Hello,

Please have a look at the attached pictures. The superposition that Sofistik performs combining the UDL of Lane 1 und 2 is definately not correct. I find it a bit strange, because it is working well with axis 10 and 20, but there is an issue with axis 1.

I really appreciate the help




Hi,
It is not a superpositioning. This is due to the input in which you added the loading of axis.0 and axis.1 in the same loop like this:

$ case 3 (centric)
$ laneset 0

loop#j #n_spans $ loop for loadcases
let#span 1+#j
lf #lc_minu3 typ none BEZ ‘LM1:UDL Lane 1/2/3/r span#span’
copy nr #lzug(0) fakt 1.0 typ gru ref ‘axis.1’ dx 0 von #span bis - delt 0
copy nr #lzug(1) fakt 1.0 typ gru ref ‘axis.0’ dx 0 von #span bis - delt 0
let#lc_minu3 #lc_minu3+1
endloop
sto#lc_maxu3 #lc_minu3-1

However you do not need to add the loading of lane 0. Please remove it and run the following:

$ laneset 0

loop#j #n_spans $ loop for loadcases
let#span 1+#j
lf #lc_minu3 typ none BEZ ‘LM1:UDL Lane 1/2/3/r span#span’
copy nr #lzug(0) fakt 1.0 typ gru ref ‘axis.1’ dx 0 von #span bis - delt 0
let#lc_minu3 #lc_minu3+1
endloop
sto#lc_maxu3 #lc_minu3-1

In this way the loading will be centrically loaded with the 12 kN/m UDL load.