My Project
programmer's documentation
|
This function is called at the end of each time step, and has a very general purpose (i.e. anything that does not have another dedicated user function) More...
#include "cs_defs.h"
#include "cs_math.h"
#include <assert.h>
#include <math.h>
#include <ple_coupling.h>
#include "cs_headers.h"
#include "cs_prototypes.h"
Functions | |
void | cs_user_extra_operations_initialize (cs_domain_t *domain) |
Initialize variables. More... | |
void | cs_user_extra_operations (cs_domain_t *domain) |
This function is called at the end of each time step. More... | |
void | cs_user_extra_operations_finalize (cs_domain_t *domain) |
This function is called at the end of the calculation. More... | |
This function is called at the end of each time step, and has a very general purpose (i.e. anything that does not have another dedicated user function)
void cs_user_extra_operations | ( | cs_domain_t * | domain | ) |
This function is called at the end of each time step.
It has a very general purpose, although it is recommended to handle mainly postprocessing or data-extraction type operations.
[in,out] | domain | pointer to a cs_domain_t structure |
void cs_user_extra_operations_finalize | ( | cs_domain_t * | domain | ) |
This function is called at the end of the calculation.
It has a very general purpose, although it is recommended to handle mainly postprocessing or data-extraction type operations.
[in,out] | domain | pointer to a cs_domain_t structure |
void cs_user_extra_operations_initialize | ( | cs_domain_t * | domain | ) |
Initialize variables.
This function is called at beginning of the computation (restart or not) before the time step loop.
This is intended to initialize or modify (when restarted) variable and time step values.
[in,out] | domain | pointer to a cs_domain_t structure |