|
My Project
programmer's documentation
|
#include "cs_defs.h"#include <stdio.h>#include <stdlib.h>#include <math.h>#include <string.h>#include <fcntl.h>#include <unistd.h>#include <assert.h>#include "bft_mem.h"#include "bft_error.h"#include "bft_printf.h"#include "fvm_selector.h"#include "mei_evaluate.h"#include "cs_base.h"#include "cs_boundary_zone.h"#include "cs_equation.h"#include "cs_equation_param.h"#include "cs_field.h"#include "cs_field_pointer.h"#include "cs_file.h"#include "cs_log.h"#include "cs_gui_util.h"#include "cs_gui_variables.h"#include "cs_gui_boundary_conditions.h"#include "cs_gui_specific_physics.h"#include "cs_gui_mobile_mesh.h"#include "cs_geom.h"#include "cs_math.h"#include "cs_mesh.h"#include "cs_mesh_quantities.h"#include "cs_mesh_location.h"#include "cs_multigrid.h"#include "cs_order.h"#include "cs_parall.h"#include "cs_parameters.h"#include "cs_partition.h"#include "cs_physical_model.h"#include "cs_prototypes.h"#include "cs_rotation.h"#include "cs_selector.h"#include "cs_timer.h"#include "cs_time_moment.h"#include "cs_thermal_model.h"#include "cs_physical_properties.h"#include "cs_time_step.h"#include "cs_turbomachinery.h"#include "cs_sles.h"#include "cs_sles_it.h"#include "cs_turbulence_model.h"#include "cs_wall_functions.h"#include "cs_physical_constants.h"#include "cs_stokes_model.h"#include "cs_balance_by_zone.h"#include "cs_fan.h"#include "cs_volume_zone.h"#include "cs_gwf_physical_properties.h"#include "cs_vof.h"#include "cs_gui.h"
Functions | |
| void | CS_PROCF (csther, CSTHER) |
| void | cs_gui_turb_model (void) |
| void | cs_gui_turb_ref_values (void) |
| void | CS_PROCF (cscpva, CSCPVA) |
| void | CS_PROCF (csvvva, CSVVVA) |
| void | CS_PROCF (uithsc, UITHSC) |
| void | CS_PROCF (csivis, CSIVIS) |
| void | CS_PROCF (csidtv, CSIDTV) |
| void | CS_PROCF (csiphy, CSIPHY) |
| void | CS_PROCF (cscfgp, CSCFGP) |
| void | CS_PROCF (csisui, CSISUI) |
| void | CS_PROCF (cstime, CSTIME) |
| void | CS_PROCF (uinum1, UINUM1) |
| void | CS_PROCF (csnum2, CSNUM2) |
| void | CS_PROCF (csphys, CSPHYS) |
| void | CS_PROCF (cssca2, CSSCA2) |
| void | CS_PROCF (cssca3, CSSCA3) |
| void | CS_PROCF (uiporo, UIPORO) |
| void | CS_PROCF (uitsnv, UITSNV) const |
| void | CS_PROCF (uitssc, UITSSC) const |
| void | CS_PROCF (uitsth, UITSTH) const |
| void | CS_PROCF (uiiniv, UIINIV) const |
| void | CS_PROCF (uiphyv, UIPHYV) const |
| void | CS_PROCF (uiexop, UIEXOP) |
| void | CS_PROCF (uidapp, UIDAPP) const |
| void | CS_PROCF (uifans, UIFANS) |
| void | CS_PROCF (uieres, UIERES) |
| void | cs_gui_init (void) |
| void | cs_gui_finalize (void) |
| void | cs_gui_add_notebook_variables (void *ev_law) |
| Add notebook variable to a formula. More... | |
| void | cs_gui_head_losses (const cs_zone_t *zone, const cs_real_3_t *cvara_vel, cs_real_t cku[][6]) |
| Compute GUI-defined head losses for a given volume zone. More... | |
| void | cs_gui_linear_solvers (void) |
| void | cs_gui_parallel_io (void) |
| void | cs_gui_partition (void) |
| void | cs_gui_porous_model (void) |
| void | cs_gui_profile_output (void) |
| void | cs_gui_properties_value (const char *property_name, double *value) |
| void | cs_gui_properties_value_by_fluid_id (const int fluid_id, const char *property_name, double *value) |
| void | cs_gui_fluid_properties_value (const char *param, double *value) |
| int | cs_gui_thermal_model (void) |
| void | cs_gui_time_moments (void) |
| void | cs_gui_turbomachinery (void) |
| void | cs_gui_turbomachinery_rotor (void) |
| void | cs_gui_usage_log (void) |
| void | cs_gui_user_variables (void) |
| void | cs_gui_user_arrays (void) |
| void | cs_gui_zones (void) |
| void | cs_gui_balance_by_zone (void) |
| void | cs_gui_pressure_drop_by_zone (void) |
| void | cs_gui_define_fans (void) |
| void | cs_gui_error_estimator (int *iescal, int *iespre, int *iesder, int *iescor, int *iestot) |
| void cs_gui_add_notebook_variables | ( | void * | ev_law | ) |
Add notebook variable to a formula.
| [in,out] | ev_law | pointer to MEI formula structure |
| void cs_gui_balance_by_zone | ( | void | ) |
| void cs_gui_define_fans | ( | void | ) |
| void cs_gui_error_estimator | ( | int * | iescal, |
| int * | iespre, | ||
| int * | iesder, | ||
| int * | iescor, | ||
| int * | iestot | ||
| ) |
| void cs_gui_finalize | ( | void | ) |
| void cs_gui_fluid_properties_value | ( | const char * | param, |
| double * | value | ||
| ) |
| void cs_gui_head_losses | ( | const cs_zone_t * | zone, |
| const cs_real_3_t * | cvara_vel, | ||
| cs_real_t | cku[][6] | ||
| ) |
Compute GUI-defined head losses for a given volume zone.
Head loss tensor coefficients for each cell are organized as follows: cku11, cku22, cku33, cku12, cku13, cku23.
| [in] | zone | pointer to zone structure |
| [in] | cvara_vel | pointer to the velocity values of the previous time step |
| [in,out] | cku | head loss coefficients |
| void cs_gui_init | ( | void | ) |
| void cs_gui_linear_solvers | ( | void | ) |
| void cs_gui_parallel_io | ( | void | ) |
| void cs_gui_partition | ( | void | ) |
| void cs_gui_porous_model | ( | void | ) |
| void cs_gui_pressure_drop_by_zone | ( | void | ) |
| void cs_gui_profile_output | ( | void | ) |
| void cs_gui_properties_value | ( | const char * | property_name, |
| double * | value | ||
| ) |
| void cs_gui_properties_value_by_fluid_id | ( | const int | fluid_id, |
| const char * | property_name, | ||
| double * | value | ||
| ) |
| int cs_gui_thermal_model | ( | void | ) |
| void cs_gui_time_moments | ( | void | ) |
| void cs_gui_turb_model | ( | void | ) |
| void cs_gui_turb_ref_values | ( | void | ) |
| void cs_gui_turbomachinery | ( | void | ) |
| void cs_gui_turbomachinery_rotor | ( | void | ) |
| void cs_gui_usage_log | ( | void | ) |
| void cs_gui_user_arrays | ( | void | ) |
| void cs_gui_user_variables | ( | void | ) |
| void cs_gui_zones | ( | void | ) |
| void CS_PROCF | ( | cscfgp | , |
| CSCFGP | |||
| ) |
| void CS_PROCF | ( | cscpva | , |
| CSCPVA | |||
| ) |
| void CS_PROCF | ( | csidtv | , |
| CSIDTV | |||
| ) |
| void CS_PROCF | ( | csiphy | , |
| CSIPHY | |||
| ) |
| void CS_PROCF | ( | csisui | , |
| CSISUI | |||
| ) |
| void CS_PROCF | ( | csivis | , |
| CSIVIS | |||
| ) |
| void CS_PROCF | ( | csnum2 | , |
| CSNUM2 | |||
| ) |
| void CS_PROCF | ( | csphys | , |
| CSPHYS | |||
| ) |
| void CS_PROCF | ( | cssca2 | , |
| CSSCA2 | |||
| ) |
| void CS_PROCF | ( | cssca3 | , |
| CSSCA3 | |||
| ) |
| void CS_PROCF | ( | csther | , |
| CSTHER | |||
| ) |
| void CS_PROCF | ( | cstime | , |
| CSTIME | |||
| ) |
| void CS_PROCF | ( | csvvva | , |
| CSVVVA | |||
| ) |
| void CS_PROCF | ( | uidapp | , |
| UIDAPP | |||
| ) | const |
| void CS_PROCF | ( | uieres | , |
| UIERES | |||
| ) |
| void CS_PROCF | ( | uiexop | , |
| UIEXOP | |||
| ) |
| void CS_PROCF | ( | uifans | , |
| UIFANS | |||
| ) |
| void CS_PROCF | ( | uiiniv | , |
| UIINIV | |||
| ) | const |
| void CS_PROCF | ( | uinum1 | , |
| UINUM1 | |||
| ) |
| void CS_PROCF | ( | uiphyv | , |
| UIPHYV | |||
| ) | const |
| void CS_PROCF | ( | uiporo | , |
| UIPORO | |||
| ) |
| void CS_PROCF | ( | uithsc | , |
| UITHSC | |||
| ) |
| void CS_PROCF | ( | uitsnv | , |
| UITSNV | |||
| ) | const |
| void CS_PROCF | ( | uitssc | , |
| UITSSC | |||
| ) | const |
| void CS_PROCF | ( | uitsth | , |
| UITSTH | |||
| ) | const |
1.8.16