Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

Update Pole.md #940

Merged
merged 2 commits into from
Jul 2, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
93 changes: 69 additions & 24 deletions docs/Module/Powerflow/Pole.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,25 @@ object pole
tilt_angle "0 deg";
tilt_direction 0 deg";
weather "<climate-object>";
wind_speed 0.0 m/s;
wind_direction 0.0 deg;
wind_gusts 0.0 m/s;
configuration "<pole-configuration-object>";
install_year "1970";
repair_time "24 h";
wind_speed 0.0 m/s;
wind_direction 0.0 deg;
wind_gusts 0.0 m/s;
pole_stress "0 pu";
pole_stress_polynomial_a "0 ft*lb";
pole_stress_polynomial_b "0 ft*lb";
pole_stress_polynomial_c "0 ft*lb";
susceptibility "0 pu*s/m";
total_moment "0 ft*lb";
resisting_moment "0 ft*lb";
pole_moment "0 ft*lb";
pole_moment_nowind "0 ft*lb";
equipment_moment "0 ft*lb";
equipment_moment_nowind "0 ft*lb";
critical_wind_speed "0 m/s";
guy_height "0 ft";
}
~~~

Expand Down Expand Up @@ -66,56 +71,56 @@ The tilt direction of the pole.

Reference to the source of the weather data.

### `wind_speed`
### `configuration`

~~~
wind_speed 0.0 m/s;
object configuration;
~~~

The wind speed at the location of the pole. This is automatically set is the
`weather` object is provided.
Reference to the pole configuration.

### `wind_direction`
### `install_year`

~~~
wind_direction 0.0 deg;
int32 install_year;
~~~

The wind direction at the location of the pole. This is automatically set is the
`weather` object is provided.
Year the pole was installed.

### `wind_gusts`
### `repair_time`

~~~
wind_gusts 0.0 m/s;
double repair_time[h];
~~~

The wind gusts at the location of the pole. This is automatically set is the
`weather` object is provided.
Time required to repair or replace the pole after failure.

### `configuration`
### `wind_speed`

~~~
object configuration;
int32 wind_speed [m/s];
~~~

Reference to the pole configuration.
The wind speed at the location of the pole. This is automatically set is the
`weather` object is provided.

### `install_year`
### `wind_direction`

~~~
int32 install_year;
int32 wind_direction [deg];
~~~

Year the pole was installed.
The wind direction at the location of the pole. This is automatically set is the
`weather` object is provided.

### `repair_time`
### `wind_gusts`

~~~
double repair_time[h];
int32 wind_gusts [m/s];
~~~

Time required to repair or replace the pole after failure.
The wind gusts at the location of the pole. This is automatically set is the
`weather` object is provided.

### `pole_stress`

Expand Down Expand Up @@ -171,6 +176,38 @@ The total moment on the pole.
double resisting_moment[ft*lb];
~~~

### `pole_moment`

~~~
double pole_moment[ft*lb];
~~~

The moment of the pole.

### `pole_moment_nowind`

~~~
double pole_moment_nowind[ft*lb];
~~~

The moment of the pole without wind.

### `equipment_moment`

~~~
double equipment_moment[ft*lb];
~~~

The moment of the equipment.

### `equipment_moment_nowind`

~~~
double equipment_moment_nowind[ft*lb];
~~~

The moment of the equipment without wind.

The resisting moment on the pole.

### `critical_wind_speed`
Expand All @@ -181,6 +218,14 @@ The resisting moment on the pole.

Wind speed at pole failure.

### `guy_height`

~~~
double guy_height[m/s];
~~~

Guy wire attachment height.

# Model

The pole failure model is described in [Pole Loading Model](https://github.com/slacgismo/gridlabd/raw/master/module/powerflow/docs/pole_loading.pdf).
Expand Down