#include <limits.h>#include <stdio.h>#include <stddef.h>#include <stdlib.h>#include <string.h>#include <math.h>#include <ctype.h>#include <float.h>#include <assert.h>#include "bft/bft_printf.h"#include "bft/bft_error.h"#include "bft/bft_mem.h"#include "fvm/fvm_periodicity.h"#include "atmo/cs_atmo.h"#include "base/cs_base.h"#include "base/cs_defs.h"#include "base/cs_math.h"#include "base/cs_field_operator.h"#include "base/cs_halo.h"#include "base/cs_interface.h"#include "mesh/cs_mesh.h"#include "mesh/cs_mesh_quantities.h"#include "base/cs_order.h"#include "base/cs_parall.h"#include "base/cs_search.h"#include "base/cs_timer_stats.h"#include "base/cs_thermal_model.h"#include "turb/cs_turbulence_model.h"#include "base/cs_velocity_pressure.h"#include "base/cs_field.h"#include "base/cs_physical_constants.h"#include "pprt/cs_physical_model.h"#include "lagr/cs_lagr.h"#include "lagr/cs_lagr_new.h"#include "lagr/cs_lagr_particle.h"#include "lagr/cs_lagr_stat.h"#include "lagr/cs_lagr_precipitation_model.h"#include "lagr/cs_lagr_prototypes.h"#include "lagr/cs_lagr_car.h"
Include dependency graph for cs_lagr_car.cpp:Functions | |
| void | cs_lagr_car (int iprev, int phase_id, const cs_real_t dt[], cs_real_t *taup, cs_real_3_t *tlag, cs_real_3_t *piil, cs_real_33_t *bx, cs_real_t tempct[], cs_real_3_t *beta, cs_real_33_t gradvf[]) |
| Compute particle characteristics: Tp, TL and PI as well as covariance and variance tensors for the stochasit model. More... | |
| void cs_lagr_car | ( | int | iprev, |
| int | phase_id, | ||
| const cs_real_t | dt[], | ||
| cs_real_t * | taup, | ||
| cs_real_3_t * | tlag, | ||
| cs_real_3_t * | piil, | ||
| cs_real_33_t * | bx, | ||
| cs_real_t | tempct[], | ||
| cs_real_3_t * | beta, | ||
| cs_real_33_t | gradvf[] | ||
| ) |
Compute particle characteristics: Tp, TL and PI as well as covariance and variance tensors for the stochasit model.
Compute particle characteristics: Tp, TL and PI as well as covariance and variance tensors for the Stochastic model.
| [in] | iprev | time step indicator for fields 0: use fields at current time step 1: use fields at previous time step |
| [in] | phase_id | carrier phase id |
| [in] | dt | time step (per cell) |
| [out] | taup | dynamic characteristic time |
| [out] | tlag | fluid characteristic time |
| [out] | piil | term in integration of up sde |
| [out] | bx | turbulence characteristics |
| [out] | tempct | thermal characteristic time |
| [out] | beta | for the extended scheme |
| [in] | gradvf | fluid velocity gradient |