geolib.models.dsettlement.loads¶
Classes
|
Create a circular load with the given name and properties. |
|
Other Load Class to inherit from. |
|
Create a rectangular load with the given name and properties |
|
Create a tank load with the given name and properties. |
|
Create a trapeziform load with the given name and properties. |
|
Create a uniform load with the given name and properties. |
- class geolib.models.dsettlement.loads.CircularLoad(**data)¶
Create a circular load with the given name and properties.
- Parameters:
weight – The mangitude of the load.
alpha – The shape factor alpha is used to specify the shape of the contact pressure.
- Parameters:
data (
Any
)
-
R:
float
¶
-
alpha:
float
¶
- model_config: ClassVar[ConfigDict] = {'arbitrary_types_allowed': True, 'extra': 'forbid', 'ser_json_inf_nan': 'constants', 'validate_assignment': True, 'validate_default': True}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
-
weight:
float
¶
- class geolib.models.dsettlement.loads.OtherLoad(**data)¶
Other Load Class to inherit from.
- Parameters:
data (
Any
)
-
load_type:
Optional
[TypeOtherLoads
]¶
- model_config: ClassVar[ConfigDict] = {'arbitrary_types_allowed': True, 'extra': 'forbid', 'ser_json_inf_nan': 'constants', 'validate_assignment': True, 'validate_default': True}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class geolib.models.dsettlement.loads.RectangularLoad(**data)¶
Create a rectangular load with the given name and properties
- Parameters:
weight – The mangitude of the load.
alpha – The shape factor alpha is used to specify the shape of the contact pressure
- Parameters:
data (
Any
)
-
alpha:
float
¶
- model_config: ClassVar[ConfigDict] = {'arbitrary_types_allowed': True, 'extra': 'forbid', 'ser_json_inf_nan': 'constants', 'validate_assignment': True, 'validate_default': True}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
-
weight:
float
¶
-
xwidth:
float
¶
-
zwidth:
float
¶
- class geolib.models.dsettlement.loads.TankLoad(**data)¶
Create a tank load with the given name and properties.
- Parameters:
wallweight – The magnitude of the load induced by the weight of the material in which the tank is made.
alpha – The shape factor alpha is used to specify the shape of the contact pressure.
internalweight – The magnitude of the load induced by the weight of the material stored in the tank.
- Parameters:
data (
Any
)
-
Rintern:
float
¶
-
alpha:
float
¶
-
dWall:
float
¶
-
internalweight:
float
¶
- model_config: ClassVar[ConfigDict] = {'arbitrary_types_allowed': True, 'extra': 'forbid', 'ser_json_inf_nan': 'constants', 'validate_assignment': True, 'validate_default': True}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
-
wallweight:
float
¶
- class geolib.models.dsettlement.loads.TrapeziformLoad(**data)¶
Create a trapeziform load with the given name and properties.
- Parameters:
m³ (gamma -- The weight of the load per)
- Parameters:
data (
Any
)
-
gamma:
float
¶
-
height:
float
¶
- model_config: ClassVar[ConfigDict] = {'arbitrary_types_allowed': True, 'extra': 'forbid', 'ser_json_inf_nan': 'constants', 'validate_assignment': True, 'validate_default': True}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
-
xl:
float
¶
-
xm:
float
¶
-
xr:
float
¶
- class geolib.models.dsettlement.loads.UniformLoad(**data)¶
Create a uniform load with the given name and properties.
- Parameters:
unit_weight – The weight of the load per m³
- Parameters:
data (
Any
)
-
gamma:
float
¶
-
height:
float
¶
- model_config: ClassVar[ConfigDict] = {'arbitrary_types_allowed': True, 'extra': 'forbid', 'ser_json_inf_nan': 'constants', 'validate_assignment': True, 'validate_default': True}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
-
unit_weight:
float
¶
-
y_application:
float
¶