pub struct AnalysisModel {Show 16 fields
pub model_id: AnalysisModelId,
pub geometry_id: String,
pub geometry_revision: u32,
pub units: UnitSystem,
pub frame: ReferenceFrame,
pub materials: Vec<MaterialModel>,
pub material_assignments: Vec<MaterialAssignment>,
pub structural: Option<StructuralModel>,
pub thermo_mechanical: Option<ThermoMechanicalDomain>,
pub electro_thermal: Option<ElectroThermalDomain>,
pub electromagnetic: Option<ElectromagneticDomain>,
pub cfd: Option<CfdDomain>,
pub interfaces: Vec<AnalysisInterface>,
pub boundary_conditions: Vec<BoundaryCondition>,
pub loads: Vec<LoadCase>,
pub steps: Vec<AnalysisStep>,
}Fields§
§model_id: AnalysisModelId§geometry_id: String§geometry_revision: u32§units: UnitSystem§frame: ReferenceFrame§materials: Vec<MaterialModel>§material_assignments: Vec<MaterialAssignment>§structural: Option<StructuralModel>§thermo_mechanical: Option<ThermoMechanicalDomain>§electro_thermal: Option<ElectroThermalDomain>§electromagnetic: Option<ElectromagneticDomain>§cfd: Option<CfdDomain>§interfaces: Vec<AnalysisInterface>§boundary_conditions: Vec<BoundaryCondition>§loads: Vec<LoadCase>§steps: Vec<AnalysisStep>Trait Implementations§
Source§impl Clone for AnalysisModel
impl Clone for AnalysisModel
Source§fn clone(&self) -> AnalysisModel
fn clone(&self) -> AnalysisModel
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AnalysisModel
impl Debug for AnalysisModel
Source§impl<'de> Deserialize<'de> for AnalysisModel
impl<'de> Deserialize<'de> for AnalysisModel
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AnalysisModel
impl PartialEq for AnalysisModel
Source§fn eq(&self, other: &AnalysisModel) -> bool
fn eq(&self, other: &AnalysisModel) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AnalysisModel
impl Serialize for AnalysisModel
impl StructuralPartialEq for AnalysisModel
Auto Trait Implementations§
impl Freeze for AnalysisModel
impl RefUnwindSafe for AnalysisModel
impl Send for AnalysisModel
impl Sync for AnalysisModel
impl Unpin for AnalysisModel
impl UnsafeUnpin for AnalysisModel
impl UnwindSafe for AnalysisModel
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more