https://github.com/geodynamics/citcoms
Raw File
Tip revision: 74e1fe0aaa5811939f0483e545b9712885ca4722 authored by Eh Tan on 15 May 2003, 07:07:54 UTC
first created
Tip revision: 74e1fe0
advection.h
struct ADVECTION {
  int ADVECTION;
 
  float gamma;
  float timestep;
  float fine_tune_dt;
  float dt_reduced;
  float fixed_timestep;
  float max_dimensionless_time;
 
  int min_timesteps;  
  int max_timesteps;
  int max_total_timesteps;
  int timesteps;
  int total_timesteps;
  int temp_iterations;
  int max_substeps;
  int sub_iterations;
  int last_sub_iterations; 

  float vel_substep_aggression;
  float temp_updatedness;
  float visc_updatedness;

  float lid_defining_velocity;
  float sub_layer_sample_level;

 
 } advection;


back to top