AcuTrans

Translates the AcuSolve solution output to other formats.

Syntax

acuTrans [options]

Type

AcuSolve Post-Processing Program

Description

The results of AcuSolve are stored using an internal format in a number of files in the directory specified by the working_directory option (ACUSIM.DIR by defaults) and in binary by default. AcuTrans is used to gather and translate these results into various formats more suited for post-processing or visualizing by third party products.

In the following, the full name of each option is followed by its abbreviated name and its type. For a general description of option specifications, see Command Line Options and Configuration Files. See below for more individual option details:

help or h (boolean)
If set, the program prints a usage message and exits. The usage message includes all available options, their current values and the place where each option is set.
problem or pb (string)
The name of the problem is specified via this option. This name is used to build internal file names and to generate output files. All generated output files start with the problem name.
working_directory or dir (string)
All internal files are stored in this directory. This directory does not need to be on the same file system as the input files of the problem.
run_id or run (integer)
Number of the run in which the translation is requested. If run_id is set to 0, the last run in the working directory is assumed.
translate_to or to (enumerated)
Translate the output to this format:
info
Prints information about the available time steps and variables.
table
Translate into a two dimensional array of data
stats
Print statistics on each output data
cgns
Translate to CGNS data base
ensight
Translate to EnSight 6.0 .case file
fieldview
Translate to FieldView unstructured binary file (2.4 or 2.7)
h3d
Translate to H3D format
ideas
Translate to I-deas Universal file
spectrum
Translate to Spectrum Visualizer compressed ASCII file
actran
Translate to ActranLA files
fieldview_options or fvopt (string)
Set FieldView translation options:
classical
Translate to combined mesh/solution unstructured binary file format 2.4
split
Translate to split file mesh/solution unstructured binary file format 2.7 to reduce disk file size
fieldview_region or fvr (enumerated)
Set FieldView region:
single
Create a single region
medium
Create one region per medium, that is, solid, fluid, shell
element_set
Create one region per element set
subdomain
Create one region per original subdomain
ensight_options or ensopt (string)
Set EnSight translation options:
6
Translate to EnSight 6
gold
Translate to EnSight Gold
h3d_options or h3dopt (string)
Set H3D translation options:
multi
Create separate files for the mesh and solutions at various time-steps
single
Create a single file
time_steps or ts (string)
Comma-separated list of time steps to be translated. The comma-separated fields have the general range format beg:end:inc, where :end:inc and :inc are optional. beg specifies the first time step in the range. It may be either a given time step, as specified by a number, the letter F (or f) requesting the first available time step, or the letter L (or l) requesting the last available time step. end is the last time step in the range. It may be either a time step number or L (or l) requesting the last available time step. If end is missing, the range is assumed to simply represent a single time step, that is, end=beg and inc=1. inc is the increment that ranges from beg to end. It may be either a number or the letter A (or a) requesting all available time steps in the range. If :inc is missing, it is assumed to be one. The range may also be specified by the single letter A (or a), requesting all available time steps. This is equivalent to F:L:A. time_steps is used only for nodal data and is ignored for time series data. Examples of time_steps option include:
acuTrans -ts 35            # step 35
acuTrans -ts 35,33,37       # steps 33, 35, and 37
acuTrans -ts 33:37:2        # steps 33, 35, and 37
acuTrans -ts 35,33:37:2,37  # steps 33, 35, and 37
acuTrans -ts 33:37          # all steps from 33 to 37
acuTrans -ts 33:37:A        # available steps from 33 to 37
acuTrans -ts F:L:A          # all available steps
acuTrans -ts A              # all available steps
optimization_case_time_steps or cts (string)
Comma-separated list of optimization case time steps to be translated. The comma-separated fields have the general range format beg:end:inc, where :end:inc and :inc are optional. beg specifies the first time step in the range. It may be either a given time step, as specified by a number, the letter F, or f, requesting the first available time step, or the letter L (or l) requesting the last available time step. end is the last time step in the range. It may be either a time step number or L (or l) requesting the last available time step. If end is missing, the range is assumed to simply represent a single time step, that is, end=beg and inc=1. inc is the increment that ranges from beg to end. It may be either a number or the letter A (or a) requesting all available time steps in the range. If :inc is missing, it is assumed to be one. The range may also be specified by the single letter A (or a), requesting all available time steps. This is equivalent to F:L:A.
optimization_case or case (string)
Comma-separated list of optimization cases to be translated.
additional_runs or runs (string)
Comma-separated list of runs to be translated. These are in addition to the main run given by run_id. Additional runs not compatible with the main are ignored. Combining four runs may be accomplished by:
acuTrans -run 1 -runs "2,3,4"
ignore_missing_steps or imts (boolean)
If set, missing requested time steps are ignored. Otherwise, if the requested time step does not exist, the command issues an error message and exits.
ignore_missing_cases or imcs (boolean)
If set, missing requested optimization cases are ignored. Otherwise, if the requested optimization case does not exist, the command issues an error message and exits.
ignore_missing_runs or imruns (boolean)
If set, missing runs are ignored. Otherwise, if the requested run does not exist, the command issues an error message and exits. This option is used with the -runs command line option.
ignore_missing_variables or imv (boolean)
If set, missing requested variables are ignored. Otherwise, if the requested variable does not exist, the command issues an error message and exits.
ignore_zeros or iz (boolean)
If set, ignore zeros when computing statistics, that is, when using -to stats. This option is usually used for variables that are defined only on surfaces. See extended_nodal_output.
mesh_output or mesh (boolean)
If set, the problem mesh is translated. This option is valid with translation formats ideas, spectrum, EnSight, H3D, FieldView and actran. The CGNS formats always receive the mesh. When converting to FieldView and fvopt is set to single, the mesh is always translated.
remove_duplicate_surfaces or rmds (boolean)
If set, all surfaces are checked for uniqueness before being written into the CGNS, FieldView, EnSight, or H3D file. This prevents surfaces that are utilized multiple times in the input file for SIMPLE_BOUNDARY_CONDITION, SURFACE_OUTPUT, or ELEMENT_BOUNDARY_CONDITION commands from appearing multiple times in output files. This option reduces the size of output files and eliminates redundant boundary definitions. The option is on by default. You can recover pre-V12.0 behavior in AcuTrans by turning this option off.
mesh_movement or ale (boolean)
If set, output deformed coordinates for mesh_output. Otherwise, output the reference coordinates.
deformed_crd_type or defcrd (enumerated)
This option controls which displacement field is written to the mesh_displacement variable in all output types.
midstep
Write the mesh displacement field that corresponds to the displacement at the mid point of each time step. This option is useful when investigating the flow across non-conformal interfaces. The mid point of each time step is where the solution across the non-conformal interface is actually satisfied and should be visualized in order to see continuous contours across it. However, the boundary displacements for prescribed motions will also be written at the mid step and may not agree with the expectations based on input settings.
endstep
Write the mesh displacement field that corresponds to the displacement at the end point of each time step. This option produces a displacement field that aligns with the requested boundary displacements at each step, but does not correspond to the mesh displacement field that satisfies the governing equations. To visualize the mesh on which the governing equations are satisfied, use midstep. In practice, there is little use in this if there are no non-conformal interfaces present in the simulation and visualizing the solution on the mesh with the expected boundary displacements is preferred.
nodal_output or out (boolean)
If set, the nodal output, as specified by the NODAL_OUTPUT command in the input file, is translated. This option is valid with all translation formats.
nodal_output_vars or outv (string)
Comma-separated list of nodal_output variables to be translated. The list may include:
Table 1.
Variable (abbr) Fields Description
node_id (node) 1 User-given node number
coordinates (crd) 3 Nodal coordinates
density (dens) 1 Density, only for flow = compressible_navier_stokes.
velocity (vel) 3 Velocity vector
phasic velocity (phasic_vel) 3 Phasic velocity vector of the first field, when multi_field = eulerian_eulerian or algebraic_eulerian.
mach_number (mach) 1 Mach number, only for flow = compressible_navier_stokes.
pressure (pres) 1 Pressure
temperature (temp) 1 Temperature
relative_humidity 1 Relative humidity
dewpoint_temperature 1 Dewpoint temperature
humidity_film_thickness 1 Humidity film thickness
species (spec) nSpecs Species
incident_radiation (incident_rad) 1 Incident radiation
field nFields Field values. For multi_field= levelset, multi_field = algebraic_eulerian and eulerian_eulerian, the field values correspond to volume fractions, and are named as volume_fraction-"fieldname". For multi_field = advective_diffusive, the field values correspond to mass fraction.
levelset (levelset) 1 Levelset
eddy_viscosity (eddy) 1 Turbulence eddy viscosity
kinetic_energy (tke) 1 Turbulence kinetic energy
eddy_frequency (tomega) 1 Turbulence eddy frequency
sqrt_eddy_period (tg) 1 Inverse of the square root of eddy frequency
dissipation_rate (teps) 1 Turbulence dissipation rate
intermittency (tintc) 1 Turbulence intermittency
transition_re_theta (treth) 1 Critical momentum thickness Reynolds Number
surface_y_plus (yp) 1 y+ on turbulence walls
turbulence_y_plus (turb_yp) 1 Turbulence y+
surface_film_coefficient (film) 1 Convective heat transfer coefficient on turbulence walls
wall_shear_stress (wall_shear) 3 Wall shear stress on turbulence walls.
surface_heat_flux (osf_heat) 1 Surface heat flux
viscoelastic_stress (vest) 6 Viscoelastic stresses
mesh_displacement (mesh_disp) 3 Mesh displacement vector
mesh_velocity (mesh_vel) 3 Mesh velocity vector
electric_potential (elecP) 1 Electric potential (voltage)
joule_heat_density 1 Joule heat density (W/m3)
current_density 3 Electric current flowing per unit cross-sectional area (Amp/m2)
where nSpecs is the number of species as given in the EQUATION command in the input file. The problem must contain the requested variable in order for it to be translated. For example, the parameter turbulence in the EQUATION command must be set to a value other than none in order for eddy_viscosity to be available. The list of variables is sorted in the order given in the above table. If nodal_output_vars is set to _all, all available variables are translated. The surface_y_plus, surface_film_coefficient and wall_shear_stress are non-zero only on surface nodes given by TURBULENCE_WALL, or alternatively by SIMPLE_BOUNDARY_CONDITION of type wall. The surface_film_coefficient is computed even if there is no temperature equation. However, all relevant fluid material models must include specific heat and conductivity models. It should also be noted that eddy_frequency and sqrt_eddy_period only appear when using the k-omega turbulence models. The dissipation_rate variable only appears when using the k-epsilon based turbulence models, and intermittency and transition_re_theta only appear when using the turbulence transition models.
extended_nodal_output or extout (boolean)
Extended nodal output flag. If set, adds to the nodal_output variable list available variables from running_average_output, time_average_output, derived_quantity_output, surface_output, radiation_surface, solar_radiation_surface, output_nodal_residual, output_error_estimator, and time_average_error_estimator. The nodal projections of miscellaneous element quantities and gradients of available field variables are also added to the list. Those variables defined only on a subset of the nodes, such as surfaces, are set to zero on the rest of the nodes. The list may include:
Table 2.
Variable (abbr) Fields Description
grad_velocity (grad_vel) 9 Gradient of velocity vector
grad_phasic_velocity (grad_phasic_vel) 9 Gradient of phasic velocity vector of the first field, when multi_field = eulerian_eulerian or algebraic_eulerian.
grad_pressure (grad_pres) 3 Gradient of pressure
grad_temperature (grad_temp) 3 Gradient of temperature
grad_field 3*nFields Gradient of field values. For multi_field = levelset, multi_field= algebraic_eulerian, and multi_field = eulerian_eulerian, the grad field values correspond to grad volume fractions, and are named as grad_volume_fraction-"fieldname".
grad_species (grad_spec) 3*nSpecs Gradient of species
grad_eddy_viscosity (grad_eddy) 3 Gradient of turbulence eddy viscosity
grad_kinetic_energy (grad_tke) 3 Gradient of turbulence kinetic energy
grad_eddy_frequency (grad_tomega) 3 Gradient of turbulence eddy frequency
grad_sqrt_eddy_period (grad_tg) 3 Gradient of inverse of the square root of eddy frequency
grad_dissipation_rate (grad_teps) 3 Gradient of inverse of the turbulence dissipation rate
grad_intermittency (grad_tintc) 3 Gradient of turbulence intermittency
grad_transition_re_theta (grad_treth) 3 Gradient of critical momentum thickness Reynolds Number
grad_viscoelastic_stress (grad_vest) 18 Gradient of viscoelastic stress
grad_mesh_displacement(grad_mesh_disp) 9 Gradient of mesh displacement vector
grad_mesh_velocity (grad_mesh_vel) 9 Gradient of mesh velocity vector
volume (vol) 1 Nodal volume
strain_rate_invariant_2 (strain_i2) 1 Second invariant of the strain rate tensor
vorticity (vort) 3 Vorticity
cfl_number (cfl) 1 Element-integrated CFL number
density (dens) 1 Density
viscosity (visc) 1 Viscosity
material_viscosity (mat_visc) 1 Molecular viscosity
gravity (grav) 3 Gravity
specific_heat (cp) 1 Specific heat
conductivity (cond) 6 Conductivity
heat_source (heat_src) 1 Heat source
diffusivity (diff) nSpecs Species diffusivity
species_source (spec_src) nSpecs Species source
turbulence_y (turb_y) 1 Turbulence distance to wall
turbulence_y_plus (turb_yp) 1 Turbulence y+
des_length (deslen) 1 Length scale for DES turbulence model
field_diffusivity 1 Field diffusivity
field_source 1 Field source
material_conductivity 1 Material conductivity
total_pressure (tot_pres) 1 Total pressure
running_ave_velocity (ora_vel) 3 Running average velocity
running_ave_pressure (ora_pres) 1 Running average pressure
running_ave_temperature (ora_temp) 1 Running average temperature
running_ave_field (ora_field) nFields Running average field values. For multi_field = levelset and multi_field = algebraic_eulerian, the field values correspond to running average volume fractions, and are named as running_ave_volume_fraction-"fieldname".
running_ave_species (ora_spec) nSpecs Running average species
running_ave_eddy_viscosity (ora_eddy) 1 Running average eddy viscosity
running_ave_kinetic_energy (ora_tke) 1 Running average turbulence kinetic energy
running_ave_eddy_frequency (ora_tomega) 1 Running average turbulence eddy frequency
running_ave_sqrt_eddy_period (ora_tg) 1 Running average of inverse of the square root of eddy frequency
running_ave_dissipation_rate (ora_teps) 1 Running average turbulence dissipation rate
running_ave_intermittency (ora_tintc) 1 Running average of the turbulence intermittency
running_ave_transition_re_theta (ora_treth) 1 Running average of the critical momentum thickness Reynolds number
running_ave_mesh_displacement (ora_mesh_disp) 3 Running average mesh displacement
running_ave_viscoelastic_stress (ora_vest) 6 Running average viscoelastic stress
residual_velocity (onr_vel) 3 Residual of momentum equations
residual_pressure (onr_pres) 1 Residual of continuity equation
residual_temperature (onr_temp) 1 Residual of temperature equation
residual_species (onr_spec) nSpecs Residual of species equations
residual_eddy_viscosity (onr_eddy) 1 Residual of turbulence eddy viscosity equation
residual_kinetic_energy (onr_tke) 1 Residual of turbulence kinetic energy equation
residual_eddy_frequency (onr_tomega) 1 Residual of turbulence eddy frequency equation
residual_sqrt_eddy_period (onr_tg) 1 Residual of inverse of the square root of eddy frequency
residual_dissipation_rate (onr_teps) 1 Residual of turbulence dissipation rate equation
residual_intermittency (onr_tintc) 1 Residual of the turbulence intermittency
residual_transition_re_theta (onr_treth) 1 Residual of the critical momentum thickness Reynolds number
residual_mesh_displacement (onr_mesh_disp) 3 Residual of mesh displacement equations
residual_viscoelastic_stress (onr_vest) 6 Residual of viscoelastic stress
error_estimator_volume (oee_vol) 1 Volume
error_estimator_covariant_metric (oee_covar) 6 Covariant metric
error_estimator_velocity (oee_vel) 3 Error estimate of momentum equations
error_estimator_pressure (oee_pres) 1 Error estimate of continuity equation
error_estimator_temperature (oee_temp) 1 Error estimate of temperature equation
error_estimator_species (oee_spec) nSpecs Error estimate of species equations
error_estimator_eddy_viscosity (oee_eddy) 1 Error estimate of turbulence equation
error_estimator_viscoelastic_stress (oee_vest) 6 Error estimate of viscoelastic equations
error_estimator_tau_velocity (oee_tau_vel) 1 Error estimate of least-squares metric for continuity equation
error_estimator_tau_pressure (oee_tau_pres) 1 Error estimate of least-squares metric for momentum equations
error_estimator_tau_temperature (oee_tau_temp) 1 Error estimate of least-squares metric for heat equation
error_estimator_tau_species (oee_tau_spec) nSpecs Error estimate of least-squares metric for species equations
error_estimator_tau_eddy_viscosity (oee_tau_eddy) 1 Error estimate of least-squares metric for turbulence equations
error_estimator_tau_viscoelastic_stress (oee_tau_vest) 6 Error estimate of least-squares metric for viscoelastic equations
time_ave_error_volume (oae_vol) 1 Time-averaged volume
time_ave_error_covariant_metric (oae_covar) 6 Time-averaged covariant metric
time_ave_error_velocity (oae_vel) 3 Time-averaged error estimate of momentum equations
time_ave_error_pressure (oae_pres) 1 Time-averaged error estimate of continuity equation
time_ave_error_temperature (oae_temp) 1 Time-averaged error estimate of temperature equation
time_ave_error_species (oae_spec) nSpecs Time-averaged error estimate of species equations
time_ave_error_eddy_viscosity (oae_eddy) 1 Time-averaged error estimate of turbulence equation
time_ave_error_viscoelastic_stress (oae_vist) 6 Time-averaged error estimate of viscoelastic stress
time_ave_error_tau_velocity (oae_tau_vel) 1 Time-averaged error estimate of least-squares metric for continuity equation
time_ave_error_tau_pressure (oae_tau_pres) 1 Time-averaged error estimate of least-squares metric for momentum equations
time_ave_error_tau_temperature (oae_tau_temp) 1 Time-averaged error estimate of least-squares metric for heat equation
time_ave_error_tau_species (oae_tau_spec) nSpecs Time-averaged error estimate of least-squares metric for species equations
time_ave_error_tau_eddy_viscosity (oae_tau_eddy) 1 Time-averaged error estimate of least-squares metric for turbulence equation
time_ave_error_tau_viscoelastic_stress (oae_tau_vest) 6 Time-averaged error estimate of least-squares metric for viscoelastic equations
time_ave_velocity (ota_vel) 3 Time-averaged velocity
time_ave_velocity_square (ota_vel_sqr) 6 Time-averaged velocity square
time_ave_velocity_regular (ota_vel_reg) 3 Time-averaged non-conservative velocity
time_ave_pressure (ota_pres) 1 Time-averaged pressure
time_ave_pressure_square (ota_pres_sqr) 1 Time-averaged square of pressure
time_ave_stress (ota_stress) 6 Time-averaged Cauchy stress
surface_area (osf_area) 1 Surface area
surface_mass_flux (osf_mass) 1 Surface mass flux
surface_momentum_flux (osf_mom) 3 Surface momentum flux
surface_traction (osf_trac) 3 Surface traction
surface_moment (osf_moment) 3 Surface moment
surface_convective_temperature_flux (osf_conv_temp) 1 Surface convective temperature flux
surface_convective_species_flux (osf_conv_spec) nSpecs Surface convective species flux
surface_species_flux (osf_spec_flux) nSpecs Surface species flux
radiation_area (orf_area) 1 Radiation area
radiation_heat_flux (orf_heat) 1 Radiation heat flux
radiation_mean_radiant_temperature (orf_mr_temp) 1 Radiation mean radiant temperature
solar_area (oqf_area) 1 Solar area
solar_heat_flux (oqf_heat) 1 Solar heat flux
where nSpecs is the number of species as given in the EQUATION command in the input file. The output fields for time_ave_velocity_square and time_ave_stress are xx, yy, zz, xy, yz, and zx. The output fields for gradient variables are, for example, ux, uy, uz, vx,....
running_average_output or ora (boolean)
If set, the nodal running average field output, as specified by the RUNNING_AVERAGE_OUTPUT command in the input file, is translated. This option is valid with translation formats table and stats.
running_average_output_vars or orav (string)
Comma-separated list of running_average_output variables to be translated. The list may include:
Table 3.
Variable (abbr) Fields Description
node_id (node) 1 User-given node number
coordinates (crd) 3 Nodal coordinates
velocity (vel) 3 Velocity vector
pressure (pres) 1 Pressure
temperature (temp) 1 Temperature
relative_humidity 1 Relative humidity
dewpoint_temperature 1 Dewpoint temperature
humidity_film_thickness 1 Humidity film thickness
field nFields Fields. For multi_field = levelset and multi_field = algebraic_eulerian, the field values correspond to volume fractions, and are named as volume_fraction-"fieldname". For multi_field = advective_diffusive, the field values correspond to mass fraction.
species (spec) nSpecs Species
eddy_viscosity (eddy) 1 Turbulence eddy viscosity
kinetic_energy (tke) 1 Turbulence kinetic energy
eddy_frequency (tomega) 1 Turbulence eddy frequency
sqrt_eddy_frequency (sqrt_tg) 1 Inverse of the square root of eddy frequency
dissipation_rate (teps) 1 Turbulence dissipation rate
intermittency (tintc) 1 Turbulence intermittency
transition_re_theta (treth) 1 Critical momentum thickness Reynolds number
mesh_displacement (mesh_disp) 3 Mesh displacement vector
viscoelastic_stress (vest) 6 Viscoelastic stresses
where nSpecs is the number of species as given in the EQUATION command in the input file. The problem must contain the requested variable in order for it to be translated. For example, the parameter turbulence in the EQUATION command must be set to a value other than none in order for eddy_viscosity to be available. The list of variables is sorted in the order given in the above table. If running_average_output_vars is set to _all, all of the available variables are translated.
time_average_output or ota (boolean)
If set, the time averaged nodal output, as requested by the TIME_AVERAGE_OUTPUT command in the input file, is translated. This option is valid with translation formats table and stats.
time_average_output_vars or otav (string)
Comma-separated list of time_average_output variables to be translated. The list may include:
Table 4.
Variable (abbr) Fields Description
node_id (node) 1 User-given node number
coordinates (crd) 3 Nodal coordinates
velocity (vel) 3 Time-averaged velocity vector
velocity_square (vel_sqr) 6 Time-averaged velocity square
velocity_regular (vel_reg) 3 Non-conservative time-averaged velocity
pressure (pres) 1 Time-averaged pressure
pressure_square (pres_sqr) 1 Time-averaged pressure square
stress 6 Time-averaged stress
The output fields for velocity_square and stress are xx, yy, zz, xy, yz and zx. The list of variables is sorted in the order given in the above table. If time_average_output_vars is set to _all, all available variables are translated.
derived_quantity_output or odq (boolean)
If set, the derived quantity nodal output, as requested by the DERIVED_QUANTITY_OUTPUT command in the input file, is translated. This option is valid with all translation formats except Actran.
derived_quantity_output_vars or odqv (string)
Comma-separated list of derived_quantity_output variables to be translated. The list may include:
Table 5.
Variable (abbr) Fields Description
node_id (node) 1 User-given node number
coordinates (crd) 3 Nodal coordinates
density (dens) 1 Density
viscosity (visc) 1 Viscosity
gravity (grav) 3 Gravity vector
specific_heat (cp) 1 Specific heat
conductivity (cond) 6 Conductivity
material_conductivity (mat_cond) 1 Material conductivity
heat_source (heat_src) 1 Heat source
diffusivity (diff) nSpecs Diffusivity for species equations
species_source (spec_src) nSpecs Species source
field_diffusivity (field_diff) 1 Field diffusivity
field_source (field_src) 1 Field source
turbulence_y (turb_y) 1 Turbulence distance to wall
des_length (deslen) 1 Length scale for Detached Eddy Simulation (DES) models
turbulence_intensity (turb_intens) 1 turbulence_intensity only for two-equation turbulence models
material_viscosity (mat_visc) 1 Molecular viscosity
cfl_number (cfl) 1 CFL number only for flow = compressible_navier_stokes.
total_temperature (tot_temp) 1 Total temperature only for flow = compressible_navier_stokes.
total_pressure (tot_pres) 1 Total pressure
where nSpecs is the number of species as given in the EQUATION command in the input file. The problem must contain the requested variable in order for it to be translated. For example, the parameter turbulence in the EQUATION command must be set to a value other than none in order for turbulence_y to be available. The list of variables is sorted in the order given in the above table. If derived_quantity_output_vars is set to _all, all of the available variables are translated.
surface_output or osf (boolean)
If set, the nodal values of surface output, as requested by the SURFACE_OUTPUT command in the input file, is translated. This option is valid with translation formats table, stats, and spectrum.
surface_output_sets or osfs (string)
Comma-separated list of surface_output sets. These are the user-given names specified as the user-given name of the SURFACE_OUTPUT commands in the input file. If surface_output_sets is set to _all, all output sets are translated.
surface_output_vars or osfv (string)
Comma-separated list of surface_output variables to be translated. The list may include:
Table 6.
Variable (abbr) Fields Description
node_id (node) 1 User-given node number
coordinates (crd) 3 Nodal coordinates
area 1 Nodal area
mass_flux (mass) 1 Mass flux
momentum_flux (mom) 3 Momentum flux
traction (trac) 3 Traction
moment 3 Moment of momentum
convective_temperature_flux (conv_temp) 1 Advection of temperature
heat_flux (heat) 1 Diffusive heat flux
field_flux (field) nFields Field flux. For multi_field = levelset, multi_field = algebraic_eulerian and multi_field = eulerian_eulerian, field_flux is named as field_flux_volume_fraction-"fieldname". For multi_field = advective_diffusive, field_flux is named as field_flux_mass_fraction-“fieldname”.
convective_field_flux (conv_field) nFields Convective field flux. For multi_field = levelset, multi_field = algebraic_eulerian and multi_field = eulerian_eulerian, the convective_field_flux is named as convective_flux_volume_fraction-“fieldname”. For multi_field = advective_diffusive, the convective_field_flux is named as convective_flux_mass_fraction-“fieldname”.
convective_species_flux (conv_spec) nSpecs Advection of species
species_flux (spec_flux) nSpecs Diffusive species flux
where nSpecs is the number of species given by the EQUATION command in the input file. The list of variables is sorted in the order given in the above table. If surface_output_vars is set to _all, all of the available variables are translated.
surface_integral_output or osi (boolean)
If set, the integrated values of surface output, as requested by the SURFACE_OUTPUT command in the input file, are translated. This option is valid with translation formats table and stats.
surface_integral_output_sets or osis (string)
Comma-separated list of surface_output sets. These are the user-given names specified as the user-given name of the SURFACE_OUTPUT commands in the input file. If surface_integral_output_sets is set to _all, all output sets are translated.
surface_integral_output_vars or osiv (string)
Comma-separated list of surface_integral_output variables to be translated. The list may include:
Table 7.
Variable (abbr) Fields Description
time_step (step) 1 Time step
time 1 Run time
area 1 Area
mass_flux (mass) 1 Integrated mass flux
momentum_flux (mom) 3 Integrated momentum flux
traction (trac) 3 Integrated Cauchy traction
moment 3 Integrated moment of momentum
convective_temperature_flux (conv_temp) 1 Integrated advection of temperature
heat_flux (heat) 1 Integrated diffusive heat flux
convective_species_flux (conv_spec) nSpecs Integrated advection of species
species_flux (spec_flux) nSpecs Integrated diffusive species flux
velocity (vel) 3 Integrated velocity
velocity_magnitude (vel_mag) 1 Integrated velocity magnitude
pressure (pres) 1 Integrated pressure
total_pressure (tot_pres) 1 Integrated total pressure
temperature (temp) 1 Integrated temperature
total_temperature (tot_temp) 1 Integrated total temperature
incident_radiation 1 Integrated incident radiation
relative_humidity 1 Integrated relative humidity
dewpoint_temperature 1 Integrated dewpoint temperature
humidity_film_thickness 1 Humidity film thickness
field_flux nFields Area averaged field flux values. For multi_field = levelset, multi_field = algebraic_eulerian and multi_field = eulerian_eulerian, field_flux is named as field_flux_volume_fraction-"fieldname". For multi_field = advective_diffusive, field_flux is named as field_flux_mass_fraction-“fieldname”.
convective_field_flux nFields Area averaged convective field flux values. For multi_field = levelset, multi_field = algebraic_eulerian and multi_field = eulerian_eulerian, the convective_field_flux is named as convective_flux_volume_fraction-“fieldname”. For multi_field = advective_diffusive, the convective_field_flux is named as convective_flux_mass_fraction-“fieldname”.
field nFields Area averaged field values. For multi_field = levelset, multi_field = algebraic_eulerian and multi_field = eulerian_eulerian, the field values correspond to volume fractions, and are named as volume_fraction-"fieldname". For multi_field = advective_diffusive, the field values correspond to mass fraction, and are named as mass_fraction-“fieldname”.
species (spec) nSpecs Integrated species
eddy_viscosity (eddy) 1 Integrated turbulence eddy viscosity
kinetic_energy (tke) 1 Integrated turbulence kinetic energy
eddy_frequency (tomega) 1 Integrated turbulence eddy frequency
sqrt_eddy_period (tg) 1 Inverse of the square root of eddy frequency
dissipation_rate (teps) 1 Integrated turbulence dissipation rate
intermittency (tintc) 1 Integrated turbulence intermittency
transition_re_theta (treth) 1 Integrated critical momentum thickness
surface_y_plus (yp) 1 Integrated y+ on turbulence walls
surface_film_coefficient (film) 1 Integrated conv. heat transfer coef. on turb. walls
wall_shear_stress (wall_shear) 3 Integrated wall shear stress
viscoelastic_stress (vest) 6 Integrated viscoelastic stress
ave_density (ave_dens) 1 Integrated average density
mesh_displacement (mesh_disp) 3 Integrated mesh displacement
mesh_velocity (mesh_vel) 3 Integrated mesh velocity
total_current 1 Integrated total current
mass_ave_velocity (mass_vel) 3 Mass averaged velocity
mass_ave_pressure (mass_pres) 1 Mass averaged pressure
mass_ave_total_pressure (mass_tot_pres) 1 Mass averaged total pressure
mass_ave_temperature (mass_temp) 1 Mass averaged temperature
mass_ave _total_temperature (mass_tot_temp) 1 Mass averaged total temperature
mass_ave_field (mass_field) nFields Mass average field values. For multi_field = levelset, multi_field = algebraic_eulerian and multi_field = eulerian_eulerian, the field values correspond to mass averaged volume fractions, and are named as mass_ave_volume_fraction-"fieldname”. For multi_field = advective_diffusive, the field values correspond to mass fraction, and are named as mass_ave_mass_fraction-"fieldname”.
mass_ave_species(mass_spec) nSpecs Mass averaged species
mass_ave_eddy_viscosity(mass_eddy) 1 Mass averaged eddy viscosity
mass_ave_kinetic_energy(mass_tke) 1 Mass averaged turbulence kinetic energy
mass_ave_eddy_frequency(mass_tomega) 1 Mass averaged turbulence eddy frequency
mass_ave_sqrt_eddy_period (mass_tg) 1 Mass averaged inverse of the square root of eddy frequency
mass_ave_dissipation_rate (mass_teps) 1 Mass averaged turbulence dissipation rate
mass_ave_intermittency (mass_tintc) 1 Mass averaged turbulence intermittency
mass_ave_transition_re_theta (mass_treth) 1 Mass averaged critical momentum thickness Reynolds number
mass_ave_viscoelastic_stress (mass_vest) 6 Mass averaged viscoelastic stress
mass_flux_ave_velocity (massf_vel) 3 Mass flux averaged velocity
mass_flux_ave_pressure (massf_pres) 1 Mass flux
mass_flux_ave_total_pressure (massf_tot_pres) 1 Mass flux averaged total pressure
mass_flux _ave_total_temperature (massf_tot_temp) 1 Mass flux averaged total temperature
mass_flux_ave_temperature (massf_temp) 1 Mass flux averaged temperature
mass_flux_ave_field (massf_field) nFields Mass flux averaged field values. For multi_field = levelset, multi_field = algebraic_eulerian and multi_field = eulerian_eulerian, the field values correspond to volume fractions, and are named as mass_flux_ave_volume_fraction-"fieldname”. For multi_field = advective_diffusive, the field values correspond to mass fractions, and are named as mass_flux_ave_mass_fraction-"fieldname”.
mass_flux_ave_species(massf_spec) nSpecs Mass flux averaged species
mass_flux_ave_eddy_viscosity(massf_eddy) 1 Mass flux averaged eddy viscosity
mass_flux_ave_kinetic_energy(massf_tke) 1 Mass flux averaged turbulence kinetic energy
mass_flux_ave_eddy_frequency(massf_tomega) 1 Mass flux averaged turbulence eddy frequency
mass_flux_ave_sqrt_eddy_period (massf_tg) 1 Mass flux averaged inverse of the square root of eddy frequency
mass_flux_ave_dissipation_rate (massf_teps) 1 Mass flux averaged turbulence dissipation rate
mass_flux_ave_intermittency (massf_tintc) 1 Mass flux averaged turbulence intermittency
mass_flux_ave_transition_re_theta (massf_treth) 1 Mass flux averaged critical momentum thickness Reynolds number
mass_flux_ave_viscoelastic_stress(massf_vest) 6 Mass flux averaged viscoelastic stress
bulk_temperature 1 Bulk temperature
partial_volume 1 Integrated
where nSpecs is the number of species given by the EQUATION command in the input file. The list of variables is sorted in the order given in the above table. If surface_integral_output_vars is set to _all, all of the available variables are translated.
surface_statistics_output or oss (boolean)
If set, the surface output statistics, as requested by the SURFACE_OUTPUT command in the input file, are translated. This option is valid with translation formats table and stats.
surface_statistics_output_sets or osss (string)
Comma-separated list of surface_output sets. These are the user-given names specified as the user-given name of the SURFACE_OUTPUT commands in the input file. If surface_statistics_output_sets is set to _all, all output sets are translated.
surface_statistics_output_vars or ossv (string)
Comma-separated list of surface_statistics_output variables to be translated. The list may include:
Table 8.
Variable (abbr) Fields Description
time_step (step) 1 Time step
time 1 Run time
min_velocity (min_vel) 3 Minimum of nodal velocity on the surface
min_pressure (min_pres) 1 Minimum of nodal pressure on the surface
min_total_pressure (min_tot_pres) 1 Minimum of nodal total pressure on the surface
min_temperature (min_temp) 1 Minimum of nodal temperature on the surface
min _total_temperature (min_tot_temp) 1 Minimum of nodal total temperature on the surface
min_incident_radiation 1 Minimum of nodal incident radiation on the surface
min_relative_humidity 1 Minimum of nodal relative humidity on the surface
min_dewpoint_temperature 1 Minimum of nodal dewpoint temperature on the surface
min_humidity_film_thickness 1 Minimum of nodal humidity film thickness on the surface
min_field (min_field) nFields Mimimum of nodal field values. For multi_field = levelset and multi_field = algebraic_eulerian, the field values correspond to volume fractions, and are named as volume_fraction-"fieldname". For multi_field = advective_diffusive, the field values correspond to mass fraction.
min_species (min_species) nSpecs Minimum of nodal species on the surface
min_eddy_viscosity (min_species) 1 Minimum of nodal turbulence eddy viscosity on the surface
min_kinetic_energy (min_tke) 1 Minimum of nodal turbulence kinetic energy on the surface
min_eddy_frequency (min_tomega) 1 Minimum of nodal turbulence eddy frequency on the surface
min_sqrt_eddy_period (min_tg) 1 Minimum of nodal inverse of square root of eddy frequency on the surface
min_dissipation_rate (min_teps) 1 Minimum of nodal turbulence dissipation rate
min_intermittency (min_tintc) 1 Minimum of nodal turbulence intermittency on the surface
min_transition_re_theta (min_treth) 1 Minimum of nodal critical momentum thickness Reynolds number on the surface
min_mesh_displacement (min_mesh_disp) 3 Minimum of nodal mesh displacement on the surface
min_mesh_velocity (min_mesh_vel) 3 Minimum of nodal mesh velocities on the surface
min_surface_y_plus (min_yp) 1 Minimum of nodal y plus on the surface
min_surface_film_coefficient (min_film) 1 Minimum of nodal surface film coefficient on the surface
min_wall_shear_stress (min_wall_shear_stress) 3 Minimum of nodal wall shear stress on the surface
min_density (min_dens) 1 Minimum of nodal density on the surface
min_viscoelastic_stress (min_vest) 6 Minimum of nodal viscoelastic stress on the surface
max_velocity (max_vel) 3 Maximum of nodal velocity on the surface
max_pressure (max_pres) 1 Maximum of nodal pressure on the surface
max_total_pressure (max_tot_pres) 1 Maximum of nodal total pressure on the surface
max_temperature (max_temp) 1 Maximum of nodal temperature on the surface
max _total_temperature (max_tot_temp) 1 Maximum of nodal total temperature on the surface
max_incident_radiation 1 Maximum of nodal incident radiation on the surface
max_relative_humidity 1 Maximum of nodal relative humidity on the surface
max_dewpoint_temperature 1 Maximum of nodal dewpoint temperature on the surface
max_humidity_film_thickness 1 Maximum of nodal humidity film thickness on the surface
max_field (max_field) nFields Maximum of nodal field values. For multi_field = levelset and multi_field =algebraic_eulerian, the field values correspond to volume fractions, and are named as volume_fraction-"fieldname". For multi_field = advective_diffusive, the field values correspond to mass fraction.
max_species (max_species) nSpecs Maximum of nodal species on the surface
max_eddy_viscosity (max_species) 1 Maximum of nodal turbulence eddy viscosity on the surface
max_kinetic_energy (max_tke) 1 Maximum of nodal turbulence kinetic energy on the surface
max_eddy_frequency (max_tomega) 1 Maximum of nodal turbulence eddy frequency on the surface
max_sqrt_eddy_period (max_tg) 1 Maximum of nodal inverse of square root of eddy frequency on the surface
max_dissipation_rate (max_teps) 1 Maximum of nodal turbulence dissipation rate
max_intermittency (max_tintc) 1 Maximum of nodal turbulence intermittency on the surface
max_transition_re_theta (min_treth) 1 Maximum of nodal critical momentum thickness Reynolds number on the surface
max_mesh_displacement (max_mesh_disp) 3 Maximum of nodal mesh displacement on the surface
max_mesh_velocity (max_mesh_vel) 3 Maximum of nodal mesh velocities on the surface
max_surface_y_plus (max_yp) 1 Maximum of nodal y plus on the surface
max_surface_film_coefficient (max_film) 1 Maximum of nodal surface film coefficient on the surface
max_wall_shear_stress (max_wall_shear) 3 Maximum of nodal wall shear stress
max_density (max_dens) 1 Maximum of nodal density on the surface
max_viscoelastic_stress (max_vest) 6 Maximum of nodal viscoelastic stress on the surface
std_velocity (std_vel) 3 Standard deviation of nodal velocity on the surface
std_pressure (std_pres) 1 Standard deviation of nodal pressure on the surface
std_total_pressure (std_tot_pres) 1 Standard deviation of nodal total pressure on the surface
std_temperature (std_temp) 1 Standard deviation of nodal temperature on the surface
std _total_temperature (std_tot_temp) 1 Standard deviation of nodal total temperature on the surface
std_incident_radiation 1 Standard deviation of nodal incident radiation on the surface
std_relative_humidity 1 Standard deviation of nodal relative humidity on the surface
std_dewpoint_temperature 1 Standard deviation of nodal dewpoint temperature on the surface
std_humidity_film_thickness 1 Standard deviation of nodal humidity film thickness on the surface
std_field (std_field) nFields Standard deviation of nodal field values. For multi_field = levelset and multi_field = algebraic_eulerian, the field values correspond to volume fractions, and are named as volume_fraction-"fieldname". For multi_field = advective_diffusive, the field values correspond to mass fraction.
std_species (std_species) nSpecs Standard deviation of nodal species on the surface
std_eddy_viscosity (std_species) 1 Standard deviation of nodal turbulence eddy viscosity on the surface
std_kinetic_energy (std_tke) 1 Standard deviation of nodal turbulence kinetic energy on the surface
std_eddy_frequency (std_tomega) 1 Standard deviation of nodal turbulence eddy frequency on the surface
std_sqrt_eddy_period (std_tg) 1 Standard deviation of nodal inverse of square root of eddy frequency on the surface
std_dissipation_rate (std_teps) 1 Standard deviation of nodal turbulence dissipation rate
std_intermittency (std_tintc) 1 Standard deviation of nodal turbulence intermittency on the surface
std_transition_re_theta (std_treth) 1 Standard deviation of nodal critical momentum thickness Reynolds number on the surface
std_mesh_displacement (std_mesh_disp) 3 Standard deviation of nodal mesh displacement on the surface
std_mesh_velocity (std_mesh_vel) 3 Standard deviation of nodal mesh velocities on the surface
std_surface_y_plus (std_yp) 1 Standard deviation of nodal y plus on the surface
std_surface_film_coefficient (std_film) 1 Standard deviation of nodal surface film coefficient on the surface
std_wall_shear_stress (std_wall_shear) 3 Standard deviation of nodal wall shear stress on the surface
std_density (std_dens) 1 Standard deviation of nodal density on the surface
std_viscoelastic_stress (std_vest) 6 Standard deviation of nodal viscoelastic stress on the surface
uni_velocity (uni_vel) 3 Uniformity index of velocity on the surface
uni_pressure (uni_pres) 1 Uniformity index of pressure on the surface
uni_total_pressure (uni_tot_pres) 1 Uniformity index of total pressure on the surface
uni_temperature (uni_temp) 1 Uniformity index of temperature on the surface
uni _total_temperature (uni_tot_temp) 1 Uniformity index of total temperature on the surface
uni_incident_radiation 1 Uniformity index of nodal incident radiation on the surface
uni_relative_humidity 1 Uniformity index of relative humidity on the surface
uni_dewpoint_temperature 1 Uniformity index of dewpoint temperature on the surface
uni_humidity_film_thickness 1 Uniformity index of humidity film thickness on the surface
uni_field (uni_field) nFields Uniformity index of nodal field values. For multi_field = levelset and multi_field = algebraic_eulerian, the field values correspond to volume fractions, and are named as volume_fraction-"fieldname". For multi_field = advective_diffusive, the field values correspond to mass fraction.
uni_species (uni_species) nSpecs Uniformity index of species on the surface
uni_kinetic_energy (uni_tke) 1 Uniformity index of turbulence kinetic energy on the surface
uni_eddy_frequency (uni_tomega) 1 Uniformity index of turbulence eddy frequency on the surface
uni_sqrt_eddy_period (uni_tg) 1 Uniformity index of inverse of square root of eddy frequency on the surface
uni_dissipation_rate (uni_teps) 1 Uniformity index of turbulence dissipation rate on the surface
uni_intermittency (uni_tintc) 1 Uniformity index of nodal turbulence intermittency on the surface
uni_transition_re_theta (uni_treth) 1 Uniformity index of nodal critical momentum thickness Reynolds number on the surface
uni_mesh_displacement (uni_mesh_disp) 3 Uniformity index of mesh displacement on the surface
uni_mesh_velocity (uni_mesh_vel) 3 Uniformity index of mesh velocity on the surface
uni_surface_y_plus (uni_yp) 1 Uniformity index of y plus on the surface
uni_surface_film_coefficient (uni_film) 1 Uniformity index of surface film coefficient on the surface
uni_wall_shear_stress (uni_wall_shear) 3 Uniformity index of wall shear stress on the surface
uni_density (uni_dens) 1 Uniformity index of density on the surface
uni_viscoelastic_stress (uni_vest) 6 Uniformity index of viscoelastic stress on the surface
where nSpecs is the number of species given by the EQUATION command in the input file. The list of variables is sorted in the order given in the above table. If surface_statistics_output_vars is set to _all, all of the available variables are translated.
output_radiation_surface or orf (boolean)
If set, the nodal values of radiation surfaces, as requested by the RADIATION_SURFACE command in the input file, is translated. At least one of the two nodal output parameters of the RADIATION_SURFACE command must be set in order for any data be translated. Nodal surface output is available only for radiation surfaces of type wall. This option is valid with translation formats table and stats.
output_radiation_surface_sets or orfs (string)
Comma-separated list of RADIATION_SURFACE sets. These are the user-given names specified as the user-given name of the RADIATION_SURFACE commands in the input file. If output_radiation_surface_sets is set to _all, all output sets are translated.
output_radiation_surface_vars or orfv (string)
Comma-separated list of output_radiation_surface variables to be translated. The list may include:
Table 9.
Variable (abbr) Fields Description
node_id (node) 1 User-given node number
coordinates (crd) 3 Nodal coordinates
area 1 Nodal area
heat_flux (heat) 1 Radiation heat flux
mean_radiant_temperature (mr_temp) 1 Mean radiant temperature
The list of variables is sorted in the order given in the above table. If output_radiation_surface_vars is set to _all, all of the available variables are translated.
output_radiation_integral or ori (boolean)
If set, the integrated values of radiation surface, as requested by the RADIATION_SURFACE command in the input file, are translated. At least one of the four output parameters of the RADIATION_SURFACE command must be set in order for any data be translated. This option is valid with translation formats table and stats.
output_radiation_integral_sets or oris (string)
Comma-separated list of output_radiation_integral sets. These are the user-given names specified as the user-given name of the RADIATION_SURFACE commands in the input file. If output_radiation_integral_sets is set to _all, all output sets are translated.
output_radiation_integral_vars or oriv (string)
Comma-separated list of output_radiation_integral variables to be translated. The list may include:
Table 10.
Variable (abbr) Fields Description
time_step (step) 1 Time step
time 1 Run time
area 1 Integrated area
heat_flux (heat) 1 Integrated radiation heat flux
temperature (temp) 1 Integrated temperature (fourth-power weighting)
mean_radiant_temperature (mr_temp) 1 Integrated mean radiant temperature (fourth-power weighting)
The list of variables is sorted in the order given in the above table. If output_radiation_integral_vars is set to _all, all of the available variables are translated.
output_solar_radiation_surface or oqf (boolean)
If set, the nodal values of solar radiation surfaces, as defined by the SOLAR_RADIATION_SURFACE command in the input file, is translated. There are no output parameters in the SOLAR_RADIATION_SURFACE. Instead solar radiation fluxes of all solved time steps are available for translation. This option is valid with translation formats table and stats.
output_solar_radiation_surface_sets or oqfs (string)
Comma-separated list of SOLAR_RADIATION_SURFACE sets. These are the user-given names specified as the user-given name of the SOLAR_RADIATION_SURFACE commands in the input file. If output_solar_radiation_sets is set to _all, all output sets are translated.
output_solar_radiation_surface_vars or oqfv (string)
Comma-separated list of output_solar_radiation_surface variables to be translated. The list may include:
Table 11.
Variable (abbr) Fields Description
node_id (node) 1 User-given node number
coordinates (crd) 3 Nodal coordinates
area 1 Nodal area
heat_flux (heat) 1 Radiation heat flux
The list of variables is sorted in the order given in the above table. If output_solar_radiation_surface_vars is set to _all, all of the available variables are translated.
output_solar_radiation_integral or oqi (boolean)
If set, the integrated values of radiation surface, as defined by the SOLAR_RADIATION_SURFACE command in the input file, are translated. There are no output parameters in the SOLAR_RADIATION_SURFACE. Instead solar radiation fluxes of all solved time steps are available for translation. This option is valid with translation formats table and stats.
output_solar_radiation_integral_sets or oqis (string)
Comma-separated list of output_solar_radiation_integral sets. These are the user-given names specified as the user-given name of the SOLAR_RADIATION_SURFACE commands in the input file. Ifoutput_solar_radiation_integral_sets is set to _all, all output sets are translated.
output_solar_radiation_integral_vars or oqiv (string)
Comma-separated list of output_solar_radiation_integral variables to be translated. The list may include:
Table 12.
Variable (abbr) Fields Description
time_step (step) 1 Time step
time 1 Run time
area 1 Integrated area
heat_flux (heat) 1 Integrated radiation heat flux
The list of variables is sorted in the order given in the above table. If output_solar_radiation_integral_vars is set to _all, all of the available variables are translated.
element_integral_output or oei (boolean)
If set, the integrated values of element output, as requested by the ELEMENT_OUTPUT command in the input file, is translated. This option is valid with translation formats table and stats.
element_integral_output_sets or oeis (string)
Comma-separated list of element_output output sets. These are the user-given names specified as the user-given name of the ELEMENT_OUTPUT commands in the input file. If element_integral_output_sets is set to _all, all output sets are translated.
element_integral_output_vars or oeiv (string)
Comma-separated list of element_integral_output variables to be translated. The list may include:
Table 13.
Variable (abbr) Fields Description
time_step (node) 1 Time step
time 1 Run time
volume (vol) 1 Volume
total_mass (mass) 1 Total mass
velocity (vel) 3 Integrated velocity
acceleration (accel) 3 Integrated acceleration
pressure (pres) 1 Integrated pressure
total_pressure (tot_pres) 1 Integrated total pressure
temperature (temp) 1 Integrated temperature
total_ temperature (tot_temp) 1 Integrated total temperature
viscoelastic_stress (vest) 6 Integrated viscoelastic stresses
species (spec) nSpecs Integrated species
field nFields Integrated field values. For multi_field = levelset and multi_field = algebraic_eulerian, the field values correspond to volume fractions, and are named as volume_fraction-“fieldname”.
eddy_viscosity (eddy) 1 Integrated turbulence eddy viscosity
kinetic_energy (tke) 1 Integrated turbulence kinetic energy
velocity scale (tvel) 1 Integrated velocity scale
dissipation_rate (teps) 1 Integrated turbulence dissipation rate
eddy_frequency (tomega) 1 Integrated turbulence eddy frequency
eddy_time (ttau) 1 Integrated eddy time
sqrt_eddy_period (tg) 1 Integrated inverse of square root of eddy frequency
intermittency (tintc) 1 Integrated turbulence intermittency
transition_re_theta (treth) 1 Integrated critical momentum thickness Reynolds number
mesh_displacement (mesh_disp) 3 Integrated mesh displacement
mesh_velocity (mesh_vel) 3 Integrated mesh velocity
grad_velocity (grad_vel) 9 Integrated gradient of velocity
grad_pressure (grad_pres) 3 Integrated gradient of pressure
grad_temperature (grad_temp) 3 Integrated gradient of temperature
grad_species (grad_spec) 3*nSpecs Integrated gradient of species
grad_field (grad_field) 1 Integrated gradient of field
stress 6 Integrated Cauchy stress
heat_flux (heat) 3 Integrated diffusive heat flux
species_flux (spec_flux) 3*nSpecs Integrated diffusive species flux
user_output (udf) nUserOuts Integrated user output
center_of_gravity (cg) 3 Integrated center of gravity
relative_humidity (rel_hum) 1 Integrated relative humidity
dewpoint_temperature (dewpoint_temp) 1 Integrated dewpoint temperature
electric_potential 1 Integrated electric potential
mass_ave_momentum (aveMom) 3 Integrated mass-averaged momentum
mass_ave_pressure (mass_pres) 1 Integrated mass averaged pressure
mass_ave_total_pressure (mass_tot_pres) 1 Integrated mass averaged total pressure
mass_ave_temperature 1 Integrated mass averaged temperature
mass_ave_total_temperature (mass_tot_temp) 1 Integrated mass averaged total temperature
mass_ave_enthalpy (mass_enpy) 1 Integrated mass averaged enthalpy
mass_ave_viscoelastic_stress (mass_vest) 6 Integrated mass averaged viscoelastic stresses
mass_ave_species nSpecs Integrated mass averaged species
mass_ave_field (mass_field) nFields Integrated mass averaged field values. For multi_field = levelset and multi_field = algebraic_eulerian, the field values correspond to mass averaged volume fractions, and are named as mass_ave_volume_fraction-“fieldname”.
mass_ave_eddy_viscosity (mass_eddy) 1 Integrated mass averaged turbulence eddy viscosity
mass_ave_kinetic_energy (mass_tke) 1 Integrated mass averaged turbulence kinetic energy
mass_ave_dissipation_rate (mass_teps) 1 Integrated mass averaged turbulence dissipation rate
mass_ave_eddy_frequency (mass_tomega) 1 Integrated mass averaged eddy frequency
mass_ave_eddy_time (mass_ttau) 1 Integrated mass averaged eddy time
mass_ave_sqrt_eddy_period (mss_tg) 1 Integrated mass averaged inverse of square root of eddy frequency
mass_ave_transition_re_theta (mass_treth) 1 Integrated mass averaged critical momentum thickness Reynolds number
mass_ave_intermittency (mass_tintc) 1 Integrated mass averaged turbulence intermittency
mass_ave_field (mass_field) nFields Integrated mass averaged field
mass_ave_relative_humidity (ave_rel_hum) 1 Integrated mass averaged relative humidity
mass_ave_dewpoint_temperature (ave_dewpoint_temp) 1 Integrated mass averaged dewpont temperature
where nSpecs is the number of species given by the EQUATION command and nUsers is the number of user variables given by the ELEMENT_OUTPUT command in the input file. The output fields for stress are xx, yy, zz, xy, yz, and zx. The output fields for gradient variables are, for example, ux, uy, uz, vx,.... The list of variables is sorted in the order given in the above table. If element_integral_output_vars is set to _all, all of the available variables are translated.
element_statistics_output or oes (boolean)
If set, the element output statistics, as requested by the ELEMENT_OUTPUT command in the input file, are translated. This option is valid with translation formats table and stats.
element_statistics_output_sets or oess (string)
Comma-separated list of element_output sets. These are the user-given names specified as the user-given name of the ELEMENT_OUTPUT commands in the input file. If element_statistics_output_sets is set to _all, all output sets are translated.
element_statistics_output_vars or oesv (string)
Comma-separated list of element_statistics_output variables to be translated. The list may include:
Table 14.
Variable (abbr) Fields Description
time_step (step) 1 Time step
time 1 Run time
min_velocity (min_vel) 3 Minimum velocity in the element set
min_acceleration (min_accel) 3 Minimum acceleration in the element set
min_pressure (min_pres) 1 Minimum pressure in the element set
min_total_pressure (min_tot_pres) 1 Minimum total pressure in the element set
min_temperature (min_temp) 1 Minimum temperature in the element set
min_total_temperature (min_tot_temp) 1 Minimum total temperature in the element set
min_relative_humidity (min_rel_hum) 1 Minimum relative humidity in the element set
min_dewpoint_temperature (min_dewpoint_temp) 1 Minimum dewpoint temperature in the element set
min_field (min_field) nFields Mimimum in the element set. For multi_field = levelset and multi_field = algebraic_eulerian, the field values correspond to volume fractions, and are named as volume_fraction-“fieldname”. For multi_field = advective_diffusive, the field values correspond to mass fraction.
min_species (min_spec) nSpecs Minimum species in the element set
min_eddy_viscosity (min_eddy) 1 Minimum turbulence eddy viscosity in the element set
min_dissipation_rate (min_teps) 1 Minimum turbulence dissipation rate in the element set
min_kinetic_energy (min_tke) 1 Minimum turbulence kinetic energy in the element set
min_eddy_frequency (min_tomega) 1 Minimum turbulence eddy frequency in the element set
min_eddy_time (min_ttau) 1 Minimum turbulence eddy time in the element set
min_sqrt_eddy_period (min_tg) 1 Minimum of inverse of square root of eddy frequency in the element set
min_intermittency (min_tintc) 1 Minimum turbulence intermittency in the element set
min_transition_re_theta (min_treth) 1 Minimum critical momentum thicnkess Reynolds number in the element set
min_mesh_displacement (min_mesh_disp) 3 Minimum mesh displacement in the element set
min_mesh_velocity (min_mesh_vel) 3 Minimum mesh velocity in the element set
min_viscoelastic_stress (min_vest) 6 Minimum viscoelastic stress in the element set
max_velocity (max_vel) 3 Maximum velocity in the element set
max_acceleration (max_accel) 3 Maximum acceleration in the element set
max_pressure (max_pres) 1 Maximum pressure in the element set
max_total_pressure (max_tot_pres) 1 Maximum total pressure in the element set
max_temperature (max_temp) 1 Maximum temperature in the element set
max_total_temperature (max_tot_temp) 1 Maximum total temperature in the element set
max_relative_humidity (max_rel_hum) 1 Maximum relative humidity in the element set
max_dewpoint_temperature (max_dewpoint_temp) 1 Maximum dewpoint temperature in the element set
max_field (max_field) nFields Maximum in the element set. For multi_field = levelset and multi_field = algebraic_eulerian, the field values correspond to volume fractions, and are named as volume_fraction-“fieldname”. For multi_field = advective_diffusive, the field values correspond to mass fraction.
max_species (max_spec) nSpecs Maximum species in the element set
max_eddy_viscosity (max_eddy) 1 Maximum turbulence eddy viscosity in the element set
max_kinetic_energy (max_tke) 1 Maximum turbulence kinetic energy in the element set
max_eddy_frequency (max_tomega) 1 Maximum turbulence eddy frequency in the element set
max_eddy_time (max_ttau) 1 Maximum turbulence eddy time in the element set
max_sqrt_eddy_period (max_tg) 1 Maximum of inverse of square root of eddy frequency in the element set
max_dissipation_rate (max_teps) 1 Maximum turbulence dissipation rate in the element set
max_intermittency (max_tintc) 1 Maximum turbulence intermittency in the element set set
max_transition_re_theta (max_treth) 1 Maximum critical momentum thicnkess Reynolds number in the element set
max_mesh_displacement (max_mesh_disp) 3 Maximum mesh displacement in the element set
max_mesh_velocity (max_mesh_vel) 3 Maximum mesh velocity in the element set
max_viscoelastic_stress (max_vest) 6 Maximum viscoelastic stress in the element set
std_velocity (std_vel) 3 Std deviation velocity in the element set
std_acceleration (std_accel) 3 Std deviation acceleration in the element set
std_pressure (std_pres) 1 Std deviation pressure in the element set
std_total_pressure (std_tot_pres) 1 Std deviation total pressure in the element set
std_temperature (std_temp) 1 Std deviation temperature in the element set
std_total_temperature (std_tot_temp) 1 Std deviation total temperature in the element set
std_relative_humidity (std_rel_hum) 1 Standard deviation of relative humidity in the element set
std_dewpoint_temperature (std_dewpoint_temp) 1 Standard deviation of dewpoint temperature in the element set
std_field (std_field) nFields Standard deviation of field values in the element set. For multi_field = levelset and multi_field = algebraic_eulerian, the field values correspond to volume fractions, and are named as volume_fraction-“fieldname”. For multi_field = advective_diffusive, the field values correspond to mass fraction.
std_species (std_spec) nSpecs Standard deviation of species in the element set
std_eddy_viscosity (std_eddy) 1 Std deviation turbulence eddy viscosity in the element set
std_kinetic_energy (std_tke) 1 Std deviation turbulence kinetic energy in the element set
std_eddy_frequency (std_tomega) 1 Std deviation turbulence eddy frequency in the element set
std_eddy_time (std_ttau) 1 Std deviation turbulence eddy time in the element set
std_sqrt_eddy_period (std_tg) 1 Standard deviation of inverse of square root of eddy frequency in the element set
std_dissipation_rate (std_teps) 1 Std deviation turbulence dissipation rate in the element set
std_intermittency (std_tintc) 1 Standard deviation of turbulence intermittency in the element set
std_transition_re_theta (std_treth) 1 Standard deviation of critical momentum thickness Reynolds number in the element set
std_mesh_displacement (std_mesh_disp) 3 Standard deviation of mesh displacement in the element set
std_mesh_velocity (std_mesh_vel) 3 Standard deviation of mesh velocities in the element set
std_viscoelastic_stress (std_vest) 6 Standard deviation of viscoelastic stress in the element set
where nSpecs is the number of species given by the EQUATION command in the input file. The list of variables is sorted in the order given in the table above. If element_statistics_output_vars is set to _all, all of the available variables are translated.
time_history_output or oth (boolean)
If set, the time history output, as requested by the TIME_HISTORY_OUTPUT command in the input file, is translated. This option is valid with translation formats table and stats.
time_history_output_sets or oths (string)
Comma-separated list of time_history_output sets. These are the user-given names specified as the user-given name of the TIME_HISTORY_OUTPUT commands in the input file. If time_history_output_sets is set to _all, all output sets are translated.
time_history_output_vars or othv (string)
Comma-separated list of time_history_output variables to be translated. The list may include:
Table 15.
Variable (abbr) Fields Description
time_step (step) 1 Time step
time 1 Run time
velocity (vel) 3 Velocity
pressure (pres) 1 Pressure
temperature (temp) 1 Temperature
relative_humidity 1 Relative humidity
dewpoint_temperature 1 Dewpoint temperature
humidity_film_thickness 1 Humidity film thickness
field nFields Field values. For multi_field = levelset and multi_field = algebraic_eulerian, the field values correspond to volume fractions, and are named as volume_fraction-"fieldname". For multi_field = advective_diffusive, the field values correspond to mass fraction.
species (spec) nSpecs Species
eddy_viscosity (eddy) 1 Turbulence eddy viscosity
kinetic_energy (tke) 1 Turbulence kinetic energy
eddy_frequency (tomega) 1 Turbulence eddy frequency
sqrt_eddy_period (tg) 1 Inverse of square root of eddy frequency
dissipation_rate (teps) 1 Turbulence dissipation rate
intermittency (tintc) 1 Turbulence intermittency
transition_re_theta (treth) 1 Critical momentum thickness Reynolds number
mesh_displacement (mesh_disp) 3 Mesh displacement vector
mesh_velocity (mesh_vel) 3 Mesh velocity vector
viscoelastic_stress (vest) 6 Viscoelastic stress
where nSpecs is the number of species as given by the EQUATION command in the input file. The list of variables is sorted in the order given in the above table. If time_history_output_vars is set to _all, all of the available variables are translated.
time_history_output_nodes or othn (string)
Comma-separated list of time_history_output nodes to be translated. The format of this option is the same as the time_steps options given above.
fan_component_output or ofc (boolean)
If set, the integrated values of fan component, as specified by the FAN_COMPONENT command in the input file, are translated. This option is valid with translation formats table and stats.
fan_component_output_set or ofcs (string)
Comma-separated list of fan_component sets. These are the user-given names specified as the user-given name of the FAN_COMPONENT commands in the input file. If fan_component_output_set is set to _all, all fan components are translated.
fan_component_output_vars or ofcv (string)
Comma-separated list of fan_component variables to be translated. The list may include:
Table 16.
Variable (abbr) Fields Description
time_step (step) 1 Time step
time 1 Run time
area 1 Integrated area
mass_flux (mass) 1 Integrated mass flux
The list of variables is sorted in the order given in the above table. If fan_component_output_vars is set to _all, all of the available variables are translated.
heat_exchanger_component_output or ohc (boolean)
If set, the integrated values of heat exchanger component, as specified by the HEAT_EXCHANGER_COMPONENT command in the input file, are translated. This option is valid with translation formats table and stats.
heat_exchanger_component_output_set or ohcs (string)
Comma-separated list of heat_exchanger_component sets. These are the user-given names specified as the user-given name of the HEAT_EXCHANGER_COMPONENT commands in the input file. If heat_exchanger_component_output_set is set to _all, all heat exchanger components are translated.
heat_exchanger_component_output_vars or ohcv (string)
Comma-separated list of heat_exchanger_component variables to be translated. The list may include:
Table 17.
Variable (abbr) Fields Description
time_step (step) 1 Time step
time 1 Run time
area 1 Integrated area
mass_flux (mass) 1 Integrated mass flux
air_temperature (temp) 1 Area average of temperature
coolant_temperature (cool_temp) 1 Coolant top water temperature
coolant_heat (cool_heat) 1 Coolant heat reject
upstream_temperature 1 Upstream temperature
The list of variables is sorted in the order given in the above table. If heat_exchanger_component_output_vars is set to _all, all of the available variables are translated.
aero_acoustic_output or oaa (boolean)
If set, the computational aero-acoustic data at the sample points, as specified by the CAA_OUTPUT command in the input file, is translated. This option is valid with translation formats table, stats, and -actran.
aero_acoustic_output_sets or oaas (string)
Comma-separated list of aero_acoustic_output sets to be translated. Each item in the list corresponds to the qualifier of a CAA_OUTPUT command in the input file.
aero_acoustic_output_vars or oaav (string)
Comma-separated list of aero_acoustic_output variables to be translated. See the CAA_OUTPUT command for definitions of the variables. The list may include:
Table 18.
Variable (abbr) Fields Description
node_id (node) 1 User-given sample point number
coordinates (crd) 3 Sample point coordinates
velocity (vel) 3 Velocity
pressure (pres) 1 Pressure
momentum_stress (mom_stress) 6 Momentum stress tensor
total_stress (tot_stress) 6 Total stress tensor
lighthill_stress 6 Lighthill stress tensor
reduced_lighthill_stress 6 Reduced Lighthill stress tensor
div_momentum_stress (div_mom_stress) 3 Divergence of momentum stress
div_total_stress (div_tot_stress) 3 Divergence of total stress
div_lighthill_stress 3 Divergence of Lighthill stress
div_reduced_lighthill_stress 3 Divergence of reduced Lighthill stress
normal_momentum_flux (norm_mom_flux) 1 Normal component of momentum flux
normal_momentum_flux_rate (norm_mom_flux_rate) 1 Normal component of momentum flux rate
normal_div_total_stress (norm_div_tot_stress) 1 Normal component of divergence of total stress
fwh_monopole 1 fwh monopole
fwh_dipole 1 fwh dipole
ei_na 1 Nodal element volume
ei_na_velocity (ei_na_vel) 3 Element-integrated velocity
ei_na_pressure (ei_na_pres) 1 Element-integrated pressure
ei_na_momentum_stress (ei_na_mom_stress) 6 Element-integrated momentum stress tensor
ei_na_total_stress (ei_na_tot_stress) 6 Element-integrated total stress tensor
ei_na_lighthill_stress 6 Element-integrated Lighthill stress tensor
ei_na_reduced_lighthill_stress 6 Element-integrated reduced Lighthill stress tensor
ei_na_div_momentum_stress (ei_na_div_mom_stress) 3 Element-integrated divergence of momentum stress
ei_na_div_total_stress (ei_na_div_tot_stress) 3 Element-integrated divergence of total stress
ei_na_div_lighthill_stress 3 Element-integrated divergence of Lighthill stress
ei_na_div_reduced_lighthill_stress 3 Element-integrated divergence of reduced Lighthill stress
ei_gna_div_momentum_stress (ei_gna_div_mom_stress) 1 Element-integrated gradient of shape function contracted with divergence of momentum stress
ei_gna_div_total_stress (ei_gna_div_tot_stress) 1 Element-integrated gradient of shape function contracted with divergence of total stress
ei_gna_div_lighthill_stress 1 Element-integrated gradient of shape function contracted with divergence of Lighthill stress
ei_gna_div_reduced_lighthill_stress 1 Element-integrated gradient of shape function contracted with divergence of reduced Lighthill stress
si_na 1 Nodal surface area
si_na_normal (si_na_norm) 3 Surface-integrated normal
si_na_normal_pressure (si_na_norm_pres) 3 Surface-integrated normal pressure
si_na_normal_momentum_flux (si_na_norm_mom_flux) 1 Surface-integrated normal momentum flux
si_na_normal_momentum_flux_rate (si_na_norm_mom_flux_rate) 1 Surface-integrated normal momentum flux rate
si_na_normal_div_total_stress (si_na_norm_div_tot_stress) 1 Surface-integrated normal divergence of total stress
si_na_fwh_monopole 1 Surface-integrated FWH monopole
si_na_fwh_dipole 1 Surface-integrated FWH dipole
si_na_pressure 1 Surface-integrated FWH pressure
The output fields for stress quantities are xx, yy, zz, xy, yz, and zx. The list of variables is sorted in the order given in the above table. If aero_acoustic_output_vars is set to _all, all of the available variables are translated.
output_nodal_residual or onr (boolean)
If set, the nodal residual, as requested by the NODAL_RESIDUAL_OUTPUT command in the input file, is translated. This option is valid with translation formats table, stats, FieldView and H3D.
output_nodal_residual_vars or onrv (string)
Comma-separated list of output_nodal_residual variables to be translated. The list may include:
Table 19.
Variable (abbr) Fields Description
node_id (node) 1 User-given node number
coordinates (crd) 3 Nodal coordinates
velocity (vel) 3 Momentum equation residual
pressure (pres) 1 Continuity equation residual
temperature (temp) 1 Heat equation residual
species (spec) nSpecs Species equation residual
eddy_viscosity (eddy) 1 Turbulence equation residual
kinetic_energy (tke) 1 Kinetic energy residual
eddy_frequency (tomega) 1 Eddy frequency residual
sqrt_eddy_period (tg) 1 Inverse of square root of eddy frequency residual
dissipation_rate (teps) 1 Turbulence dissipation rate
mesh_displacement (mesh_disp) 3 Mesh displacement equation residual
viscoelastic_stress (vest) 6 Viscoelastic stress residual
where nSpecs is the number of species given by the EQUATION command in the input file.
output_error_estimator or oee (boolean)
If set, the error estimate, as requested by the ERROR_ESTIMATOR_OUTPUT command in the input file, is translated. This option is valid with translation formats table, stats, and FieldView.
output_error_estimator_vars or oeev (string)
Comma-separated list of output_error_estimator variables to be translated. The list may include:
Table 20.
Variable (abbr) Fields Description
node_id (node) 1 User-given node number
coordinates (crd) 3 Nodal coordinates
volume (vol) 1 Volume
covariant_metric (covar) 6 Covariant metric
velocity (vel) 3 Error estimate of momentum equation
pressure (pres) 1 Error estimate of continuity equation
temperature (temp) 1 Error estimate of heat equation
species (spec) nSpecs Error estimate of species equations
eddy_viscosity (eddy) 1 Error estimate of turbulence equation
viscoelastic_stress (vest) 6 Error estimate of viscoelastic stress
tau_velocity (tau_vel) 1 Error estimate of least-squares metric for continuity equation
tau_pressure (tau_pres) 1 Error estimate of least-squares metric for momentum equations
tau_temperature (tau_temp) 1 Error estimate of least-squares metric for heat equation
tau_species (tau_spec) nSpecs Error estimate of least-squares metric for species equations
tau_eddy_viscosity (tau_eddy) 1 Error estimate of least-squares metric for turbulence equations
tau_viscoelastic_stress (tau_vest) 6 Error estimate of least-squares metric for viscoelastic equations
where nSpecs is the number of species given by the EQUATION command in the input file.
time_average_error_estimator or oae (boolean)
If set, the aaa estimate, as requested by the ERROR_ESTIMATOR_OUTPUT command in the input file, is translated. This option is valid with translation formats table, stats, and FieldView.
time_average_error_estimator_vars or oaev (string)
Comma-separated list of time_average_error_estimator variables to be translated. The list may include:
Table 21.
Variable (abbr) Fields Description
node_id (node) 1 User-given node number
coordinate (crd) 3 Nodal coordinates
volume (vol) 1 Time-averaged volume
covariant_metric (covar) 6 Time-averaged covariant metric
velocity (vel) 3 Time-averaged error estimate of momentum equation
pressure (pres) 1 Time-averaged error estimate of continuity equation
temperature (temp) 1 Time-averaged error estimate of heat equation
species (spec) nSpecs Time-averaged error estimate of species equations
eddy_viscosity (eddy) 1 Time-averaged error estimate of turbulence equation
viscoelastic_stress (vest) 6 Time-averaged error estimate of viscoelastic equations
tau_velocity (tau_vel) 1 Time-averaged error estimate of least-squares metric for continuity equation
tau_pressure (tau_pres) 1 Time-averaged error estimate of least-squares metric for momentum equations
tau_temperature (tau_temp) 1 Time-averaged error estimate of least-squares metric for heat equation
tau_species (tau_spec) nSpecs Time-averaged error estimate of least-squares metric for species equations
tau_eddy_viscosity (tau_eddy) 1 Time-averaged error estimate of least-squares metric for turbulence equations
tau_viscoleastic_stress (tau_vest) 6 Time-averaged error estimate of least-squares metric for viscoelastic equations
where nSpecs is the number of species given by the EQUATION command in the input file.
moment_center or mc (string)
Comma-separated list of coordinates that represent the point about which moments should be computed for surface nodal outputs and surface integrated outputs. This option provides the ability to transform the moments computed by AcuSolve from the global origin to any location in space.
moment_center_mesh_motion or mcmm (string)
Name of the mesh motion command used to transform the moment_center for moving mesh applications.
flexible_body_output or ofb (boolean)
If set, the values describing the state of a flexible body, as specified by the FLEXIBLE_BODY command in the input file, are translated. This option is valid with the translation formats table and stats.
flexible_body_output_sets or ofbs (string)
Comma-separated list of flexible body names. These are the (string) specified as the user-given name of the FLEXIBLE_BODY commands in the input file. If flexible_body_output_sets is set to _all, all flexible bodies are translated.
flexible_body_output_vars or ofbv (string)
Comma-separated list of FLEXIBLE_BODY variables to be translated. The list may include:
Table 22.
Variable (abbr) Fields Description
time_step (step) 1 Time step
time 1 Run time
displacement (disp) 1 Modal displacement of the flexible body
velocity (vel) 1 Modal velocity of the flexible body
internal_force 1 Modal forces applied to the flexible body that were extracted from the fluid loading
external_force 1 Modal forces applied to the flexible body as an external force
The list of variables is sorted in the order given in the table above. If flexible_body_output_vars is set to _all, all of the available variables are translated. When the translate_to option is set to table, the results from each mode specified for the flexible body are written to a separate file.
line_buff or lbuff (boolean)
Flush standard output after each line of output.
verbose or v (integer)
Set the verbose level for printing information to the screen. Each higher verbose level prints more information. If verbose is set to 0 (or less), only warning and error messages are printed. If verbose is set to 1, basic processing information is printed in addition to warning and error messages. This level is recommended. verbose levels greater than 1 provide information useful only for debugging.

Examples

To translate nodal output results of the channel problem in order to visualize with FieldView, issue the command:
acuTrans -pb channel -to fieldview -out -ts 5
which creates the file channel_step000005.fv suitable for visualization by FieldView. Alternatively place the option(s) in the configuration file Acusim.cnf as follows:
problem= channel
translate_to= fieldview
nodal_output= TRUE
time_steps= 5
and issue the command:
acuTrans
Due to restrictions in the Unix shell, any option value containing spaces must be enclosed in a pair of single or double quotes. If a list of strings is requested, such as in the case of surface_output_sets option, enclose the names in pairs of single or double quotes, namely:
acuTrans -osf -osfs "surface one","surface two"
or alternatively:
acuTrans -osf -osfs "surface one,surface two"

This precludes having commas in the surface names.

AcuSolve is capable of generating 19 types of results. Each type may be translated separately. The following table lists the solver commands needed to request AcuSolve to generate the output and the AcuTrans options for translating them:
Solver Command
AcuTrans Option
NODAL_OUTPUT
nodal_output
RUNNING_AVERAGE_OUTPUT
running_average_output
DERIVED_QUANTITY_OUTPUT
derived_quantity_output
TIME_AVERAGE_OUTPUT
time_average_output
SURFACE_OUTPUT
surface_output
SURFACE_OUTPUT
surface_integral_output
SURFACE_OUTPUT
surface_statistics_output
RADIATION_SURFACE
output_radiation_surface
RADIATION_SURFACE
output_radiation_integral
SOLAR_RADIATION_SURFACE
output_solar_radiation_surface
SOLAR_RADIATION_SURFACE
output_solar_radiation_integral
ELEMENT_OUTPUT
element_integral_output
TIME_HISTORY_OUTPUT
time_history_output
FAN_COMPONENT
fan_component_output
HEAT_EXCHANGER_COMPONENT
heat_exchanger_component_output
CAA_OUTPUT
aero_acoustic_output
NODAL_RESIDUAL_OUTPUT
output_nodal_residual
ERROR_ESTIMATOR_OUTPUT
output_error_estimator time_average_error_estimator
FLEXIBLE_BODY
flexible_body_output

These results may be translated into one of the following formats: Table, Stats, CGNS, FieldView, H3D, I-deas, Spectrum, Ensight, and Actran. Not all result types may be translated into all formats. The following two tables list the supported combinations:

Table 23.
AcuTrans Option Table Stats CGNS FieldView
mesh_output no no yes* yes*
nodal_output yes yes yes yes
running_average_output yes yes no no
derived_quantity_output yes yes yes yes
time_average_output yes yes no no
surface_output yes yes no no
surface_integral_output yes yes no no
surface_statistics_output yes yes no no
output_radiation_surface yes yes no no
output_radiation_integral yes yes no no
output_solar_radiation_surface yes yes no no
output_solar_radiation_integral yes yes no no
element_integral_output yes yes no no
time_history_output yes yes no no
fan_component_output yes yes no no
heat_exchanger_component_output yes yes no no
aero_acoustic_output yes yes no no
output_nodal_residual yes yes no yes
output_error_estimator yes yes no yes
time_average_error_estimator yes yes no yes
Table 24.
AcuTrans Option H3D I-deas Spectrum EnSight Actran
mesh_output yes yes yes yes yes
nodal_output yes yes yes yes no
running_average_output no no no no
derived_quantity_output yes yes yes yes no
time_average_output no no no no no
surface_output no no yes no no
surface_integral_output no no no no no
surface_statistics_output yes yes no no no
output_radiation_surface no no no no no
output_radiation_integral no no no no no
output_solar_radiation_surface no no no no no
output_solar_radiation_integral no no no no no
element_integral_output no no no no no
time_history_output no no no no no
fan_component_output no no no no no
heat_exchanger_component_output no no no no no
aero_acoustic_output no no no no yes
output_nodal_residual no no no no no
output_error_estimator no no no no no
time_average_error_estimator no no no no no

yes*: always output the mesh when nodal_output is specified.

Info Format

For info format, AcuTrans prints information about all the available time steps and variables.

Table Format

For table format, AcuTrans generates a number of output files, each containing a two-dimensional array of data. In the following problem is given by problem and step is the time step.

nodal output:
The nodal output of a given time step is written as a two dimensional table in an output file named problem_stepstep.out. The rows in the table correspond to the coordinates node numbers, written in the same order given by the COORDINATE command in the input file. The columns correspond to the translated data, in the order given in the nodal_output_vars table. Each data type occupies one or more columns, as given in the Fields column of the above table. The following example:
acuTrans -pb channel -out -outv pres,node,vel -ts 10
creates the file channel_step10.out, which has 5 columns corresponding to the node_id, x_velocity, y_velocity, z_velocity, and pressure. If the extended nodal output flag is set, the nodal projections of gradients of available field variables and available variables from running_average_output, time_average_output, derived_quantity_output, surface_output, output_radiation_surface, output_solar_radiation_surface, output_nodal_residual, output_error_estimator, and time_average_error_estimator are added to the nodal_output variable list, in the order given in the extended_nodal_output table. Those variables defined only on a subset of the nodes, such as surfaces, are set to zero on the rest of the nodes. The full list of available variables for a particular problem can be obtained with the command
acuTrans -pb channel -out -extout -to stats
For example, solar heat flux can be added to the nodal output as follows:
acuTrans -pb channel -out -extout -outv pres,node,vel,oqf_heat -ts 10
running_average_output
The running average field output of a given time step is written as a two dimensional table in an output file named problem_stepstep.ora. The rows in the table correspond to the coordinates node numbers, written in the same order given by the COORDINATE command in the input file. The columns correspond to the translated data, in the order given in the running_average_output_vars table. Each data type occupies one or more columns, as given in the Fields column of the above table. The following example,
acuTrans -pb channel -ora -orav pres,node,vel -ts 10

creates the file channel_step10.ora, which has 5 columns corresponding to node_id, x_velocity, y_velocity, z_velocity, and pressure.

time_average_output

The time averaged output of a given time step is written as a two dimensional table in an output file named problem_stepstep.ota. The rows of the table correspond to the coordinate node numbers, written in the same order given by the COORDINATE command in the input file. The columns correspond to the translated data, in the order given in the time_average_output_vars table. Each data type occupies one or more columns, as given in the Fields column of the above table.

derived_quantity_output

The derived quantity output of a given time step is written as a two dimensional table in an output file named problem_stepstep.odq. The rows of the table correspond to the coordinate node numbers, written in the same order given by the COORDINATE command in the input file. The columns correspond to the translated data, in the order given in the derived_quantity_output_vars table. Each data type occupies one or more columns, as given in the Fields column of the above table.

surface_output

The nodal values of a given surface output set and a given time step are written as a two dimensional table in an output file named problem_srfsrf_stepstep.osf, where srf is a surface ID, starting from one, corresponding to each SURFACE_OUTPUT command in the order given in the input file. The rows of the tables correspond to all the nodes of the surface, numerically sorted. The columns correspond to the translated data, in the order given in the surface_output_vars table. Each data type occupies one or more columns, as given in the Fields column of the above table. For example, assume that "wall surface" is the second SURFACE_OUTPUT command in the input file, then

acuTrans -pb channel -osf -osfs "wall surface" -ts 10

creates the file channel_srf2_step10.osf containing all the output data available for surface output. The definitions of the surface output variables are given by the integrands of the surface_integral_output table below.

surface_integral_output

The integrated results of a given surface output set are written as a two-dimensional table in an output file named problem_srf.osi, where srf is a surface ID, starting from one, corresponding to each SURFACE_OUTPUT command in the order given in the input file. The rows of the tables correspond to all the available time steps. The columns correspond to the translated data, in the order given in the surface_integral_output_vars table. Each data type occupies one or more columns, as given in the Fields column of the above table. For example, assume that "wall -surface" is the second SURFACE_OUTPUT command in the input file, then

acuTrans -pb channel -osi -osis "wall surface" -osiv step,trac
creates the file channel_srf2.osi containing time step numbers and the surface integral of traction, for a total of four columns. The definitions of the surface integral output variables are given by:
Table 25.
Variable Definition SI units
area d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaa8qaaeaaca WGKbGaamyqaaWcbeqab0Gaey4kIipaaaa@39A1@ m2
ave density ρ d A / d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaaSGbaeaada Wdbaqaaiabeg8aYjaaykW7caWGKbGaamyqaaWcbeqab0Gaey4kIipa aOqaamaapeaabaGaamizaiaadgeaaSqabeqaniabgUIiYdaaaaaa@40B6@ kg/m3
bulk temperature H ρ ( u n ) d A / C p ρ ( u n ) d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaaSGbaeaada WdbaqaaiaadIeacqaHbpGCdaqadaqaaiaadwhacqGHflY1caWGUbaa caGLOaGaayzkaaGaamizaiaadgeaaSqabeqaniabgUIiYdaakeaada WdbaqaaiaadoeadaWgaaWcbaGaamiCaaqabaGccqaHbpGCdaqadaqa aiaadwhacqGHflY1caWGUbaacaGLOaGaayzkaaGaamizaiaadgeaaS qabeqaniabgUIiYdaaaaaa@4F2B@ K
convective_field_flux (conv_field) ρ F i ( un )dA MathType@MTEF@5@5@+= feaagKart1ev2aaatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaa8qaaeaacq aHbpGCcaWGgbWaaSbaaSqaaiaadMgaaeqaaOWaaeWaaeaacaWG1bGa eyyXICTaamOBaaGaayjkaiaawMcaaiaadsgacaWGbbaaleqabeqdcq GHRiI8aaaa@430F@ kg/sec
convective species flux ρ φ i ( u n ) d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaa8qaaeaacq aHbpGCcaaMc8UaeqOXdO2aaSbaaSqaaiaadMgaaeqaaOWaaeWaaeaa caWG1bGaeyyXICTaamOBaaGaayjkaiaawMcaaiaaykW7caWGKbGaam yqaaWcbeqab0Gaey4kIipaaaa@4718@ kg/sec
convective temperature flux ρ H ( u n ) d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaa8qaaeaacq aHbpGCcaaMc8UaamisamaabmaabaGaamyDaiabgwSixlaad6gaaiaa wIcacaGLPaaacaWGKbGaamyqaaWcbeqab0Gaey4kIipaaaa@4379@ W
dewpoint_temperature (dewpoint_temp) T dew dA / dA MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaaSGbaeaada WdbaqaaiaadsfadaWgaaWcbaGaamizaiaadwgacaWG3baabeaakiaa dsgacaWGbbaaleqabeqdcqGHRiI8aaGcbaWaa8qaaeaacaWGKbGaam yqaaWcbeqab0Gaey4kIipaaaaaaa@4149@ K
dissipation rate ε d A / d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaaSGbaeaada Wdbaqaaiabew7aLjaaykW7caWGKbGaamyqaaWcbeqab0Gaey4kIipa aOqaamaapeaabaGaamizaiaadgeaaSqabeqaniabgUIiYdaaaaaa@409D@ m2/sec3
eddy frequency ω d A / d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaaSGbaeaada WdbaqaaiabeM8a3jaaykW7caWGKbGaamyqaaWcbeqab0Gaey4kIipa aOqaamaapeaabaGaamizaiaadgeaaSqabeqaniabgUIiYdaaaaaa@40C3@ 1/sec
eddy viscosity μ t d A / d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaaSGbaeaada WdbaqaaiabeY7aTnaaBaaaleaacaWG0baabeaakiaaykW7caWGKbGa amyqaaWcbeqab0Gaey4kIipaaOqaamaapeaabaGaamizaiaadgeaaS qabeqaniabgUIiYdaaaaaa@41DB@ m2/sec
field F i d A / d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaaSGbaeaada WdbaqaaiaadAeadaWgaaWcbaGaamyAaaqabaGccaaMc8Uaamizaiaa dgeaaSqabeqaniabgUIiYdaakeaadaWdbaqaaiaadsgacaWGbbaale qabeqdcqGHRiI8aaaaaaa@40E5@ non-dimensional
field_flux (field) F i ndA MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaa8qaaeaaca WGgbWaaSbaaSqaaiaadMgaaeqaaOGaeyyXICTaamOBaiaadsgacaWG bbaaleqabeqdcqGHRiI8aaaa@3ECD@ kg/sec
heat flux q · n d A , q = κ T O T T MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaa8qaaeaaca WGXbGaeS4JPFMaamOBaiaaykW7caaMb8UaamizaiaadgeacaGGSaGa aGPaVlaaykW7caaMc8UaaGPaVlaaykW7caWGXbGaeyypa0JaeqOUdS 2aaSbaaSqaaiaadsfacaWGpbGaamivaaqabaGccqGHhis0caWGubaa leqabeqdcqGHRiI8aaaa@523F@ W
humidity_film_thickness H F T d A / d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaaSGbaeaada WdbaqaaiaadIeacaWGgbGaamivaiaadsgacaWGbbaaleqabeqdcqGH RiI8aaGcbaWaa8qaaeaacaWGKbGaamyqaaWcbeqab0Gaey4kIipaaa aaaa@3FDC@

where HFT is the humidity film thickness

m
incident_radiation (incident_rad) G = i = 1 N w i I ( r ) MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaGaam4raiabg2 da9maaqahabaGaam4DamaaBaaaleaacaWGPbaabeaakiaadMeacaGG OaGaamOCaiaacMcaaSqaaiaadMgacqGH9aqpcaaIXaaabaGaamOtaa qdcqGHris5aaaa@42CB@

where I is the intensity in direction I, N is the number of ordinates, w is the weight given based on the number of ordinates.

W/m2
intermittency γ d A / d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaaSGbaeaada Wdbaqaaiabeo7aNjaaykW7caWGKbGaamyqaaWcbeqab0Gaey4kIipa aOqaamaapeaabaGaamizaiaadgeaaSqabeqaniabgUIiYdaaaaaa@409D@ non-dimensional
kinetic energy k d A / d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaaSGbaeaada WdbaqaaiaadUgacaaMc8UaamizaiaadgeaaSqabeqaniabgUIiYdaa keaadaWdbaqaaiaadsgacaWGbbaaleqabeqdcqGHRiI8aaaaaaa@3FE6@ m2/sec2
total_current IdA/ dA MathType@MTEF@5@5@+= feaahqart1ev3aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaa8qaaeaaca WGjbGaaGzaVlaaygW7caaMc8UaamizaiaadgeacaGGVaaaleqabeqd cqGHRiI8aOWaa8qaaeaacaaMb8UaaGPaVlaadsgacaWGbbaaleqabe qdcqGHRiI8aaaa@4687@ Amp
mass average dissipation rate ε ρ d A / ρ d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaaSGbaeaada Wdbaqaaiabew7aLjaaykW7cqaHbpGCcaaMc8UaamizaiaadgeaaSqa beqaniabgUIiYdaakeaadaWdbaqaaiabeg8aYjaaykW7caWGKbGaam yqaaWcbeqab0Gaey4kIipaaaaaaa@4733@ m2/sec3
mass average eddy frequency ω ρ d A / ρ d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaaSGbaeaada WdbaqaaiabeM8a3jaaykW7cqaHbpGCcaaMc8UaamizaiaadgeaaSqa beqaniabgUIiYdaakeaadaWdbaqaaiabeg8aYjaaykW7caWGKbGaam yqaaWcbeqab0Gaey4kIipaaaaaaa@4759@ 1/sec
mass average eddy viscosity μ t ρ d A / ρ d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaaSGbaeaada WdbaqaaiabeY7aTnaaBaaaleaacaWG0baabeaakiaaykW7cqaHbpGC caaMc8UaamizaiaadgeaaSqabeqaniabgUIiYdaakeaadaWdbaqaai abeg8aYjaaykW7caWGKbGaamyqaaWcbeqab0Gaey4kIipaaaaaaa@4871@ m2/sec
mass average field F i ρ d A / ρ d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaaSGbaeaada WdbaqaaiaadAeadaWgaaWcbaGaamyAaaqabaGccaaMc8UaeqyWdiNa aGPaVlaadsgacaWGbbaaleqabeqdcqGHRiI8aaGcbaWaa8qaaeaacq aHbpGCcaaMc8UaamizaiaadgeaaSqabeqaniabgUIiYdaaaaaa@477B@ non-dimensional
mass average intermittency γ ρ d A / ρ d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaaSGbaeaada Wdbaqaaiabeo7aNjaaykW7cqaHbpGCcaaMc8UaamizaiaadgeaaSqa beqaniabgUIiYdaakeaadaWdbaqaaiabeg8aYjaaykW7caWGKbGaam yqaaWcbeqab0Gaey4kIipaaaaaaa@4733@ non-dimensional
mass average kinetic energy k ρ d A / ρ d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaaSGbaeaada WdbaqaaiaadUgacaaMc8UaeqyWdiNaaGPaVlaadsgacaWGbbaaleqa beqdcqGHRiI8aaGcbaWaa8qaaeaacqaHbpGCcaaMc8Uaamizaiaadg eaaSqabeqaniabgUIiYdaaaaaa@467C@ m2/sec2
mass average pressure p ρ d A / ρ d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaaSGbaeaada WdbaqaaiaadchacaaMc8UaeqyWdiNaaGPaVlaadsgacaWGbbaaleqa beqdcqGHRiI8aaGcbaWaa8qaaeaacqaHbpGCcaaMc8Uaamizaiaadg eaaSqabeqaniabgUIiYdaaaaaa@4681@ N/m2
mass average species φ i ρ d A / ρ d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaaSGbaeaada WdbaqaaiabeA8aQnaaBaaaleaacaWGPbaabeaakiaaykW7cqaHbpGC caaMc8UaamizaiaadgeaaSqabeqaniabgUIiYdaakeaadaWdbaqaai abeg8aYjaaykW7caWGKbGaamyqaaWcbeqab0Gaey4kIipaaaaaaa@486D@ non-dimensional
mass average sqrt eddy period ω ρ d A / ρ d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaaSGbaeaada WdbaqaamaakaaabaGaeqyYdChaleqaaOGaaGPaVlabeg8aYjaaykW7 caWGKbGaamyqaaWcbeqab0Gaey4kIipaaOqaamaapeaabaGaeqyWdi NaaGPaVlaadsgacaWGbbaaleqabeqdcqGHRiI8aaaaaaa@477E@ (sec)0.5
mass average temperature T ρ d A / ρ d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaaSGbaeaada WdbaqaaiaadsfacaaMc8UaeqyWdiNaaGPaVlaadsgacaWGbbaaleqa beqdcqGHRiI8aaGcbaWaa8qaaeaacqaHbpGCcaaMc8Uaamizaiaadg eaaSqabeqaniabgUIiYdaaaaaa@4665@ K
mass average total pressure p T O T ρ d A / ρ d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaaSGbaeaada WdbaqaaiaadchadaWgaaWcbaGaamivaiaad+eacaWGubaabeaakiaa ykW7cqaHbpGCcaaMc8UaamizaiaadgeaaSqabeqaniabgUIiYdaake aadaWdbaqaaiabeg8aYjaaykW7caWGKbGaamyqaaWcbeqab0Gaey4k Iipaaaaaaa@493D@ N/m2
mass average total temperature T T O T ρ d A / ρ d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaaSGbaeaada WdbaqaaiaadsfadaWgaaWcbaGaamivaiaad+eacaWGubaabeaakiaa ykW7cqaHbpGCcaaMc8UaamizaiaadgeaaSqabeqaniabgUIiYdaake aadaWdbaqaaiabeg8aYjaaykW7caWGKbGaamyqaaWcbeqab0Gaey4k Iipaaaaaaa@4921@ K
mass average transition re theta Re θ ρ d A / ρ d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaaSGbaeaada WdbaqaaiGackfacaGGLbWaaSbaaSqaaiabeI7aXbqabaGccaaMc8Ua eqyWdiNaaGPaVlaadsgacaWGbbaaleqabeqdcqGHRiI8aaGcbaWaa8 qaaeaacqaHbpGCcaaMc8UaamizaiaadgeaaSqabeqaniabgUIiYdaa aaaa@4939@ non-dimensional
mass average velocity u ρ d A / ρ d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaaSGbaeaada WdbaqaaiaadwhacaaMc8UaeqyWdiNaaGPaVlaadsgacaWGbbaaleqa beqdcqGHRiI8aaGcbaWaa8qaaeaacqaHbpGCcaaMc8Uaamizaiaadg eaaSqabeqaniabgUIiYdaaaaaa@4686@ m/sec
mass average viscoelastic stress σ ρ d A / ρ d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaaSGbaeaada Wdbaqaaiabeo8aZjaaykW7cqaHbpGCcaaMc8UaamizaiaadgeaaSqa beqaniabgUIiYdaakeaadaWdbaqaaiabeg8aYjaaykW7caWGKbGaam yqaaWcbeqab0Gaey4kIipaaaaaaa@474F@ N/m2
mass flux ρ ( u n ) d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaa8qaaeaacq aHbpGCcaaMc8+aaeWaaeaacaWG1bGaeyyXICTaamOBaaGaayjkaiaa wMcaaiaadsgacaWGbbaaleqabeqdcqGHRiI8aaaa@42AC@ kg/sec
mass flux average dissipation rate ε ρ ( u n ) d A / ρ ( u n ) d A MathType@MTEF@5@5@+= feaagKart1ev2aqatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq=Jc9 vqaqpepm0xbba9pwe9Q8fs0=yqaqpepae9pg0FirpepeKkFr0xfr=x fr=xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaWaaSGbaeaada Wdbaqaaiabew7aLjaaykW7cqaHbpGCdaqadaqaaiaadwhacqGHflY1 caWGUbaacaGLOaGaayzkaaGaamizaiaadgeaaSqabeqaniabgUIiYd