26#ifndef MODELS_SUPPORT_MARKOV_UNCERTAINTY_MODEL_H
27#define MODELS_SUPPORT_MARKOV_UNCERTAINTY_MODEL_H
88 MODEL(MarkovUncertaintyModel)
95 SIGNAL(bias_initial,
double, 0.0)
97 SIGNAL(bias_random_walk_std,
double, 0.0)
99 SIGNAL(noise_std,
double, 0.0)
101 SIGNAL(scale_factor_std,
double, 0.0)
103 SIGNAL(rate_hz,
double, 0.0)
105 SIGNAL(seed_value,
int, 0)
112 SIGNAL(input_val,
double, 0.0)
119 SIGNAL(output_val,
double, 0.0)
123 void setBias(
double new_bias);
128 int16
start() override;
#define SIGNAL(NAME, TYPE, INITIAL_VALUE)
Definition appmacros.h:27
#define START_PARAMS
Definition appmacros.h:42
#define END_OUTPUTS
Definition appmacros.h:33
#define END_PARAMS
Definition appmacros.h:47
#define START_OUTPUTS
Definition appmacros.h:28
#define END_INPUTS
Definition appmacros.h:40
#define START_INPUTS
Definition appmacros.h:35
Class to generate random numbers according to normal distribution.
Definition NormalRandom.hpp:40
Class to propagate CR3BP dynamics in characteristic units.
Definition statistics.hpp:22
double _bias
Internal variable for holding the bias and its deviations from the initial value.
Definition MarkovUncertaintyModel.h:135
int16 start() override
Class to execute logging.
double _noise
Definition MarkovUncertaintyModel.h:140
SIGNAL(_mu, double, warpos::earth_wgs84.mu)
MODEL(MarkovUncertaintyModel) public double getBias()
Markov Uncertainty Model.
Definition MarkovUncertaintyModel.cpp:53
double _scale_factor
Internal variables for the different noise sources.
Definition MarkovUncertaintyModel.h:139
double _bias_drift
Definition MarkovUncertaintyModel.h:136
NormalRandom< double > * _rng
RNG to produce our distribution.
Definition BiasNoiseModel.h:74
@ MODEL
Simplified dynamics model representing motion in the circular restricted 3 body problem.
Definition ImNode.h:31
int16 execute() override
Function to check monitor input conditions and set trigger flag accordingly. Should be implemented in...
double _sqrt_time_step
Internal variable for 1/sqrt(Hz).
Definition MarkovUncertaintyModel.h:143