automesh

Trait Abaqus

source
pub trait Abaqus {
    // Required method
    fn write_inp(&self, file_path: &str) -> Result<(), Error>;
}
Expand description

The Abaqus trait for finite elements.

Required Methods§

source

fn write_inp(&self, file_path: &str) -> Result<(), Error>

Writes the finite element data to a new Abaqus input file.

Implementors§

source§

impl Abaqus for FiniteElements

Abaqus implementation of the finite elements type.