pub struct ContinuationAnalyzer {
pub param_range: (f64, f64),
pub n_steps: usize,
pub tol: f64,
pub max_newton_iter: usize,
}Expand description
Advanced continuation and monodromy analysis for bifurcation detection
Fields§
§param_range: (f64, f64)Parameter range for continuation
n_steps: usizeNumber of continuation steps
tol: f64Convergence tolerance
max_newton_iter: usizeMaximum Newton iterations
Implementations§
Source§impl ContinuationAnalyzer
impl ContinuationAnalyzer
Sourcepub fn trace_bifurcation_curve<F>(
&self,
system: F,
initial_state: &Array1<f64>,
) -> IntegrateResult<ContinuationResult>
pub fn trace_bifurcation_curve<F>( &self, system: F, initial_state: &Array1<f64>, ) -> IntegrateResult<ContinuationResult>
Perform parameter continuation to trace bifurcation curves
Auto Trait Implementations§
impl Freeze for ContinuationAnalyzer
impl RefUnwindSafe for ContinuationAnalyzer
impl Send for ContinuationAnalyzer
impl Sync for ContinuationAnalyzer
impl Unpin for ContinuationAnalyzer
impl UnwindSafe for ContinuationAnalyzer
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> 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 more