use ndarray::Array1;
use stochastic_rs_core::simd_rng::Deterministic;
use stochastic_rs_core::simd_rng::SeedExt;
use stochastic_rs_core::simd_rng::Unseeded;
use crate::noise::fgn::Fgn;
use crate::traits::FloatExt;
use crate::traits::ProcessExt;
pub struct Fcir<T: FloatExt, S: SeedExt = Unseeded> {
pub hurst: T,
pub theta: T,
pub mu: T,
pub sigma: T,
pub n: usize,
pub x0: Option<T>,
pub t: Option<T>,
pub use_sym: Option<bool>,
pub seed: S,
fgn: Fgn<T>,
}
impl<T: FloatExt> Fcir<T> {
#[must_use]
pub fn new(
hurst: T,
theta: T,
mu: T,
sigma: T,
n: usize,
x0: Option<T>,
t: Option<T>,
use_sym: Option<bool>,
) -> Self {
assert!(n >= 2, "n must be at least 2");
assert!(
T::from_usize_(2) * theta * mu >= sigma.powi(2),
"2 * theta * mu < sigma^2"
);
Self {
hurst,
theta,
mu,
sigma,
n,
x0,
t,
use_sym,
seed: Unseeded,
fgn: Fgn::new(hurst, n - 1, t),
}
}
}
impl<T: FloatExt> Fcir<T, Deterministic> {
#[must_use]
pub fn seeded(
hurst: T,
theta: T,
mu: T,
sigma: T,
n: usize,
x0: Option<T>,
t: Option<T>,
use_sym: Option<bool>,
seed: u64,
) -> Self {
assert!(n >= 2, "n must be at least 2");
assert!(
T::from_usize_(2) * theta * mu >= sigma.powi(2),
"2 * theta * mu < sigma^2"
);
Self {
hurst,
theta,
mu,
sigma,
n,
x0,
t,
use_sym,
seed: Deterministic::new(seed),
fgn: Fgn::new(hurst, n - 1, t),
}
}
}
impl<T: FloatExt, S: SeedExt> ProcessExt<T> for Fcir<T, S> {
type Output = Array1<T>;
fn sample(&self) -> Self::Output {
let dt = self.fgn.dt();
let fgn = self.fgn.sample_cpu_impl(&self.seed.derive());
let mut fcir = Array1::<T>::zeros(self.n);
fcir[0] = self.x0.unwrap_or(T::zero());
for i in 1..self.n {
let dfcir = self.theta * (self.mu - fcir[i - 1]) * dt
+ self.sigma * (fcir[i - 1]).abs().sqrt() * fgn[i - 1];
fcir[i] = match self.use_sym.unwrap_or(false) {
true => (fcir[i - 1] + dfcir).abs(),
false => (fcir[i - 1] + dfcir).max(T::zero()),
};
}
fcir
}
}
py_process_1d!(PyFcir, Fcir,
sig: (hurst, theta, mu, sigma, n, x0=None, t=None, use_sym=None, seed=None, dtype=None),
params: (hurst: f64, theta: f64, mu: f64, sigma: f64, n: usize, x0: Option<f64>, t: Option<f64>, use_sym: Option<bool>)
);