|  | programmer's documentation | 
#include "cs_defs.h"#include <assert.h>#include <stdio.h>#include <stdlib.h>#include <string.h>#include "bft_mem.h"#include "bft_error.h"#include "bft_printf.h"#include "cs_log.h"#include "cs_map.h"#include "cs_parall.h"#include "cs_mesh_location.h"#include "cs_time_step.h"
| Functions | |
| void | cs_time_step_define_nt_max (int nt_max) | 
| Define maximum time step number.  More... | |
| void | cs_time_step_define_t_max (double t_max) | 
| Define maximum time value.  More... | |
| void | cs_time_step_define_prev (int nt_prev, double t_prev) | 
| Set time values from previous (usually restarted) calculations.  More... | |
| void | cs_time_step_increment (double dt) | 
| Increment the global time step.  More... | |
| void | cs_time_step_redefine_cur (int nt_cur, double t_cur) | 
| Redefine the current time values.  More... | |
base time step data.
| void cs_time_step_define_nt_max | ( | int | nt_max | ) | 
Define maximum time step number.
(end ignore by Doxygen)
(end ignore by Doxygen)
| [in] | nt_max | maximum time step number (unlimited if negative) | 
| void cs_time_step_define_prev | ( | int | nt_prev, | 
| double | t_prev | ||
| ) | 
Set time values from previous (usually restarted) calculations.
| [in] | nt_prev | previous time step number | 
| [in] | t_prev | previous physical time | 
| void cs_time_step_define_t_max | ( | double | t_max | ) | 
Define maximum time value.
| [in] | t_max | maximum time value (unlimited if negative) | 
| void cs_time_step_increment | ( | double | dt | ) | 
Increment the global time step.
| [in] | dt | time step value to increment | 
| void cs_time_step_redefine_cur | ( | int | nt_cur, | 
| double | t_cur | ||
| ) | 
Redefine the current time values.
| [in] | nt_cur | current time step number | 
| [in] | t_cur | current physical time | 
 1.8.3.1
 1.8.3.1