pub struct Model<B> {
pub blocks: B,
pub coordinates: NodalReferenceCoordinates,
}Fields§
§blocks: B§coordinates: NodalReferenceCoordinatesTrait Implementations§
Source§impl<B> ElasticFiniteElementModel for Model<B>where
B: ElasticFiniteElementModel,
impl<B> ElasticFiniteElementModel for Model<B>where
B: ElasticFiniteElementModel,
fn nodal_forces( &self, nodal_coordinates: &NodalCoordinates, ) -> Result<NodalForcesSolid, FiniteElementModelError>
fn nodal_stiffnesses( &self, nodal_coordinates: &NodalCoordinates, ) -> Result<NodalStiffnessesSolid, FiniteElementModelError>
Source§impl<B> FiniteElementModel for Model<B>where
B: Debug,
impl<B> FiniteElementModel for Model<B>where
B: Debug,
fn coordinates(&self) -> &NodalReferenceCoordinates
Source§impl<B> FirstOrderRoot<TensorVector<TensorRank1<3, 1>>, TensorVector<TensorVector<TensorRank2<3, 1, 1>>>, TensorVector<TensorRank1<3, 1>>> for Model<B>where
B: ElasticFiniteElementModel,
impl<B> FirstOrderRoot<TensorVector<TensorRank1<3, 1>>, TensorVector<TensorVector<TensorRank2<3, 1, 1>>>, TensorVector<TensorRank1<3, 1>>> for Model<B>where
B: ElasticFiniteElementModel,
fn root( &self, equality_constraint: EqualityConstraint, solver: impl FirstOrderRootFinding<NodalForcesSolid, NodalStiffnessesSolid, NodalCoordinates>, ) -> Result<NodalCoordinates, OptimizationError>
impl<B> SolidFiniteElementModel for Model<B>where
B: SolidFiniteElementModel,
Auto Trait Implementations§
impl<B> Freeze for Model<B>where
B: Freeze,
impl<B> RefUnwindSafe for Model<B>where
B: RefUnwindSafe,
impl<B> Send for Model<B>where
B: Send,
impl<B> Sync for Model<B>where
B: Sync,
impl<B> Unpin for Model<B>where
B: Unpin,
impl<B> UnwindSafe for Model<B>where
B: UnwindSafe,
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