![]() |
programmer's documentation
|
propce
? Variables and properties can be accessed both in Fortran and in C using the cs_field API. Some Fortran properties can also still be accessed through the deprecated array propce
.
call field_get_val_s(ivarfl(ipr), cvar_pr)
pres = cvar_pr(iel)
, call field_get_val_s_by_name("pressure", cvar_pr)
pres = cvar_pr(iel)
, call field_get_val_s(iprpfl(icp), cpro_cp)
cp = cpro_cp(iel)
, call field_get_val_s(ivarfl(isca(iscalt)), cvar_scalt)
temp = cvar_scalt(iel)
, call field_get_val_v(ivarfl(iu), cvar_vel)
ux = cvar_vel(1,iel)
, propce
as: propce(iel,index)
.press = CS_F_(p)->val[cell_id]
, cp = CS_F_(cp)->val[cell_id]
, temp = CS_F_(t)->val[cell_id]
, uz = CS_F_(u)->val[3*cell_id + 2]
cs_real_3_t *cvar_vel = (cs_real_3_t *)CS_F_(u)->val
ux = cvar_vel[cell_id][0]
u
, p
, or cp
are defined in cs_field_pointer.h. CS_FI_(name,ii-1)->val[cell_id]
.cs_real_t *cvar_pr = cs_field_by_name("pressure")->val
cell_id = iel-1
.Cross-reference tables are available for the variables and properties of the standard solver and the specific physics features:
The Fortran variables indexes are defined in the files numvar.f90 (with the exception of ihm
and iscal
, which are respectively defined in ppincl.f90 and optcal.f90) and the C variables names are defined in cs_field_pointer.h.
Note that dt
is just an allocatable
array in Fortran while it is mapped as a field in C.
Fortran code | C code | Description |
---|---|---|
call field_get_val_s(ivarfl(ipr), cvar_pr) | CS_F_(p)->val | Pressure |
call field_get_val_v(ivarfl(iu), cvar_vel) | CS_F_(u)->val | Velocity |
call field_get_val_s(ivarfl(ivoidf), cvar_voidf) | CS_F_(void_f)->val | Void fraction for cavitation modelling |
call field_get_val_s(ivarfl(ik ), cvar_k ) | CS_F_(k)->val | Turbulent kinetic energy ![]() |
call field_get_val_s(ivarfl(iep ), cvar_eps) | CS_F_(eps)->val | Turbulent dissipation ![]() |
call field_get_val_s(ivarfl(ir11), cvar_r11) | CS_F_(r11)->val | Reynolds stress component ![]() |
call field_get_val_s(ivarfl(ir22), cvar_r22) | CS_F_(r22)->val | Reynolds stress component ![]() |
call field_get_val_s(ivarfl(ir33), cvar_r33) | CS_F_(r33)->val | Reynolds stress component ![]() |
call field_get_val_s(ivarfl(ir12), cvar_r12) | CS_F_(r12)->val | Reynolds stress component ![]() |
call field_get_val_s(ivarfl(ir23), cvar_r23) | CS_F_(r23)->val | Reynolds stress component ![]() |
call field_get_val_s(ivarfl(ir13), cvar_r13) | CS_F_(r13)->val | Reynolds stress component ![]() |
call field_get_val_s(ivarfl(iphi), cvar_phi) | CS_F_(phi)->val | ![]() ![]() |
call field_get_val_s(ivarfl(ifb ), cvar_fb ) | CS_F_(f_bar)->val | ![]() ![]() |
call field_get_val_s(ivarfl(ial ), cvar_al ) | CS_F_(alpha)->val | ![]() ![]() or EBRSM model |
call field_get_val_s(ivarfl(iomg), cvar_omg) | CS_F_(omg)->val | ![]() ![]() |
call field_get_val_s(ivarfl(inusa), cvar_nusa) | CS_F_(nusa)->val | ![]() |
call field_get_val_v(ivarfl(iuma), cvar_mesh_v) | CS_F_(mesh_u)->val | Mesh velocity |
call field_get_val_s(ivarfl(isca(ihm)), cvar_hm) | CS_F_(h)->val | Enthalpy |
call field_get_val_s(ivarfl(isca(iscalt)), cvar_scalt) | CS_F_(t)->val | Temperature |
These properties are defined in the files numvar.f90 and cs_field_pointer.h.
Deprecated Fortran code | Current Fortran code | C code | Description |
---|---|---|---|
dt | dt | CS_F_(dt)->val | Local time step |
propce(iel,irom) | call field_get_val_s(iprpfl(irom), cpro_rho ) | CS_F_(rho)->val | Density at the current time step |
propce(iel,irom) | call field_get_val_s(iprpfl(iroma), cpro_rhoa ) | CS_F_(rho)->val_pre | Density at the previous time step |
propce(iel,iromaa) | call field_get_val_s(iprpfl(iromaa), cpro_rhoaa) | cs_real_t *cpro_rhoaa = cs_field_by_name("density_old")->val | Density at the second previous time |
propce(iel,iviscl) | call field_get_val_s(iprpfl(iviscl), cpro_viscl) | CS_F_(mu)->val | Molecular viscosity |
propce(iel,ivisct) | call field_get_val_s(iprpfl(ivisct), cpro_visct) | CS_F_(mu_t)->val | Turbulent dynamic viscosity |
propce(iel,ivisla) | call field_get_val_s(iprpfl(ivisla), cpro_romaa) | CS_F_(mu)->val_pre | Dynamic molecular viscosity (in kg/(m.s)) |
propce(iel,ivista) | call field_get_val_s(iprpfl(ivista), cpro_viscta) | CS_F_(mu_t)->val_pre | Dynamic turbulent viscosity |
propce(iel,icp) | call field_get_val_s(iprpfl(icp), cpro_cp) | CS_F_(cp)->val | Specific heat |
propce(iel,icpa) | call field_get_val_s(iprpfl(icpa), cpro_cpa) | CS_F_(cp)->val_pre | specific heat at the previous time-step |
propce(iel,icrom) | call field_get_val_s(iprpfl(icrom), cpro_crom) | CS_F_(rho)->val | Density (at cells) |
propfb(ifac,ibrom) | call field_get_val_s(iprpfl(ibrom), bpro_rho) | CS_F_(rho_b)->val[face_id] | Density (at boundary faces) |
propce(iel,ismago) | call field_get_val_s(iprpfl(ismago), cpro_smago) | cs_real_t *cpro_smago = cs_field_by_name("smagorinsky_constant^2")->val | Field id of the anisotropic turbulent viscosity |
propce(iel,icour) | call field_get_val_s(iprpfl(icour), cpro_cour) | cs_real_t *cpro_cour = cs_field_by_name("courant_number")->val | Courant number |
propce(iel,ifour) | call field_get_val_s(iprpfl(ifour), cpro_four) | cs_real_t *cpro_four = cs_field_by_name("fourier_number")->val | Fourier number |
propce(iel,iprtot) | call field_get_val_s(iprpfl(iprtot), cpro_prtot) | cs_real_t *cpro_prtot = cs_field_by_name("total_pressure")->val | Total pressure at cell centers |
propce(iel,ivisma(1)) | call field_get_val_s(iprpfl(ivisma(1)), cpro_vism1) | cs_real_t *cpro_vism1 = cs_field_by_name("mesh_viscosity_1")->val | Mesh velocity viscosity for the ALE module |
propce(iel,itsrho) | call field_get_val_s(iprpfl(itsrho), cpro_tsrho ) | cs_real_t *cpro_tsrho = cs_field_by_name("dila_st")->val | Global dilatation source terms |
propce(iel,ibeta) | call field_get_val_s(iprpfl(ibeta), cpro_beta ) | cs_real_t *cpro_beta = cs_field_by_name("thermal_expansion")->val | Thermal expansion coefficient |
- | call field_get_val_s(ipori, cpro_ipori) | CS_F_(poro)->val | Porosity |
- | call field_get_val_v(iporf, cpro_iporf) | CS_F_(t_poro)->val | Tensorial porosity |
- | call field_get_val_v(iforbr, bpro_forbr) | cs_real_t *bpro_forbr = cs_field_by_name("boundary_forces")->val | Field id of the stresses at boundary |
- | call field_get_val_s(iyplbr, bpro_yplus) | cs_real_t *bpro_yplus = cs_field_by_name("yplus")->val | Field id of |
- | call field_get_val_v(idtten, dttens) | cs_real_t *dttens = cs_field_by_name("dttens")->val | Field id for the dttens tensor |
- | call field_get_val_s(itempb, t_b) | CS_F_(t_b)->val | Boundary temperature |
Defined in optcal.f90, atincl.f90, atvarp.f90 and cs_field_pointer.h.
Fortran code | C code | Description |
---|---|---|
call field_get_val_s(ivarfl(isca(iscalt)), cvar_scalt) | CS_F_(pot_t)->val | Potential temperature |
call field_get_val_s(ivarfl(isca(itotwt)), cvar_totwt) | CS_F_(totwt)->val | Total water content |
call field_get_val_s(ivarfl(isca(intdrp)), cvar_intdrp) | CS_F_(ntdrp)->val | Total number of droplets |
call field_get_val_s(ivarfl(isca(isca_chem(iesp))), cvar_sc) | CS_FI_(chemistry,iesp-1)->val | Chemistry species (indexed) |
Defined in ppincl.f90, ppcpfu.f90 and cs_field_pointer.h.
Fortran code | C code | Description |
---|---|---|
call field_get_val_s(isca(inp(iesp)), cvar_inpcl) | CS_FI_(np,iesp-1)->val | Particles per kg for coal class |
call field_get_val_s(isca(ixch(iesp)), cvar_xchcl) | CS_FI_(xch,iesp-1)->val | Reactive coal mass fraction for coal class |
call field_get_val_s(isca(ixck(iesp)), cvar_xckcl) | CS_FI_(xck,iesp-1)->val | Coke mass fraction for coal class |
call field_get_val_s(isca(ixwt(iesp)), cvar_xwtcl) | CS_FI_(xwt,iesp-1)->val | Water mass fraction for coal class |
call field_get_val_s(isca(ih2(iesp)), cvar_h2cl) | CS_FI_(h2,iesp-1)->val | Mass enthalpy for coal class (permeatic case) |
call field_get_val_s(isca(if1m(iesp)), cvar_f1mcl) | CS_FI_(f1m,iesp-1)->val | Mean value light volatiles for coal class |
call field_get_val_s(isca(if2m(iesp)), cvar_f2mcl) | CS_FI_(f2m,iesp-1)->val | Mean value heavy volatiles for coal class |
call field_get_val_s(isca(if4m), cvar_f4m) | CS_F_(f4m)->val | Oxydant 2 mass fraction |
call field_get_val_s(isca(if5m), cvar_f5m)) | CS_F_(f5m)->val | Oxydant 3 mass fraction |
call field_get_val_s(isca(if6m), cvar_f6m)) | CS_F_(f6m)->val | Water from coal drying mass fraction |
call field_get_val_s(isca(if7m), cvar_f7m)) | CS_F_(f7m)->val | Carbon from coal oxidyzed by O2 mass fraction |
call field_get_val_s(isca(if8m), cvar_f8m)) | CS_F_(f8m)->val | Carbon from coal gasified by CO2 mass fraction |
call field_get_val_s(isca(if9m), cvar_f9m)) | CS_F_(f9m)->val | Carbon from coal gasified by H2O mass fraction |
call field_get_val_s(isca(ifvp2m), cvar_fvp2m) | CS_F_(fvp2m)->val | f1f2 variance |
call field_get_val_s(isca(iyco2), cvar_yco2) | CS_F_(yco2)->val | CO2 fraction |
call field_get_val_s(isca(iyhcn), cvar_yhnc) | CS_F_(yhcn)->val | HCN fraction |
call field_get_val_s(isca(iyno), cvar, yno) | CS_F_(yno)->val | NO fraction |
call field_get_val_s(isca(iynh3), cvar_ynh3) | CS_F_(ynh3)->val | NH3 enthalpy |
call field_get_val_s(isca(ihox), cvar_hox) | CS_F_(hox)->val | Ox enthalpy |
Defined in ppincl.f90 and cs_field_pointer.h.
Fortran code | C code | Description |
---|---|---|
call field_get_val_s(isca(ienerg), cvar_energ) | CS_F_(energy)->val | Total energy |
call field_get_val_s(isca(itempk), cvar_tempk) | CS_F_(t_kelvin)->val | Temperature, in Kelvin |
Defined in ppincl.f90 and cs_field_pointer.h.
Fortran code | C code | Description |
---|---|---|
call field_get_val_s(isca(ipotr), cvar_potr) | CS_F_(potr)->val | Electric potential, real part |
call field_get_val_s(isca(ipoti), cvar_poti) | CS_F_(poti)->val | Electric potential, imaginary part |
call field_get_val_s(isca(ipotva(1)), cvar_potva1) | CS_F_(potva)->val | Vector potential |
call field_get_val_s(isca(iycoel(iesp)), cvar_ycoel(iesp)) | CS_FI_(ycoel,iesp-1)->val | Constituent mass fraction |
Defined in ppincl.f90 and cs_field_pointer.h.
Fortran code | C code | Description |
---|---|---|
call field_get_val_s(isca(ifm), cvar_fm) | CS_F_(fm)->val | Mixture fraction |
call field_get_val_s(isca(ifp2m), cvar_fp2m) | CS_F_(fp2m)->val | Mixture fraction variance |
call field_get_val_s(isca(ifsm), cvar_fsm) | CS_F_(fsm)->val | Soot mass fraction |
call field_get_val_s(isca(inpm), cvar_npm) | CS_F_(npm)->val | Soot precursor number |
call field_get_val_s(isca(iygfm), cvar_ygfm) | CS_F_(ygfm)->val | Fresh gas fraction |
call field_get_val_s(isca(iyfm), cvar_yfm) | CS_F_(yfm)->val | Mass fraction |
call field_get_val_s(isca(iyfp2m), cvar_yfp2m) | CS_F_(yfp2m)->val | Mass fraction variance |
call field_get_val_s(isca(icoyfp), cvar_coyfp) | CS_F_(coyfp)->val | Mass fraction covariance |
Defined in radiat.f90 and cs_field_pointer.h.
Deprecated Fortran code | Fortran code | C code | Description |
---|---|---|---|
propce(iel,ilumin) | call field_get_val_s(iprpfl(ilumin), cpro_lumin) | CS_F_(rad_lumin)->val | Radiative luminance |
propce(iel,iqx) | call field_get_val_s(iprpfl(iqx), cpro_qx) | CS_F_(rad_q)->val | Radiative flux |
propce(iel,itsre(iesp)) | call field_get_val_s(iprpfl(itsre(iesp)), cpro_tsre) | CS_FI_(rad_ets,iesp-1)->val | Radiative flux explicit source term |
propce(iel,itsri(iesp)) | call field_get_val_s(iprpfl(itsri(iesp)), cpro_tsri) | CS_FI_(rad_its,iesp-1)->val | Radiative flux implicit source term |
propce(iel,iabso(iesp)) | call field_get_val_s(iprpfl(iabso(iesp)), cpro_abso) | CS_FI_(rad_abs,iesp-1)->val | Radiative absorption |
propce(iel,iemi(iesp)) | call field_get_val_s(iprpfl(iemi(iesp)), cpro_emi) | CS_FI_(rad_emi,iesp-1)->val | Radiative emission |
propce(iel,icak(iesp)) | call field_get_val_s(iprpfl(icak(iesp)), cpro_cak) | CS_FI_(rad_cak,iesp-1)->val | Radiative absorption coefficient |
- | call field_get_val_s(iqinci, bqinci) | CS_F_(qinci)->val | Radiative incident radiative flux density |
- | call field_get_val_s(ixlam, bxlam) | CS_F_(xlam)->val | Wall thermal conductivity |
- | call field_get_val_s(iepa, bepa) | CS_F_(epa)->val | Wall thickness |
- | call field_get_val_s(ieps, beps) | CS_F_(emissivity)->val | Wall emissivity |
- | call field_get_val_s(ifnet, bfnet) | CS_F_(fnet)->val | Boundary radiative flux |
- | call field_get_val_s(ifconv, bfconv) | CS_F_(fconv)->val | Boundary radiative convective flux |
- | call field_get_val_s(ihconv, bhconv) | CS_F_(hconv)->val | Radiative exchange coefficient |