diff --git a/docs/.gitbook/assets/40_structuralsurfaceactionfree_coordinate_system.png b/docs/.gitbook/assets/40_structuralsurfaceactionfree_coordinate_system.png new file mode 100644 index 0000000..7a212d1 Binary files /dev/null and b/docs/.gitbook/assets/40_structuralsurfaceactionfree_coordinate_system.png differ diff --git a/docs/.gitbook/assets/40_structuralsurfaceactionfree_from_to.png b/docs/.gitbook/assets/40_structuralsurfaceactionfree_from_to.png new file mode 100644 index 0000000..407e765 Binary files /dev/null and b/docs/.gitbook/assets/40_structuralsurfaceactionfree_from_to.png differ diff --git a/docs/getting-started/release-notes.md b/docs/getting-started/release-notes.md index d6206e6..b4b275c 100644 --- a/docs/getting-started/release-notes.md +++ b/docs/getting-started/release-notes.md @@ -11,9 +11,14 @@ The last stable version is v2.2.0. To see it select versions: 'stable' in the le ### Current changes Current changes from stable version are noted here. +**Modified objects:** * [StructuralLoadCase](../loads/structuralloadcase.md) * From enum "Load type" value "Standard" was deleted. It was not possible to differentiate between "Standard" and "Others". What was exported as "Standard" should now be exported as "Others". +* [StructuralSurfaceActionFree](../loads/structuralsurfaceactionfree.md) + * enum "Coordinate system" extended with value "Member LCS" + * new properties "Validity", "Validity to \[m]", "Validity from \[m]", and "Local Z direction" added + ### 28.11.2022 - Version 2.2.0 **Modified objects:** diff --git a/docs/loads/structuralsurfaceactionfree.md b/docs/loads/structuralsurfaceactionfree.md index 878fb88..00a04cc 100644 --- a/docs/loads/structuralsurfaceactionfree.md +++ b/docs/loads/structuralsurfaceactionfree.md @@ -2,13 +2,16 @@ **Free surface load** +```{warning} +object under development +``` + The Free surface load is related to slabs. The load is not defined by the entity it acts on, but by a specific load border. Free loads are defined by means of "loading entities" that may overlap or affect one or more slabs. ```{image} ../.gitbook/assets/40\_structuralsurfaceactionfree.png :width: 600px ``` - ## Specification in the excel | Column header| Data type | Example / enum definition | Required | Description | @@ -18,12 +21,16 @@ The Free surface load is related to slabs. The load is not defined by the entity | Type | String | Standard | no | This property defines what the load is caused by, E.g. Standard, Wind, Snow, Self weight, Hoar Frost, Predefined, Plane Load, Water Pond, Water Pressure, Soil Pressure, Generated Water, Generated Soil | | Distribution | Enum |
Uniform
DirectionX
DirectionY
DirectionXY
| yes |The load may be either constant across the slab or linearly variable
"DirectionX" and "DirectionY" enums are defining that, the value of the surface load is linearly variable according to the one of the user-selected axis
"DirectionXY" value inclination of surface load is defined in both directions well
| | q \[kN/m2] | String |-10
(for "Distribution" set to "Uniform")
or
C1:-5; C2:-7
(for "Distribution" set to "Direction*")
or
C1:-3; C2:-2; C3:-1
(for "Distribution" set to "DirectionXY")
| yes |Specifies the size of the load in kiloNewtons per square meter.
if Distribution is Direction X, Direction Y or Direction XY then the vertexes of the polygon of the free load have to be specified. For distribution Direction X and Direction Y two vertexes, for distribution in Direction XY, three vertexes. The format have to be following:
C"number of vertex of the load polygon" : "value of the load in this vertex"
The number of the vertex corresponds to the coordinate order. So the first coordinate means C1, the second C2 and so on
For further understanding of "C" attributes see notes below table
| -| Load case | String | LC5 | yes | The name of the load case to which the force belongs | +| Load case | String | LC5 | yes | The name of the load case in [StructuralLoadCase](../loads/structuralloadcase.md) to which the force belongs | +| Validity | Enum | All,Global
Local
| yes | Defines co-ordinate system of the member in which the load is applied | +| Coordinate system | Enum |Global
Local
Member LCS
| yes | Defines co-ordinate system of the member in which the load is applied | | Location | Enum |Length
Projection
| yes | Specifies whether the load is "put directly on an inclined 2D member" or whether the "projection on plan" is defined. | | Id | String | 39f238a5-01d0-45cf-a2eb-958170fd4f39 | no | Unique attribute designation | @@ -34,5 +41,21 @@ The Free surface load is related to slabs. The load is not defined by the entity >When "Distribution" is set to "DirectionXY" is necessary to define 3 "C" vertexes. These Vertexes are defining projection onto slab and Value of the load as well. According to position and load value of "C" vertexes is load plane defined and every other vertex of the surface load is calculated. See example below. > >```{image} ../.gitbook/assets/40\_structuralsurfaceactionfree\_note.png ->:width: 1000px +>:width: 800px +>``` + +>The LCS of the load is created based on the order of the nodes defining the load. X axis is in the direction from the first point to the second. Z axis is always perpendicular, and the direction is set by the property Local Z direction. Y axis is then set by the right-hand rule. + +>Local Z direction = Positive means that local Z direction will be in the direction of positive global Z direction, if it is not possible then in the positive direction of global X axis, if that is also not possible then in the direction of positive global Y axis. + +>Above is in the direction of positive local Z axis from XY plane of the load or from defined distance from that plane. Below is in the direction of negative local Z axis. In the example below load will be generated only between 3 and 4 m from the free load. +> +>```{image} ../.gitbook/assets/40_structuralsurfaceactionfree_from_to.png +>:width: 400px >``` + +>The load is projected always in the direction perpendicular to the load = in the direction of local Z axis. +> +>```{image} ../.gitbook/assets/40_structuralsurfaceactionfree_coordinate_system.png +>:width: 800px +>``` \ No newline at end of file diff --git a/docs/requirements.txt b/docs/requirements.txt index 9e4694f..42c70ce 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1 +1,4 @@ myst_parser +docutils==0.17.1 +Sphinx==5.3.0 +sphinx-rtd-theme==1.1.1