Skip to content

Commit

Permalink
Add pole failure warning (#93)
Browse files Browse the repository at this point in the history
Signed-off-by: David P. Chassin <dchassin@slac.stanford.edu>
Signed-off-by: David P. Chassin <david.chassin@me.com>
  • Loading branch information
David P. Chassin authored and dchassin committed Sep 30, 2023
1 parent 9245045 commit fbf680f
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions module/powerflow/pole.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@ pole::pole(MODULE *mod)
PT_OUTPUT,
PT_DESCRIPTION, "wire moment in y-axis due to tension and wind load",


PT_double, "equipment_moment_x[ft*lb]", get_wire_moment_x_offset(),
PT_OUTPUT,
PT_DESCRIPTION, "equipment moment in x-axis due to wind load",
Expand Down Expand Up @@ -538,8 +537,6 @@ TIMESTAMP pole::postsync(TIMESTAMP t0) ////
verbose("name is %s ################################\n", my()->name);
verbose("pole_stress = %g %%\n",pole_stress*100);
if ( wind_speed > 0.0 )
// d(total_moment)/d(wind_speed)
// susceptibility = 2*(pole_moment+equipment_moment+wire_wind)/resisting_moment/(wind_speed)/(0.00256)/(2.24);
susceptibility = (cos(wind_direction*PI/180) + sin(wind_direction*PI/180)) * (pole_moment_per_wind+equipment_moment_nowind+wire_moment_nowind) * (
(wire_moment_x+equipment_moment_x+pole_moment_x) + (wire_moment_y+equipment_moment_y+pole_moment_y)
) * (0.00256*2*2.24*wind_speed*2.24) / total_moment;
Expand All @@ -564,7 +561,14 @@ TIMESTAMP pole::postsync(TIMESTAMP t0) ////
verbose("pole_status = %d",pole_status);
if ( pole_status == PS_FAILED )
{
verbose("pole failed at %.0f%% stress, time to repair is %g h",pole_stress*100,repair_time);
if ( stop_on_pole_failure )
{
verbose("pole failed at %.0f%% stress, time to repair is %g h",pole_stress*100,repair_time);
}
else
{
warning("pole failed at %.0f%% stress, time to repair is %g h",pole_stress*100,repair_time);
}
down_time = gl_globalclock;
verbose("down_time = %lld", down_time);
}
Expand Down

0 comments on commit fbf680f

Please sign in to comment.