Changeset 4765 for palm/trunk/TUTORIALS/cases/example_neutral/INPUT
- Timestamp:
- Nov 2, 2020 10:31:45 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/TUTORIALS/cases/example_neutral/INPUT/example_neutral_p3d
r4409 r4765 17 17 !-- initialization 18 18 !------------------------------------------------------------------------------- 19 initializing_actions = 'set_constant_profiles' , ! initial conditions19 initializing_actions = 'set_constant_profiles', 20 20 21 ug_surface = 5.0 , ! u-comp of geostrophic wind at surface22 vg_surface = 0.0 , ! v-comp of geostrophic wind at surface21 ug_surface = 5.0, 22 vg_surface = 0.0, 23 23 24 pt_surface = 300.0, ! initial surface potential temp25 pt_vertical_gradient = 0.0, ! piecewise temp gradients26 pt_vertical_gradient_level = 0.0, ! height level of temp gradients24 pt_surface = 300.0, 25 pt_vertical_gradient = 0.0, ! Piecewise temp gradients 26 pt_vertical_gradient_level = 0.0, ! Height level of temp gradients 27 27 ! 28 28 !-- boundary conditions … … 31 31 bc_uv_t = 'dirichlet', 32 32 33 bc_p_b = 'neumann', 34 bc_p_t = 'dirichlet', 33 bc_pt_b = 'dirichlet', ! Bottom boundary condition of pt 34 bc_pt_t = 'initial_gradient', ! Top boundary condition of pt 35 36 bc_p_b = 'neumann', ! Bottom boundary condition of p. 37 bc_p_t = 'dirichlet', ! Top boundary condition of p. 35 38 36 39 constant_flux_layer = .TRUE., 37 40 38 roughness_length = 0.1 41 roughness_length = 0.1, 39 42 ! 40 43 !-- numerics 41 44 !------------------------------------------------------------------------------- 42 fft_method = 'temperton-algorithm', ! build-in fft method45 fft_method = 'temperton-algorithm', ! Build-in fft method 43 46 44 rayleigh_damping_height = 1250.0, 45 rayleigh_damping_factor = 0.01, 47 rayleigh_damping_height = 1250.0, ! Height above which the Rayleigh damping starts 48 rayleigh_damping_factor = 0.01, ! Factor for Rayleigh damping. 46 49 47 50 ! 48 51 !-- mode 49 52 !------------------------------------------------------------------------------- 50 neutral = .TRUE., ! switch off calculation of temperatureequation51 galilei_transformation = .TRUE., ! application of a Galilei-transformation53 neutral = .TRUE., ! Switch off calculation of temp equation 54 galilei_transformation = .TRUE., 52 55 53 / ! end of initialization parameter namelist56 / ! End of initialization parameter namelist 54 57 55 58 !------------------------------------------------------------------------------- … … 61 64 !-- run steering 62 65 !------------------------------------------------------------------------------- 63 end_time = 172800.0, ! simulation time of the 3D model66 end_time = 172800.0, ! Simulation time of the 3D model 64 67 65 create_disturbances = .TRUE., ! randomly perturbate horiz. velocity66 dt_disturb = 150.0, ! interval for random perturbations67 disturbance_energy_limit = 0.01, ! upper limit for perturbation energy68 create_disturbances = .TRUE., ! Randomly perturbate horiz. velocity 69 dt_disturb = 150.0, ! Interval for random perturbations 70 disturbance_energy_limit = 0.01, ! Upper limit for perturbation energy 68 71 ! 69 72 !-- data output 70 73 !------------------------------------------------------------------------------- 71 netcdf_data_format = 2, ! use NetCDF374 netcdf_data_format = 2, ! Data format for netCDF files 72 75 73 dt_run_control = 60.0, 76 dt_run_control = 60.0, ! Temporal interval of run control output 74 77 75 dt_dopr = 10800.0, 76 77 averaging_interval_pr = 10800.0, 78 dt_averaging_input_pr = 50.0, 79 data_output_pr = '#u', '#v', 'w', '#theta', 'w"u"', 'w*u*', 'wu', 'w"v"', 'w*v*', 'wv', 'w*2', 'theta*2', 78 dt_dopr = 10800.0, ! Temporal interval for vertical profile output 79 averaging_interval_pr = 10800.0, ! Averaging interval for vertical profile output 80 dt_averaging_input_pr = 50.0, ! Temporal interval of data that is used for temporal averaging of vertical profiles and/or spectra 81 82 data_output_pr = '#u', '#v', 'w', '#theta', 83 'w"u"', 'w*u*', 'wu', 'w"v"', 'w*v*', 'wv', 84 'w*2', 'theta*2', ! Quantities for vertical profile output 80 85 81 / ! end of runtime parameter namelist86 / ! End of runtime parameter namelist 82 87 83 88 !------------------------------------------------------------------------------- … … 87 92 &spectra_parameters 88 93 89 data_output_sp = 'u', 'v', 'w', 90 dt_dosp = 10800.0, 91 comp_spectra_level = 2, 5, 10, 15, 20, 92 spectra_direction = 'x' , 'y' , 'x', 93 averaging_interval_sp = 10800.0, 94 dt_dosp = 10800.0, ! Temporal interval for spectra output 95 averaging_interval_sp = 10800.0, ! Averaging interval for vertical profile output 96 97 comp_spectra_level = 2, 5, 10, 15, 20, ! Vertical level for horizontal spectra output 98 spectra_direction = 'x' , 'y' , 'x', ! Direction(s) along which spectra are calculated 99 100 data_output_sp = 'u', 'v', 'w', ! Quantities for spectra output 94 101 95 / ! end of spectra parameter namelist102 / ! End of spectra parameter namelist 96 103
Note: See TracChangeset
for help on using the changeset viewer.