|
Robotran C Documentation
|
Go to the documentation of this file.
16 #ifndef MBS_EULERIM_H_INCLUDED
17 #define MBS_EULERIM_H_INCLUDED
90 #endif // MBS_EULERIM_H_INCLUDED
int flag_precise_dynamics
= 1 to call the direct dynamics at the beginning of each time step of integration.
Definition: mbs_dirdyn_struct.h:118
void mbs_msg(const char *msg,...)
Send a message.
Definition: mbs_message.c:87
void initialize_euler_implicit(MbsData *mbs_data, MbsDirdyn *mbs_dd, int(*derivs)(double, double[], double[], MbsData *, MbsDirdyn *), void(*loop_fct)(MbsData *, MbsDirdyn *), int(*save_realtime_update)(MbsDirdyn *dd, MbsData *mbs_data))
Initialize all needed fields in MbsDirdyn for Euler Implicit integrator.
Definition: mbs_euler_implicit.c:26
This header defines global functions for Euler Implicit integrator in C.
double ** Freeze_dfdy
Definition: mbs_euler_implicit.h:41
double * jpxv
useful vector to store Jnp * xv [1xnqu]
Definition: mbs_euler_implicit.h:36
void finish_euler_implicit(MbsData *mbs_data, MbsDirdyn *mbs_dd)
Finalize and clear memory allocated for Euler Implicit integrator.
Definition: mbs_euler_implicit.c:140
double tsim
The time value.
Definition: mbs_data.h:305
double * y
Pointer to the state vector, this is a dvec_0 of size nState.
Definition: mbs_dirdyn_struct.h:175
double * B
right side of the equation [1xnqu]
Definition: mbs_euler_implicit.h:35
int nState
size of the state vector
Definition: mbs_dirdyn_struct.h:174
int nqu
Number of independent articulations.
Definition: mbs_data.h:262
double * get_dvec_0(int l_v)
create (with memory allocation) a vector (length l_v) of doubles, starting at index 0
Definition: mbs_1D_array.c:955
double * yd
Pointers to the derivative vector (dvec_0) of size nState.
Definition: mbs_dirdyn_struct.h:182
Declaration of functions that are project dependent.
void free_ivec_0(int *vec)
release memory for a vector of integers, starting with index 0
Definition: mbs_1D_array.c:490
double * delta_v
to store delta v [1xnqu]
Definition: mbs_euler_implicit.h:32
void free_dmat_0(double **mat)
release memory for a matrix of doubles, starting at index 0
Definition: mbs_matrix.c:332
double * yout
Allocation of a vector (dvec_0) of size nState.
Definition: mbs_dirdyn_struct.h:177
void mbs_warning_msg(const char *msg,...)
Send a warning message.
Definition: mbs_message.c:100
void error_euler_implicit(MbsData *mbs_data, MbsDirdyn *dd, int err)
If an error occurs during time integration, this function prints the error message and call finish_eu...
Definition: mbs_euler_implicit.c:177
void error_euler_implicit(MbsData *mbs_data, MbsDirdyn *dd, int err)
If an error occurs during time integration, this function prints the error message and call finish_eu...
Definition: mbs_euler_implicit.c:177
int loop_euler_implicit(double t0, double tf, MbsData *mbs_data, MbsDirdyn *mbs_dd)
Integrate the motion from t0 to tf.
Definition: mbs_euler_implicit.c:65
void * integrator_struct
pointer to store integrator structure
Definition: mbs_dirdyn_struct.h:205
double ** get_dmat_0(int nb_r, int nb_c)
create (with memory allocation) a [nb_r times nb_c] matrix of doubles, starting at index 0
Definition: mbs_matrix.c:277
void finish_euler_implicit(MbsData *mbs_data, MbsDirdyn *dd)
Finalize and clear memory allocated for Euler Implicit integrator.
Definition: mbs_euler_implicit.c:140
double tsim
current simulation time
Definition: mbs_dirdyn_struct.h:171
double ** A
left side of the equation [nquxnqu]
Definition: mbs_euler_implicit.h:34
int Freeze_jacobian_index
Definition: mbs_euler_implicit.h:42
double * delta_p
to store delta p [1xnqu]
Definition: mbs_euler_implicit.h:31
void(* loop_fct)(MbsData *, MbsDirdyn *)
The function to be called at the end of each time step, or waypoints.
Definition: mbs_euler_implicit.h:46
double * ysav
vector save y from previous step [1xn]
Definition: mbs_euler_implicit.h:28
int loop_euler_implicit(double t0, double tf, MbsData *mbs_data, MbsDirdyn *mbs_dd)
Integrate the motion from t0 to tf.
Definition: mbs_euler_implicit.c:65
double * Freeze_dfdx
Definition: mbs_euler_implicit.h:41
double * dfdx
vector of derivatives of f by x [1xn]
Definition: mbs_euler_implicit.h:27
void initialize_euler_implicit(MbsData *mbs_data, MbsDirdyn *mbs_dd, int(*derivs)(double, double[], double[], MbsData *, MbsDirdyn *), void(*loop_fct)(MbsData *, MbsDirdyn *), int(*save_realtime_update)(MbsDirdyn *dd, MbsData *mbs_data))
Initialize all needed fields in MbsDirdyn for Euler Implicit integrator.
Definition: mbs_euler_implicit.c:26
int(* derivs)(double, double[], double[], MbsData *, MbsDirdyn *)
The function computing the derivative of the system.
Definition: mbs_euler_implicit.h:44
int save_realtime_update(MbsDirdyn *dd, MbsData *mbs_data)
update the real-time and saving modules if requested
Definition: mbs_dirdyn.c:1252
int(* save_realtime_update)(MbsDirdyn *dd, MbsData *mbs_data)
Definition: mbs_euler_implicit.h:48
double * dysav
vector save dy from previous step [1xn]
Definition: mbs_euler_implicit.h:29
int * get_ivec_0(int l_v)
create (with memory allocation) a vector (length l_v) of integers, starting at index 0
Definition: mbs_1D_array.c:474
Definition: mbs_data.h:246
#define DIRDYN_INTEGRATOR_WAYPOINT_TIME_ERROR_max
Definition: mbs_dirdyn_struct.h:32
int * indx
index for LU decomp and system resolution
Definition: mbs_euler_implicit.h:38
double * Freeze_dydx
Definition: mbs_euler_implicit.h:41
This header defines specific integrators functions in C.
int flag_stop
stop the simulation. For dirdyn, equil, invdyn and solvekin only.
Definition: mbs_data.h:397
void free_dvec_0(double *vec)
release memory for a vector of doubles, starting at index 0
Definition: mbs_1D_array.c:971
int flag_solout_wp
1 to call solout only at required waypoints (only if flag_waypoint activated), default = 0
Definition: mbs_dirdyn_struct.h:128
General structure of the direct dynamic module.
Definition: mbs_dirdyn_struct.h:166
double dt
current integration step size
Definition: mbs_dirdyn_struct.h:172
int euler_implicit(double y[], double dydx[], int n, double *x, double h, double yout[], int(*derivs)(double, double[], double[], MbsData *, MbsDirdyn *), MbsData *s, MbsDirdyn *mbs_dd)
Euler Implicit integrator implementation.
Definition: euler_implicit.c:25
Euler Implicit structure for dirdyn.
Definition: mbs_euler_implicit.h:24
MbsDirdynOptions * options
structure defining the option of a direct dynamic
Definition: mbs_dirdyn_struct.h:168
double ** dfdy
matrix of derivatives of f by y [nxn]
Definition: mbs_euler_implicit.h:26