Deformation
The deformation class implements the cable deformation models described in Cable modeling.
This class is called in two situations:
- When computing \(L_{ref}\), which is done only one time
- When solving the new state after giving new wind pressure, ice thickness and temperature in
find_parameter_solver.py. In this case, the solver callsIDeformationmany times in order to find the solution
In the former case, the computation is made without wind, ice, and class attribute current_temperature is equal to sagging_temperature (usually 15°C). That is why current_temperature equals to sagging_temperature by default when creating the class.
In the latter case, the wind and ice are taken into account through load_coefficient, the new temperature is given directly by changing the attribute current_temperature of IDeformation
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | |