pub struct PhysicsInterpConfig {
pub pde_weight: f64,
pub n_collocation: usize,
pub rbf_epsilon: f64,
pub max_iter: usize,
pub tol: f64,
}Expand description
Configuration for PhysicsInformedInterp.
Fields§
§pde_weight: f64Penalty weight λ for the PDE constraint rows.
n_collocation: usizeNumber of interior collocation points where the PDE is enforced. These are generated on a regular grid inside the data bounding box.
rbf_epsilon: f64Shape parameter ε for the Gaussian RBF φ(r) = exp(-(ε r)²).
max_iter: usizeMaximum number of iterations (reserved for future iterative solvers).
tol: f64Convergence tolerance (reserved for future iterative solvers).
Trait Implementations§
Source§impl Clone for PhysicsInterpConfig
impl Clone for PhysicsInterpConfig
Source§fn clone(&self) -> PhysicsInterpConfig
fn clone(&self) -> PhysicsInterpConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 PhysicsInterpConfig
impl Debug for PhysicsInterpConfig
Auto Trait Implementations§
impl Freeze for PhysicsInterpConfig
impl RefUnwindSafe for PhysicsInterpConfig
impl Send for PhysicsInterpConfig
impl Sync for PhysicsInterpConfig
impl Unpin for PhysicsInterpConfig
impl UnsafeUnpin for PhysicsInterpConfig
impl UnwindSafe for PhysicsInterpConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.