Skip to main content

DmplexConfigProfile

Struct DmplexConfigProfile 

Source
pub struct DmplexConfigProfile {
    pub refinement: DmplexRefinementProfile,
    pub distribution: DmplexDistributionProfile,
    pub overlap: DmplexOverlapProfile,
    pub checks: DmplexCheckProfile,
    pub metric: DmplexMetricProfile,
    pub io: DmplexIoProfile,
    pub ordering: Option<DmplexOrderingProfile>,
    pub solver: DmplexSolverPreparationProfile,
}
Expand description

Top-level DMPLEX-style configuration profile.

Fields§

§refinement: DmplexRefinementProfile

Refinement controls matching -dm_refine_pre and -dm_refine workflows.

§distribution: DmplexDistributionProfile

Distribution and ghost-section synchronization controls.

§overlap: DmplexOverlapProfile

Overlap/ghost-layer controls.

§checks: DmplexCheckProfile

DMPLEX-style diagnostic switches.

§metric: DmplexMetricProfile

Metric adaptation and remeshing controls.

§io: DmplexIoProfile

Mesh I/O options carried for application-level loaders/writers.

§ordering: Option<DmplexOrderingProfile>

Optional topology-stratified section ordering during setup.

§solver: DmplexSolverPreparationProfile

Solver preparation prerequisite controls.

Implementations§

Source§

impl DmplexConfigProfile

Source

pub fn mesh_dm_options(&self) -> MeshDMOptions

Lower setup-related fields into MeshDMOptions.

Source

pub fn distribution_config(&self) -> DistributionConfig

Lower distribution fields into DistributionConfig.

Source

pub fn mesh_check_options(&self) -> MeshCheckOptions

Lower diagnostic switches into MeshCheckOptions.

Source

pub fn prepare_for_solve_options(&self) -> PrepareForSolveOptions

Lower solver-preparation fields into PrepareForSolveOptions.

Source

pub fn metric_adapt_options(&self) -> MeshDMMetricAdaptOptions

Lower metric adaptation fields into MeshDMMetricAdaptOptions.

Source

pub fn from_cli_args<I, S>(args: I) -> Result<Self, String>
where I: IntoIterator<Item = S>, S: Into<OsString>,

Parse PETSc/DMPLEX-style command-line options from any string iterator.

Unknown options are ignored so applications can pass a full PETSc-like argv without pre-filtering mesh-sieve keys.

Source

pub fn from_env() -> Result<Self, String>

Start with defaults and apply supported environment variables.

Variables are uppercase option names without a leading dash, for example DM_DISTRIBUTE=true, DM_DISTRIBUTE_OVERLAP=2, or DM_PLEX_METRIC_TARGET_COMPLEXITY=1000.0.

Source

pub fn apply_cli_args<I, S>(&mut self, args: I) -> Result<(), String>
where I: IntoIterator<Item = S>, S: Into<OsString>,

Apply PETSc/DMPLEX-style CLI arguments to an existing profile.

Source

pub fn apply_env(&mut self) -> Result<(), String>

Apply supported environment variables to an existing profile.

Source

pub fn apply_option( &mut self, key: &str, value: Option<&str>, ) -> Result<bool, String>

Apply one PETSc-style option. The key may include or omit the leading -.

Trait Implementations§

Source§

impl Clone for DmplexConfigProfile

Source§

fn clone(&self) -> DmplexConfigProfile

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for DmplexConfigProfile

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for DmplexConfigProfile

Source§

fn default() -> DmplexConfigProfile

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for DmplexConfigProfile

Source§

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 DmplexConfigProfile

Source§

fn eq(&self, other: &DmplexConfigProfile) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for DmplexConfigProfile

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for DmplexConfigProfile

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> AccumulatePathExt for T

Source§

fn accumulate_path<O, I>(path: I) -> O
where O: Orientation, I: IntoIterator<Item = O>,

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PayloadLike for T
where T: Clone,

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.