diff --git a/ABLMost_8H_source.html b/ABLMost_8H_source.html index 78abaa42b9..4b8b48b2d8 100644 --- a/ABLMost_8H_source.html +++ b/ABLMost_8H_source.html @@ -158,381 +158,393 @@
70  amrex::Abort("Undefined MOST flux type!");
71  }
72 
-
73  // Get surface temperature
-
74  auto erf_st = pp.query("most.surf_temp", surf_temp);
-
75 
-
76  // Custom type user must specify the fluxes
-
77  if (flux_type == FluxCalcType::CUSTOM) {
-
78  theta_type = ThetaCalcType::HEAT_FLUX;
-
79  pp.query("most.ustar", custom_ustar);
-
80  pp.query("most.tstar", custom_tstar);
-
81  pp.query("most.qstar", custom_qstar);
-
82  if (custom_qstar != 0) {
-
83  AMREX_ASSERT_WITH_MESSAGE(use_moisture, "Specified custom MOST qv flux without moisture model!");
-
84  }
-
85  amrex::Print() << "Using specified ustar, tstar, qstar for MOST = "
-
86  << custom_ustar << " "
-
87  << custom_tstar << " "
-
88  << custom_qstar << std::endl;
-
89 
-
90  // Specify surface temperature or surface flux
-
91  } else {
-
92  if (erf_st) {
-
93  theta_type = ThetaCalcType::SURFACE_TEMPERATURE;
-
94  pp.query("most.surf_heating_rate", surf_heating_rate); // [K/h]
-
95  surf_heating_rate = surf_heating_rate / 3600.0; // [K/s]
-
96  if (pp.query("most.surf_temp_flux", surf_temp_flux)) {
-
97  amrex::Abort("Can only specify one of surf_temp_flux or surf_heating_rate");
-
98  }
-
99  } else {
-
100  pp.query("most.surf_temp_flux", surf_temp_flux);
-
101  if (pp.query("most.surf_heating_rate", surf_heating_rate)) {
-
102  amrex::Abort("Can only specify one of surf_temp_flux or surf_heating_rate");
-
103  }
-
104  if (std::abs(surf_temp_flux) > std::numeric_limits<amrex::Real>::epsilon()) {
-
105  theta_type = ThetaCalcType::HEAT_FLUX;
-
106  } else {
-
107  theta_type = ThetaCalcType::ADIABATIC;
-
108  }
-
109  }
-
110  }
-
111 
-
112  // Specify how to compute the surface flux over land (if there is any)
-
113  std::string rough_land_string{"constant"};
-
114  pp.query("most.roughness_type_land", rough_land_string);
-
115  if (rough_land_string == "constant") {
-
116  rough_type_land = RoughCalcType::CONSTANT;
-
117  } else {
-
118  amrex::Abort("Undefined MOST roughness type for land!");
-
119  }
-
120 
-
121  // Specify how to compute the surface flux over sea (if there is any)
-
122  std::string rough_sea_string{"charnock"};
-
123  pp.query("most.roughness_type_sea", rough_sea_string);
-
124  if (rough_sea_string == "charnock") {
-
125  rough_type_sea = RoughCalcType::CHARNOCK;
-
126  pp.query("most.charnock_constant",cnk_a);
-
127  } else if (rough_sea_string == "modified_charnock") {
-
128  rough_type_sea = RoughCalcType::MODIFIED_CHARNOCK;
-
129  pp.query("most.modified_charnock_depth",depth);
-
130  } else if (rough_sea_string == "wave_coupled") {
-
131  rough_type_sea = RoughCalcType::WAVE_COUPLED;
-
132  } else {
-
133  amrex::Abort("Undefined MOST roughness type for sea!");
-
134  }
-
135 
-
136  // Size the MOST params for all levels
-
137  int nlevs = m_geom.size();
-
138  z_0.resize(nlevs);
-
139  u_star.resize(nlevs);
-
140  t_star.resize(nlevs);
-
141  q_star.resize(nlevs);
-
142  t_surf.resize(nlevs);
-
143  olen.resize(nlevs);
-
144 
-
145  // Get pointers to SST and LANDMASK data
-
146  m_sst_lev.resize(nlevs);
-
147  m_lmask_lev.resize(nlevs);
+
73  // Check if we do stress rotations for terrain
+
74  pp.query("most.terrain_rotate",m_rotate);
+
75  if (m_rotate) AMREX_ASSERT_WITH_MESSAGE((z_phys_nd[0].get()), "Stress rotations are only valid with terrain!");
+
76 
+
77  // Get surface temperature
+
78  auto erf_st = pp.query("most.surf_temp", surf_temp);
+
79 
+
80  // Custom type user must specify the fluxes
+
81  if (flux_type == FluxCalcType::CUSTOM) {
+
82  theta_type = ThetaCalcType::HEAT_FLUX;
+
83  pp.query("most.ustar", custom_ustar);
+
84  pp.query("most.tstar", custom_tstar);
+
85  pp.query("most.qstar", custom_qstar);
+
86  if (custom_qstar != 0) {
+
87  AMREX_ASSERT_WITH_MESSAGE(use_moisture, "Specified custom MOST qv flux without moisture model!");
+
88  }
+
89  amrex::Print() << "Using specified ustar, tstar, qstar for MOST = "
+
90  << custom_ustar << " "
+
91  << custom_tstar << " "
+
92  << custom_qstar << std::endl;
+
93 
+
94  // Specify surface temperature or surface flux
+
95  } else {
+
96  if (erf_st) {
+
97  theta_type = ThetaCalcType::SURFACE_TEMPERATURE;
+
98  pp.query("most.surf_heating_rate", surf_heating_rate); // [K/h]
+
99  surf_heating_rate = surf_heating_rate / 3600.0; // [K/s]
+
100  if (pp.query("most.surf_temp_flux", surf_temp_flux)) {
+
101  amrex::Abort("Can only specify one of surf_temp_flux or surf_heating_rate");
+
102  }
+
103  } else {
+
104  pp.query("most.surf_temp_flux", surf_temp_flux);
+
105  if (pp.query("most.surf_heating_rate", surf_heating_rate)) {
+
106  amrex::Abort("Can only specify one of surf_temp_flux or surf_heating_rate");
+
107  }
+
108  if (std::abs(surf_temp_flux) > std::numeric_limits<amrex::Real>::epsilon()) {
+
109  theta_type = ThetaCalcType::HEAT_FLUX;
+
110  } else {
+
111  theta_type = ThetaCalcType::ADIABATIC;
+
112  }
+
113  }
+
114  }
+
115 
+
116  // Specify how to compute the surface flux over land (if there is any)
+
117  std::string rough_land_string{"constant"};
+
118  pp.query("most.roughness_type_land", rough_land_string);
+
119  if (rough_land_string == "constant") {
+
120  rough_type_land = RoughCalcType::CONSTANT;
+
121  } else {
+
122  amrex::Abort("Undefined MOST roughness type for land!");
+
123  }
+
124 
+
125  // Specify how to compute the surface flux over sea (if there is any)
+
126  std::string rough_sea_string{"charnock"};
+
127  pp.query("most.roughness_type_sea", rough_sea_string);
+
128  if (rough_sea_string == "charnock") {
+
129  rough_type_sea = RoughCalcType::CHARNOCK;
+
130  pp.query("most.charnock_constant",cnk_a);
+
131  } else if (rough_sea_string == "modified_charnock") {
+
132  rough_type_sea = RoughCalcType::MODIFIED_CHARNOCK;
+
133  pp.query("most.modified_charnock_depth",depth);
+
134  } else if (rough_sea_string == "wave_coupled") {
+
135  rough_type_sea = RoughCalcType::WAVE_COUPLED;
+
136  } else {
+
137  amrex::Abort("Undefined MOST roughness type for sea!");
+
138  }
+
139 
+
140  // Size the MOST params for all levels
+
141  int nlevs = m_geom.size();
+
142  z_0.resize(nlevs);
+
143  u_star.resize(nlevs);
+
144  t_star.resize(nlevs);
+
145  q_star.resize(nlevs);
+
146  t_surf.resize(nlevs);
+
147  olen.resize(nlevs);
148 
-
149  for (int lev(0); lev<nlevs; ++lev) {
-
150  int nt_tot_sst = sst_lev[lev].size();
-
151  m_sst_lev[lev].resize(nt_tot_sst);
-
152  for (int nt(0); nt<nt_tot_sst; ++nt) {
-
153  m_sst_lev[lev][nt] = sst_lev[lev][nt].get();
-
154  }
-
155  int nt_tot_lmask = lmask_lev[lev].size();
-
156  m_lmask_lev[lev].resize(nt_tot_lmask);
-
157  for (int nt(0); nt<nt_tot_lmask; ++nt) {
-
158  m_lmask_lev[lev][nt] = lmask_lev[lev][nt].get();
-
159  }
-
160  } // lev
-
161 
-
162  // Get pointers to LSM data and Fluxes
-
163  m_lsm_data_lev.resize(nlevs);
-
164  m_lsm_flux_lev.resize(nlevs);
-
165  for (int lev(0); lev<nlevs; ++lev) {
-
166  int nvar = lsm_data[lev].size();
-
167  m_lsm_data_lev[lev].resize(nvar);
-
168  m_lsm_flux_lev[lev].resize(nvar);
-
169  for (int n(0); n<nvar; ++n) {
-
170  m_lsm_data_lev[lev][n] = lsm_data[lev][n];
-
171  m_lsm_flux_lev[lev][n] = lsm_flux[lev][n];
-
172  }
-
173  } // lev
-
174 
-
175  // Get pointers to wave data
-
176  m_Hwave_lev.resize(nlevs);
-
177  m_Lwave_lev.resize(nlevs);
-
178  m_eddyDiffs_lev.resize(nlevs);
-
179  for (int lev(0); lev<nlevs; ++lev) {
-
180  m_Hwave_lev[lev] = Hwave[lev].get();
-
181  m_Lwave_lev[lev] = Lwave[lev].get();
-
182  m_eddyDiffs_lev[lev] = eddyDiffs[lev].get();
-
183  }
-
184 
-
185  for (int lev = 0; lev < nlevs; lev++) {
-
186  // Attributes for MFs and FABs
-
187  //--------------------------------------------------------
-
188  auto& mf = vars_old[lev][Vars::cons];
-
189  // Create a 2D ba, dm, & ghost cells
-
190  amrex::BoxArray ba = mf.boxArray();
-
191  amrex::BoxList bl2d = ba.boxList();
-
192  for (auto& b : bl2d) {
-
193  b.setRange(2,0);
-
194  }
-
195  amrex::BoxArray ba2d(std::move(bl2d));
-
196  const amrex::DistributionMapping& dm = mf.DistributionMap();
-
197  const int ncomp = 1;
-
198  amrex::IntVect ng = mf.nGrowVect(); ng[2]=0;
-
199 
-
200  // Z0 heights FAB
-
201  //--------------------------------------------------------
-
202  amrex::Box bx = amrex::grow(m_geom[lev].Domain(),ng);
-
203  bx.setSmall(2,0);
-
204  bx.setBig(2,0);
-
205  z_0[lev].resize(bx,1);
-
206  z_0[lev].setVal<amrex::RunOn::Device>(z0_const);
-
207 
-
208  // 2D MFs for U*, T*, T_surf
-
209  //--------------------------------------------------------
-
210  u_star[lev] = std::make_unique<amrex::MultiFab>(ba2d,dm,ncomp,ng);
-
211  u_star[lev]->setVal(1.E34);
-
212 
-
213  t_star[lev] = std::make_unique<amrex::MultiFab>(ba2d,dm,ncomp,ng);
-
214  t_star[lev]->setVal(1.E34);
-
215 
-
216  q_star[lev] = std::make_unique<amrex::MultiFab>(ba2d,dm,ncomp,ng);
-
217  q_star[lev]->setVal(1.E34);
-
218 
-
219  olen[lev] = std::make_unique<amrex::MultiFab>(ba2d,dm,ncomp,ng);
-
220  olen[lev]->setVal(1.E34);
-
221 
-
222  t_surf[lev] = std::make_unique<amrex::MultiFab>(ba2d,dm,ncomp,ng);
-
223 
-
224  // TODO: Do we want lsm_data to have theta at 0 index always?
-
225  // Do we want an external enum struct for indexing?
-
226  if (m_sst_lev[lev][0] || m_lsm_data_lev[lev][0]) {
-
227  // Valid SST or LSM data; t_surf set before computing fluxes (avoids extended lambda capture)
-
228  theta_type = ThetaCalcType::SURFACE_TEMPERATURE;
-
229  } else if (erf_st) {
-
230  t_surf[lev]->setVal(surf_temp);
-
231  } else {
-
232  t_surf[lev]->setVal(0.0);
-
233  }
-
234  }// lev
-
235  }
-
236 
-
237  void
-
238  update_fluxes (const int& lev,
-
239  const amrex::Real& time,
-
240  int max_iters = 25);
-
241 
-
242  template <typename FluxIter>
-
243  void
-
244  compute_fluxes (const int& lev,
-
245  const int& max_iters,
-
246  const FluxIter& most_flux,
-
247  bool is_land);
-
248 
-
249  void
-
250  impose_most_bcs (const int& lev,
-
251  const amrex::Vector<amrex::MultiFab*>& mfs,
-
252  amrex::MultiFab* xzmom_flux, amrex::MultiFab* zxmom_flux,
-
253  amrex::MultiFab* yzmom_flux, amrex::MultiFab* zymom_flux,
-
254  amrex::MultiFab* heat_flux,
-
255  amrex::MultiFab* z_phys);
-
256 
-
257  template<typename FluxCalc>
-
258  void
-
259  compute_most_bcs (const int& lev,
-
260  const amrex::Vector<amrex::MultiFab*>& mfs,
-
261  amrex::MultiFab* xzmom_flux, amrex::MultiFab* zxmom_flux,
-
262  amrex::MultiFab* yzmom_flux, amrex::MultiFab* zymom_flux,
-
263  amrex::MultiFab* heat_flux,
-
264  amrex::MultiFab* z_phys,
-
265  const amrex::Real& dz_no_terrain,
-
266  const FluxCalc& flux_comp);
-
267 
-
268  void
-
269  time_interp_sst (const int& lev,
-
270  const amrex::Real& time);
-
271 
-
272  void
-
273  get_lsm_tsurf (const int& lev);
-
274 
-
275  void
-
276  update_surf_temp (const amrex::Real& time)
-
277  {
-
278  if (surf_heating_rate != 0) {
-
279  int nlevs = m_geom.size();
-
280  for (int lev = 0; lev < nlevs; lev++)
-
281  {
-
282  t_surf[lev]->setVal(surf_temp + surf_heating_rate*time);
-
283  amrex::Print() << "Surface temp at t=" << time
-
284  << ": "
-
285  << surf_temp + surf_heating_rate*time
-
286  << std::endl;
-
287  }
-
288  }
-
289  }
-
290 
-
291  void
-
292  update_mac_ptrs (const int& lev,
-
293  amrex::Vector<amrex::Vector<amrex::MultiFab>>& vars_old,
-
294  amrex::Vector<std::unique_ptr<amrex::MultiFab>>& Theta_prim,
-
295  amrex::Vector<std::unique_ptr<amrex::MultiFab>>& Qv_prim)
-
296  { m_ma.update_field_ptrs(lev,vars_old,Theta_prim,Qv_prim); }
-
297 
-
298  const amrex::MultiFab*
-
299  get_u_star (const int& lev) { return u_star[lev].get(); }
-
300 
-
301  const amrex::MultiFab*
-
302  get_t_star (const int& lev) { return t_star[lev].get(); }
+
149  // Get pointers to SST and LANDMASK data
+
150  m_sst_lev.resize(nlevs);
+
151  m_lmask_lev.resize(nlevs);
+
152 
+
153  for (int lev(0); lev<nlevs; ++lev) {
+
154  int nt_tot_sst = sst_lev[lev].size();
+
155  m_sst_lev[lev].resize(nt_tot_sst);
+
156  for (int nt(0); nt<nt_tot_sst; ++nt) {
+
157  m_sst_lev[lev][nt] = sst_lev[lev][nt].get();
+
158  }
+
159  int nt_tot_lmask = lmask_lev[lev].size();
+
160  m_lmask_lev[lev].resize(nt_tot_lmask);
+
161  for (int nt(0); nt<nt_tot_lmask; ++nt) {
+
162  m_lmask_lev[lev][nt] = lmask_lev[lev][nt].get();
+
163  }
+
164  } // lev
+
165 
+
166  // Get pointers to LSM data and Fluxes
+
167  m_lsm_data_lev.resize(nlevs);
+
168  m_lsm_flux_lev.resize(nlevs);
+
169  for (int lev(0); lev<nlevs; ++lev) {
+
170  int nvar = lsm_data[lev].size();
+
171  m_lsm_data_lev[lev].resize(nvar);
+
172  m_lsm_flux_lev[lev].resize(nvar);
+
173  for (int n(0); n<nvar; ++n) {
+
174  m_lsm_data_lev[lev][n] = lsm_data[lev][n];
+
175  m_lsm_flux_lev[lev][n] = lsm_flux[lev][n];
+
176  }
+
177  } // lev
+
178 
+
179  // Get pointers to wave data
+
180  m_Hwave_lev.resize(nlevs);
+
181  m_Lwave_lev.resize(nlevs);
+
182  m_eddyDiffs_lev.resize(nlevs);
+
183  for (int lev(0); lev<nlevs; ++lev) {
+
184  m_Hwave_lev[lev] = Hwave[lev].get();
+
185  m_Lwave_lev[lev] = Lwave[lev].get();
+
186  m_eddyDiffs_lev[lev] = eddyDiffs[lev].get();
+
187  }
+
188 
+
189  for (int lev = 0; lev < nlevs; lev++) {
+
190  // Attributes for MFs and FABs
+
191  //--------------------------------------------------------
+
192  auto& mf = vars_old[lev][Vars::cons];
+
193  // Create a 2D ba, dm, & ghost cells
+
194  amrex::BoxArray ba = mf.boxArray();
+
195  amrex::BoxList bl2d = ba.boxList();
+
196  for (auto& b : bl2d) {
+
197  b.setRange(2,0);
+
198  }
+
199  amrex::BoxArray ba2d(std::move(bl2d));
+
200  const amrex::DistributionMapping& dm = mf.DistributionMap();
+
201  const int ncomp = 1;
+
202  amrex::IntVect ng = mf.nGrowVect(); ng[2]=0;
+
203 
+
204  // Z0 heights FAB
+
205  //--------------------------------------------------------
+
206  amrex::Box bx = amrex::grow(m_geom[lev].Domain(),ng);
+
207  bx.setSmall(2,0);
+
208  bx.setBig(2,0);
+
209  z_0[lev].resize(bx,1);
+
210  z_0[lev].setVal<amrex::RunOn::Device>(z0_const);
+
211 
+
212  // 2D MFs for U*, T*, T_surf
+
213  //--------------------------------------------------------
+
214  u_star[lev] = std::make_unique<amrex::MultiFab>(ba2d,dm,ncomp,ng);
+
215  u_star[lev]->setVal(1.E34);
+
216 
+
217  t_star[lev] = std::make_unique<amrex::MultiFab>(ba2d,dm,ncomp,ng);
+
218  t_star[lev]->setVal(1.E34);
+
219 
+
220  q_star[lev] = std::make_unique<amrex::MultiFab>(ba2d,dm,ncomp,ng);
+
221  q_star[lev]->setVal(1.E34);
+
222 
+
223  olen[lev] = std::make_unique<amrex::MultiFab>(ba2d,dm,ncomp,ng);
+
224  olen[lev]->setVal(1.E34);
+
225 
+
226  t_surf[lev] = std::make_unique<amrex::MultiFab>(ba2d,dm,ncomp,ng);
+
227 
+
228  // TODO: Do we want lsm_data to have theta at 0 index always?
+
229  // Do we want an external enum struct for indexing?
+
230  if (m_sst_lev[lev][0] || m_lsm_data_lev[lev][0]) {
+
231  // Valid SST or LSM data; t_surf set before computing fluxes (avoids extended lambda capture)
+
232  theta_type = ThetaCalcType::SURFACE_TEMPERATURE;
+
233  } else if (erf_st) {
+
234  t_surf[lev]->setVal(surf_temp);
+
235  } else {
+
236  t_surf[lev]->setVal(0.0);
+
237  }
+
238  }// lev
+
239  }
+
240 
+
241  void
+
242  update_fluxes (const int& lev,
+
243  const amrex::Real& time,
+
244  int max_iters = 25);
+
245 
+
246  template <typename FluxIter>
+
247  void
+
248  compute_fluxes (const int& lev,
+
249  const int& max_iters,
+
250  const FluxIter& most_flux,
+
251  bool is_land);
+
252 
+
253  void
+
254  impose_most_bcs (const int& lev,
+
255  const amrex::Vector<amrex::MultiFab*>& mfs,
+
256  amrex::MultiFab* xzmom_flux, amrex::MultiFab* zxmom_flux,
+
257  amrex::MultiFab* yzmom_flux, amrex::MultiFab* zymom_flux,
+
258  amrex::MultiFab* heat_flux,
+
259  amrex::MultiFab* qv_flux,
+
260  amrex::MultiFab* z_phys);
+
261 
+
262  template<typename FluxCalc>
+
263  void
+
264  compute_most_bcs (const int& lev,
+
265  const amrex::Vector<amrex::MultiFab*>& mfs,
+
266  amrex::MultiFab* xzmom_flux, amrex::MultiFab* zxmom_flux,
+
267  amrex::MultiFab* yzmom_flux, amrex::MultiFab* zymom_flux,
+
268  amrex::MultiFab* heat_flux,
+
269  amrex::MultiFab* qv_flux,
+
270  amrex::MultiFab* z_phys,
+
271  const amrex::Real& dz_no_terrain,
+
272  const FluxCalc& flux_comp);
+
273 
+
274  void
+
275  time_interp_sst (const int& lev,
+
276  const amrex::Real& time);
+
277 
+
278  void
+
279  get_lsm_tsurf (const int& lev);
+
280 
+
281  void
+
282  update_surf_temp (const amrex::Real& time)
+
283  {
+
284  if (surf_heating_rate != 0) {
+
285  int nlevs = m_geom.size();
+
286  for (int lev = 0; lev < nlevs; lev++)
+
287  {
+
288  t_surf[lev]->setVal(surf_temp + surf_heating_rate*time);
+
289  amrex::Print() << "Surface temp at t=" << time
+
290  << ": "
+
291  << surf_temp + surf_heating_rate*time
+
292  << std::endl;
+
293  }
+
294  }
+
295  }
+
296 
+
297  void
+
298  update_mac_ptrs (const int& lev,
+
299  amrex::Vector<amrex::Vector<amrex::MultiFab>>& vars_old,
+
300  amrex::Vector<std::unique_ptr<amrex::MultiFab>>& Theta_prim,
+
301  amrex::Vector<std::unique_ptr<amrex::MultiFab>>& Qv_prim)
+
302  { m_ma.update_field_ptrs(lev,vars_old,Theta_prim,Qv_prim); }
303 
304  const amrex::MultiFab*
-
305  get_olen (const int& lev) { return olen[lev].get(); }
+
305  get_u_star (const int& lev) { return u_star[lev].get(); }
306 
307  const amrex::MultiFab*
-
308  get_mac_avg (const int& lev, int comp) { return m_ma.get_average(lev,comp); }
+
308  get_t_star (const int& lev) { return t_star[lev].get(); }
309 
310  const amrex::MultiFab*
-
311  get_t_surf (const int& lev) { return t_surf[lev].get(); }
+
311  get_olen (const int& lev) { return olen[lev].get(); }
312 
-
313  amrex::Real
-
314  get_zref () {return m_ma.get_zref();}
+
313  const amrex::MultiFab*
+
314  get_mac_avg (const int& lev, int comp) { return m_ma.get_average(lev,comp); }
315 
-
316  const amrex::FArrayBox*
-
317  get_z0 (const int& lev) {return &z_0[lev];}
+
316  const amrex::MultiFab*
+
317  get_t_surf (const int& lev) { return t_surf[lev].get(); }
318 
-
319  enum struct FluxCalcType {
-
320  MOENG = 0, ///< Moeng functional form
-
321  DONELAN, ///< Donelan functional form
-
322  CUSTOM ///< Custom constant flux functional form
-
323  };
+
319  amrex::Real
+
320  get_zref () {return m_ma.get_zref();}
+
321 
+
322  const amrex::FArrayBox*
+
323  get_z0 (const int& lev) {return &z_0[lev];}
324 
-
325  enum struct ThetaCalcType {
-
326  ADIABATIC = 0,
-
327  HEAT_FLUX, ///< Heat-flux specified
-
328  SURFACE_TEMPERATURE ///< Surface temperature specified
-
329  };
-
330 
-
331  enum struct RoughCalcType {
-
332  CONSTANT = 0, ///< Constant z0
-
333  CHARNOCK,
-
334  MODIFIED_CHARNOCK,
-
335  WAVE_COUPLED
-
336  };
-
337 
-
338  FluxCalcType flux_type{FluxCalcType::MOENG};
-
339  ThetaCalcType theta_type{ThetaCalcType::ADIABATIC};
-
340  RoughCalcType rough_type_land{RoughCalcType::CONSTANT};
-
341  RoughCalcType rough_type_sea{RoughCalcType::CHARNOCK};
-
342 
-
343 private:
-
344  bool use_moisture;
-
345  bool m_exp_most = false;
-
346  amrex::Real z0_const{0.1};
-
347  amrex::Real surf_temp;
-
348  amrex::Real surf_heating_rate{0};
-
349  amrex::Real surf_temp_flux{0};
-
350  amrex::Real custom_ustar{0};
-
351  amrex::Real custom_tstar{0};
-
352  amrex::Real custom_qstar{0};
-
353  amrex::Real cnk_a{0.0185};
-
354  amrex::Real depth{30.0};
-
355  amrex::Real m_start_bdy_time;
-
356  amrex::Real m_bdy_time_interval;
-
357  amrex::Vector<amrex::Geometry> m_geom;
-
358  amrex::Vector<amrex::FArrayBox> z_0;
-
359 
-
360  MOSTAverage m_ma;
-
361  amrex::Vector<std::unique_ptr<amrex::MultiFab>> u_star;
-
362  amrex::Vector<std::unique_ptr<amrex::MultiFab>> t_star;
-
363  amrex::Vector<std::unique_ptr<amrex::MultiFab>> q_star;
-
364  amrex::Vector<std::unique_ptr<amrex::MultiFab>> olen;
-
365  amrex::Vector<std::unique_ptr<amrex::MultiFab>> t_surf;
-
366 
-
367  amrex::Vector<amrex::Vector<amrex::MultiFab*>> m_sst_lev;
-
368  amrex::Vector<amrex::Vector<amrex::iMultiFab*>> m_lmask_lev;
-
369  amrex::Vector<amrex::Vector<amrex::MultiFab*>> m_lsm_data_lev;
-
370  amrex::Vector<amrex::Vector<amrex::MultiFab*>> m_lsm_flux_lev;
-
371  amrex::Vector<amrex::MultiFab*> m_Hwave_lev;
-
372  amrex::Vector<amrex::MultiFab*> m_Lwave_lev;
-
373  amrex::Vector<amrex::MultiFab*> m_eddyDiffs_lev;
-
374 };
+
325 
+
326 
+
327  enum struct FluxCalcType {
+
328  MOENG = 0, ///< Moeng functional form
+
329  DONELAN, ///< Donelan functional form
+
330  CUSTOM ///< Custom constant flux functional form
+
331  };
+
332 
+
333  enum struct ThetaCalcType {
+
334  ADIABATIC = 0,
+
335  HEAT_FLUX, ///< Heat-flux specified
+
336  SURFACE_TEMPERATURE ///< Surface temperature specified
+
337  };
+
338 
+
339  enum struct RoughCalcType {
+
340  CONSTANT = 0, ///< Constant z0
+
341  CHARNOCK,
+
342  MODIFIED_CHARNOCK,
+
343  WAVE_COUPLED
+
344  };
+
345 
+
346  FluxCalcType flux_type{FluxCalcType::MOENG};
+
347  ThetaCalcType theta_type{ThetaCalcType::ADIABATIC};
+
348  RoughCalcType rough_type_land{RoughCalcType::CONSTANT};
+
349  RoughCalcType rough_type_sea{RoughCalcType::CHARNOCK};
+
350 
+
351 private:
+
352  bool use_moisture;
+
353  bool m_exp_most = false;
+
354  bool m_rotate = false;
+
355  amrex::Real z0_const{0.1};
+
356  amrex::Real surf_temp;
+
357  amrex::Real surf_heating_rate{0};
+
358  amrex::Real surf_temp_flux{0};
+
359  amrex::Real custom_ustar{0};
+
360  amrex::Real custom_tstar{0};
+
361  amrex::Real custom_qstar{0};
+
362  amrex::Real cnk_a{0.0185};
+
363  amrex::Real depth{30.0};
+
364  amrex::Real m_start_bdy_time;
+
365  amrex::Real m_bdy_time_interval;
+
366  amrex::Vector<amrex::Geometry> m_geom;
+
367  amrex::Vector<amrex::FArrayBox> z_0;
+
368 
+
369  MOSTAverage m_ma;
+
370  amrex::Vector<std::unique_ptr<amrex::MultiFab>> u_star;
+
371  amrex::Vector<std::unique_ptr<amrex::MultiFab>> t_star;
+
372  amrex::Vector<std::unique_ptr<amrex::MultiFab>> q_star;
+
373  amrex::Vector<std::unique_ptr<amrex::MultiFab>> olen;
+
374  amrex::Vector<std::unique_ptr<amrex::MultiFab>> t_surf;
375 
-
376 #endif /* ABLMOST_H */
+
376  amrex::Vector<amrex::Vector<amrex::MultiFab*>> m_sst_lev;
+
377  amrex::Vector<amrex::Vector<amrex::iMultiFab*>> m_lmask_lev;
+
378  amrex::Vector<amrex::Vector<amrex::MultiFab*>> m_lsm_data_lev;
+
379  amrex::Vector<amrex::Vector<amrex::MultiFab*>> m_lsm_flux_lev;
+
380  amrex::Vector<amrex::MultiFab*> m_Hwave_lev;
+
381  amrex::Vector<amrex::MultiFab*> m_Lwave_lev;
+
382  amrex::Vector<amrex::MultiFab*> m_eddyDiffs_lev;
+
383 
+
384  //amrex::Array2D<amrex::Real,0,2,0,2> m_rot_mat;
+
385 };
+
386 
+
387 #endif /* ABLMOST_H */
ERF_Constants.H
IndexDefines.H
MOSTAverage.H
MOSTStress.H
pp
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::Real pp(amrex::Real y)
Definition: Microphysics_Utils.H:219
ABLMost
Definition: ABLMost.H:27
-
ABLMost::m_bdy_time_interval
amrex::Real m_bdy_time_interval
Definition: ABLMost.H:356
-
ABLMost::m_eddyDiffs_lev
amrex::Vector< amrex::MultiFab * > m_eddyDiffs_lev
Definition: ABLMost.H:373
-
ABLMost::q_star
amrex::Vector< std::unique_ptr< amrex::MultiFab > > q_star
Definition: ABLMost.H:363
-
ABLMost::get_u_star
const amrex::MultiFab * get_u_star(const int &lev)
Definition: ABLMost.H:299
-
ABLMost::olen
amrex::Vector< std::unique_ptr< amrex::MultiFab > > olen
Definition: ABLMost.H:364
-
ABLMost::get_t_star
const amrex::MultiFab * get_t_star(const int &lev)
Definition: ABLMost.H:302
-
ABLMost::z_0
amrex::Vector< amrex::FArrayBox > z_0
Definition: ABLMost.H:358
-
ABLMost::m_geom
amrex::Vector< amrex::Geometry > m_geom
Definition: ABLMost.H:357
-
ABLMost::custom_ustar
amrex::Real custom_ustar
Definition: ABLMost.H:350
-
ABLMost::t_surf
amrex::Vector< std::unique_ptr< amrex::MultiFab > > t_surf
Definition: ABLMost.H:365
-
ABLMost::custom_qstar
amrex::Real custom_qstar
Definition: ABLMost.H:352
-
ABLMost::depth
amrex::Real depth
Definition: ABLMost.H:354
-
ABLMost::surf_heating_rate
amrex::Real surf_heating_rate
Definition: ABLMost.H:348
-
ABLMost::m_lsm_flux_lev
amrex::Vector< amrex::Vector< amrex::MultiFab * > > m_lsm_flux_lev
Definition: ABLMost.H:370
-
ABLMost::m_ma
MOSTAverage m_ma
Definition: ABLMost.H:360
-
ABLMost::ThetaCalcType
ThetaCalcType
Definition: ABLMost.H:325
+
ABLMost::m_bdy_time_interval
amrex::Real m_bdy_time_interval
Definition: ABLMost.H:365
+
ABLMost::m_eddyDiffs_lev
amrex::Vector< amrex::MultiFab * > m_eddyDiffs_lev
Definition: ABLMost.H:382
+
ABLMost::q_star
amrex::Vector< std::unique_ptr< amrex::MultiFab > > q_star
Definition: ABLMost.H:372
+
ABLMost::get_u_star
const amrex::MultiFab * get_u_star(const int &lev)
Definition: ABLMost.H:305
+
ABLMost::olen
amrex::Vector< std::unique_ptr< amrex::MultiFab > > olen
Definition: ABLMost.H:373
+
ABLMost::get_t_star
const amrex::MultiFab * get_t_star(const int &lev)
Definition: ABLMost.H:308
+
ABLMost::z_0
amrex::Vector< amrex::FArrayBox > z_0
Definition: ABLMost.H:367
+
ABLMost::m_geom
amrex::Vector< amrex::Geometry > m_geom
Definition: ABLMost.H:366
+
ABLMost::custom_ustar
amrex::Real custom_ustar
Definition: ABLMost.H:359
+
ABLMost::t_surf
amrex::Vector< std::unique_ptr< amrex::MultiFab > > t_surf
Definition: ABLMost.H:374
+
ABLMost::custom_qstar
amrex::Real custom_qstar
Definition: ABLMost.H:361
+
ABLMost::depth
amrex::Real depth
Definition: ABLMost.H:363
+
ABLMost::surf_heating_rate
amrex::Real surf_heating_rate
Definition: ABLMost.H:357
+
ABLMost::m_lsm_flux_lev
amrex::Vector< amrex::Vector< amrex::MultiFab * > > m_lsm_flux_lev
Definition: ABLMost.H:379
+
ABLMost::m_ma
MOSTAverage m_ma
Definition: ABLMost.H:369
+
ABLMost::ThetaCalcType
ThetaCalcType
Definition: ABLMost.H:333
ABLMost::ThetaCalcType::ADIABATIC
@ ADIABATIC
ABLMost::ThetaCalcType::SURFACE_TEMPERATURE
@ SURFACE_TEMPERATURE
Surface temperature specified.
ABLMost::ThetaCalcType::HEAT_FLUX
@ HEAT_FLUX
Heat-flux specified.
ABLMost::ABLMost
ABLMost(const amrex::Vector< amrex::Geometry > &geom, bool &use_exp_most, amrex::Vector< amrex::Vector< amrex::MultiFab >> &vars_old, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Theta_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Qv_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &z_phys_nd, amrex::Vector< amrex::Vector< std::unique_ptr< amrex::MultiFab >>> &sst_lev, amrex::Vector< amrex::Vector< std::unique_ptr< amrex::iMultiFab >>> &lmask_lev, amrex::Vector< amrex::Vector< amrex::MultiFab * >> lsm_data, amrex::Vector< amrex::Vector< amrex::MultiFab * >> lsm_flux, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Hwave, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Lwave, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &eddyDiffs, amrex::Real start_bdy_time=0.0, amrex::Real bdy_time_interval=0.0)
Definition: ABLMost.H:32
-
ABLMost::m_start_bdy_time
amrex::Real m_start_bdy_time
Definition: ABLMost.H:355
-
ABLMost::get_z0
const amrex::FArrayBox * get_z0(const int &lev)
Definition: ABLMost.H:317
-
ABLMost::m_Hwave_lev
amrex::Vector< amrex::MultiFab * > m_Hwave_lev
Definition: ABLMost.H:371
-
ABLMost::compute_most_bcs
void compute_most_bcs(const int &lev, const amrex::Vector< amrex::MultiFab * > &mfs, amrex::MultiFab *xzmom_flux, amrex::MultiFab *zxmom_flux, amrex::MultiFab *yzmom_flux, amrex::MultiFab *zymom_flux, amrex::MultiFab *heat_flux, amrex::MultiFab *z_phys, const amrex::Real &dz_no_terrain, const FluxCalc &flux_comp)
-
ABLMost::update_mac_ptrs
void update_mac_ptrs(const int &lev, amrex::Vector< amrex::Vector< amrex::MultiFab >> &vars_old, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Theta_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Qv_prim)
Definition: ABLMost.H:292
-
ABLMost::surf_temp
amrex::Real surf_temp
Definition: ABLMost.H:347
-
ABLMost::cnk_a
amrex::Real cnk_a
Definition: ABLMost.H:353
-
ABLMost::theta_type
ThetaCalcType theta_type
Definition: ABLMost.H:339
+
ABLMost::m_start_bdy_time
amrex::Real m_start_bdy_time
Definition: ABLMost.H:364
+
ABLMost::get_z0
const amrex::FArrayBox * get_z0(const int &lev)
Definition: ABLMost.H:323
+
ABLMost::m_Hwave_lev
amrex::Vector< amrex::MultiFab * > m_Hwave_lev
Definition: ABLMost.H:380
+
ABLMost::update_mac_ptrs
void update_mac_ptrs(const int &lev, amrex::Vector< amrex::Vector< amrex::MultiFab >> &vars_old, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Theta_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Qv_prim)
Definition: ABLMost.H:298
+
ABLMost::surf_temp
amrex::Real surf_temp
Definition: ABLMost.H:356
+
ABLMost::cnk_a
amrex::Real cnk_a
Definition: ABLMost.H:362
+
ABLMost::theta_type
ThetaCalcType theta_type
Definition: ABLMost.H:347
ABLMost::compute_fluxes
void compute_fluxes(const int &lev, const int &max_iters, const FluxIter &most_flux, bool is_land)
Definition: ABLMost.cpp:135
-
ABLMost::impose_most_bcs
void impose_most_bcs(const int &lev, const amrex::Vector< amrex::MultiFab * > &mfs, amrex::MultiFab *xzmom_flux, amrex::MultiFab *zxmom_flux, amrex::MultiFab *yzmom_flux, amrex::MultiFab *zymom_flux, amrex::MultiFab *heat_flux, amrex::MultiFab *z_phys)
Definition: ABLMost.cpp:189
-
ABLMost::FluxCalcType
FluxCalcType
Definition: ABLMost.H:319
+
ABLMost::FluxCalcType
FluxCalcType
Definition: ABLMost.H:327
ABLMost::FluxCalcType::MOENG
@ MOENG
Moeng functional form.
ABLMost::FluxCalcType::CUSTOM
@ CUSTOM
Custom constant flux functional form.
ABLMost::FluxCalcType::DONELAN
@ DONELAN
Donelan functional form.
-
ABLMost::m_lsm_data_lev
amrex::Vector< amrex::Vector< amrex::MultiFab * > > m_lsm_data_lev
Definition: ABLMost.H:369
-
ABLMost::surf_temp_flux
amrex::Real surf_temp_flux
Definition: ABLMost.H:349
-
ABLMost::m_lmask_lev
amrex::Vector< amrex::Vector< amrex::iMultiFab * > > m_lmask_lev
Definition: ABLMost.H:368
-
ABLMost::time_interp_sst
void time_interp_sst(const int &lev, const amrex::Real &time)
Definition: ABLMost.cpp:384
-
ABLMost::rough_type_land
RoughCalcType rough_type_land
Definition: ABLMost.H:340
-
ABLMost::m_Lwave_lev
amrex::Vector< amrex::MultiFab * > m_Lwave_lev
Definition: ABLMost.H:372
-
ABLMost::rough_type_sea
RoughCalcType rough_type_sea
Definition: ABLMost.H:341
-
ABLMost::use_moisture
bool use_moisture
Definition: ABLMost.H:344
-
ABLMost::m_exp_most
bool m_exp_most
Definition: ABLMost.H:345
-
ABLMost::t_star
amrex::Vector< std::unique_ptr< amrex::MultiFab > > t_star
Definition: ABLMost.H:362
-
ABLMost::get_t_surf
const amrex::MultiFab * get_t_surf(const int &lev)
Definition: ABLMost.H:311
-
ABLMost::u_star
amrex::Vector< std::unique_ptr< amrex::MultiFab > > u_star
Definition: ABLMost.H:361
-
ABLMost::z0_const
amrex::Real z0_const
Definition: ABLMost.H:346
-
ABLMost::flux_type
FluxCalcType flux_type
Definition: ABLMost.H:338
-
ABLMost::update_surf_temp
void update_surf_temp(const amrex::Real &time)
Definition: ABLMost.H:276
-
ABLMost::m_sst_lev
amrex::Vector< amrex::Vector< amrex::MultiFab * > > m_sst_lev
Definition: ABLMost.H:367
-
ABLMost::get_lsm_tsurf
void get_lsm_tsurf(const int &lev)
Definition: ABLMost.cpp:419
-
ABLMost::get_zref
amrex::Real get_zref()
Definition: ABLMost.H:314
-
ABLMost::RoughCalcType
RoughCalcType
Definition: ABLMost.H:331
+
ABLMost::m_lsm_data_lev
amrex::Vector< amrex::Vector< amrex::MultiFab * > > m_lsm_data_lev
Definition: ABLMost.H:378
+
ABLMost::surf_temp_flux
amrex::Real surf_temp_flux
Definition: ABLMost.H:358
+
ABLMost::m_lmask_lev
amrex::Vector< amrex::Vector< amrex::iMultiFab * > > m_lmask_lev
Definition: ABLMost.H:377
+
ABLMost::time_interp_sst
void time_interp_sst(const int &lev, const amrex::Real &time)
Definition: ABLMost.cpp:389
+
ABLMost::rough_type_land
RoughCalcType rough_type_land
Definition: ABLMost.H:348
+
ABLMost::m_rotate
bool m_rotate
Definition: ABLMost.H:354
+
ABLMost::m_Lwave_lev
amrex::Vector< amrex::MultiFab * > m_Lwave_lev
Definition: ABLMost.H:381
+
ABLMost::impose_most_bcs
void impose_most_bcs(const int &lev, const amrex::Vector< amrex::MultiFab * > &mfs, amrex::MultiFab *xzmom_flux, amrex::MultiFab *zxmom_flux, amrex::MultiFab *yzmom_flux, amrex::MultiFab *zymom_flux, amrex::MultiFab *heat_flux, amrex::MultiFab *qv_flux, amrex::MultiFab *z_phys)
Definition: ABLMost.cpp:189
+
ABLMost::rough_type_sea
RoughCalcType rough_type_sea
Definition: ABLMost.H:349
+
ABLMost::use_moisture
bool use_moisture
Definition: ABLMost.H:352
+
ABLMost::m_exp_most
bool m_exp_most
Definition: ABLMost.H:353
+
ABLMost::t_star
amrex::Vector< std::unique_ptr< amrex::MultiFab > > t_star
Definition: ABLMost.H:371
+
ABLMost::get_t_surf
const amrex::MultiFab * get_t_surf(const int &lev)
Definition: ABLMost.H:317
+
ABLMost::u_star
amrex::Vector< std::unique_ptr< amrex::MultiFab > > u_star
Definition: ABLMost.H:370
+
ABLMost::z0_const
amrex::Real z0_const
Definition: ABLMost.H:355
+
ABLMost::flux_type
FluxCalcType flux_type
Definition: ABLMost.H:346
+
ABLMost::update_surf_temp
void update_surf_temp(const amrex::Real &time)
Definition: ABLMost.H:282
+
ABLMost::m_sst_lev
amrex::Vector< amrex::Vector< amrex::MultiFab * > > m_sst_lev
Definition: ABLMost.H:376
+
ABLMost::get_lsm_tsurf
void get_lsm_tsurf(const int &lev)
Definition: ABLMost.cpp:424
+
ABLMost::get_zref
amrex::Real get_zref()
Definition: ABLMost.H:320
+
ABLMost::RoughCalcType
RoughCalcType
Definition: ABLMost.H:339
ABLMost::RoughCalcType::MODIFIED_CHARNOCK
@ MODIFIED_CHARNOCK
ABLMost::RoughCalcType::WAVE_COUPLED
@ WAVE_COUPLED
ABLMost::RoughCalcType::CONSTANT
@ CONSTANT
Constant z0.
ABLMost::RoughCalcType::CHARNOCK
@ CHARNOCK
-
ABLMost::get_olen
const amrex::MultiFab * get_olen(const int &lev)
Definition: ABLMost.H:305
-
ABLMost::get_mac_avg
const amrex::MultiFab * get_mac_avg(const int &lev, int comp)
Definition: ABLMost.H:308
+
ABLMost::get_olen
const amrex::MultiFab * get_olen(const int &lev)
Definition: ABLMost.H:311
+
ABLMost::get_mac_avg
const amrex::MultiFab * get_mac_avg(const int &lev, int comp)
Definition: ABLMost.H:314
ABLMost::update_fluxes
void update_fluxes(const int &lev, const amrex::Real &time, int max_iters=25)
Definition: ABLMost.cpp:13
-
ABLMost::custom_tstar
amrex::Real custom_tstar
Definition: ABLMost.H:351
+
ABLMost::compute_most_bcs
void compute_most_bcs(const int &lev, const amrex::Vector< amrex::MultiFab * > &mfs, amrex::MultiFab *xzmom_flux, amrex::MultiFab *zxmom_flux, amrex::MultiFab *yzmom_flux, amrex::MultiFab *zymom_flux, amrex::MultiFab *heat_flux, amrex::MultiFab *qv_flux, amrex::MultiFab *z_phys, const amrex::Real &dz_no_terrain, const FluxCalc &flux_comp)
+
ABLMost::custom_tstar
amrex::Real custom_tstar
Definition: ABLMost.H:360
MOSTAverage
Definition: MOSTAverage.H:12
-
MOSTAverage::get_zref
amrex::Real get_zref() const
Definition: MOSTAverage.H:90
-
MOSTAverage::get_average
const amrex::MultiFab * get_average(int lev, int comp) const
Definition: MOSTAverage.H:87
-
MOSTAverage::update_field_ptrs
void update_field_ptrs(int lev, amrex::Vector< amrex::Vector< amrex::MultiFab >> &vars_old, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Theta_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Qv_prim)
Definition: MOSTAverage.cpp:181
+
MOSTAverage::get_zref
amrex::Real get_zref() const
Definition: MOSTAverage.H:93
+
MOSTAverage::get_average
const amrex::MultiFab * get_average(int lev, int comp) const
Definition: MOSTAverage.H:90
+
MOSTAverage::update_field_ptrs
void update_field_ptrs(int lev, amrex::Vector< amrex::Vector< amrex::MultiFab >> &vars_old, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Theta_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Qv_prim)
Definition: MOSTAverage.cpp:209
Vars::cons
@ cons
Definition: IndexDefines.H:99
diff --git a/ERF_8H_source.html b/ERF_8H_source.html index cd6996271a..09f148e25a 100644 --- a/ERF_8H_source.html +++ b/ERF_8H_source.html @@ -1077,12 +1077,12 @@
989  amrex::Vector<amrex::Gpu::DeviceVector<amrex::Real> > d_v_geos;
990 
991  // Function to read and populate above host vectors (if input file exists)
-
992  void init_geo_wind_profile (const std::string input_file,
+
992  void init_geo_wind_profile (const std::string input_file,
993  amrex::Vector<amrex::Real>& u_geos,
994  amrex::Gpu::DeviceVector<amrex::Real>& u_geos_d,
995  amrex::Vector<amrex::Real>& v_geos,
996  amrex::Gpu::DeviceVector<amrex::Real>& v_geos_d,
-
997  const amrex::Geometry& geom,
+
997  const amrex::Geometry& lgeom,
998  const amrex::Vector<amrex::Real>& zlev_stag);
999 
1000  // This is a vector over levels of vectors across quantities of Vectors
@@ -1415,7 +1415,7 @@
ERF::ErrorEst
void ErrorEst(int lev, amrex::TagBoxArray &tags, amrex::Real time, int ngrow) override
Definition: ERF_Tagging.cpp:15
ERF::plot_file_2
std::string plot_file_2
Definition: ERF.H:836
ERF::m_bc_extdir_vals
amrex::Array< amrex::Array< amrex::Real, AMREX_SPACEDIM *2 >, AMREX_SPACEDIM+NVAR_max > m_bc_extdir_vals
Definition: ERF.H:784
-
ERF::FillBdyCCVels
void FillBdyCCVels(amrex::Vector< amrex::MultiFab > &mf_cc_vel)
Definition: ERF_FillPatch.cpp:578
+
ERF::FillBdyCCVels
void FillBdyCCVels(amrex::Vector< amrex::MultiFab > &mf_cc_vel)
Definition: ERF_FillPatch.cpp:579
ERF::SFS_hfx3_lev
amrex::Vector< std::unique_ptr< amrex::MultiFab > > SFS_hfx3_lev
Definition: ERF.H:728
ERF::h_w_subsid
amrex::Vector< amrex::Vector< amrex::Real > > h_w_subsid
Definition: ERF.H:982
ERF::print_banner
static void print_banner(MPI_Comm, std::ostream &)
Definition: console_io.cpp:60
@@ -1605,7 +1605,7 @@
ERF::turbPert_update
void turbPert_update(const int lev, const amrex::Real dt)
Definition: ERF_init_TurbPert.cpp:15
ERF::refinement_criteria_setup
void refinement_criteria_setup()
Definition: ERF_Tagging.cpp:107
ERF::bndry_output_planes_interval
static int bndry_output_planes_interval
Definition: ERF.H:965
-
ERF::init_geo_wind_profile
void init_geo_wind_profile(const std::string input_file, amrex::Vector< amrex::Real > &u_geos, amrex::Gpu::DeviceVector< amrex::Real > &u_geos_d, amrex::Vector< amrex::Real > &v_geos, amrex::Gpu::DeviceVector< amrex::Real > &v_geos_d, const amrex::Geometry &geom, const amrex::Vector< amrex::Real > &zlev_stag)
Definition: ERF_init1d.cpp:409
+
ERF::init_geo_wind_profile
void init_geo_wind_profile(const std::string input_file, amrex::Vector< amrex::Real > &u_geos, amrex::Gpu::DeviceVector< amrex::Real > &u_geos_d, amrex::Vector< amrex::Real > &v_geos, amrex::Gpu::DeviceVector< amrex::Real > &v_geos_d, const amrex::Geometry &lgeom, const amrex::Vector< amrex::Real > &zlev_stag)
Definition: ERF_init1d.cpp:409
ERF::RemakeLevel
void RemakeLevel(int lev, amrex::Real time, const amrex::BoxArray &ba, const amrex::DistributionMapping &dm) override
Definition: ERF_make_new_level.cpp:368
ERF::GotoNextLine
static void GotoNextLine(std::istream &is)
Definition: Checkpoint.cpp:13
ERF::MakeNewLevelFromScratch
void MakeNewLevelFromScratch(int lev, amrex::Real time, const amrex::BoxArray &ba, const amrex::DistributionMapping &dm) override
Definition: ERF_make_new_level.cpp:27
@@ -1622,7 +1622,7 @@
ERF::turbPert
TurbulentPerturbation turbPert
Definition: ERF.H:890
ERF::rW_old
amrex::Vector< amrex::MultiFab > rW_old
Definition: ERF.H:679
ERF::advance_lsm
void advance_lsm(int lev, amrex::MultiFab &, const amrex::Real &dt_advance)
Definition: ERF_advance_lsm.cpp:5
-
ERF::FillCoarsePatch
void FillCoarsePatch(int lev, amrex::Real time)
Definition: ERF_FillPatch.cpp:460
+
ERF::FillCoarsePatch
void FillCoarsePatch(int lev, amrex::Real time)
Definition: ERF_FillPatch.cpp:461
ERF::ClearLevel
void ClearLevel(int lev) override
Definition: ERF_make_new_level.cpp:488
ERF::ref_tags
static amrex::Vector< amrex::AMRErrorTag > ref_tags
Definition: ERF.H:1033
ERF::d_w_subsid
amrex::Vector< amrex::Gpu::DeviceVector< amrex::Real > > d_w_subsid
Definition: ERF.H:983
diff --git a/Interpolation__1D_8H.html b/Interpolation__1D_8H.html index 232f3f56a6..d842ce8502 100644 --- a/Interpolation__1D_8H.html +++ b/Interpolation__1D_8H.html @@ -261,7 +261,7 @@

70 } -

Referenced by init_bx_scalars_from_input_sounding(), init_bx_scalars_from_input_sounding_hse(), init_bx_velocities_from_input_sounding(), ERF::init_Dirichlet_bc_data(), ERF::init_geo_wind_profile(), InputSoundingData::read_from_file(), InputSpongeData::read_from_file(), ERF::setRayleighRefFromSounding(), ERF::setSpongeRefFromSounding(), EWP::source_terms_cellcentered(), and Fitch::source_terms_cellcentered().

+

Referenced by init_bx_scalars_from_input_sounding(), init_bx_scalars_from_input_sounding_hse(), init_bx_velocities_from_input_sounding(), ERF::init_Dirichlet_bc_data(), ERF::init_geo_wind_profile(), InputSoundingData::read_from_file(), InputSpongeData::read_from_file(), ERF::setRayleighRefFromSounding(), ERF::setSpongeRefFromSounding(), EWP::source_terms_cellcentered(), and Fitch::source_terms_cellcentered().

Here is the caller graph for this function:
@@ -272,7 +272,7 @@

- + diff --git a/Interpolation__1D_8H_a803d0d35d4ca4791556cbe02bbf51cbb_icgraph.map b/Interpolation__1D_8H_a803d0d35d4ca4791556cbe02bbf51cbb_icgraph.map index 417123832b..aa6a6413cf 100644 --- a/Interpolation__1D_8H_a803d0d35d4ca4791556cbe02bbf51cbb_icgraph.map +++ b/Interpolation__1D_8H_a803d0d35d4ca4791556cbe02bbf51cbb_icgraph.map @@ -4,7 +4,7 @@ - + diff --git a/Interpolation__1D_8H_a803d0d35d4ca4791556cbe02bbf51cbb_icgraph.md5 b/Interpolation__1D_8H_a803d0d35d4ca4791556cbe02bbf51cbb_icgraph.md5 index fcf567e51c..ca525f3fd0 100644 --- a/Interpolation__1D_8H_a803d0d35d4ca4791556cbe02bbf51cbb_icgraph.md5 +++ b/Interpolation__1D_8H_a803d0d35d4ca4791556cbe02bbf51cbb_icgraph.md5 @@ -1 +1 @@ -246f64441d33164d66f46d9051f902b6 \ No newline at end of file +4e323dff84afe7bbfae229d6db32e016 \ No newline at end of file diff --git a/MOSTAverage_8H_source.html b/MOSTAverage_8H_source.html index d72871d055..8c41f59869 100644 --- a/MOSTAverage_8H_source.html +++ b/MOSTAverage_8H_source.html @@ -118,7 +118,7 @@
30 
31  // Delete the copy constructor
32  MOSTAverage (const MOSTAverage& other) = delete;
-
33  //
+
33 
34  // Delete the copy assignment operator
35  MOSTAverage& operator=(const MOSTAverage& other) = delete;
36 
@@ -128,223 +128,231 @@
40  amrex::Vector<std::unique_ptr<amrex::MultiFab>>& Theta_prim,
41  amrex::Vector<std::unique_ptr<amrex::MultiFab>>& Qv_prim);
42 
-
43  // Compute ncells per plane
- +
43  // Update the rotated fields
+
44  void set_rotated_fields (int lev);
45 
46  // Compute ncells per plane
- -
48  {m_ncell_region = (2 * m_radius + 1) * (2 * m_radius + 1) * (2 * m_radius + 1);}
-
49 
-
50  // Populate a 2D iMF k_indx (w/o terrain)
-
51  void set_k_indices_N ();
+ +
48 
+
49  // Compute ncells per plane
+ +
51  {m_ncell_region = (2 * m_radius + 1) * (2 * m_radius + 1) * (2 * m_radius + 1);}
52 
-
53  // Populate a 2D iMF k_indx (w/ terrain)
-
54  void set_k_indices_T ();
+
53  // Populate a 2D iMF k_indx (w/o terrain)
+
54  void set_k_indices_N ();
55 
-
56  // Populate all 2D iMFs ijk_indx (w/ terrain)
-
57  void set_norm_indices_T ();
+
56  // Populate a 2D iMF k_indx (w/ terrain)
+
57  void set_k_indices_T ();
58 
-
59  // Populate positions (w/ terrain & norm vector & interpolation)
-
60  void set_z_positions_T ();
+
59  // Populate all 2D iMFs ijk_indx (w/ terrain)
+
60  void set_norm_indices_T ();
61 
62  // Populate positions (w/ terrain & norm vector & interpolation)
-
63  void set_norm_positions_T ();
+
63  void set_z_positions_T ();
64 
-
65  // Driver for the different average policies
-
66  void compute_averages (int lev);
+
65  // Populate positions (w/ terrain & norm vector & interpolation)
+
66  void set_norm_positions_T ();
67 
-
68  // Fill averages for policy::plane
-
69  void compute_plane_averages (int lev);
+
68  // Driver for the different average policies
+
69  void compute_averages (int lev);
70 
-
71  // Fill averages for policy::point
-
72  void compute_region_averages (int lev);
+
71  // Fill averages for policy::plane
+
72  void compute_plane_averages (int lev);
73 
-
74  // Write k indices
-
75  void write_k_indices (int lev);
+
74  // Fill averages for policy::point
+
75  void compute_region_averages (int lev);
76 
-
77  // Write ijk indices
-
78  void write_norm_indices (int lev);
+
77  // Write k indices
+
78  void write_k_indices (int lev);
79 
-
80  // Write XZ planar positions
-
81  void write_xz_positions (int lev, int j);
+
80  // Write ijk indices
+
81  void write_norm_indices (int lev);
82 
-
83  // Write averages on 2D mf
-
84  void write_averages (int lev);
+
83  // Write XZ planar positions
+
84  void write_xz_positions (int lev, int j);
85 
-
86  // Get pointer to the 2D mf of averages
-
87  [[nodiscard]] const amrex::MultiFab* get_average (int lev, int comp) const { return m_averages[lev][comp].get(); }
+
86  // Write averages on 2D mf
+
87  void write_averages (int lev);
88 
-
89  // Get z_ref (may be computed from specified k_indx)
-
90  [[nodiscard]] amrex::Real get_zref () const { return m_zref; }
-
91 
-
92  /**
-
93  * Function to compute trilinear interpolation with terrain.
-
94  *
-
95  * @param[in] xp X-position
-
96  * @param[in] yp Y-position
-
97  * @param[out] interp_vals Values interpolated
-
98  * @param[in] interp_array Array to interpolate on
-
99  * @param[in] z_arr Physical heights
-
100  * @param[in] plo Problem lower bounds
-
101  * @param[in] dxi Inverse cell size array
-
102  * @param[in] interp_comp Number of components to interpolate
-
103  */
-
104  AMREX_GPU_HOST_DEVICE AMREX_INLINE
-
105  static void trilinear_interp_T (const amrex::Real& xp,
-
106  const amrex::Real& yp,
-
107  const amrex::Real& zp,
-
108  amrex::Real* interp_vals,
-
109  amrex::Array4<amrex::Real const> const& interp_array,
-
110  amrex::Array4<amrex::Real const> const& z_arr,
-
111  const amrex::GpuArray<amrex::Real, AMREX_SPACEDIM>& plo,
-
112  const amrex::GpuArray<amrex::Real, AMREX_SPACEDIM>& dxi,
-
113  const int interp_comp)
-
114  {
-
115  // Search to get z/k
-
116  bool found = false;
-
117  amrex::Real zval= 0.0;
-
118  int kmax = ubound(z_arr).z;
-
119  int i_new = (int) (xp * dxi[0] - 0.5);
-
120  int j_new = (int) (yp * dxi[1] - 0.5);
-
121  amrex::Real z_target = zp;
-
122  for (int lk(0); lk<kmax; ++lk) {
-
123  amrex::Real z_lo = 0.25 * ( z_arr(i_new,j_new ,lk ) + z_arr(i_new+1,j_new ,lk )
-
124  + z_arr(i_new,j_new+1,lk ) + z_arr(i_new+1,j_new+1,lk ) );
-
125  amrex::Real z_hi = 0.25 * ( z_arr(i_new,j_new ,lk+1) + z_arr(i_new+1,j_new ,lk+1)
-
126  + z_arr(i_new,j_new+1,lk+1) + z_arr(i_new+1,j_new+1,lk+1) );
-
127  if (z_target > z_lo && z_target < z_hi){
-
128  found = true;
-
129  zval = (amrex::Real) lk + ((z_target - z_lo) / (z_hi - z_lo)) + 0.5;
-
130  break;
-
131  }
-
132  }
-
133 
-
134  amrex::ignore_unused(found);
-
135  AMREX_ASSERT_WITH_MESSAGE(found, "MOSTAverage: Height above terrain not found, try increasing z_ref!");
+
89  // Get pointer to the 2D mf of averages
+
90  [[nodiscard]] const amrex::MultiFab* get_average (int lev, int comp) const { return m_averages[lev][comp].get(); }
+
91 
+
92  // Get z_ref (may be computed from specified k_indx)
+
93  [[nodiscard]] amrex::Real get_zref () const { return m_zref; }
+
94 
+
95  /**
+
96  * Function to compute trilinear interpolation with terrain.
+
97  *
+
98  * @param[in] xp X-position
+
99  * @param[in] yp Y-position
+
100  * @param[out] interp_vals Values interpolated
+
101  * @param[in] interp_array Array to interpolate on
+
102  * @param[in] z_arr Physical heights
+
103  * @param[in] plo Problem lower bounds
+
104  * @param[in] dxi Inverse cell size array
+
105  * @param[in] interp_comp Number of components to interpolate
+
106  */
+
107  AMREX_GPU_HOST_DEVICE AMREX_INLINE
+
108  static void trilinear_interp_T (const amrex::Real& xp,
+
109  const amrex::Real& yp,
+
110  const amrex::Real& zp,
+
111  amrex::Real* interp_vals,
+
112  amrex::Array4<amrex::Real const> const& interp_array,
+
113  amrex::Array4<amrex::Real const> const& z_arr,
+
114  const amrex::GpuArray<amrex::Real, AMREX_SPACEDIM>& plo,
+
115  const amrex::GpuArray<amrex::Real, AMREX_SPACEDIM>& dxi,
+
116  const int interp_comp)
+
117  {
+
118  // Search to get z/k
+
119  bool found = false;
+
120  amrex::Real zval= 0.0;
+
121  int kmax = ubound(z_arr).z;
+
122  int i_new = (int) (xp * dxi[0] - 0.5);
+
123  int j_new = (int) (yp * dxi[1] - 0.5);
+
124  amrex::Real z_target = zp;
+
125  for (int lk(0); lk<kmax; ++lk) {
+
126  amrex::Real z_lo = 0.25 * ( z_arr(i_new,j_new ,lk ) + z_arr(i_new+1,j_new ,lk )
+
127  + z_arr(i_new,j_new+1,lk ) + z_arr(i_new+1,j_new+1,lk ) );
+
128  amrex::Real z_hi = 0.25 * ( z_arr(i_new,j_new ,lk+1) + z_arr(i_new+1,j_new ,lk+1)
+
129  + z_arr(i_new,j_new+1,lk+1) + z_arr(i_new+1,j_new+1,lk+1) );
+
130  if (z_target > z_lo && z_target < z_hi){
+
131  found = true;
+
132  zval = (amrex::Real) lk + ((z_target - z_lo) / (z_hi - z_lo)) + 0.5;
+
133  break;
+
134  }
+
135  }
136 
-
137  const amrex::RealVect lx((xp - plo[0])*dxi[0] + 0.5,
-
138  (yp - plo[1])*dxi[1] + 0.5,
-
139  zval);
-
140 
-
141  const amrex::IntVect ijk = lx.floor();
-
142 
-
143  int i = ijk[0]; int j = ijk[1]; int k = ijk[2];
-
144 
-
145  // Weights
-
146  const amrex::RealVect sx_hi = lx - ijk;
-
147  const amrex::RealVect sx_lo = 1.0 - sx_hi;
-
148 
-
149  for (int n = 0; n < interp_comp; n++)
-
150  interp_vals[n] = sx_lo[0]*sx_lo[1]*sx_lo[2]*interp_array(i-1, j-1, k-1,n) +
-
151  sx_lo[0]*sx_lo[1]*sx_hi[2]*interp_array(i-1, j-1, k ,n) +
-
152  sx_lo[0]*sx_hi[1]*sx_lo[2]*interp_array(i-1, j , k-1,n) +
-
153  sx_lo[0]*sx_hi[1]*sx_hi[2]*interp_array(i-1, j , k ,n) +
-
154  sx_hi[0]*sx_lo[1]*sx_lo[2]*interp_array(i , j-1, k-1,n) +
-
155  sx_hi[0]*sx_lo[1]*sx_hi[2]*interp_array(i , j-1, k ,n) +
-
156  sx_hi[0]*sx_hi[1]*sx_lo[2]*interp_array(i , j , k-1,n) +
-
157  sx_hi[0]*sx_hi[1]*sx_hi[2]*interp_array(i , j , k ,n);
-
158  }
-
159 
-
160 protected:
-
161 
-
162  // Passed through constructor
-
163  //--------------------------------------------
-
164  const amrex::Vector<amrex::Geometry> m_geom; // Geometry at each level
-
165  amrex::Vector<amrex::Vector<amrex::MultiFab*>> m_fields; // Ptr to fields to be averaged
-
166  amrex::Vector<amrex::MultiFab*> m_z_phys_nd; // Ptr to terrain height coords
-
167 
-
168  // General vars for multiple or all policies
-
169  //--------------------------------------------
-
170  int m_nvar{4}; // 4 fields for U/V/T/Qv
-
171  int m_navg{5}; // 5 averages for U/V/T/Qv/Umag
-
172  int m_maxlev{0}; // Total number of levels
-
173  int m_policy{0}; // Policy for type of averaging
-
174  amrex::Real m_zref{10.0}; // Height above surface for MOST BC
-
175  std::string m_pp_prefix {"erf"}; // ParmParse prefix
-
176  amrex::Vector<std::unique_ptr<amrex::MultiFab>> m_x_pos; // Ptr to 2D mf to hold x position (maxlev)
-
177  amrex::Vector<std::unique_ptr<amrex::MultiFab>> m_y_pos; // Ptr to 2D mf to hold y position (maxlev)
-
178  amrex::Vector<std::unique_ptr<amrex::MultiFab>> m_z_pos; // Ptr to 2D mf to hold z position (maxlev)
-
179  amrex::Vector<std::unique_ptr<amrex::iMultiFab>> m_i_indx; // Ptr to 2D imf to hold i indices (maxlev)
-
180  amrex::Vector<std::unique_ptr<amrex::iMultiFab>> m_j_indx; // Ptr to 2D imf to hold j indices (maxlev)
-
181  amrex::Vector<std::unique_ptr<amrex::iMultiFab>> m_k_indx; // Ptr to 2D imf to hold k indices (maxlev)
-
182  amrex::Vector<amrex::Vector<std::unique_ptr<amrex::MultiFab>>> m_averages; // Ptr to 2D mf to hold averages (maxlev,navg)
-
183 
-
184  // Vars for planar average policy
-
185  //--------------------------------------------
-
186  amrex::Vector<amrex::Vector<int>> m_ncell_plane; // Number of cells in plane (maxlev,navg)
-
187  amrex::Vector<amrex::Vector<amrex::Real>> m_plane_average; // Plane avgs (maxlev,navg)
+
137  amrex::ignore_unused(found);
+
138  AMREX_ASSERT_WITH_MESSAGE(found, "MOSTAverage: Height above terrain not found, try increasing z_ref!");
+
139 
+
140  const amrex::RealVect lx((xp - plo[0])*dxi[0] + 0.5,
+
141  (yp - plo[1])*dxi[1] + 0.5,
+
142  zval);
+
143 
+
144  const amrex::IntVect ijk = lx.floor();
+
145 
+
146  int i = ijk[0]; int j = ijk[1]; int k = ijk[2];
+
147 
+
148  // Weights
+
149  const amrex::RealVect sx_hi = lx - ijk;
+
150  const amrex::RealVect sx_lo = 1.0 - sx_hi;
+
151 
+
152  for (int n = 0; n < interp_comp; n++)
+
153  interp_vals[n] = sx_lo[0]*sx_lo[1]*sx_lo[2]*interp_array(i-1, j-1, k-1,n) +
+
154  sx_lo[0]*sx_lo[1]*sx_hi[2]*interp_array(i-1, j-1, k ,n) +
+
155  sx_lo[0]*sx_hi[1]*sx_lo[2]*interp_array(i-1, j , k-1,n) +
+
156  sx_lo[0]*sx_hi[1]*sx_hi[2]*interp_array(i-1, j , k ,n) +
+
157  sx_hi[0]*sx_lo[1]*sx_lo[2]*interp_array(i , j-1, k-1,n) +
+
158  sx_hi[0]*sx_lo[1]*sx_hi[2]*interp_array(i , j-1, k ,n) +
+
159  sx_hi[0]*sx_hi[1]*sx_lo[2]*interp_array(i , j , k-1,n) +
+
160  sx_hi[0]*sx_hi[1]*sx_hi[2]*interp_array(i , j , k ,n);
+
161  }
+
162 
+
163 protected:
+
164 
+
165  // Passed through constructor
+
166  //--------------------------------------------
+
167  const amrex::Vector<amrex::Geometry> m_geom; // Geometry at each level
+
168  amrex::Vector<amrex::Vector<amrex::MultiFab*>> m_fields; // Ptr to fields to be averaged
+
169  amrex::Vector<amrex::MultiFab*> m_z_phys_nd; // Ptr to terrain height coords
+
170 
+
171  // General vars for multiple or all policies
+
172  //--------------------------------------------
+
173  int m_nvar{5}; // 5 fields for U/V/T/Qv/W
+
174  int m_navg{5}; // 5 averages for U/V/T/Qv/Umag
+
175  int m_maxlev{0}; // Total number of levels
+
176  int m_policy{0}; // Policy for type of averaging
+
177  bool m_rotate{false}; // Do vector rotations for terrain?
+
178  amrex::Real m_zref{10.0}; // Height above surface for MOST BC
+
179  std::string m_pp_prefix {"erf"}; // ParmParse prefix
+
180  amrex::Vector<std::unique_ptr<amrex::MultiFab>> m_x_pos; // Ptr to 2D mf to hold x position (maxlev)
+
181  amrex::Vector<std::unique_ptr<amrex::MultiFab>> m_y_pos; // Ptr to 2D mf to hold y position (maxlev)
+
182  amrex::Vector<std::unique_ptr<amrex::MultiFab>> m_z_pos; // Ptr to 2D mf to hold z position (maxlev)
+
183  amrex::Vector<std::unique_ptr<amrex::iMultiFab>> m_i_indx; // Ptr to 2D imf to hold i indices (maxlev)
+
184  amrex::Vector<std::unique_ptr<amrex::iMultiFab>> m_j_indx; // Ptr to 2D imf to hold j indices (maxlev)
+
185  amrex::Vector<std::unique_ptr<amrex::iMultiFab>> m_k_indx; // Ptr to 2D imf to hold k indices (maxlev)
+
186  amrex::Vector<amrex::Vector<std::unique_ptr<amrex::MultiFab>>> m_averages; // Ptr to 2D mf to hold averages (maxlev,navg)
+
187  amrex::Vector<amrex::Vector<std::unique_ptr<amrex::MultiFab>>> m_rot_fields; // Rotated field data
188 
-
189  // Vars for point/region average policy
+
189  // Vars for planar average policy
190  //--------------------------------------------
-
191  int m_radius{0}; // Radius around k_index
-
192  int m_ncell_region{1}; // Number of cells in local region
-
193  amrex::Vector<int> m_k_in; // Specified k_index for region avg (maxlev)
-
194 
-
195  // Vars for normal vector policy
-
196  //--------------------------------------------
-
197  bool m_interp{false}; // Do interpolation on destination?
-
198  bool m_norm_vec{false}; // Use normal vector to find IJK?
+
191  amrex::Vector<amrex::Vector<int>> m_ncell_plane; // Number of cells in plane (maxlev,navg)
+
192  amrex::Vector<amrex::Vector<amrex::Real>> m_plane_average; // Plane avgs (maxlev,navg)
+
193 
+
194  // Vars for point/region average policy
+
195  //--------------------------------------------
+
196  int m_radius{0}; // Radius around k_index
+
197  int m_ncell_region{1}; // Number of cells in local region
+
198  amrex::Vector<int> m_k_in; // Specified k_index for region avg (maxlev)
199 
-
200  // Time average w/ exponential filter fun
+
200  // Vars for normal vector policy
201  //--------------------------------------------
-
202  bool m_t_avg{false}; // Flag to do moving average in time
-
203  amrex::Vector<int> m_t_init; // Flag to specify if averages are initialized
-
204  amrex::Real m_time_window{1.0e-16}; // Width of the exp filter function
-
205  amrex::Real m_fact_new, m_fact_old; // Time average factors for new and old means
-
206 };
-
207 #endif
+
202  bool m_interp{false}; // Do interpolation on destination?
+
203  bool m_norm_vec{false}; // Use normal vector to find IJK?
+
204 
+
205  // Time average w/ exponential filter fun
+
206  //--------------------------------------------
+
207  bool m_t_avg{false}; // Flag to do moving average in time
+
208  amrex::Vector<int> m_t_init; // Flag to specify if averages are initialized
+
209  amrex::Real m_time_window{1.0e-16}; // Width of the exp filter function
+
210  amrex::Real m_fact_new, m_fact_old; // Time average factors for new and old means
+
211 };
+
212 #endif
Definition: MOSTAverage.H:12
-
int m_navg
Definition: MOSTAverage.H:171
-
bool m_t_avg
Definition: MOSTAverage.H:202
-
int m_policy
Definition: MOSTAverage.H:173
-
amrex::Vector< amrex::Vector< std::unique_ptr< amrex::MultiFab > > > m_averages
Definition: MOSTAverage.H:182
-
void set_k_indices_T()
Definition: MOSTAverage.cpp:302
-
amrex::Vector< std::unique_ptr< amrex::MultiFab > > m_y_pos
Definition: MOSTAverage.H:177
-
void set_region_normalization()
Definition: MOSTAverage.H:47
-
void write_xz_positions(int lev, int j)
Definition: MOSTAverage.cpp:1066
-
void set_norm_indices_T()
Definition: MOSTAverage.cpp:359
-
int m_radius
Definition: MOSTAverage.H:191
-
amrex::Vector< std::unique_ptr< amrex::iMultiFab > > m_i_indx
Definition: MOSTAverage.H:179
-
amrex::Vector< amrex::MultiFab * > m_z_phys_nd
Definition: MOSTAverage.H:166
-
amrex::Vector< int > m_t_init
Definition: MOSTAverage.H:203
-
amrex::Vector< std::unique_ptr< amrex::MultiFab > > m_x_pos
Definition: MOSTAverage.H:176
-
void set_plane_normalization()
Definition: MOSTAverage.cpp:198
-
amrex::Real get_zref() const
Definition: MOSTAverage.H:90
-
void write_k_indices(int lev)
Definition: MOSTAverage.cpp:978
+
int m_navg
Definition: MOSTAverage.H:174
+
bool m_t_avg
Definition: MOSTAverage.H:207
+
int m_policy
Definition: MOSTAverage.H:176
+
amrex::Vector< amrex::Vector< std::unique_ptr< amrex::MultiFab > > > m_averages
Definition: MOSTAverage.H:186
+
void set_k_indices_T()
Definition: MOSTAverage.cpp:390
+
amrex::Vector< std::unique_ptr< amrex::MultiFab > > m_y_pos
Definition: MOSTAverage.H:181
+
void set_region_normalization()
Definition: MOSTAverage.H:50
+
void write_xz_positions(int lev, int j)
Definition: MOSTAverage.cpp:1164
+
void set_norm_indices_T()
Definition: MOSTAverage.cpp:447
+
int m_radius
Definition: MOSTAverage.H:196
+
amrex::Vector< std::unique_ptr< amrex::iMultiFab > > m_i_indx
Definition: MOSTAverage.H:183
+
void set_rotated_fields(int lev)
Definition: MOSTAverage.cpp:227
+
amrex::Vector< amrex::MultiFab * > m_z_phys_nd
Definition: MOSTAverage.H:169
+
amrex::Vector< int > m_t_init
Definition: MOSTAverage.H:208
+
amrex::Vector< std::unique_ptr< amrex::MultiFab > > m_x_pos
Definition: MOSTAverage.H:180
+
void set_plane_normalization()
Definition: MOSTAverage.cpp:286
+
amrex::Real get_zref() const
Definition: MOSTAverage.H:93
+
void write_k_indices(int lev)
Definition: MOSTAverage.cpp:1076
MOSTAverage(amrex::Vector< amrex::Geometry > geom, amrex::Vector< amrex::Vector< amrex::MultiFab >> &vars_old, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Theta_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Qv_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &z_phys_nd)
-
void set_norm_positions_T()
Definition: MOSTAverage.cpp:478
-
void compute_averages(int lev)
Definition: MOSTAverage.cpp:540
-
amrex::Vector< amrex::Vector< amrex::Real > > m_plane_average
Definition: MOSTAverage.H:187
-
amrex::Vector< std::unique_ptr< amrex::MultiFab > > m_z_pos
Definition: MOSTAverage.H:178
-
void set_k_indices_N()
Definition: MOSTAverage.cpp:243
-
amrex::Vector< amrex::Vector< int > > m_ncell_plane
Definition: MOSTAverage.H:186
-
std::string m_pp_prefix
Definition: MOSTAverage.H:175
-
bool m_norm_vec
Definition: MOSTAverage.H:198
-
int m_nvar
Definition: MOSTAverage.H:170
-
amrex::Real m_fact_new
Definition: MOSTAverage.H:205
-
void set_z_positions_T()
Definition: MOSTAverage.cpp:432
-
const amrex::MultiFab * get_average(int lev, int comp) const
Definition: MOSTAverage.H:87
-
void compute_region_averages(int lev)
Definition: MOSTAverage.cpp:754
-
int m_ncell_region
Definition: MOSTAverage.H:192
-
void compute_plane_averages(int lev)
Definition: MOSTAverage.cpp:564
-
void write_norm_indices(int lev)
Definition: MOSTAverage.cpp:1017
-
int m_maxlev
Definition: MOSTAverage.H:172
-
void write_averages(int lev)
Definition: MOSTAverage.cpp:1096
+
void set_norm_positions_T()
Definition: MOSTAverage.cpp:566
+
amrex::Vector< amrex::Vector< std::unique_ptr< amrex::MultiFab > > > m_rot_fields
Definition: MOSTAverage.H:187
+
void compute_averages(int lev)
Definition: MOSTAverage.cpp:628
+
bool m_rotate
Definition: MOSTAverage.H:177
+
amrex::Vector< amrex::Vector< amrex::Real > > m_plane_average
Definition: MOSTAverage.H:192
+
amrex::Vector< std::unique_ptr< amrex::MultiFab > > m_z_pos
Definition: MOSTAverage.H:182
+
void set_k_indices_N()
Definition: MOSTAverage.cpp:331
+
amrex::Vector< amrex::Vector< int > > m_ncell_plane
Definition: MOSTAverage.H:191
+
std::string m_pp_prefix
Definition: MOSTAverage.H:179
+
bool m_norm_vec
Definition: MOSTAverage.H:203
+
int m_nvar
Definition: MOSTAverage.H:173
+
amrex::Real m_fact_new
Definition: MOSTAverage.H:210
+
void set_z_positions_T()
Definition: MOSTAverage.cpp:520
+
const amrex::MultiFab * get_average(int lev, int comp) const
Definition: MOSTAverage.H:90
+
void compute_region_averages(int lev)
Definition: MOSTAverage.cpp:848
+
int m_ncell_region
Definition: MOSTAverage.H:197
+
void compute_plane_averages(int lev)
Definition: MOSTAverage.cpp:654
+
void write_norm_indices(int lev)
Definition: MOSTAverage.cpp:1115
+
int m_maxlev
Definition: MOSTAverage.H:175
+
void write_averages(int lev)
Definition: MOSTAverage.cpp:1194
~MOSTAverage()
Definition: MOSTAverage.H:21
-
amrex::Real m_time_window
Definition: MOSTAverage.H:204
-
void update_field_ptrs(int lev, amrex::Vector< amrex::Vector< amrex::MultiFab >> &vars_old, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Theta_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Qv_prim)
Definition: MOSTAverage.cpp:181
-
amrex::Vector< std::unique_ptr< amrex::iMultiFab > > m_j_indx
Definition: MOSTAverage.H:180
+
amrex::Real m_time_window
Definition: MOSTAverage.H:209
+
void update_field_ptrs(int lev, amrex::Vector< amrex::Vector< amrex::MultiFab >> &vars_old, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Theta_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Qv_prim)
Definition: MOSTAverage.cpp:209
+
amrex::Vector< std::unique_ptr< amrex::iMultiFab > > m_j_indx
Definition: MOSTAverage.H:184
MOSTAverage(MOSTAverage &&) noexcept=default
-
amrex::Vector< amrex::Vector< amrex::MultiFab * > > m_fields
Definition: MOSTAverage.H:165
-
amrex::Vector< int > m_k_in
Definition: MOSTAverage.H:193
-
amrex::Real m_fact_old
Definition: MOSTAverage.H:205
-
bool m_interp
Definition: MOSTAverage.H:197
-
const amrex::Vector< amrex::Geometry > m_geom
Definition: MOSTAverage.H:164
-
AMREX_GPU_HOST_DEVICE static AMREX_INLINE void trilinear_interp_T(const amrex::Real &xp, const amrex::Real &yp, const amrex::Real &zp, amrex::Real *interp_vals, amrex::Array4< amrex::Real const > const &interp_array, amrex::Array4< amrex::Real const > const &z_arr, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &plo, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxi, const int interp_comp)
Definition: MOSTAverage.H:105
-
amrex::Real m_zref
Definition: MOSTAverage.H:174
-
amrex::Vector< std::unique_ptr< amrex::iMultiFab > > m_k_indx
Definition: MOSTAverage.H:181
+
amrex::Vector< amrex::Vector< amrex::MultiFab * > > m_fields
Definition: MOSTAverage.H:168
+
amrex::Vector< int > m_k_in
Definition: MOSTAverage.H:198
+
amrex::Real m_fact_old
Definition: MOSTAverage.H:210
+
bool m_interp
Definition: MOSTAverage.H:202
+
const amrex::Vector< amrex::Geometry > m_geom
Definition: MOSTAverage.H:167
+
AMREX_GPU_HOST_DEVICE static AMREX_INLINE void trilinear_interp_T(const amrex::Real &xp, const amrex::Real &yp, const amrex::Real &zp, amrex::Real *interp_vals, amrex::Array4< amrex::Real const > const &interp_array, amrex::Array4< amrex::Real const > const &z_arr, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &plo, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxi, const int interp_comp)
Definition: MOSTAverage.H:108
+
amrex::Real m_zref
Definition: MOSTAverage.H:178
+
amrex::Vector< std::unique_ptr< amrex::iMultiFab > > m_k_indx
Definition: MOSTAverage.H:185
Definition: console_io.cpp:12

diff --git a/MOSTStress_8H_source.html b/MOSTStress_8H_source.html index 1a707baf4e..97a68f6a4d 100644 --- a/MOSTStress_8H_source.html +++ b/MOSTStress_8H_source.html @@ -919,13 +919,13 @@
831  AMREX_GPU_DEVICE
832  AMREX_FORCE_INLINE
833  amrex::Real
-
834  compute_q_flux (const int& i,
+
834  compute_q_flux (const int& i,
835  const int& j,
836  const int& k,
837  const int& n,
838  const int& icomp,
839  const amrex::Real& dz,
-
840  const amrex::Real& /*dz1*/,
+
840  const amrex::Real& dz1,
841  const bool& exp_most,
842  const amrex::Array4<const amrex::Real>& eta_arr,
843  const amrex::Array4<const amrex::Real>& cons_arr,
@@ -953,767 +953,782 @@
865  amrex::Real moflux = 0.0;
866  amrex::Real deltaz = dz * (zlo - k);
867 
-
868  if (exp_most) amrex::Abort("Explicit MOST stress not implemented for Moeng moisture flux");
-
869 
-
870  int ie, je;
-
871  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
-
872  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
-
873  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
-
874  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
-
875  eta = eta_arr(ie,je,zlo,EddyDiff::Q_v); // == rho * alpha [kg/m^3 * m^2/s]
-
876  eta = amrex::max(eta,eta_eps);
-
877  dest_arr(i,j,k,icomp+n) = rho*(qv - moflux*rho/eta*deltaz);
-
878 
-
879  return moflux;
-
880  }
-
881 
-
882  AMREX_GPU_DEVICE
-
883  AMREX_FORCE_INLINE
-
884  amrex::Real
-
885  compute_t_flux (const int& i,
-
886  const int& j,
-
887  const int& k,
-
888  const int& n,
-
889  const int& icomp,
-
890  const amrex::Real& dz,
-
891  const amrex::Real& dz1,
-
892  const bool& exp_most,
-
893  const amrex::Array4<const amrex::Real>& eta_arr,
-
894  const amrex::Array4<const amrex::Real>& cons_arr,
-
895  const amrex::Array4<const amrex::Real>& velx_arr,
-
896  const amrex::Array4<const amrex::Real>& vely_arr,
-
897  const amrex::Array4<const amrex::Real>& umm_arr,
-
898  const amrex::Array4<const amrex::Real>& tm_arr,
-
899  const amrex::Array4<const amrex::Real>& u_star_arr,
-
900  const amrex::Array4<const amrex::Real>& t_star_arr,
-
901  const amrex::Array4<const amrex::Real>& t_surf_arr,
-
902  const amrex::Array4<amrex::Real>& dest_arr) const
-
903  {
-
904  amrex::Real velx, vely, rho, theta, eta;
-
905  int ix, jx, iy, jy, ic, jc;
-
906 
-
907  ix = i < lbound(velx_arr).x ? lbound(velx_arr).x : i;
-
908  jx = j < lbound(velx_arr).y ? lbound(velx_arr).y : j;
-
909  ix = ix > ubound(velx_arr).x-1 ? ubound(velx_arr).x-1 : ix;
-
910  jx = jx > ubound(velx_arr).y ? ubound(velx_arr).y : jx;
+
868  if (exp_most) {
+
869  // surface gradient equal to gradient at first zface
+
870  amrex::Real qvgrad = ( cons_arr(ic,jc,zlo+1,RhoQ1_comp)/cons_arr(ic,jc,zlo+1,Rho_comp)
+
871  - cons_arr(ic,jc,zlo ,RhoQ1_comp)/cons_arr(ic,jc,zlo ,Rho_comp)) / (0.5*(dz+dz1));
+
872  dest_arr(i,j,k,icomp+n) = cons_arr(ic,jc,zlo,RhoQ1_comp) - rho*qvgrad * deltaz;
+
873  } else {
+
874  int ie, je;
+
875  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
+
876  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
+
877  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
+
878  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
+
879  eta = eta_arr(ie,je,zlo,EddyDiff::Q_v); // == rho * alpha [kg/m^3 * m^2/s]
+
880  eta = amrex::max(eta,eta_eps);
+
881  dest_arr(i,j,k,icomp+n) = rho*(qv - moflux*rho/eta*deltaz);
+
882  }
+
883 
+
884  return moflux;
+
885  }
+
886 
+
887  AMREX_GPU_DEVICE
+
888  AMREX_FORCE_INLINE
+
889  amrex::Real
+
890  compute_t_flux (const int& i,
+
891  const int& j,
+
892  const int& k,
+
893  const int& n,
+
894  const int& icomp,
+
895  const amrex::Real& dz,
+
896  const amrex::Real& dz1,
+
897  const bool& exp_most,
+
898  const amrex::Array4<const amrex::Real>& eta_arr,
+
899  const amrex::Array4<const amrex::Real>& cons_arr,
+
900  const amrex::Array4<const amrex::Real>& velx_arr,
+
901  const amrex::Array4<const amrex::Real>& vely_arr,
+
902  const amrex::Array4<const amrex::Real>& umm_arr,
+
903  const amrex::Array4<const amrex::Real>& tm_arr,
+
904  const amrex::Array4<const amrex::Real>& u_star_arr,
+
905  const amrex::Array4<const amrex::Real>& t_star_arr,
+
906  const amrex::Array4<const amrex::Real>& t_surf_arr,
+
907  const amrex::Array4<amrex::Real>& dest_arr) const
+
908  {
+
909  amrex::Real velx, vely, rho, theta, eta;
+
910  int ix, jx, iy, jy, ic, jc;
911 
-
912  iy = i < lbound(vely_arr).x ? lbound(vely_arr).x : i;
-
913  jy = j < lbound(vely_arr).y ? lbound(vely_arr).y : j;
-
914  iy = iy > ubound(vely_arr).x ? ubound(vely_arr).x : iy;
-
915  jy = jy > ubound(vely_arr).y-1 ? ubound(vely_arr).y-1 : jy;
+
912  ix = i < lbound(velx_arr).x ? lbound(velx_arr).x : i;
+
913  jx = j < lbound(velx_arr).y ? lbound(velx_arr).y : j;
+
914  ix = ix > ubound(velx_arr).x-1 ? ubound(velx_arr).x-1 : ix;
+
915  jx = jx > ubound(velx_arr).y ? ubound(velx_arr).y : jx;
916 
-
917  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
-
918  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
-
919  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
-
920  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
+
917  iy = i < lbound(vely_arr).x ? lbound(vely_arr).x : i;
+
918  jy = j < lbound(vely_arr).y ? lbound(vely_arr).y : j;
+
919  iy = iy > ubound(vely_arr).x ? ubound(vely_arr).x : iy;
+
920  jy = jy > ubound(vely_arr).y-1 ? ubound(vely_arr).y-1 : jy;
921 
-
922  velx = 0.5 *( velx_arr(ix,jx,zlo) + velx_arr(ix+1,jx ,zlo) );
-
923  vely = 0.5 *( vely_arr(iy,jy,zlo) + vely_arr(iy ,jy+1,zlo) );
-
924  rho = cons_arr(ic,jc,zlo,Rho_comp);
-
925  theta = cons_arr(ic,jc,zlo,RhoTheta_comp) / rho;
+
922  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
+
923  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
+
924  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
+
925  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
926 
-
927  amrex::Real theta_mean = tm_arr(ic,jc,zlo);
-
928  amrex::Real wsp_mean = umm_arr(ic,jc,zlo);
-
929  amrex::Real ustar = u_star_arr(ic,jc,zlo);
-
930  amrex::Real tstar = t_star_arr(ic,jc,zlo);
-
931  amrex::Real theta_surf = t_surf_arr(ic,jc,zlo);
-
932 
-
933  amrex::Real wsp = sqrt(velx*velx+vely*vely);
-
934  amrex::Real num1 = wsp * (theta_mean-theta_surf);
-
935  amrex::Real num2 = wsp_mean * (theta-theta_mean);
-
936  amrex::Real moflux = (std::abs(tstar) > eps) ?
-
937  -tstar*ustar*(num1+num2)/((theta_mean-theta_surf)*wsp_mean) : 0.0;
-
938  amrex::Real deltaz = dz * (zlo - k);
-
939 
-
940  if (exp_most) {
-
941  // surface gradient equal to gradient at first zface
-
942  amrex::Real thetagrad = (cons_arr(ic,jc,zlo+1,RhoTheta_comp) - cons_arr(ic,jc,zlo,RhoTheta_comp)) / (0.5*(dz+dz1));
-
943  dest_arr(i,j,k,icomp+n) = cons_arr(ic,jc,zlo,RhoTheta_comp) - thetagrad * deltaz;
-
944  } else {
-
945  int ie, je;
-
946  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
-
947  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
-
948  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
-
949  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
-
950  eta = eta_arr(ie,je,zlo,EddyDiff::Theta_v); // == rho * alpha [kg/m^3 * m^2/s]
-
951  eta = amrex::max(eta,eta_eps);
-
952  // Note: Kh = eta/rho
-
953  // hfx = -Kh dT/dz ==> +ve hfx corresponds to heating from the surface
-
954  // Extrapolate from klo to ghost cell a distance of -deltaz; negative signs cancel
-
955  dest_arr(i,j,k,icomp+n) = rho*(theta + moflux*rho/eta*deltaz);
-
956  }
-
957 
-
958  return moflux;
-
959  }
-
960 
-
961  AMREX_GPU_DEVICE
-
962  AMREX_FORCE_INLINE
-
963  amrex::Real
-
964  compute_u_flux (const int& i,
-
965  const int& j,
-
966  const int& k,
-
967  const int& icomp,
-
968  const amrex::Real& dz,
-
969  const amrex::Real& dz1,
-
970  const bool& exp_most,
-
971  const amrex::Array4<const amrex::Real>& eta_arr,
-
972  const amrex::Array4<const amrex::Real>& cons_arr,
-
973  const amrex::Array4<const amrex::Real>& velx_arr,
-
974  const amrex::Array4<const amrex::Real>& vely_arr,
-
975  const amrex::Array4<const amrex::Real>& umm_arr,
-
976  const amrex::Array4<const amrex::Real>& um_arr,
-
977  const amrex::Array4<const amrex::Real>& u_star_arr,
-
978  const amrex::Array4<amrex::Real>& dest_arr) const
-
979  {
-
980  amrex::Real velx, vely, rho, eta;
-
981  int jy, ic, jc;
-
982 
-
983  int iylo = i <= lbound(vely_arr).x ? lbound(vely_arr).x : i-1;
-
984  int iyhi = i > ubound(vely_arr).x ? ubound(vely_arr).x : i;
-
985 
-
986  jy = j < lbound(vely_arr).y ? lbound(vely_arr).y : j;
-
987  jy = jy > ubound(vely_arr).y-1 ? ubound(vely_arr).y-1 : jy;
-
988 
-
989  ic = i < lbound(cons_arr).x+1 ? lbound(cons_arr).x+1 : i;
-
990  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
-
991  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
-
992  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
+
927  velx = 0.5 *( velx_arr(ix,jx,zlo) + velx_arr(ix+1,jx ,zlo) );
+
928  vely = 0.5 *( vely_arr(iy,jy,zlo) + vely_arr(iy ,jy+1,zlo) );
+
929  rho = cons_arr(ic,jc,zlo,Rho_comp);
+
930  theta = cons_arr(ic,jc,zlo,RhoTheta_comp) / rho;
+
931 
+
932  amrex::Real theta_mean = tm_arr(ic,jc,zlo);
+
933  amrex::Real wsp_mean = umm_arr(ic,jc,zlo);
+
934  amrex::Real ustar = u_star_arr(ic,jc,zlo);
+
935  amrex::Real tstar = t_star_arr(ic,jc,zlo);
+
936  amrex::Real theta_surf = t_surf_arr(ic,jc,zlo);
+
937 
+
938  amrex::Real wsp = sqrt(velx*velx+vely*vely);
+
939  amrex::Real num1 = wsp * (theta_mean-theta_surf);
+
940  amrex::Real num2 = wsp_mean * (theta-theta_mean);
+
941  amrex::Real moflux = (std::abs(tstar) > eps) ?
+
942  -tstar*ustar*(num1+num2)/((theta_mean-theta_surf)*wsp_mean) : 0.0;
+
943  amrex::Real deltaz = dz * (zlo - k);
+
944 
+
945  if (exp_most) {
+
946  // surface gradient equal to gradient at first zface
+
947  amrex::Real thetagrad = (cons_arr(ic,jc,zlo+1,RhoTheta_comp) - cons_arr(ic,jc,zlo,RhoTheta_comp)) / (0.5*(dz+dz1));
+
948  dest_arr(i,j,k,icomp+n) = cons_arr(ic,jc,zlo,RhoTheta_comp) - thetagrad * deltaz;
+
949  } else {
+
950  int ie, je;
+
951  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
+
952  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
+
953  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
+
954  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
+
955  eta = eta_arr(ie,je,zlo,EddyDiff::Theta_v); // == rho * alpha [kg/m^3 * m^2/s]
+
956  eta = amrex::max(eta,eta_eps);
+
957  // Note: Kh = eta/rho
+
958  // hfx = -Kh dT/dz ==> +ve hfx corresponds to heating from the surface
+
959  // Extrapolate from klo to ghost cell a distance of -deltaz; negative signs cancel
+
960  dest_arr(i,j,k,icomp+n) = rho*(theta + moflux*rho/eta*deltaz);
+
961  }
+
962 
+
963  return moflux;
+
964  }
+
965 
+
966  AMREX_GPU_DEVICE
+
967  AMREX_FORCE_INLINE
+
968  amrex::Real
+
969  compute_u_flux (const int& i,
+
970  const int& j,
+
971  const int& k,
+
972  const int& icomp,
+
973  const amrex::Real& dz,
+
974  const amrex::Real& dz1,
+
975  const bool& exp_most,
+
976  const amrex::Array4<const amrex::Real>& eta_arr,
+
977  const amrex::Array4<const amrex::Real>& cons_arr,
+
978  const amrex::Array4<const amrex::Real>& velx_arr,
+
979  const amrex::Array4<const amrex::Real>& vely_arr,
+
980  const amrex::Array4<const amrex::Real>& umm_arr,
+
981  const amrex::Array4<const amrex::Real>& um_arr,
+
982  const amrex::Array4<const amrex::Real>& u_star_arr,
+
983  const amrex::Array4<amrex::Real>& dest_arr) const
+
984  {
+
985  amrex::Real velx, vely, rho, eta;
+
986  int jy, ic, jc;
+
987 
+
988  int iylo = i <= lbound(vely_arr).x ? lbound(vely_arr).x : i-1;
+
989  int iyhi = i > ubound(vely_arr).x ? ubound(vely_arr).x : i;
+
990 
+
991  jy = j < lbound(vely_arr).y ? lbound(vely_arr).y : j;
+
992  jy = jy > ubound(vely_arr).y-1 ? ubound(vely_arr).y-1 : jy;
993 
-
994  velx = velx_arr(i,j,zlo);
-
995  vely = 0.25*( vely_arr(iyhi,jy,zlo)+vely_arr(iyhi,jy+1,zlo)
-
996  + vely_arr(iylo,jy,zlo)+vely_arr(iylo,jy+1,zlo) );
-
997  rho = 0.5 *( cons_arr(ic-1,jc,zlo,Rho_comp)
-
998  + cons_arr(ic ,jc,zlo,Rho_comp) );
-
999 
-
1000  amrex::Real umean = um_arr(i,j,zlo);
-
1001  amrex::Real wsp_mean = 0.5 * ( umm_arr(ic-1,jc,zlo) + umm_arr(ic,jc,zlo) );
-
1002  amrex::Real ustar = 0.5 * ( u_star_arr(ic-1,jc,zlo) + u_star_arr(ic,jc,zlo) );
-
1003 
-
1004  // Note: The surface mean shear stress is decomposed into tau_xz by
-
1005  // multiplying the modeled shear stress (rho*ustar^2) with
-
1006  // a factor of umean/wsp_mean for directionality; this factor
-
1007  // modifies the denominator from what is in Moeng 1984.
-
1008  amrex::Real wsp = sqrt(velx*velx+vely*vely);
-
1009  amrex::Real num1 = wsp * umean;
-
1010  amrex::Real num2 = wsp_mean * (velx-umean);
-
1011  amrex::Real stressx = rho*ustar*ustar * (num1+num2)/(wsp_mean*wsp_mean);
-
1012  amrex::Real deltaz = dz * (zlo - k);
-
1013 
-
1014  if (exp_most) {
-
1015  // surface gradient equal to gradient at first zface
-
1016  amrex::Real ugrad = (velx_arr(i,j,zlo+1) - velx) / (0.5*(dz+dz1));
-
1017  dest_arr(i,j,k,icomp) = velx - ugrad * deltaz;
-
1018  } else {
-
1019  int ie, je;
-
1020  ie = i < lbound(eta_arr).x+1 ? lbound(eta_arr).x+1 : i;
-
1021  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
-
1022  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
-
1023  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
-
1024  eta = 0.5 *( eta_arr(ie-1,je,zlo,EddyDiff::Mom_v)
-
1025  + eta_arr(ie ,je,zlo,EddyDiff::Mom_v) );
-
1026  eta = amrex::max(eta,eta_eps);
-
1027  dest_arr(i,j,k,icomp) = dest_arr(i,j,zlo,icomp) - stressx/eta*deltaz;
-
1028  }
-
1029 
-
1030  return stressx;
-
1031  }
-
1032 
-
1033  AMREX_GPU_DEVICE
-
1034  AMREX_FORCE_INLINE
-
1035  amrex::Real
-
1036  compute_v_flux (const int& i,
-
1037  const int& j,
-
1038  const int& k,
-
1039  const int& icomp,
-
1040  const amrex::Real& dz,
-
1041  const amrex::Real& dz1,
-
1042  const bool& exp_most,
-
1043  const amrex::Array4<const amrex::Real>& eta_arr,
-
1044  const amrex::Array4<const amrex::Real>& cons_arr,
-
1045  const amrex::Array4<const amrex::Real>& velx_arr,
-
1046  const amrex::Array4<const amrex::Real>& vely_arr,
-
1047  const amrex::Array4<const amrex::Real>& umm_arr,
-
1048  const amrex::Array4<const amrex::Real>& vm_arr,
-
1049  const amrex::Array4<const amrex::Real>& u_star_arr,
-
1050  const amrex::Array4<amrex::Real>& dest_arr) const
-
1051  {
-
1052  amrex::Real velx, vely, rho, eta;
-
1053  int ix, ic, jc;
-
1054 
-
1055  ix = i < lbound(velx_arr).x ? lbound(velx_arr).x : i;
-
1056  ix = ix > ubound(velx_arr).x ? ubound(velx_arr).x : ix;
-
1057 
-
1058  int jxlo = j <= lbound(velx_arr).y ? lbound(velx_arr).y : j-1;
-
1059  int jxhi = j > ubound(velx_arr).y ? ubound(velx_arr).y : j;
-
1060 
-
1061  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
-
1062  jc = j < lbound(cons_arr).y+1 ? lbound(cons_arr).y+1 : j;
-
1063  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
-
1064  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
+
994  ic = i < lbound(cons_arr).x+1 ? lbound(cons_arr).x+1 : i;
+
995  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
+
996  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
+
997  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
+
998 
+
999  velx = velx_arr(i,j,zlo);
+
1000  vely = 0.25*( vely_arr(iyhi,jy,zlo)+vely_arr(iyhi,jy+1,zlo)
+
1001  + vely_arr(iylo,jy,zlo)+vely_arr(iylo,jy+1,zlo) );
+
1002  rho = 0.5 *( cons_arr(ic-1,jc,zlo,Rho_comp)
+
1003  + cons_arr(ic ,jc,zlo,Rho_comp) );
+
1004 
+
1005  amrex::Real umean = um_arr(i,j,zlo);
+
1006  amrex::Real wsp_mean = 0.5 * ( umm_arr(ic-1,jc,zlo) + umm_arr(ic,jc,zlo) );
+
1007  amrex::Real ustar = 0.5 * ( u_star_arr(ic-1,jc,zlo) + u_star_arr(ic,jc,zlo) );
+
1008 
+
1009  // Note: The surface mean shear stress is decomposed into tau_xz by
+
1010  // multiplying the modeled shear stress (rho*ustar^2) with
+
1011  // a factor of umean/wsp_mean for directionality; this factor
+
1012  // modifies the denominator from what is in Moeng 1984.
+
1013  amrex::Real wsp = sqrt(velx*velx+vely*vely);
+
1014  amrex::Real num1 = wsp * umean;
+
1015  amrex::Real num2 = wsp_mean * (velx-umean);
+
1016  amrex::Real stressx = rho*ustar*ustar * (num1+num2)/(wsp_mean*wsp_mean);
+
1017  amrex::Real deltaz = dz * (zlo - k);
+
1018 
+
1019  if (exp_most) {
+
1020  // surface gradient equal to gradient at first zface
+
1021  amrex::Real ugrad = (velx_arr(i,j,zlo+1) - velx) / (0.5*(dz+dz1));
+
1022  dest_arr(i,j,k,icomp) = velx - ugrad * deltaz;
+
1023  } else {
+
1024  int ie, je;
+
1025  ie = i < lbound(eta_arr).x+1 ? lbound(eta_arr).x+1 : i;
+
1026  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
+
1027  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
+
1028  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
+
1029  eta = 0.5 *( eta_arr(ie-1,je,zlo,EddyDiff::Mom_v)
+
1030  + eta_arr(ie ,je,zlo,EddyDiff::Mom_v) );
+
1031  eta = amrex::max(eta,eta_eps);
+
1032  dest_arr(i,j,k,icomp) = dest_arr(i,j,zlo,icomp) - stressx/eta*deltaz;
+
1033  }
+
1034 
+
1035  return stressx;
+
1036  }
+
1037 
+
1038  AMREX_GPU_DEVICE
+
1039  AMREX_FORCE_INLINE
+
1040  amrex::Real
+
1041  compute_v_flux (const int& i,
+
1042  const int& j,
+
1043  const int& k,
+
1044  const int& icomp,
+
1045  const amrex::Real& dz,
+
1046  const amrex::Real& dz1,
+
1047  const bool& exp_most,
+
1048  const amrex::Array4<const amrex::Real>& eta_arr,
+
1049  const amrex::Array4<const amrex::Real>& cons_arr,
+
1050  const amrex::Array4<const amrex::Real>& velx_arr,
+
1051  const amrex::Array4<const amrex::Real>& vely_arr,
+
1052  const amrex::Array4<const amrex::Real>& umm_arr,
+
1053  const amrex::Array4<const amrex::Real>& vm_arr,
+
1054  const amrex::Array4<const amrex::Real>& u_star_arr,
+
1055  const amrex::Array4<amrex::Real>& dest_arr) const
+
1056  {
+
1057  amrex::Real velx, vely, rho, eta;
+
1058  int ix, ic, jc;
+
1059 
+
1060  ix = i < lbound(velx_arr).x ? lbound(velx_arr).x : i;
+
1061  ix = ix > ubound(velx_arr).x ? ubound(velx_arr).x : ix;
+
1062 
+
1063  int jxlo = j <= lbound(velx_arr).y ? lbound(velx_arr).y : j-1;
+
1064  int jxhi = j > ubound(velx_arr).y ? ubound(velx_arr).y : j;
1065 
-
1066  velx = 0.25*( velx_arr(ix,jxhi,zlo)+velx_arr(ix+1,jxhi,zlo)
-
1067  + velx_arr(ix,jxlo,zlo)+velx_arr(ix+1,jxlo,zlo) );
-
1068  vely = vely_arr(i,j,zlo);
-
1069  rho = 0.5*( cons_arr(ic,jc-1,zlo,Rho_comp)
-
1070  + cons_arr(ic,jc ,zlo,Rho_comp) );
-
1071 
-
1072  amrex::Real vmean = vm_arr(i,j,zlo);
-
1073  amrex::Real wsp_mean = 0.5 * ( umm_arr(ic,jc-1,zlo) + umm_arr(ic,jc,zlo) );
-
1074  amrex::Real ustar = 0.5 * ( u_star_arr(ic,jc-1,zlo) + u_star_arr(ic,jc,zlo) );
-
1075 
-
1076  // Note: The surface mean shear stress is decomposed into tau_yz by
-
1077  // multiplying the modeled shear stress (rho*ustar^2) with
-
1078  // a factor of vmean/wsp_mean for directionality; this factor
-
1079  // modifies the denominator from what is in Moeng 1984.
-
1080  amrex::Real wsp = sqrt(velx*velx+vely*vely);
-
1081  amrex::Real num1 = wsp * vmean;
-
1082  amrex::Real num2 = wsp_mean * (vely-vmean);
-
1083  amrex::Real stressy = rho*ustar*ustar * (num1+num2)/(wsp_mean*wsp_mean);
-
1084  amrex::Real deltaz = dz * (zlo - k);
-
1085 
-
1086  if (exp_most) {
-
1087  // surface gradient equal to gradient at first zface
-
1088  amrex::Real vgrad = (vely_arr(i,j,zlo+1) - vely) / (0.5*(dz+dz1));
-
1089  dest_arr(i,j,k,icomp) = vely - vgrad * deltaz;
-
1090  } else {
-
1091  int ie, je;
-
1092  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
-
1093  je = j < lbound(eta_arr).y+1 ? lbound(eta_arr).y+1 : j;
-
1094  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
-
1095  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
-
1096  eta = 0.5*( eta_arr(ie,je-1,zlo,EddyDiff::Mom_v)
-
1097  + eta_arr(ie,je ,zlo,EddyDiff::Mom_v) );
-
1098  eta = amrex::max(eta,eta_eps);
-
1099  dest_arr(i,j,k,icomp) = dest_arr(i,j,zlo,icomp) - stressy/eta*deltaz;
-
1100  }
-
1101 
-
1102  return stressy;
-
1103  }
-
1104 
-
1105 private:
-
1106  int zlo;
-
1107  const amrex::Real eps = 1e-15;
-
1108  const amrex::Real eta_eps = 1e-8;
-
1109 };
-
1110 
-
1111 
-
1112 /**
-
1113  * Donelan flux formulation
-
1114  */
- -
1116 {
-
1117  donelan_flux (int l_zlo)
-
1118  : zlo(l_zlo) {}
-
1119 
-
1120 
-
1121  AMREX_GPU_DEVICE
-
1122  AMREX_FORCE_INLINE
-
1123  amrex::Real
-
1124  compute_q_flux (const int& i,
-
1125  const int& j,
-
1126  const int& k,
-
1127  const int& n,
-
1128  const int& icomp,
-
1129  const amrex::Real& dz,
-
1130  const amrex::Real& /*dz1*/,
-
1131  const bool& exp_most,
-
1132  const amrex::Array4<const amrex::Real>& eta_arr,
-
1133  const amrex::Array4<const amrex::Real>& cons_arr,
-
1134  const amrex::Array4<const amrex::Real>& /*velx_arr*/,
-
1135  const amrex::Array4<const amrex::Real>& /*vely_arr*/,
-
1136  const amrex::Array4<const amrex::Real>& /*umm_arr*/,
-
1137  const amrex::Array4<const amrex::Real>& /*qm_arr*/,
-
1138  const amrex::Array4<const amrex::Real>& /*u_star_arr*/,
-
1139  const amrex::Array4<const amrex::Real>& /*q_star_arr*/,
-
1140  const amrex::Array4<const amrex::Real>& /*t_surf_arr*/,
-
1141  const amrex::Array4<amrex::Real>& dest_arr) const
-
1142  {
-
1143  amrex::Real rho, eta, qv;
-
1144 
-
1145  int ic, jc;
-
1146  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
-
1147  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
-
1148  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
-
1149  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
-
1150 
-
1151  rho = cons_arr(ic,jc,zlo,Rho_comp);
-
1152  qv = cons_arr(ic,jc,zlo,RhoQ1_comp) / rho;
-
1153 
-
1154  // TODO: Integrate MOST with moisture and DONELAN FLUX type
-
1155  amrex::Real moflux = 0.0;
-
1156  amrex::Real deltaz = dz * (zlo - k);
-
1157 
-
1158  if (exp_most) amrex::Abort("Explicit MOST stress not implemented for Donelan moisture flux");
-
1159 
-
1160  int ie, je;
-
1161  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
-
1162  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
-
1163  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
-
1164  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
-
1165  eta = eta_arr(ie,je,zlo,EddyDiff::Q_v); // == rho * alpha [kg/m^3 * m^2/s]
-
1166  eta = amrex::max(eta,eta_eps);
-
1167  dest_arr(i,j,k,icomp+n) = rho*(qv - moflux*rho/eta*deltaz);
-
1168 
-
1169  return moflux;
-
1170  }
-
1171 
-
1172  AMREX_GPU_DEVICE
-
1173  AMREX_FORCE_INLINE
-
1174  amrex::Real
-
1175  compute_t_flux (const int& i,
-
1176  const int& j,
-
1177  const int& k,
-
1178  const int& n,
-
1179  const int& icomp,
-
1180  const amrex::Real& dz,
-
1181  const amrex::Real& dz1,
-
1182  const bool& exp_most,
-
1183  const amrex::Array4<const amrex::Real>& eta_arr,
-
1184  const amrex::Array4<const amrex::Real>& cons_arr,
-
1185  const amrex::Array4<const amrex::Real>& /*velx_arr*/,
-
1186  const amrex::Array4<const amrex::Real>& /*vely_arr*/,
-
1187  const amrex::Array4<const amrex::Real>& umm_arr,
-
1188  const amrex::Array4<const amrex::Real>& tm_arr,
-
1189  const amrex::Array4<const amrex::Real>& /*u_star_arr*/,
-
1190  const amrex::Array4<const amrex::Real>& /*t_star_arr*/,
-
1191  const amrex::Array4<const amrex::Real>& t_surf_arr,
-
1192  const amrex::Array4<amrex::Real>& dest_arr) const
-
1193  {
-
1194  amrex::Real rho, theta, eta;
-
1195 
-
1196  int ic, jc;
-
1197  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
-
1198  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
-
1199  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
-
1200  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
-
1201 
-
1202  rho = cons_arr(ic,jc,zlo,Rho_comp);
-
1203  theta = cons_arr(ic,jc,zlo,RhoTheta_comp) / rho;
-
1204 
-
1205  amrex::Real Cd = 0.0012;
-
1206  amrex::Real wsp_mean = umm_arr(ic,jc,zlo);
-
1207  amrex::Real theta_surf = t_surf_arr(ic,jc,zlo);
-
1208  amrex::Real theta_mean = tm_arr(ic,jc,zlo);
-
1209  amrex::Real moflux = Cd * wsp_mean * (theta_surf - theta_mean);
-
1210  amrex::Real deltaz = dz * (zlo - k);
+
1066  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
+
1067  jc = j < lbound(cons_arr).y+1 ? lbound(cons_arr).y+1 : j;
+
1068  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
+
1069  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
+
1070 
+
1071  velx = 0.25*( velx_arr(ix,jxhi,zlo)+velx_arr(ix+1,jxhi,zlo)
+
1072  + velx_arr(ix,jxlo,zlo)+velx_arr(ix+1,jxlo,zlo) );
+
1073  vely = vely_arr(i,j,zlo);
+
1074  rho = 0.5*( cons_arr(ic,jc-1,zlo,Rho_comp)
+
1075  + cons_arr(ic,jc ,zlo,Rho_comp) );
+
1076 
+
1077  amrex::Real vmean = vm_arr(i,j,zlo);
+
1078  amrex::Real wsp_mean = 0.5 * ( umm_arr(ic,jc-1,zlo) + umm_arr(ic,jc,zlo) );
+
1079  amrex::Real ustar = 0.5 * ( u_star_arr(ic,jc-1,zlo) + u_star_arr(ic,jc,zlo) );
+
1080 
+
1081  // Note: The surface mean shear stress is decomposed into tau_yz by
+
1082  // multiplying the modeled shear stress (rho*ustar^2) with
+
1083  // a factor of vmean/wsp_mean for directionality; this factor
+
1084  // modifies the denominator from what is in Moeng 1984.
+
1085  amrex::Real wsp = sqrt(velx*velx+vely*vely);
+
1086  amrex::Real num1 = wsp * vmean;
+
1087  amrex::Real num2 = wsp_mean * (vely-vmean);
+
1088  amrex::Real stressy = rho*ustar*ustar * (num1+num2)/(wsp_mean*wsp_mean);
+
1089  amrex::Real deltaz = dz * (zlo - k);
+
1090 
+
1091  if (exp_most) {
+
1092  // surface gradient equal to gradient at first zface
+
1093  amrex::Real vgrad = (vely_arr(i,j,zlo+1) - vely) / (0.5*(dz+dz1));
+
1094  dest_arr(i,j,k,icomp) = vely - vgrad * deltaz;
+
1095  } else {
+
1096  int ie, je;
+
1097  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
+
1098  je = j < lbound(eta_arr).y+1 ? lbound(eta_arr).y+1 : j;
+
1099  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
+
1100  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
+
1101  eta = 0.5*( eta_arr(ie,je-1,zlo,EddyDiff::Mom_v)
+
1102  + eta_arr(ie,je ,zlo,EddyDiff::Mom_v) );
+
1103  eta = amrex::max(eta,eta_eps);
+
1104  dest_arr(i,j,k,icomp) = dest_arr(i,j,zlo,icomp) - stressy/eta*deltaz;
+
1105  }
+
1106 
+
1107  return stressy;
+
1108  }
+
1109 
+
1110 private:
+
1111  int zlo;
+
1112  const amrex::Real eps = 1e-15;
+
1113  const amrex::Real eta_eps = 1e-8;
+
1114 };
+
1115 
+
1116 
+
1117 /**
+
1118  * Donelan flux formulation
+
1119  */
+ +
1121 {
+
1122  donelan_flux (int l_zlo)
+
1123  : zlo(l_zlo) {}
+
1124 
+
1125 
+
1126  AMREX_GPU_DEVICE
+
1127  AMREX_FORCE_INLINE
+
1128  amrex::Real
+
1129  compute_q_flux (const int& i,
+
1130  const int& j,
+
1131  const int& k,
+
1132  const int& n,
+
1133  const int& icomp,
+
1134  const amrex::Real& dz,
+
1135  const amrex::Real& dz1,
+
1136  const bool& exp_most,
+
1137  const amrex::Array4<const amrex::Real>& eta_arr,
+
1138  const amrex::Array4<const amrex::Real>& cons_arr,
+
1139  const amrex::Array4<const amrex::Real>& /*velx_arr*/,
+
1140  const amrex::Array4<const amrex::Real>& /*vely_arr*/,
+
1141  const amrex::Array4<const amrex::Real>& /*umm_arr*/,
+
1142  const amrex::Array4<const amrex::Real>& /*qm_arr*/,
+
1143  const amrex::Array4<const amrex::Real>& /*u_star_arr*/,
+
1144  const amrex::Array4<const amrex::Real>& /*q_star_arr*/,
+
1145  const amrex::Array4<const amrex::Real>& /*t_surf_arr*/,
+
1146  const amrex::Array4<amrex::Real>& dest_arr) const
+
1147  {
+
1148  amrex::Real rho, eta, qv;
+
1149 
+
1150  int ic, jc;
+
1151  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
+
1152  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
+
1153  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
+
1154  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
+
1155 
+
1156  rho = cons_arr(ic,jc,zlo,Rho_comp);
+
1157  qv = cons_arr(ic,jc,zlo,RhoQ1_comp) / rho;
+
1158 
+
1159  // TODO: Integrate MOST with moisture and DONELAN FLUX type
+
1160  amrex::Real moflux = 0.0;
+
1161  amrex::Real deltaz = dz * (zlo - k);
+
1162 
+
1163  if (exp_most) {
+
1164  // surface gradient equal to gradient at first zface
+
1165  amrex::Real qvgrad = ( cons_arr(ic,jc,zlo+1,RhoQ1_comp)/cons_arr(ic,jc,zlo+1,Rho_comp)
+
1166  - cons_arr(ic,jc,zlo ,RhoQ1_comp)/cons_arr(ic,jc,zlo ,Rho_comp)) / (0.5*(dz+dz1));
+
1167  dest_arr(i,j,k,icomp+n) = cons_arr(ic,jc,zlo,RhoQ1_comp) - rho*qvgrad * deltaz;
+
1168  } else {
+
1169  int ie, je;
+
1170  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
+
1171  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
+
1172  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
+
1173  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
+
1174  eta = eta_arr(ie,je,zlo,EddyDiff::Q_v); // == rho * alpha [kg/m^3 * m^2/s]
+
1175  eta = amrex::max(eta,eta_eps);
+
1176  dest_arr(i,j,k,icomp+n) = rho*(qv - moflux*rho/eta*deltaz);
+
1177  }
+
1178 
+
1179  return moflux;
+
1180  }
+
1181 
+
1182  AMREX_GPU_DEVICE
+
1183  AMREX_FORCE_INLINE
+
1184  amrex::Real
+
1185  compute_t_flux (const int& i,
+
1186  const int& j,
+
1187  const int& k,
+
1188  const int& n,
+
1189  const int& icomp,
+
1190  const amrex::Real& dz,
+
1191  const amrex::Real& dz1,
+
1192  const bool& exp_most,
+
1193  const amrex::Array4<const amrex::Real>& eta_arr,
+
1194  const amrex::Array4<const amrex::Real>& cons_arr,
+
1195  const amrex::Array4<const amrex::Real>& /*velx_arr*/,
+
1196  const amrex::Array4<const amrex::Real>& /*vely_arr*/,
+
1197  const amrex::Array4<const amrex::Real>& umm_arr,
+
1198  const amrex::Array4<const amrex::Real>& tm_arr,
+
1199  const amrex::Array4<const amrex::Real>& /*u_star_arr*/,
+
1200  const amrex::Array4<const amrex::Real>& /*t_star_arr*/,
+
1201  const amrex::Array4<const amrex::Real>& t_surf_arr,
+
1202  const amrex::Array4<amrex::Real>& dest_arr) const
+
1203  {
+
1204  amrex::Real rho, theta, eta;
+
1205 
+
1206  int ic, jc;
+
1207  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
+
1208  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
+
1209  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
+
1210  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
1211 
-
1212  if (exp_most) {
-
1213  // surface gradient equal to gradient at first zface
-
1214  amrex::Real thetagrad = (cons_arr(ic,jc,zlo+1,RhoTheta_comp) - cons_arr(ic,jc,zlo,RhoTheta_comp)) / (0.5*(dz+dz1));
-
1215  dest_arr(i,j,k,icomp+n) = cons_arr(ic,jc,zlo,RhoTheta_comp) - thetagrad * deltaz;
-
1216  } else {
-
1217  int ie, je;
-
1218  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
-
1219  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
-
1220  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
-
1221  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
-
1222  eta = eta_arr(ie,je,zlo,EddyDiff::Theta_v); // == rho * alpha [kg/m^3 * m^2/s]
-
1223  eta = amrex::max(eta,eta_eps);
-
1224  // Note: Kh = eta/rho
-
1225  // hfx = -Kh dT/dz ==> +ve hfx corresponds to heating from the surface
-
1226  // Extrapolate from klo to ghost cell a distance of -deltaz; negative signs cancel
-
1227  dest_arr(i,j,k,icomp+n) = rho*(theta + moflux*rho/eta*deltaz);
-
1228  }
-
1229 
-
1230  return moflux;
-
1231  }
-
1232 
-
1233  AMREX_GPU_DEVICE
-
1234  AMREX_FORCE_INLINE
-
1235  amrex::Real
-
1236  compute_u_flux (const int& i,
-
1237  const int& j,
-
1238  const int& k,
-
1239  const int& icomp,
-
1240  const amrex::Real& dz,
-
1241  const amrex::Real& dz1,
-
1242  const bool& exp_most,
-
1243  const amrex::Array4<const amrex::Real>& eta_arr,
-
1244  const amrex::Array4<const amrex::Real>& cons_arr,
-
1245  const amrex::Array4<const amrex::Real>& velx_arr,
-
1246  const amrex::Array4<const amrex::Real>& vely_arr,
-
1247  const amrex::Array4<const amrex::Real>& umm_arr,
-
1248  const amrex::Array4<const amrex::Real>& /*um_arr*/,
-
1249  const amrex::Array4<const amrex::Real>& /*u_star_arr*/,
-
1250  const amrex::Array4<amrex::Real>& dest_arr) const
-
1251  {
-
1252  amrex::Real velx, vely, rho, eta;
-
1253  int jy, ic, jc;
-
1254 
-
1255  int iylo = i <= lbound(vely_arr).x ? lbound(vely_arr).x : i-1;
-
1256  int iyhi = i > ubound(vely_arr).x ? ubound(vely_arr).x : i;
-
1257 
-
1258  jy = j < lbound(vely_arr).y ? lbound(vely_arr).y : j;
-
1259  jy = jy > ubound(vely_arr).y-1 ? ubound(vely_arr).y-1 : jy;
-
1260 
-
1261  ic = i < lbound(cons_arr).x+1 ? lbound(cons_arr).x+1 : i;
-
1262  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
-
1263  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
-
1264  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
-
1265 
-
1266  velx = velx_arr(i,j,zlo);
-
1267  vely = 0.25*( vely_arr(iyhi,jy,zlo)+vely_arr(iyhi,jy+1,zlo)
-
1268  + vely_arr(iylo,jy,zlo)+vely_arr(iylo,jy+1,zlo) );
-
1269  rho = 0.5 *( cons_arr(ic-1,jc,zlo,Rho_comp)
-
1270  + cons_arr(ic ,jc,zlo,Rho_comp) );
-
1271 
-
1272  amrex::Real Cd = 0.001;
-
1273  const amrex::Real c = 7e-5;
-
1274  amrex::Real wsp = sqrt(velx*velx+vely*vely);
-
1275  amrex::Real wsp_mean = 0.5 * ( umm_arr(ic-1,jc,zlo) + umm_arr(ic,jc,zlo) );
-
1276  if (wsp_mean <= 5.0) {
-
1277  Cd = 0.001;
-
1278  } else if (wsp_mean < 25.0 && wsp_mean > 5.0) {
-
1279  Cd = 0.001 + c * (wsp_mean - 5.0);
-
1280  } else {
-
1281  Cd = 0.0024;
-
1282  }
-
1283  amrex::Real stressx = rho * Cd * velx * wsp;
-
1284  amrex::Real deltaz = dz * (zlo - k);
-
1285 
-
1286  if (exp_most) {
-
1287  // surface gradient equal to gradient at first zface
-
1288  amrex::Real ugrad = (velx_arr(i,j,zlo+1) - velx) / (0.5*(dz+dz1));
-
1289  dest_arr(i,j,k,icomp) = velx - ugrad * deltaz;
+
1212  rho = cons_arr(ic,jc,zlo,Rho_comp);
+
1213  theta = cons_arr(ic,jc,zlo,RhoTheta_comp) / rho;
+
1214 
+
1215  amrex::Real Cd = 0.0012;
+
1216  amrex::Real wsp_mean = umm_arr(ic,jc,zlo);
+
1217  amrex::Real theta_surf = t_surf_arr(ic,jc,zlo);
+
1218  amrex::Real theta_mean = tm_arr(ic,jc,zlo);
+
1219  amrex::Real moflux = Cd * wsp_mean * (theta_surf - theta_mean);
+
1220  amrex::Real deltaz = dz * (zlo - k);
+
1221 
+
1222  if (exp_most) {
+
1223  // surface gradient equal to gradient at first zface
+
1224  amrex::Real thetagrad = (cons_arr(ic,jc,zlo+1,RhoTheta_comp) - cons_arr(ic,jc,zlo,RhoTheta_comp)) / (0.5*(dz+dz1));
+
1225  dest_arr(i,j,k,icomp+n) = cons_arr(ic,jc,zlo,RhoTheta_comp) - thetagrad * deltaz;
+
1226  } else {
+
1227  int ie, je;
+
1228  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
+
1229  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
+
1230  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
+
1231  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
+
1232  eta = eta_arr(ie,je,zlo,EddyDiff::Theta_v); // == rho * alpha [kg/m^3 * m^2/s]
+
1233  eta = amrex::max(eta,eta_eps);
+
1234  // Note: Kh = eta/rho
+
1235  // hfx = -Kh dT/dz ==> +ve hfx corresponds to heating from the surface
+
1236  // Extrapolate from klo to ghost cell a distance of -deltaz; negative signs cancel
+
1237  dest_arr(i,j,k,icomp+n) = rho*(theta + moflux*rho/eta*deltaz);
+
1238  }
+
1239 
+
1240  return moflux;
+
1241  }
+
1242 
+
1243  AMREX_GPU_DEVICE
+
1244  AMREX_FORCE_INLINE
+
1245  amrex::Real
+
1246  compute_u_flux (const int& i,
+
1247  const int& j,
+
1248  const int& k,
+
1249  const int& icomp,
+
1250  const amrex::Real& dz,
+
1251  const amrex::Real& dz1,
+
1252  const bool& exp_most,
+
1253  const amrex::Array4<const amrex::Real>& eta_arr,
+
1254  const amrex::Array4<const amrex::Real>& cons_arr,
+
1255  const amrex::Array4<const amrex::Real>& velx_arr,
+
1256  const amrex::Array4<const amrex::Real>& vely_arr,
+
1257  const amrex::Array4<const amrex::Real>& umm_arr,
+
1258  const amrex::Array4<const amrex::Real>& /*um_arr*/,
+
1259  const amrex::Array4<const amrex::Real>& /*u_star_arr*/,
+
1260  const amrex::Array4<amrex::Real>& dest_arr) const
+
1261  {
+
1262  amrex::Real velx, vely, rho, eta;
+
1263  int jy, ic, jc;
+
1264 
+
1265  int iylo = i <= lbound(vely_arr).x ? lbound(vely_arr).x : i-1;
+
1266  int iyhi = i > ubound(vely_arr).x ? ubound(vely_arr).x : i;
+
1267 
+
1268  jy = j < lbound(vely_arr).y ? lbound(vely_arr).y : j;
+
1269  jy = jy > ubound(vely_arr).y-1 ? ubound(vely_arr).y-1 : jy;
+
1270 
+
1271  ic = i < lbound(cons_arr).x+1 ? lbound(cons_arr).x+1 : i;
+
1272  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
+
1273  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
+
1274  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
+
1275 
+
1276  velx = velx_arr(i,j,zlo);
+
1277  vely = 0.25*( vely_arr(iyhi,jy,zlo)+vely_arr(iyhi,jy+1,zlo)
+
1278  + vely_arr(iylo,jy,zlo)+vely_arr(iylo,jy+1,zlo) );
+
1279  rho = 0.5 *( cons_arr(ic-1,jc,zlo,Rho_comp)
+
1280  + cons_arr(ic ,jc,zlo,Rho_comp) );
+
1281 
+
1282  amrex::Real Cd = 0.001;
+
1283  const amrex::Real c = 7e-5;
+
1284  amrex::Real wsp = sqrt(velx*velx+vely*vely);
+
1285  amrex::Real wsp_mean = 0.5 * ( umm_arr(ic-1,jc,zlo) + umm_arr(ic,jc,zlo) );
+
1286  if (wsp_mean <= 5.0) {
+
1287  Cd = 0.001;
+
1288  } else if (wsp_mean < 25.0 && wsp_mean > 5.0) {
+
1289  Cd = 0.001 + c * (wsp_mean - 5.0);
1290  } else {
-
1291  int ie, je;
-
1292  ie = i < lbound(eta_arr).x+1 ? lbound(eta_arr).x+1 : i;
-
1293  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
-
1294  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
-
1295  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
-
1296  eta = 0.5 *( eta_arr(ie-1,je,zlo,EddyDiff::Mom_v)
-
1297  + eta_arr(ie ,je,zlo,EddyDiff::Mom_v) );
-
1298  eta = amrex::max(eta,eta_eps);
-
1299  dest_arr(i,j,k,icomp) = dest_arr(i,j,zlo,icomp) - stressx/eta*deltaz;
-
1300  }
-
1301 
-
1302  return stressx;
-
1303  }
-
1304 
-
1305  AMREX_GPU_DEVICE
-
1306  AMREX_FORCE_INLINE
-
1307  amrex::Real
-
1308  compute_v_flux (const int& i,
-
1309  const int& j,
-
1310  const int& k,
-
1311  const int& icomp,
-
1312  const amrex::Real& dz,
-
1313  const amrex::Real& dz1,
-
1314  const bool& exp_most,
-
1315  const amrex::Array4<const amrex::Real>& eta_arr,
-
1316  const amrex::Array4<const amrex::Real>& cons_arr,
-
1317  const amrex::Array4<const amrex::Real>& velx_arr,
-
1318  const amrex::Array4<const amrex::Real>& vely_arr,
-
1319  const amrex::Array4<const amrex::Real>& umm_arr,
-
1320  const amrex::Array4<const amrex::Real>& /*vm_arr*/,
-
1321  const amrex::Array4<const amrex::Real>& /*u_star_arr*/,
-
1322  const amrex::Array4<amrex::Real>& dest_arr) const
-
1323  {
-
1324  amrex::Real velx, vely, rho, eta;
-
1325  int ix, ic, jc;
-
1326 
-
1327  ix = i < lbound(velx_arr).x ? lbound(velx_arr).x : i;
-
1328  ix = ix > ubound(velx_arr).x ? ubound(velx_arr).x : ix;
-
1329 
-
1330  int jxlo = j <= lbound(velx_arr).y ? lbound(velx_arr).y : j-1;
-
1331  int jxhi = j > ubound(velx_arr).y ? ubound(velx_arr).y : j;
-
1332 
-
1333  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
-
1334  jc = j < lbound(cons_arr).y+1 ? lbound(cons_arr).y+1 : j;
-
1335  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
-
1336  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
-
1337 
-
1338  velx = 0.25*( velx_arr(ix,jxhi,zlo)+velx_arr(ix+1,jxhi,zlo)
-
1339  + velx_arr(ix,jxlo,zlo)+velx_arr(ix+1,jxlo,zlo) );
-
1340  vely = vely_arr(i,j,zlo);
-
1341  rho = 0.5*( cons_arr(ic,jc-1,zlo,Rho_comp)
-
1342  + cons_arr(ic,jc ,zlo,Rho_comp) );
-
1343 
-
1344  amrex::Real Cd = 0.001;
-
1345  const amrex::Real c = 7e-5;
-
1346  amrex::Real wsp = sqrt(velx*velx+vely*vely);
-
1347  amrex::Real wsp_mean = 0.5 * ( umm_arr(ic,jc-1,zlo) + umm_arr(ic,jc,zlo) );
-
1348  if (wsp_mean <= 5.0) {
-
1349  Cd = 0.001;
-
1350  } else if (wsp_mean < 25.0 && wsp_mean > 5.0) {
-
1351  Cd = 0.001 + c * (wsp_mean - 5.0);
-
1352  } else {
-
1353  Cd = 0.0024;
-
1354  }
-
1355  amrex::Real stressy = rho * Cd * vely * wsp;
-
1356  amrex::Real deltaz = dz * (zlo - k);
-
1357 
-
1358  if (exp_most) {
-
1359  // surface gradient equal to gradient at first zface
-
1360  amrex::Real vgrad = (vely_arr(i,j,zlo+1) - vely) / (0.5*(dz+dz1));
-
1361  dest_arr(i,j,k,icomp) = vely - vgrad * deltaz;
+
1291  Cd = 0.0024;
+
1292  }
+
1293  amrex::Real stressx = rho * Cd * velx * wsp;
+
1294  amrex::Real deltaz = dz * (zlo - k);
+
1295 
+
1296  if (exp_most) {
+
1297  // surface gradient equal to gradient at first zface
+
1298  amrex::Real ugrad = (velx_arr(i,j,zlo+1) - velx) / (0.5*(dz+dz1));
+
1299  dest_arr(i,j,k,icomp) = velx - ugrad * deltaz;
+
1300  } else {
+
1301  int ie, je;
+
1302  ie = i < lbound(eta_arr).x+1 ? lbound(eta_arr).x+1 : i;
+
1303  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
+
1304  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
+
1305  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
+
1306  eta = 0.5 *( eta_arr(ie-1,je,zlo,EddyDiff::Mom_v)
+
1307  + eta_arr(ie ,je,zlo,EddyDiff::Mom_v) );
+
1308  eta = amrex::max(eta,eta_eps);
+
1309  dest_arr(i,j,k,icomp) = dest_arr(i,j,zlo,icomp) - stressx/eta*deltaz;
+
1310  }
+
1311 
+
1312  return stressx;
+
1313  }
+
1314 
+
1315  AMREX_GPU_DEVICE
+
1316  AMREX_FORCE_INLINE
+
1317  amrex::Real
+
1318  compute_v_flux (const int& i,
+
1319  const int& j,
+
1320  const int& k,
+
1321  const int& icomp,
+
1322  const amrex::Real& dz,
+
1323  const amrex::Real& dz1,
+
1324  const bool& exp_most,
+
1325  const amrex::Array4<const amrex::Real>& eta_arr,
+
1326  const amrex::Array4<const amrex::Real>& cons_arr,
+
1327  const amrex::Array4<const amrex::Real>& velx_arr,
+
1328  const amrex::Array4<const amrex::Real>& vely_arr,
+
1329  const amrex::Array4<const amrex::Real>& umm_arr,
+
1330  const amrex::Array4<const amrex::Real>& /*vm_arr*/,
+
1331  const amrex::Array4<const amrex::Real>& /*u_star_arr*/,
+
1332  const amrex::Array4<amrex::Real>& dest_arr) const
+
1333  {
+
1334  amrex::Real velx, vely, rho, eta;
+
1335  int ix, ic, jc;
+
1336 
+
1337  ix = i < lbound(velx_arr).x ? lbound(velx_arr).x : i;
+
1338  ix = ix > ubound(velx_arr).x ? ubound(velx_arr).x : ix;
+
1339 
+
1340  int jxlo = j <= lbound(velx_arr).y ? lbound(velx_arr).y : j-1;
+
1341  int jxhi = j > ubound(velx_arr).y ? ubound(velx_arr).y : j;
+
1342 
+
1343  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
+
1344  jc = j < lbound(cons_arr).y+1 ? lbound(cons_arr).y+1 : j;
+
1345  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
+
1346  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
+
1347 
+
1348  velx = 0.25*( velx_arr(ix,jxhi,zlo)+velx_arr(ix+1,jxhi,zlo)
+
1349  + velx_arr(ix,jxlo,zlo)+velx_arr(ix+1,jxlo,zlo) );
+
1350  vely = vely_arr(i,j,zlo);
+
1351  rho = 0.5*( cons_arr(ic,jc-1,zlo,Rho_comp)
+
1352  + cons_arr(ic,jc ,zlo,Rho_comp) );
+
1353 
+
1354  amrex::Real Cd = 0.001;
+
1355  const amrex::Real c = 7e-5;
+
1356  amrex::Real wsp = sqrt(velx*velx+vely*vely);
+
1357  amrex::Real wsp_mean = 0.5 * ( umm_arr(ic,jc-1,zlo) + umm_arr(ic,jc,zlo) );
+
1358  if (wsp_mean <= 5.0) {
+
1359  Cd = 0.001;
+
1360  } else if (wsp_mean < 25.0 && wsp_mean > 5.0) {
+
1361  Cd = 0.001 + c * (wsp_mean - 5.0);
1362  } else {
-
1363  int ie, je;
-
1364  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
-
1365  je = j < lbound(eta_arr).y+1 ? lbound(eta_arr).y+1 : j;
-
1366  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
-
1367  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
-
1368  eta = 0.5*( eta_arr(ie,je-1,zlo,EddyDiff::Mom_v)
-
1369  + eta_arr(ie,je ,zlo,EddyDiff::Mom_v) );
-
1370  eta = amrex::max(eta,eta_eps);
-
1371  dest_arr(i,j,k,icomp) = dest_arr(i,j,zlo,icomp) - stressy/eta*deltaz;
-
1372  }
-
1373 
-
1374  return stressy;
-
1375  }
-
1376 
-
1377 private:
-
1378  int zlo;
-
1379  const amrex::Real eta_eps = 1e-8;
-
1380 };
-
1381 
-
1382 
-
1383 /**
-
1384  * Custom flux formulation
-
1385  */
- -
1387 {
-
1388  custom_flux (int l_zlo)
-
1389  : zlo(l_zlo) {}
-
1390 
+
1363  Cd = 0.0024;
+
1364  }
+
1365  amrex::Real stressy = rho * Cd * vely * wsp;
+
1366  amrex::Real deltaz = dz * (zlo - k);
+
1367 
+
1368  if (exp_most) {
+
1369  // surface gradient equal to gradient at first zface
+
1370  amrex::Real vgrad = (vely_arr(i,j,zlo+1) - vely) / (0.5*(dz+dz1));
+
1371  dest_arr(i,j,k,icomp) = vely - vgrad * deltaz;
+
1372  } else {
+
1373  int ie, je;
+
1374  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
+
1375  je = j < lbound(eta_arr).y+1 ? lbound(eta_arr).y+1 : j;
+
1376  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
+
1377  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
+
1378  eta = 0.5*( eta_arr(ie,je-1,zlo,EddyDiff::Mom_v)
+
1379  + eta_arr(ie,je ,zlo,EddyDiff::Mom_v) );
+
1380  eta = amrex::max(eta,eta_eps);
+
1381  dest_arr(i,j,k,icomp) = dest_arr(i,j,zlo,icomp) - stressy/eta*deltaz;
+
1382  }
+
1383 
+
1384  return stressy;
+
1385  }
+
1386 
+
1387 private:
+
1388  int zlo;
+
1389  const amrex::Real eta_eps = 1e-8;
+
1390 };
1391 
-
1392  AMREX_GPU_DEVICE
-
1393  AMREX_FORCE_INLINE
-
1394  amrex::Real
-
1395  compute_q_flux (const int& i,
-
1396  const int& j,
-
1397  const int& k,
-
1398  const int& n,
-
1399  const int& icomp,
-
1400  const amrex::Real& dz,
-
1401  const amrex::Real& /*dz1*/,
-
1402  const bool& exp_most,
-
1403  const amrex::Array4<const amrex::Real>& eta_arr,
-
1404  const amrex::Array4<const amrex::Real>& cons_arr,
-
1405  const amrex::Array4<const amrex::Real>& /*velx_arr*/,
-
1406  const amrex::Array4<const amrex::Real>& /*vely_arr*/,
-
1407  const amrex::Array4<const amrex::Real>& /*umm_arr*/,
-
1408  const amrex::Array4<const amrex::Real>& /*qm_arr*/,
-
1409  const amrex::Array4<const amrex::Real>& /*u_star_arr*/,
-
1410  const amrex::Array4<const amrex::Real>& q_star_arr,
-
1411  const amrex::Array4<const amrex::Real>& /*t_surf_arr*/,
-
1412  const amrex::Array4<amrex::Real>& dest_arr) const
-
1413  {
-
1414  amrex::Real rho, eta;
-
1415 
-
1416  int ic, jc;
-
1417  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
-
1418  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
-
1419  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
-
1420  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
-
1421 
-
1422  rho = cons_arr(ic,jc,zlo,Rho_comp);
-
1423 
-
1424  amrex::Real qstar = q_star_arr(ic,jc,zlo);
-
1425  amrex::Real moflux = (std::abs(qstar) > eps) ? -rho * qstar : 0.0;
-
1426  amrex::Real deltaz = dz * (zlo - k);
-
1427 
-
1428  if (exp_most) amrex::Abort("Explicit MOST stress not implemented for custom moisture flux");
-
1429 
-
1430  int ie, je;
-
1431  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
-
1432  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
-
1433  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
-
1434  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
-
1435  eta = eta_arr(ie,je,zlo,EddyDiff::Q_v); // == rho * alpha [kg/m^3 * m^2/s]
-
1436  eta = amrex::max(eta,eta_eps);
-
1437  dest_arr(i,j,k,icomp+n) = dest_arr(i,j,zlo,icomp+n) - moflux*rho/eta*deltaz;
-
1438 
-
1439  return moflux;
-
1440  }
-
1441 
-
1442  AMREX_GPU_DEVICE
-
1443  AMREX_FORCE_INLINE
-
1444  amrex::Real
-
1445  compute_t_flux (const int& i,
-
1446  const int& j,
-
1447  const int& k,
-
1448  const int& n,
-
1449  const int& icomp,
-
1450  const amrex::Real& dz,
-
1451  const amrex::Real& dz1,
-
1452  const bool& exp_most,
-
1453  const amrex::Array4<const amrex::Real>& eta_arr,
-
1454  const amrex::Array4<const amrex::Real>& cons_arr,
-
1455  const amrex::Array4<const amrex::Real>& /*velx_arr*/,
-
1456  const amrex::Array4<const amrex::Real>& /*vely_arr*/,
-
1457  const amrex::Array4<const amrex::Real>& /*umm_arr*/,
-
1458  const amrex::Array4<const amrex::Real>& /*tm_arr*/,
-
1459  const amrex::Array4<const amrex::Real>& /*u_star_arr*/,
-
1460  const amrex::Array4<const amrex::Real>& t_star_arr,
-
1461  const amrex::Array4<const amrex::Real>& /*t_surf_arr*/,
-
1462  const amrex::Array4<amrex::Real>& dest_arr) const
-
1463  {
-
1464  amrex::Real rho, eta;
-
1465 
-
1466  int ic, jc;
-
1467  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
-
1468  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
-
1469  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
-
1470  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
-
1471 
-
1472  rho = cons_arr(ic,jc,zlo,Rho_comp);
-
1473 
-
1474  amrex::Real tstar = t_star_arr(ic,jc,zlo);
-
1475  amrex::Real moflux = (std::abs(tstar) > eps) ? -rho * tstar : 0.0;
-
1476  amrex::Real deltaz = dz * (zlo - k);
-
1477 
-
1478  if (exp_most) {
-
1479  // surface gradient equal to gradient at first zface
-
1480  amrex::Real thetagrad = ( cons_arr(ic,jc,zlo+1,RhoTheta_comp)/cons_arr(ic,jc,zlo+1,Rho_comp)
-
1481  - cons_arr(ic,jc,zlo ,RhoTheta_comp)/cons_arr(ic,jc,zlo ,Rho_comp)) / (0.5*(dz+dz1));
-
1482  dest_arr(i,j,k,icomp+n) = cons_arr(ic,jc,zlo,RhoTheta_comp) - rho*thetagrad * deltaz;
-
1483  } else {
-
1484  int ie, je;
-
1485  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
-
1486  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
-
1487  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
-
1488  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
-
1489  eta = eta_arr(ie,je,zlo,EddyDiff::Theta_v); // == rho * alpha [kg/m^3 * m^2/s]
-
1490  eta = amrex::max(eta,eta_eps);
-
1491  dest_arr(i,j,k,icomp+n) = dest_arr(i,j,zlo,icomp+n) - moflux*rho/eta*deltaz;
-
1492  }
-
1493 
-
1494  return moflux;
-
1495  }
-
1496 
-
1497  AMREX_GPU_DEVICE
-
1498  AMREX_FORCE_INLINE
-
1499  amrex::Real
-
1500  compute_u_flux (const int& i,
-
1501  const int& j,
-
1502  const int& k,
-
1503  const int& icomp,
-
1504  const amrex::Real& dz,
-
1505  const amrex::Real& dz1,
-
1506  const bool& exp_most,
-
1507  const amrex::Array4<const amrex::Real>& eta_arr,
-
1508  const amrex::Array4<const amrex::Real>& cons_arr,
-
1509  const amrex::Array4<const amrex::Real>& velx_arr,
-
1510  const amrex::Array4<const amrex::Real>& vely_arr,
-
1511  const amrex::Array4<const amrex::Real>& /*umm_arr*/,
-
1512  const amrex::Array4<const amrex::Real>& /*um_arr*/,
-
1513  const amrex::Array4<const amrex::Real>& u_star_arr,
-
1514  const amrex::Array4<amrex::Real>& dest_arr) const
-
1515  {
-
1516  amrex::Real velx, vely, rho, eta;
-
1517  int jy, ic, jc;
-
1518 
-
1519  int iylo = i <= lbound(vely_arr).x ? lbound(vely_arr).x : i-1;
-
1520  int iyhi = i > ubound(vely_arr).x ? ubound(vely_arr).x : i;
-
1521 
-
1522  jy = j < lbound(vely_arr).y ? lbound(vely_arr).y : j;
-
1523  jy = jy > ubound(vely_arr).y-1 ? ubound(vely_arr).y-1 : jy;
-
1524 
-
1525  ic = i < lbound(cons_arr).x+1 ? lbound(cons_arr).x+1 : i;
-
1526  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
-
1527  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
-
1528  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
-
1529 
-
1530  velx = velx_arr(i,j,zlo);
-
1531  vely = 0.25*( vely_arr(iyhi,jy,zlo)+vely_arr(iyhi,jy+1,zlo)
-
1532  + vely_arr(iylo,jy,zlo)+vely_arr(iylo,jy+1,zlo) );
-
1533  rho = 0.5 *( cons_arr(ic-1,jc,zlo,Rho_comp)
-
1534  + cons_arr(ic ,jc,zlo,Rho_comp) );
-
1535 
-
1536  amrex::Real ustar = 0.5 * ( u_star_arr(ic-1,jc,zlo) + u_star_arr(ic,jc,zlo) );
-
1537  amrex::Real wsp = sqrt(velx*velx+vely*vely);
-
1538  amrex::Real stressx = rho * ustar * ustar * velx / wsp;
-
1539  amrex::Real deltaz = dz * (zlo - k);
-
1540 
-
1541  if (exp_most) {
-
1542  // surface gradient equal to gradient at first zface
-
1543  amrex::Real ugrad = (velx_arr(i,j,zlo+1) - velx) / (0.5*(dz+dz1));
-
1544  dest_arr(i,j,k,icomp) = velx - ugrad * deltaz;
-
1545  } else {
-
1546  int ie, je;
-
1547  ie = i < lbound(eta_arr).x+1 ? lbound(eta_arr).x+1 : i;
-
1548  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
-
1549  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
-
1550  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
-
1551  eta = 0.5 *( eta_arr(ie-1,je,zlo,EddyDiff::Mom_v)
-
1552  + eta_arr(ie ,je,zlo,EddyDiff::Mom_v) );
-
1553  eta = amrex::max(eta,eta_eps);
-
1554  dest_arr(i,j,k,icomp) = dest_arr(i,j,zlo,icomp) - stressx/eta*deltaz;
-
1555  }
-
1556 
-
1557  return stressx;
-
1558  }
-
1559 
-
1560  AMREX_GPU_DEVICE
-
1561  AMREX_FORCE_INLINE
-
1562  amrex::Real
-
1563  compute_v_flux (const int& i,
-
1564  const int& j,
-
1565  const int& k,
-
1566  const int& icomp,
-
1567  const amrex::Real& dz,
-
1568  const amrex::Real& dz1,
-
1569  const bool& exp_most,
-
1570  const amrex::Array4<const amrex::Real>& eta_arr,
-
1571  const amrex::Array4<const amrex::Real>& cons_arr,
-
1572  const amrex::Array4<const amrex::Real>& velx_arr,
-
1573  const amrex::Array4<const amrex::Real>& vely_arr,
-
1574  const amrex::Array4<const amrex::Real>& /*umm_arr*/,
-
1575  const amrex::Array4<const amrex::Real>& /*vm_arr*/,
-
1576  const amrex::Array4<const amrex::Real>& u_star_arr,
-
1577  const amrex::Array4<amrex::Real>& dest_arr) const
-
1578  {
-
1579  amrex::Real velx, vely, rho, eta;
-
1580  int ix, ic, jc;
-
1581 
-
1582  ix = i < lbound(velx_arr).x ? lbound(velx_arr).x : i;
-
1583  ix = ix > ubound(velx_arr).x ? ubound(velx_arr).x : ix;
-
1584 
-
1585  int jxlo = j <= lbound(velx_arr).y ? lbound(velx_arr).y : j-1;
-
1586  int jxhi = j > ubound(velx_arr).y ? ubound(velx_arr).y : j;
-
1587 
-
1588  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
-
1589  jc = j < lbound(cons_arr).y+1 ? lbound(cons_arr).y+1 : j;
-
1590  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
-
1591  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
-
1592 
-
1593  velx = 0.25*( velx_arr(ix,jxhi,zlo)+velx_arr(ix+1,jxhi,zlo)
-
1594  + velx_arr(ix,jxlo,zlo)+velx_arr(ix+1,jxlo,zlo) );
-
1595  vely = vely_arr(i,j,zlo);
-
1596  rho = 0.5*( cons_arr(ic,jc-1,zlo,Rho_comp)
-
1597  + cons_arr(ic,jc ,zlo,Rho_comp) );
-
1598 
-
1599  amrex::Real ustar = 0.5 * ( u_star_arr(ic,jc-1,zlo) + u_star_arr(ic,jc,zlo) );
-
1600  amrex::Real wsp = sqrt(velx*velx+vely*vely);
-
1601  amrex::Real stressy = rho * ustar * ustar * vely / wsp;
-
1602  amrex::Real deltaz = dz * (zlo - k);
-
1603 
-
1604  if (exp_most) {
-
1605  // surface gradient equal to gradient at first zface
-
1606  amrex::Real vgrad = (vely_arr(i,j,zlo+1) - vely) / (0.5*(dz+dz1));
-
1607  dest_arr(i,j,k,icomp) = vely - vgrad * deltaz;
-
1608  } else {
-
1609  int ie, je;
-
1610  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
-
1611  je = j < lbound(eta_arr).y+1 ? lbound(eta_arr).y+1 : j;
-
1612  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
-
1613  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
-
1614  eta = 0.5*( eta_arr(ie,je-1,zlo,EddyDiff::Mom_v)
-
1615  + eta_arr(ie,je ,zlo,EddyDiff::Mom_v) );
-
1616  eta = amrex::max(eta,eta_eps);
-
1617  dest_arr(i,j,k,icomp) = dest_arr(i,j,zlo,icomp) - stressy/eta*deltaz;
-
1618  }
-
1619 
-
1620  return stressy;
-
1621  }
-
1622 
-
1623 private:
-
1624  int zlo;
-
1625  const amrex::Real eps = 1e-15;
-
1626  const amrex::Real eta_eps = 1e-8;
-
1627 };
-
1628 #endif
+
1392 
+
1393 /**
+
1394  * Custom flux formulation
+
1395  */
+ +
1397 {
+
1398  custom_flux (int l_zlo)
+
1399  : zlo(l_zlo) {}
+
1400 
+
1401 
+
1402  AMREX_GPU_DEVICE
+
1403  AMREX_FORCE_INLINE
+
1404  amrex::Real
+
1405  compute_q_flux (const int& i,
+
1406  const int& j,
+
1407  const int& k,
+
1408  const int& n,
+
1409  const int& icomp,
+
1410  const amrex::Real& dz,
+
1411  const amrex::Real& dz1,
+
1412  const bool& exp_most,
+
1413  const amrex::Array4<const amrex::Real>& eta_arr,
+
1414  const amrex::Array4<const amrex::Real>& cons_arr,
+
1415  const amrex::Array4<const amrex::Real>& /*velx_arr*/,
+
1416  const amrex::Array4<const amrex::Real>& /*vely_arr*/,
+
1417  const amrex::Array4<const amrex::Real>& /*umm_arr*/,
+
1418  const amrex::Array4<const amrex::Real>& /*qm_arr*/,
+
1419  const amrex::Array4<const amrex::Real>& /*u_star_arr*/,
+
1420  const amrex::Array4<const amrex::Real>& q_star_arr,
+
1421  const amrex::Array4<const amrex::Real>& /*t_surf_arr*/,
+
1422  const amrex::Array4<amrex::Real>& dest_arr) const
+
1423  {
+
1424  amrex::Real rho, eta;
+
1425 
+
1426  int ic, jc;
+
1427  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
+
1428  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
+
1429  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
+
1430  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
+
1431 
+
1432  rho = cons_arr(ic,jc,zlo,Rho_comp);
+
1433 
+
1434  amrex::Real qstar = q_star_arr(ic,jc,zlo);
+
1435  amrex::Real moflux = (std::abs(qstar) > eps) ? -rho * qstar : 0.0;
+
1436  amrex::Real deltaz = dz * (zlo - k);
+
1437 
+
1438  if (exp_most) {
+
1439  // surface gradient equal to gradient at first zface
+
1440  amrex::Real qvgrad = ( cons_arr(ic,jc,zlo+1,RhoQ1_comp)/cons_arr(ic,jc,zlo+1,Rho_comp)
+
1441  - cons_arr(ic,jc,zlo ,RhoQ1_comp)/cons_arr(ic,jc,zlo ,Rho_comp)) / (0.5*(dz+dz1));
+
1442  dest_arr(i,j,k,icomp+n) = cons_arr(ic,jc,zlo,RhoQ1_comp) - rho*qvgrad * deltaz;
+
1443  } else {
+
1444  int ie, je;
+
1445  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
+
1446  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
+
1447  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
+
1448  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
+
1449  eta = eta_arr(ie,je,zlo,EddyDiff::Q_v); // == rho * alpha [kg/m^3 * m^2/s]
+
1450  eta = amrex::max(eta,eta_eps);
+
1451  dest_arr(i,j,k,icomp+n) = dest_arr(i,j,zlo,icomp+n) - moflux*rho/eta*deltaz;
+
1452  }
+
1453 
+
1454  return moflux;
+
1455  }
+
1456 
+
1457  AMREX_GPU_DEVICE
+
1458  AMREX_FORCE_INLINE
+
1459  amrex::Real
+
1460  compute_t_flux (const int& i,
+
1461  const int& j,
+
1462  const int& k,
+
1463  const int& n,
+
1464  const int& icomp,
+
1465  const amrex::Real& dz,
+
1466  const amrex::Real& dz1,
+
1467  const bool& exp_most,
+
1468  const amrex::Array4<const amrex::Real>& eta_arr,
+
1469  const amrex::Array4<const amrex::Real>& cons_arr,
+
1470  const amrex::Array4<const amrex::Real>& /*velx_arr*/,
+
1471  const amrex::Array4<const amrex::Real>& /*vely_arr*/,
+
1472  const amrex::Array4<const amrex::Real>& /*umm_arr*/,
+
1473  const amrex::Array4<const amrex::Real>& /*tm_arr*/,
+
1474  const amrex::Array4<const amrex::Real>& /*u_star_arr*/,
+
1475  const amrex::Array4<const amrex::Real>& t_star_arr,
+
1476  const amrex::Array4<const amrex::Real>& /*t_surf_arr*/,
+
1477  const amrex::Array4<amrex::Real>& dest_arr) const
+
1478  {
+
1479  amrex::Real rho, eta;
+
1480 
+
1481  int ic, jc;
+
1482  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
+
1483  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
+
1484  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
+
1485  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
+
1486 
+
1487  rho = cons_arr(ic,jc,zlo,Rho_comp);
+
1488 
+
1489  amrex::Real tstar = t_star_arr(ic,jc,zlo);
+
1490  amrex::Real moflux = (std::abs(tstar) > eps) ? -rho * tstar : 0.0;
+
1491  amrex::Real deltaz = dz * (zlo - k);
+
1492 
+
1493  if (exp_most) {
+
1494  // surface gradient equal to gradient at first zface
+
1495  amrex::Real thetagrad = ( cons_arr(ic,jc,zlo+1,RhoTheta_comp)/cons_arr(ic,jc,zlo+1,Rho_comp)
+
1496  - cons_arr(ic,jc,zlo ,RhoTheta_comp)/cons_arr(ic,jc,zlo ,Rho_comp)) / (0.5*(dz+dz1));
+
1497  dest_arr(i,j,k,icomp+n) = cons_arr(ic,jc,zlo,RhoTheta_comp) - rho*thetagrad * deltaz;
+
1498  } else {
+
1499  int ie, je;
+
1500  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
+
1501  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
+
1502  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
+
1503  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
+
1504  eta = eta_arr(ie,je,zlo,EddyDiff::Theta_v); // == rho * alpha [kg/m^3 * m^2/s]
+
1505  eta = amrex::max(eta,eta_eps);
+
1506  dest_arr(i,j,k,icomp+n) = dest_arr(i,j,zlo,icomp+n) - moflux*rho/eta*deltaz;
+
1507  }
+
1508 
+
1509  return moflux;
+
1510  }
+
1511 
+
1512  AMREX_GPU_DEVICE
+
1513  AMREX_FORCE_INLINE
+
1514  amrex::Real
+
1515  compute_u_flux (const int& i,
+
1516  const int& j,
+
1517  const int& k,
+
1518  const int& icomp,
+
1519  const amrex::Real& dz,
+
1520  const amrex::Real& dz1,
+
1521  const bool& exp_most,
+
1522  const amrex::Array4<const amrex::Real>& eta_arr,
+
1523  const amrex::Array4<const amrex::Real>& cons_arr,
+
1524  const amrex::Array4<const amrex::Real>& velx_arr,
+
1525  const amrex::Array4<const amrex::Real>& vely_arr,
+
1526  const amrex::Array4<const amrex::Real>& /*umm_arr*/,
+
1527  const amrex::Array4<const amrex::Real>& /*um_arr*/,
+
1528  const amrex::Array4<const amrex::Real>& u_star_arr,
+
1529  const amrex::Array4<amrex::Real>& dest_arr) const
+
1530  {
+
1531  amrex::Real velx, vely, rho, eta;
+
1532  int jy, ic, jc;
+
1533 
+
1534  int iylo = i <= lbound(vely_arr).x ? lbound(vely_arr).x : i-1;
+
1535  int iyhi = i > ubound(vely_arr).x ? ubound(vely_arr).x : i;
+
1536 
+
1537  jy = j < lbound(vely_arr).y ? lbound(vely_arr).y : j;
+
1538  jy = jy > ubound(vely_arr).y-1 ? ubound(vely_arr).y-1 : jy;
+
1539 
+
1540  ic = i < lbound(cons_arr).x+1 ? lbound(cons_arr).x+1 : i;
+
1541  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
+
1542  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
+
1543  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
+
1544 
+
1545  velx = velx_arr(i,j,zlo);
+
1546  vely = 0.25*( vely_arr(iyhi,jy,zlo)+vely_arr(iyhi,jy+1,zlo)
+
1547  + vely_arr(iylo,jy,zlo)+vely_arr(iylo,jy+1,zlo) );
+
1548  rho = 0.5 *( cons_arr(ic-1,jc,zlo,Rho_comp)
+
1549  + cons_arr(ic ,jc,zlo,Rho_comp) );
+
1550 
+
1551  amrex::Real ustar = 0.5 * ( u_star_arr(ic-1,jc,zlo) + u_star_arr(ic,jc,zlo) );
+
1552  amrex::Real wsp = sqrt(velx*velx+vely*vely);
+
1553  amrex::Real stressx = rho * ustar * ustar * velx / wsp;
+
1554  amrex::Real deltaz = dz * (zlo - k);
+
1555 
+
1556  if (exp_most) {
+
1557  // surface gradient equal to gradient at first zface
+
1558  amrex::Real ugrad = (velx_arr(i,j,zlo+1) - velx) / (0.5*(dz+dz1));
+
1559  dest_arr(i,j,k,icomp) = velx - ugrad * deltaz;
+
1560  } else {
+
1561  int ie, je;
+
1562  ie = i < lbound(eta_arr).x+1 ? lbound(eta_arr).x+1 : i;
+
1563  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
+
1564  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
+
1565  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
+
1566  eta = 0.5 *( eta_arr(ie-1,je,zlo,EddyDiff::Mom_v)
+
1567  + eta_arr(ie ,je,zlo,EddyDiff::Mom_v) );
+
1568  eta = amrex::max(eta,eta_eps);
+
1569  dest_arr(i,j,k,icomp) = dest_arr(i,j,zlo,icomp) - stressx/eta*deltaz;
+
1570  }
+
1571 
+
1572  return stressx;
+
1573  }
+
1574 
+
1575  AMREX_GPU_DEVICE
+
1576  AMREX_FORCE_INLINE
+
1577  amrex::Real
+
1578  compute_v_flux (const int& i,
+
1579  const int& j,
+
1580  const int& k,
+
1581  const int& icomp,
+
1582  const amrex::Real& dz,
+
1583  const amrex::Real& dz1,
+
1584  const bool& exp_most,
+
1585  const amrex::Array4<const amrex::Real>& eta_arr,
+
1586  const amrex::Array4<const amrex::Real>& cons_arr,
+
1587  const amrex::Array4<const amrex::Real>& velx_arr,
+
1588  const amrex::Array4<const amrex::Real>& vely_arr,
+
1589  const amrex::Array4<const amrex::Real>& /*umm_arr*/,
+
1590  const amrex::Array4<const amrex::Real>& /*vm_arr*/,
+
1591  const amrex::Array4<const amrex::Real>& u_star_arr,
+
1592  const amrex::Array4<amrex::Real>& dest_arr) const
+
1593  {
+
1594  amrex::Real velx, vely, rho, eta;
+
1595  int ix, ic, jc;
+
1596 
+
1597  ix = i < lbound(velx_arr).x ? lbound(velx_arr).x : i;
+
1598  ix = ix > ubound(velx_arr).x ? ubound(velx_arr).x : ix;
+
1599 
+
1600  int jxlo = j <= lbound(velx_arr).y ? lbound(velx_arr).y : j-1;
+
1601  int jxhi = j > ubound(velx_arr).y ? ubound(velx_arr).y : j;
+
1602 
+
1603  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
+
1604  jc = j < lbound(cons_arr).y+1 ? lbound(cons_arr).y+1 : j;
+
1605  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
+
1606  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
+
1607 
+
1608  velx = 0.25*( velx_arr(ix,jxhi,zlo)+velx_arr(ix+1,jxhi,zlo)
+
1609  + velx_arr(ix,jxlo,zlo)+velx_arr(ix+1,jxlo,zlo) );
+
1610  vely = vely_arr(i,j,zlo);
+
1611  rho = 0.5*( cons_arr(ic,jc-1,zlo,Rho_comp)
+
1612  + cons_arr(ic,jc ,zlo,Rho_comp) );
+
1613 
+
1614  amrex::Real ustar = 0.5 * ( u_star_arr(ic,jc-1,zlo) + u_star_arr(ic,jc,zlo) );
+
1615  amrex::Real wsp = sqrt(velx*velx+vely*vely);
+
1616  amrex::Real stressy = rho * ustar * ustar * vely / wsp;
+
1617  amrex::Real deltaz = dz * (zlo - k);
+
1618 
+
1619  if (exp_most) {
+
1620  // surface gradient equal to gradient at first zface
+
1621  amrex::Real vgrad = (vely_arr(i,j,zlo+1) - vely) / (0.5*(dz+dz1));
+
1622  dest_arr(i,j,k,icomp) = vely - vgrad * deltaz;
+
1623  } else {
+
1624  int ie, je;
+
1625  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
+
1626  je = j < lbound(eta_arr).y+1 ? lbound(eta_arr).y+1 : j;
+
1627  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
+
1628  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
+
1629  eta = 0.5*( eta_arr(ie,je-1,zlo,EddyDiff::Mom_v)
+
1630  + eta_arr(ie,je ,zlo,EddyDiff::Mom_v) );
+
1631  eta = amrex::max(eta,eta_eps);
+
1632  dest_arr(i,j,k,icomp) = dest_arr(i,j,zlo,icomp) - stressy/eta*deltaz;
+
1633  }
+
1634 
+
1635  return stressy;
+
1636  }
+
1637 
+
1638 private:
+
1639  int zlo;
+
1640  const amrex::Real eps = 1e-15;
+
1641  const amrex::Real eta_eps = 1e-8;
+
1642 };
+
1643 #endif
constexpr amrex::Real KAPPA
Definition: ERF_Constants.H:20
@@ -1755,32 +1770,32 @@
AMREX_GPU_DEVICE AMREX_FORCE_INLINE void iterate_flux(const int &i, const int &j, const int &k, const int &, const amrex::Array4< const amrex::Real > &z0_arr, const amrex::Array4< const amrex::Real > &umm_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &u_star_arr, const amrex::Array4< amrex::Real > &t_star_arr, const amrex::Array4< amrex::Real > &, const amrex::Array4< amrex::Real > &olen_arr, const amrex::Array4< amrex::Real > &, const amrex::Array4< amrex::Real > &, const amrex::Array4< amrex::Real > &) const
Definition: MOSTStress.H:81
similarity_funs sfuns
Definition: MOSTStress.H:103
most_data mdata
Definition: MOSTStress.H:102
-
Definition: MOSTStress.H:1387
-
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_v_flux(const int &i, const int &j, const int &k, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &velx_arr, const amrex::Array4< const amrex::Real > &vely_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &u_star_arr, const amrex::Array4< amrex::Real > &dest_arr) const
Definition: MOSTStress.H:1563
-
int zlo
Definition: MOSTStress.H:1624
-
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_u_flux(const int &i, const int &j, const int &k, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &velx_arr, const amrex::Array4< const amrex::Real > &vely_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &u_star_arr, const amrex::Array4< amrex::Real > &dest_arr) const
Definition: MOSTStress.H:1500
-
const amrex::Real eta_eps
Definition: MOSTStress.H:1626
-
custom_flux(int l_zlo)
Definition: MOSTStress.H:1388
-
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_t_flux(const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &t_star_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) const
Definition: MOSTStress.H:1445
-
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_q_flux(const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &q_star_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) const
Definition: MOSTStress.H:1395
-
const amrex::Real eps
Definition: MOSTStress.H:1625
-
Definition: MOSTStress.H:1116
-
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_u_flux(const int &i, const int &j, const int &k, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &velx_arr, const amrex::Array4< const amrex::Real > &vely_arr, const amrex::Array4< const amrex::Real > &umm_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) const
Definition: MOSTStress.H:1236
-
donelan_flux(int l_zlo)
Definition: MOSTStress.H:1117
-
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_q_flux(const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) const
Definition: MOSTStress.H:1124
-
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_t_flux(const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &umm_arr, const amrex::Array4< const amrex::Real > &tm_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &t_surf_arr, const amrex::Array4< amrex::Real > &dest_arr) const
Definition: MOSTStress.H:1175
-
const amrex::Real eta_eps
Definition: MOSTStress.H:1379
-
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_v_flux(const int &i, const int &j, const int &k, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &velx_arr, const amrex::Array4< const amrex::Real > &vely_arr, const amrex::Array4< const amrex::Real > &umm_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) const
Definition: MOSTStress.H:1308
-
int zlo
Definition: MOSTStress.H:1378
+
Definition: MOSTStress.H:1397
+
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_v_flux(const int &i, const int &j, const int &k, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &velx_arr, const amrex::Array4< const amrex::Real > &vely_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &u_star_arr, const amrex::Array4< amrex::Real > &dest_arr) const
Definition: MOSTStress.H:1578
+
int zlo
Definition: MOSTStress.H:1639
+
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_u_flux(const int &i, const int &j, const int &k, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &velx_arr, const amrex::Array4< const amrex::Real > &vely_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &u_star_arr, const amrex::Array4< amrex::Real > &dest_arr) const
Definition: MOSTStress.H:1515
+
const amrex::Real eta_eps
Definition: MOSTStress.H:1641
+
custom_flux(int l_zlo)
Definition: MOSTStress.H:1398
+
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_t_flux(const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &t_star_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) const
Definition: MOSTStress.H:1460
+
const amrex::Real eps
Definition: MOSTStress.H:1640
+
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_q_flux(const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &q_star_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) const
Definition: MOSTStress.H:1405
+
Definition: MOSTStress.H:1121
+
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_u_flux(const int &i, const int &j, const int &k, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &velx_arr, const amrex::Array4< const amrex::Real > &vely_arr, const amrex::Array4< const amrex::Real > &umm_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) const
Definition: MOSTStress.H:1246
+
donelan_flux(int l_zlo)
Definition: MOSTStress.H:1122
+
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_t_flux(const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &umm_arr, const amrex::Array4< const amrex::Real > &tm_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &t_surf_arr, const amrex::Array4< amrex::Real > &dest_arr) const
Definition: MOSTStress.H:1185
+
const amrex::Real eta_eps
Definition: MOSTStress.H:1389
+
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_v_flux(const int &i, const int &j, const int &k, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &velx_arr, const amrex::Array4< const amrex::Real > &vely_arr, const amrex::Array4< const amrex::Real > &umm_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) const
Definition: MOSTStress.H:1318
+
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_q_flux(const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) const
Definition: MOSTStress.H:1129
+
int zlo
Definition: MOSTStress.H:1388
Definition: MOSTStress.H:826
-
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_u_flux(const int &i, const int &j, const int &k, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &velx_arr, const amrex::Array4< const amrex::Real > &vely_arr, const amrex::Array4< const amrex::Real > &umm_arr, const amrex::Array4< const amrex::Real > &um_arr, const amrex::Array4< const amrex::Real > &u_star_arr, const amrex::Array4< amrex::Real > &dest_arr) const
Definition: MOSTStress.H:964
+
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_u_flux(const int &i, const int &j, const int &k, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &velx_arr, const amrex::Array4< const amrex::Real > &vely_arr, const amrex::Array4< const amrex::Real > &umm_arr, const amrex::Array4< const amrex::Real > &um_arr, const amrex::Array4< const amrex::Real > &u_star_arr, const amrex::Array4< amrex::Real > &dest_arr) const
Definition: MOSTStress.H:969
moeng_flux(int l_zlo)
Definition: MOSTStress.H:827
-
int zlo
Definition: MOSTStress.H:1106
-
const amrex::Real eps
Definition: MOSTStress.H:1107
-
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_v_flux(const int &i, const int &j, const int &k, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &velx_arr, const amrex::Array4< const amrex::Real > &vely_arr, const amrex::Array4< const amrex::Real > &umm_arr, const amrex::Array4< const amrex::Real > &vm_arr, const amrex::Array4< const amrex::Real > &u_star_arr, const amrex::Array4< amrex::Real > &dest_arr) const
Definition: MOSTStress.H:1036
-
const amrex::Real eta_eps
Definition: MOSTStress.H:1108
-
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_t_flux(const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &velx_arr, const amrex::Array4< const amrex::Real > &vely_arr, const amrex::Array4< const amrex::Real > &umm_arr, const amrex::Array4< const amrex::Real > &tm_arr, const amrex::Array4< const amrex::Real > &u_star_arr, const amrex::Array4< const amrex::Real > &t_star_arr, const amrex::Array4< const amrex::Real > &t_surf_arr, const amrex::Array4< amrex::Real > &dest_arr) const
Definition: MOSTStress.H:885
-
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_q_flux(const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) const
Definition: MOSTStress.H:834
+
int zlo
Definition: MOSTStress.H:1111
+
const amrex::Real eps
Definition: MOSTStress.H:1112
+
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_q_flux(const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) const
Definition: MOSTStress.H:834
+
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_v_flux(const int &i, const int &j, const int &k, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &velx_arr, const amrex::Array4< const amrex::Real > &vely_arr, const amrex::Array4< const amrex::Real > &umm_arr, const amrex::Array4< const amrex::Real > &vm_arr, const amrex::Array4< const amrex::Real > &u_star_arr, const amrex::Array4< amrex::Real > &dest_arr) const
Definition: MOSTStress.H:1041
+
const amrex::Real eta_eps
Definition: MOSTStress.H:1113
+
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_t_flux(const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &velx_arr, const amrex::Array4< const amrex::Real > &vely_arr, const amrex::Array4< const amrex::Real > &umm_arr, const amrex::Array4< const amrex::Real > &tm_arr, const amrex::Array4< const amrex::Real > &u_star_arr, const amrex::Array4< const amrex::Real > &t_star_arr, const amrex::Array4< const amrex::Real > &t_surf_arr, const amrex::Array4< amrex::Real > &dest_arr) const
Definition: MOSTStress.H:890
Definition: MOSTStress.H:11
amrex::Real zref
Reference height (m)
Definition: MOSTStress.H:13
amrex::Real Cnk_b2
Modified Charnock Eq (4) https://doi.org/10.1175/JAMC-D-17-0137.1.
Definition: MOSTStress.H:20
diff --git a/TerrainMetrics_8H.html b/TerrainMetrics_8H.html index 4889ce9f83..d23c0f0661 100644 --- a/TerrainMetrics_8H.html +++ b/TerrainMetrics_8H.html @@ -611,19 +611,21 @@

159  return met_h_eta;
160 }
-

Referenced by DiffusionSrcForState_T(), erf_fast_rhs_MT(), erf_fast_rhs_T(), erf_slow_rhs_pre(), ERFPhysBCFunct_v::impose_vertical_yvel_bcs(), and ERF::WritePlotFile().

+

Referenced by DiffusionSrcForState_T(), erf_fast_rhs_MT(), erf_fast_rhs_T(), erf_slow_rhs_pre(), ERFPhysBCFunct_v::impose_vertical_yvel_bcs(), MOSTAverage::set_rotated_fields(), and ERF::WritePlotFile().

Here is the caller graph for this function:
- - - - - - - + + + + + + + + +
@@ -1016,19 +1018,21 @@

102  return met_h_xi;
103 }
-

Referenced by DiffusionSrcForState_T(), erf_fast_rhs_MT(), erf_fast_rhs_T(), erf_slow_rhs_pre(), ERFPhysBCFunct_u::impose_vertical_xvel_bcs(), and ERF::WritePlotFile().

+

Referenced by DiffusionSrcForState_T(), erf_fast_rhs_MT(), erf_fast_rhs_T(), erf_slow_rhs_pre(), ERFPhysBCFunct_u::impose_vertical_xvel_bcs(), MOSTAverage::set_rotated_fields(), and ERF::WritePlotFile().

Here is the caller graph for this function:
- - - - - - - + + + + + + + + +
diff --git a/TerrainMetrics_8H_a2116df83b61a39fb50b9a2d7474c00d7_icgraph.map b/TerrainMetrics_8H_a2116df83b61a39fb50b9a2d7474c00d7_icgraph.map index 167c503f82..450dddbe20 100644 --- a/TerrainMetrics_8H_a2116df83b61a39fb50b9a2d7474c00d7_icgraph.map +++ b/TerrainMetrics_8H_a2116df83b61a39fb50b9a2d7474c00d7_icgraph.map @@ -1,9 +1,11 @@ - - - - - - - + + + + + + + + + diff --git a/TerrainMetrics_8H_a2116df83b61a39fb50b9a2d7474c00d7_icgraph.md5 b/TerrainMetrics_8H_a2116df83b61a39fb50b9a2d7474c00d7_icgraph.md5 index e03040de8a..e0a5094892 100644 --- a/TerrainMetrics_8H_a2116df83b61a39fb50b9a2d7474c00d7_icgraph.md5 +++ b/TerrainMetrics_8H_a2116df83b61a39fb50b9a2d7474c00d7_icgraph.md5 @@ -1 +1 @@ -4c62bca02ed6bff40bd92f1ab1758b1b \ No newline at end of file +f04b5333f149f927fe4c741993e47d6e \ No newline at end of file diff --git a/TerrainMetrics_8H_a2116df83b61a39fb50b9a2d7474c00d7_icgraph.png b/TerrainMetrics_8H_a2116df83b61a39fb50b9a2d7474c00d7_icgraph.png index cc67ec35fa..390983aa14 100644 Binary files a/TerrainMetrics_8H_a2116df83b61a39fb50b9a2d7474c00d7_icgraph.png and b/TerrainMetrics_8H_a2116df83b61a39fb50b9a2d7474c00d7_icgraph.png differ diff --git a/TerrainMetrics_8H_ae609a5c1f84347b66e9a8b712271c4ce_icgraph.map b/TerrainMetrics_8H_ae609a5c1f84347b66e9a8b712271c4ce_icgraph.map index 07a8db4535..50ebe40af3 100644 --- a/TerrainMetrics_8H_ae609a5c1f84347b66e9a8b712271c4ce_icgraph.map +++ b/TerrainMetrics_8H_ae609a5c1f84347b66e9a8b712271c4ce_icgraph.map @@ -1,9 +1,11 @@ - - - - - - - + + + + + + + + + diff --git a/TerrainMetrics_8H_ae609a5c1f84347b66e9a8b712271c4ce_icgraph.md5 b/TerrainMetrics_8H_ae609a5c1f84347b66e9a8b712271c4ce_icgraph.md5 index bde018135f..6b478b2605 100644 --- a/TerrainMetrics_8H_ae609a5c1f84347b66e9a8b712271c4ce_icgraph.md5 +++ b/TerrainMetrics_8H_ae609a5c1f84347b66e9a8b712271c4ce_icgraph.md5 @@ -1 +1 @@ -3864c9f3d027f102b8c0e21a379ac92f \ No newline at end of file +e636dabab953330c64b0bb29c83703f0 \ No newline at end of file diff --git a/TerrainMetrics_8H_ae609a5c1f84347b66e9a8b712271c4ce_icgraph.png b/TerrainMetrics_8H_ae609a5c1f84347b66e9a8b712271c4ce_icgraph.png index 0c17515f4d..0e30727590 100644 Binary files a/TerrainMetrics_8H_ae609a5c1f84347b66e9a8b712271c4ce_icgraph.png and b/TerrainMetrics_8H_ae609a5c1f84347b66e9a8b712271c4ce_icgraph.png differ diff --git a/TileNoZ_8H.html b/TileNoZ_8H.html index d40b98f5b7..80721da38d 100644 --- a/TileNoZ_8H.html +++ b/TileNoZ_8H.html @@ -190,50 +190,51 @@

20  }
21 }
-

Referenced by add_thin_body_sources(), ERF::Advance(), ERF::advance_dycore(), TurbulentPerturbation::calc_tpi_meanMag_perBox(), MOSTAverage::compute_plane_averages(), MOSTAverage::compute_region_averages(), ComputeTurbulentViscosityLES(), ERF::erf_enforce_hse(), erf_fast_rhs_N(), erf_fast_rhs_T(), erf_init_dens_hse(), erf_make_tau_terms(), erf_slow_rhs_pre(), SAM::IceFall(), Kessler::Init(), SAM::Init(), ERF::init_custom(), ERF::init_from_hse(), make_fast_coeffs(), make_sources(), TurbulentPerturbation::netZeroBuoyantAdd(), TurbulentPerturbation::netZeroBuoyantAdjust(), SAM::PrecipFall(), TurbulentPerturbation::pseudoRandomPert(), MOSTAverage::set_k_indices_T(), MOSTAverage::set_norm_indices_T(), MOSTAverage::set_norm_positions_T(), MOSTAverage::set_z_positions_T(), ERF::turbPert_amplitude(), MOSTAverage::write_averages(), MOSTAverage::write_k_indices(), MOSTAverage::write_norm_indices(), and MOSTAverage::write_xz_positions().

+

Referenced by add_thin_body_sources(), ERF::Advance(), ERF::advance_dycore(), TurbulentPerturbation::calc_tpi_meanMag_perBox(), MOSTAverage::compute_plane_averages(), MOSTAverage::compute_region_averages(), ComputeTurbulentViscosityLES(), ERF::erf_enforce_hse(), erf_fast_rhs_N(), erf_fast_rhs_T(), erf_init_dens_hse(), erf_make_tau_terms(), erf_slow_rhs_pre(), SAM::IceFall(), Kessler::Init(), SAM::Init(), ERF::init_custom(), ERF::init_from_hse(), make_fast_coeffs(), make_sources(), TurbulentPerturbation::netZeroBuoyantAdd(), TurbulentPerturbation::netZeroBuoyantAdjust(), SAM::PrecipFall(), TurbulentPerturbation::pseudoRandomPert(), MOSTAverage::set_k_indices_T(), MOSTAverage::set_norm_indices_T(), MOSTAverage::set_norm_positions_T(), MOSTAverage::set_rotated_fields(), MOSTAverage::set_z_positions_T(), ERF::turbPert_amplitude(), MOSTAverage::write_averages(), MOSTAverage::write_k_indices(), MOSTAverage::write_norm_indices(), and MOSTAverage::write_xz_positions().

Here is the caller graph for this function:
- + - - + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + +
diff --git a/TileNoZ_8H_a8da113f1d5603f7297fe1d03e5013f00_icgraph.map b/TileNoZ_8H_a8da113f1d5603f7297fe1d03e5013f00_icgraph.map index cff86b5bc0..4526273b9a 100644 --- a/TileNoZ_8H_a8da113f1d5603f7297fe1d03e5013f00_icgraph.map +++ b/TileNoZ_8H_a8da113f1d5603f7297fe1d03e5013f00_icgraph.map @@ -1,40 +1,41 @@ - + - - + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + + diff --git a/TileNoZ_8H_a8da113f1d5603f7297fe1d03e5013f00_icgraph.md5 b/TileNoZ_8H_a8da113f1d5603f7297fe1d03e5013f00_icgraph.md5 index 8809de52da..99e8d9a475 100644 --- a/TileNoZ_8H_a8da113f1d5603f7297fe1d03e5013f00_icgraph.md5 +++ b/TileNoZ_8H_a8da113f1d5603f7297fe1d03e5013f00_icgraph.md5 @@ -1 +1 @@ -4b060725b1136605aa9fc04a8da2903d \ No newline at end of file +ddba20e281b945a29dbd7c5f631a1823 \ No newline at end of file diff --git a/TileNoZ_8H_a8da113f1d5603f7297fe1d03e5013f00_icgraph.png b/TileNoZ_8H_a8da113f1d5603f7297fe1d03e5013f00_icgraph.png index 459f367137..2fa77cf8a7 100644 Binary files a/TileNoZ_8H_a8da113f1d5603f7297fe1d03e5013f00_icgraph.png and b/TileNoZ_8H_a8da113f1d5603f7297fe1d03e5013f00_icgraph.png differ diff --git a/classABLMost-members.html b/classABLMost-members.html index c70130ab9f..67592a8617 100644 --- a/classABLMost-members.html +++ b/classABLMost-members.html @@ -92,8 +92,8 @@ ABLMost(const amrex::Vector< amrex::Geometry > &geom, bool &use_exp_most, amrex::Vector< amrex::Vector< amrex::MultiFab >> &vars_old, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Theta_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Qv_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &z_phys_nd, amrex::Vector< amrex::Vector< std::unique_ptr< amrex::MultiFab >>> &sst_lev, amrex::Vector< amrex::Vector< std::unique_ptr< amrex::iMultiFab >>> &lmask_lev, amrex::Vector< amrex::Vector< amrex::MultiFab * >> lsm_data, amrex::Vector< amrex::Vector< amrex::MultiFab * >> lsm_flux, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Hwave, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Lwave, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &eddyDiffs, amrex::Real start_bdy_time=0.0, amrex::Real bdy_time_interval=0.0)ABLMostinlineexplicit cnk_aABLMostprivate compute_fluxes(const int &lev, const int &max_iters, const FluxIter &most_flux, bool is_land)ABLMost - compute_most_bcs(const int &lev, const amrex::Vector< amrex::MultiFab * > &mfs, amrex::MultiFab *xzmom_flux, amrex::MultiFab *zxmom_flux, amrex::MultiFab *yzmom_flux, amrex::MultiFab *zymom_flux, amrex::MultiFab *heat_flux, amrex::MultiFab *z_phys, const amrex::Real &dz_no_terrain, const FluxCalc &flux_comp)ABLMost - compute_most_bcs(const int &lev, const Vector< MultiFab * > &mfs, MultiFab *xzmom_flux, MultiFab *zxmom_flux, MultiFab *yzmom_flux, MultiFab *zymom_flux, MultiFab *heat_flux, MultiFab *z_phys, const Real &dz_no_terrain, const FluxCalc &flux_comp)ABLMost + compute_most_bcs(const int &lev, const amrex::Vector< amrex::MultiFab * > &mfs, amrex::MultiFab *xzmom_flux, amrex::MultiFab *zxmom_flux, amrex::MultiFab *yzmom_flux, amrex::MultiFab *zymom_flux, amrex::MultiFab *heat_flux, amrex::MultiFab *qv_flux, amrex::MultiFab *z_phys, const amrex::Real &dz_no_terrain, const FluxCalc &flux_comp)ABLMost + compute_most_bcs(const int &lev, const Vector< MultiFab * > &mfs, MultiFab *xzmom_flux, MultiFab *zxmom_flux, MultiFab *yzmom_flux, MultiFab *zymom_flux, MultiFab *heat_flux, MultiFab *qv_flux, MultiFab *z_phys, const Real &dz_no_terrain, const FluxCalc &flux_comp)ABLMost custom_qstarABLMostprivate custom_tstarABLMostprivate custom_ustarABLMostprivate @@ -108,7 +108,7 @@ get_u_star(const int &lev)ABLMostinline get_z0(const int &lev)ABLMostinline get_zref()ABLMostinline - impose_most_bcs(const int &lev, const amrex::Vector< amrex::MultiFab * > &mfs, amrex::MultiFab *xzmom_flux, amrex::MultiFab *zxmom_flux, amrex::MultiFab *yzmom_flux, amrex::MultiFab *zymom_flux, amrex::MultiFab *heat_flux, amrex::MultiFab *z_phys)ABLMost + impose_most_bcs(const int &lev, const amrex::Vector< amrex::MultiFab * > &mfs, amrex::MultiFab *xzmom_flux, amrex::MultiFab *zxmom_flux, amrex::MultiFab *yzmom_flux, amrex::MultiFab *zymom_flux, amrex::MultiFab *heat_flux, amrex::MultiFab *qv_flux, amrex::MultiFab *z_phys)ABLMost m_bdy_time_intervalABLMostprivate m_eddyDiffs_levABLMostprivate m_exp_mostABLMostprivate @@ -119,28 +119,29 @@ m_lsm_flux_levABLMostprivate m_Lwave_levABLMostprivate m_maABLMostprivate - m_sst_levABLMostprivate - m_start_bdy_timeABLMostprivate - olenABLMostprivate - q_starABLMostprivate - rough_type_landABLMost - rough_type_seaABLMost - RoughCalcType enum nameABLMost - surf_heating_rateABLMostprivate - surf_tempABLMostprivate - surf_temp_fluxABLMostprivate - t_starABLMostprivate - t_surfABLMostprivate - theta_typeABLMost - ThetaCalcType enum nameABLMost - time_interp_sst(const int &lev, const amrex::Real &time)ABLMost - u_starABLMostprivate - update_fluxes(const int &lev, const amrex::Real &time, int max_iters=25)ABLMost - update_mac_ptrs(const int &lev, amrex::Vector< amrex::Vector< amrex::MultiFab >> &vars_old, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Theta_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Qv_prim)ABLMostinline - update_surf_temp(const amrex::Real &time)ABLMostinline - use_moistureABLMostprivate - z0_constABLMostprivate - z_0ABLMostprivate + m_rotateABLMostprivate + m_sst_levABLMostprivate + m_start_bdy_timeABLMostprivate + olenABLMostprivate + q_starABLMostprivate + rough_type_landABLMost + rough_type_seaABLMost + RoughCalcType enum nameABLMost + surf_heating_rateABLMostprivate + surf_tempABLMostprivate + surf_temp_fluxABLMostprivate + t_starABLMostprivate + t_surfABLMostprivate + theta_typeABLMost + ThetaCalcType enum nameABLMost + time_interp_sst(const int &lev, const amrex::Real &time)ABLMost + u_starABLMostprivate + update_fluxes(const int &lev, const amrex::Real &time, int max_iters=25)ABLMost + update_mac_ptrs(const int &lev, amrex::Vector< amrex::Vector< amrex::MultiFab >> &vars_old, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Theta_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Qv_prim)ABLMostinline + update_surf_temp(const amrex::Real &time)ABLMostinline + use_moistureABLMostprivate + z0_constABLMostprivate + z_0ABLMostprivate diff --git a/classABLMost.html b/classABLMost.html index a489ba74a7..d083ce741d 100644 --- a/classABLMost.html +++ b/classABLMost.html @@ -99,27 +99,27 @@
Collaboration graph
- + - + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + +
[legend]
@@ -151,11 +151,11 @@ - - - - - + + + + + @@ -178,9 +178,9 @@ - - - + + +
template<typename FluxIter >
void compute_fluxes (const int &lev, const int &max_iters, const FluxIter &most_flux, bool is_land)
 
void impose_most_bcs (const int &lev, const amrex::Vector< amrex::MultiFab * > &mfs, amrex::MultiFab *xzmom_flux, amrex::MultiFab *zxmom_flux, amrex::MultiFab *yzmom_flux, amrex::MultiFab *zymom_flux, amrex::MultiFab *heat_flux, amrex::MultiFab *z_phys)
 
template<typename FluxCalc >
void compute_most_bcs (const int &lev, const amrex::Vector< amrex::MultiFab * > &mfs, amrex::MultiFab *xzmom_flux, amrex::MultiFab *zxmom_flux, amrex::MultiFab *yzmom_flux, amrex::MultiFab *zymom_flux, amrex::MultiFab *heat_flux, amrex::MultiFab *z_phys, const amrex::Real &dz_no_terrain, const FluxCalc &flux_comp)
 
void impose_most_bcs (const int &lev, const amrex::Vector< amrex::MultiFab * > &mfs, amrex::MultiFab *xzmom_flux, amrex::MultiFab *zxmom_flux, amrex::MultiFab *yzmom_flux, amrex::MultiFab *zymom_flux, amrex::MultiFab *heat_flux, amrex::MultiFab *qv_flux, amrex::MultiFab *z_phys)
 
template<typename FluxCalc >
void compute_most_bcs (const int &lev, const amrex::Vector< amrex::MultiFab * > &mfs, amrex::MultiFab *xzmom_flux, amrex::MultiFab *zxmom_flux, amrex::MultiFab *yzmom_flux, amrex::MultiFab *zymom_flux, amrex::MultiFab *heat_flux, amrex::MultiFab *qv_flux, amrex::MultiFab *z_phys, const amrex::Real &dz_no_terrain, const FluxCalc &flux_comp)
 
void time_interp_sst (const int &lev, const amrex::Real &time)
 
void get_lsm_tsurf (const int &lev)
 
const amrex::FArrayBox * get_z0 (const int &lev)
 
template<typename FluxCalc >
void compute_most_bcs (const int &lev, const Vector< MultiFab * > &mfs, MultiFab *xzmom_flux, MultiFab *zxmom_flux, MultiFab *yzmom_flux, MultiFab *zymom_flux, MultiFab *heat_flux, MultiFab *z_phys, const Real &dz_no_terrain, const FluxCalc &flux_comp)
 
template<typename FluxCalc >
void compute_most_bcs (const int &lev, const Vector< MultiFab * > &mfs, MultiFab *xzmom_flux, MultiFab *zxmom_flux, MultiFab *yzmom_flux, MultiFab *zymom_flux, MultiFab *heat_flux, MultiFab *qv_flux, MultiFab *z_phys, const Real &dz_no_terrain, const FluxCalc &flux_comp)
 
@@ -199,6 +199,8 @@ + + @@ -284,11 +286,11 @@

CUSTOM 

Public Attributes

 
bool m_exp_most = false
 
bool m_rotate = false
 
amrex::Real z0_const {0.1}
 
amrex::Real surf_temp

Custom constant flux functional form.

-
319  {
-
320  MOENG = 0, ///< Moeng functional form
-
321  DONELAN, ///< Donelan functional form
-
322  CUSTOM ///< Custom constant flux functional form
-
323  };
+
327  {
+
328  MOENG = 0, ///< Moeng functional form
+
329  DONELAN, ///< Donelan functional form
+
330  CUSTOM ///< Custom constant flux functional form
+
331  };
@@ -318,12 +320,12 @@

MODIFIED_CHARNOCK  WAVE_COUPLED  -
331  {
-
332  CONSTANT = 0, ///< Constant z0
-
333  CHARNOCK,
-
334  MODIFIED_CHARNOCK,
-
335  WAVE_COUPLED
-
336  };
+
339  {
+
340  CONSTANT = 0, ///< Constant z0
+
341  CHARNOCK,
+
342  MODIFIED_CHARNOCK,
+
343  WAVE_COUPLED
+
344  };
@@ -353,11 +355,11 @@

SURFACE_TEMPERATURE 

Surface temperature specified.

-
325  {
-
326  ADIABATIC = 0,
-
327  HEAT_FLUX, ///< Heat-flux specified
-
328  SURFACE_TEMPERATURE ///< Surface temperature specified
-
329  };
+
333  {
+
334  ADIABATIC = 0,
+
335  HEAT_FLUX, ///< Heat-flux specified
+
336  SURFACE_TEMPERATURE ///< Surface temperature specified
+
337  };
@@ -499,212 +501,217 @@

70  amrex::Abort("Undefined MOST flux type!");
71  }
72 
-
73  // Get surface temperature
-
74  auto erf_st = pp.query("most.surf_temp", surf_temp);
-
75 
-
76  // Custom type user must specify the fluxes
- - -
79  pp.query("most.ustar", custom_ustar);
-
80  pp.query("most.tstar", custom_tstar);
-
81  pp.query("most.qstar", custom_qstar);
-
82  if (custom_qstar != 0) {
-
83  AMREX_ASSERT_WITH_MESSAGE(use_moisture, "Specified custom MOST qv flux without moisture model!");
-
84  }
-
85  amrex::Print() << "Using specified ustar, tstar, qstar for MOST = "
-
86  << custom_ustar << " "
-
87  << custom_tstar << " "
-
88  << custom_qstar << std::endl;
-
89 
-
90  // Specify surface temperature or surface flux
-
91  } else {
-
92  if (erf_st) {
- -
94  pp.query("most.surf_heating_rate", surf_heating_rate); // [K/h]
-
95  surf_heating_rate = surf_heating_rate / 3600.0; // [K/s]
-
96  if (pp.query("most.surf_temp_flux", surf_temp_flux)) {
-
97  amrex::Abort("Can only specify one of surf_temp_flux or surf_heating_rate");
-
98  }
-
99  } else {
-
100  pp.query("most.surf_temp_flux", surf_temp_flux);
-
101  if (pp.query("most.surf_heating_rate", surf_heating_rate)) {
-
102  amrex::Abort("Can only specify one of surf_temp_flux or surf_heating_rate");
-
103  }
-
104  if (std::abs(surf_temp_flux) > std::numeric_limits<amrex::Real>::epsilon()) {
- -
106  } else {
- -
108  }
-
109  }
-
110  }
-
111 
-
112  // Specify how to compute the surface flux over land (if there is any)
-
113  std::string rough_land_string{"constant"};
-
114  pp.query("most.roughness_type_land", rough_land_string);
-
115  if (rough_land_string == "constant") {
- -
117  } else {
-
118  amrex::Abort("Undefined MOST roughness type for land!");
-
119  }
-
120 
-
121  // Specify how to compute the surface flux over sea (if there is any)
-
122  std::string rough_sea_string{"charnock"};
-
123  pp.query("most.roughness_type_sea", rough_sea_string);
-
124  if (rough_sea_string == "charnock") {
- -
126  pp.query("most.charnock_constant",cnk_a);
-
127  } else if (rough_sea_string == "modified_charnock") {
- -
129  pp.query("most.modified_charnock_depth",depth);
-
130  } else if (rough_sea_string == "wave_coupled") {
- -
132  } else {
-
133  amrex::Abort("Undefined MOST roughness type for sea!");
-
134  }
-
135 
-
136  // Size the MOST params for all levels
-
137  int nlevs = m_geom.size();
-
138  z_0.resize(nlevs);
-
139  u_star.resize(nlevs);
-
140  t_star.resize(nlevs);
-
141  q_star.resize(nlevs);
-
142  t_surf.resize(nlevs);
-
143  olen.resize(nlevs);
-
144 
-
145  // Get pointers to SST and LANDMASK data
-
146  m_sst_lev.resize(nlevs);
-
147  m_lmask_lev.resize(nlevs);
+
73  // Check if we do stress rotations for terrain
+
74  pp.query("most.terrain_rotate",m_rotate);
+
75  if (m_rotate) AMREX_ASSERT_WITH_MESSAGE((z_phys_nd[0].get()), "Stress rotations are only valid with terrain!");
+
76 
+
77  // Get surface temperature
+
78  auto erf_st = pp.query("most.surf_temp", surf_temp);
+
79 
+
80  // Custom type user must specify the fluxes
+ + +
83  pp.query("most.ustar", custom_ustar);
+
84  pp.query("most.tstar", custom_tstar);
+
85  pp.query("most.qstar", custom_qstar);
+
86  if (custom_qstar != 0) {
+
87  AMREX_ASSERT_WITH_MESSAGE(use_moisture, "Specified custom MOST qv flux without moisture model!");
+
88  }
+
89  amrex::Print() << "Using specified ustar, tstar, qstar for MOST = "
+
90  << custom_ustar << " "
+
91  << custom_tstar << " "
+
92  << custom_qstar << std::endl;
+
93 
+
94  // Specify surface temperature or surface flux
+
95  } else {
+
96  if (erf_st) {
+ +
98  pp.query("most.surf_heating_rate", surf_heating_rate); // [K/h]
+
99  surf_heating_rate = surf_heating_rate / 3600.0; // [K/s]
+
100  if (pp.query("most.surf_temp_flux", surf_temp_flux)) {
+
101  amrex::Abort("Can only specify one of surf_temp_flux or surf_heating_rate");
+
102  }
+
103  } else {
+
104  pp.query("most.surf_temp_flux", surf_temp_flux);
+
105  if (pp.query("most.surf_heating_rate", surf_heating_rate)) {
+
106  amrex::Abort("Can only specify one of surf_temp_flux or surf_heating_rate");
+
107  }
+
108  if (std::abs(surf_temp_flux) > std::numeric_limits<amrex::Real>::epsilon()) {
+ +
110  } else {
+ +
112  }
+
113  }
+
114  }
+
115 
+
116  // Specify how to compute the surface flux over land (if there is any)
+
117  std::string rough_land_string{"constant"};
+
118  pp.query("most.roughness_type_land", rough_land_string);
+
119  if (rough_land_string == "constant") {
+ +
121  } else {
+
122  amrex::Abort("Undefined MOST roughness type for land!");
+
123  }
+
124 
+
125  // Specify how to compute the surface flux over sea (if there is any)
+
126  std::string rough_sea_string{"charnock"};
+
127  pp.query("most.roughness_type_sea", rough_sea_string);
+
128  if (rough_sea_string == "charnock") {
+ +
130  pp.query("most.charnock_constant",cnk_a);
+
131  } else if (rough_sea_string == "modified_charnock") {
+ +
133  pp.query("most.modified_charnock_depth",depth);
+
134  } else if (rough_sea_string == "wave_coupled") {
+ +
136  } else {
+
137  amrex::Abort("Undefined MOST roughness type for sea!");
+
138  }
+
139 
+
140  // Size the MOST params for all levels
+
141  int nlevs = m_geom.size();
+
142  z_0.resize(nlevs);
+
143  u_star.resize(nlevs);
+
144  t_star.resize(nlevs);
+
145  q_star.resize(nlevs);
+
146  t_surf.resize(nlevs);
+
147  olen.resize(nlevs);
148 
-
149  for (int lev(0); lev<nlevs; ++lev) {
-
150  int nt_tot_sst = sst_lev[lev].size();
-
151  m_sst_lev[lev].resize(nt_tot_sst);
-
152  for (int nt(0); nt<nt_tot_sst; ++nt) {
-
153  m_sst_lev[lev][nt] = sst_lev[lev][nt].get();
-
154  }
-
155  int nt_tot_lmask = lmask_lev[lev].size();
-
156  m_lmask_lev[lev].resize(nt_tot_lmask);
-
157  for (int nt(0); nt<nt_tot_lmask; ++nt) {
-
158  m_lmask_lev[lev][nt] = lmask_lev[lev][nt].get();
-
159  }
-
160  } // lev
-
161 
-
162  // Get pointers to LSM data and Fluxes
-
163  m_lsm_data_lev.resize(nlevs);
-
164  m_lsm_flux_lev.resize(nlevs);
-
165  for (int lev(0); lev<nlevs; ++lev) {
-
166  int nvar = lsm_data[lev].size();
-
167  m_lsm_data_lev[lev].resize(nvar);
-
168  m_lsm_flux_lev[lev].resize(nvar);
-
169  for (int n(0); n<nvar; ++n) {
-
170  m_lsm_data_lev[lev][n] = lsm_data[lev][n];
-
171  m_lsm_flux_lev[lev][n] = lsm_flux[lev][n];
-
172  }
-
173  } // lev
-
174 
-
175  // Get pointers to wave data
-
176  m_Hwave_lev.resize(nlevs);
-
177  m_Lwave_lev.resize(nlevs);
-
178  m_eddyDiffs_lev.resize(nlevs);
-
179  for (int lev(0); lev<nlevs; ++lev) {
-
180  m_Hwave_lev[lev] = Hwave[lev].get();
-
181  m_Lwave_lev[lev] = Lwave[lev].get();
-
182  m_eddyDiffs_lev[lev] = eddyDiffs[lev].get();
-
183  }
-
184 
-
185  for (int lev = 0; lev < nlevs; lev++) {
-
186  // Attributes for MFs and FABs
-
187  //--------------------------------------------------------
-
188  auto& mf = vars_old[lev][Vars::cons];
-
189  // Create a 2D ba, dm, & ghost cells
-
190  amrex::BoxArray ba = mf.boxArray();
-
191  amrex::BoxList bl2d = ba.boxList();
-
192  for (auto& b : bl2d) {
-
193  b.setRange(2,0);
-
194  }
-
195  amrex::BoxArray ba2d(std::move(bl2d));
-
196  const amrex::DistributionMapping& dm = mf.DistributionMap();
-
197  const int ncomp = 1;
-
198  amrex::IntVect ng = mf.nGrowVect(); ng[2]=0;
-
199 
-
200  // Z0 heights FAB
-
201  //--------------------------------------------------------
-
202  amrex::Box bx = amrex::grow(m_geom[lev].Domain(),ng);
-
203  bx.setSmall(2,0);
-
204  bx.setBig(2,0);
-
205  z_0[lev].resize(bx,1);
-
206  z_0[lev].setVal<amrex::RunOn::Device>(z0_const);
-
207 
-
208  // 2D MFs for U*, T*, T_surf
-
209  //--------------------------------------------------------
-
210  u_star[lev] = std::make_unique<amrex::MultiFab>(ba2d,dm,ncomp,ng);
-
211  u_star[lev]->setVal(1.E34);
-
212 
-
213  t_star[lev] = std::make_unique<amrex::MultiFab>(ba2d,dm,ncomp,ng);
-
214  t_star[lev]->setVal(1.E34);
-
215 
-
216  q_star[lev] = std::make_unique<amrex::MultiFab>(ba2d,dm,ncomp,ng);
-
217  q_star[lev]->setVal(1.E34);
-
218 
-
219  olen[lev] = std::make_unique<amrex::MultiFab>(ba2d,dm,ncomp,ng);
-
220  olen[lev]->setVal(1.E34);
-
221 
-
222  t_surf[lev] = std::make_unique<amrex::MultiFab>(ba2d,dm,ncomp,ng);
-
223 
-
224  // TODO: Do we want lsm_data to have theta at 0 index always?
-
225  // Do we want an external enum struct for indexing?
-
226  if (m_sst_lev[lev][0] || m_lsm_data_lev[lev][0]) {
-
227  // Valid SST or LSM data; t_surf set before computing fluxes (avoids extended lambda capture)
- -
229  } else if (erf_st) {
-
230  t_surf[lev]->setVal(surf_temp);
-
231  } else {
-
232  t_surf[lev]->setVal(0.0);
-
233  }
-
234  }// lev
-
235  }
+
149  // Get pointers to SST and LANDMASK data
+
150  m_sst_lev.resize(nlevs);
+
151  m_lmask_lev.resize(nlevs);
+
152 
+
153  for (int lev(0); lev<nlevs; ++lev) {
+
154  int nt_tot_sst = sst_lev[lev].size();
+
155  m_sst_lev[lev].resize(nt_tot_sst);
+
156  for (int nt(0); nt<nt_tot_sst; ++nt) {
+
157  m_sst_lev[lev][nt] = sst_lev[lev][nt].get();
+
158  }
+
159  int nt_tot_lmask = lmask_lev[lev].size();
+
160  m_lmask_lev[lev].resize(nt_tot_lmask);
+
161  for (int nt(0); nt<nt_tot_lmask; ++nt) {
+
162  m_lmask_lev[lev][nt] = lmask_lev[lev][nt].get();
+
163  }
+
164  } // lev
+
165 
+
166  // Get pointers to LSM data and Fluxes
+
167  m_lsm_data_lev.resize(nlevs);
+
168  m_lsm_flux_lev.resize(nlevs);
+
169  for (int lev(0); lev<nlevs; ++lev) {
+
170  int nvar = lsm_data[lev].size();
+
171  m_lsm_data_lev[lev].resize(nvar);
+
172  m_lsm_flux_lev[lev].resize(nvar);
+
173  for (int n(0); n<nvar; ++n) {
+
174  m_lsm_data_lev[lev][n] = lsm_data[lev][n];
+
175  m_lsm_flux_lev[lev][n] = lsm_flux[lev][n];
+
176  }
+
177  } // lev
+
178 
+
179  // Get pointers to wave data
+
180  m_Hwave_lev.resize(nlevs);
+
181  m_Lwave_lev.resize(nlevs);
+
182  m_eddyDiffs_lev.resize(nlevs);
+
183  for (int lev(0); lev<nlevs; ++lev) {
+
184  m_Hwave_lev[lev] = Hwave[lev].get();
+
185  m_Lwave_lev[lev] = Lwave[lev].get();
+
186  m_eddyDiffs_lev[lev] = eddyDiffs[lev].get();
+
187  }
+
188 
+
189  for (int lev = 0; lev < nlevs; lev++) {
+
190  // Attributes for MFs and FABs
+
191  //--------------------------------------------------------
+
192  auto& mf = vars_old[lev][Vars::cons];
+
193  // Create a 2D ba, dm, & ghost cells
+
194  amrex::BoxArray ba = mf.boxArray();
+
195  amrex::BoxList bl2d = ba.boxList();
+
196  for (auto& b : bl2d) {
+
197  b.setRange(2,0);
+
198  }
+
199  amrex::BoxArray ba2d(std::move(bl2d));
+
200  const amrex::DistributionMapping& dm = mf.DistributionMap();
+
201  const int ncomp = 1;
+
202  amrex::IntVect ng = mf.nGrowVect(); ng[2]=0;
+
203 
+
204  // Z0 heights FAB
+
205  //--------------------------------------------------------
+
206  amrex::Box bx = amrex::grow(m_geom[lev].Domain(),ng);
+
207  bx.setSmall(2,0);
+
208  bx.setBig(2,0);
+
209  z_0[lev].resize(bx,1);
+
210  z_0[lev].setVal<amrex::RunOn::Device>(z0_const);
+
211 
+
212  // 2D MFs for U*, T*, T_surf
+
213  //--------------------------------------------------------
+
214  u_star[lev] = std::make_unique<amrex::MultiFab>(ba2d,dm,ncomp,ng);
+
215  u_star[lev]->setVal(1.E34);
+
216 
+
217  t_star[lev] = std::make_unique<amrex::MultiFab>(ba2d,dm,ncomp,ng);
+
218  t_star[lev]->setVal(1.E34);
+
219 
+
220  q_star[lev] = std::make_unique<amrex::MultiFab>(ba2d,dm,ncomp,ng);
+
221  q_star[lev]->setVal(1.E34);
+
222 
+
223  olen[lev] = std::make_unique<amrex::MultiFab>(ba2d,dm,ncomp,ng);
+
224  olen[lev]->setVal(1.E34);
+
225 
+
226  t_surf[lev] = std::make_unique<amrex::MultiFab>(ba2d,dm,ncomp,ng);
+
227 
+
228  // TODO: Do we want lsm_data to have theta at 0 index always?
+
229  // Do we want an external enum struct for indexing?
+
230  if (m_sst_lev[lev][0] || m_lsm_data_lev[lev][0]) {
+
231  // Valid SST or LSM data; t_surf set before computing fluxes (avoids extended lambda capture)
+ +
233  } else if (erf_st) {
+
234  t_surf[lev]->setVal(surf_temp);
+
235  } else {
+
236  t_surf[lev]->setVal(0.0);
+
237  }
+
238  }// lev
+
239  }
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::Real pp(amrex::Real y)
Definition: Microphysics_Utils.H:219
-
amrex::Real m_bdy_time_interval
Definition: ABLMost.H:356
-
amrex::Vector< amrex::MultiFab * > m_eddyDiffs_lev
Definition: ABLMost.H:373
-
amrex::Vector< std::unique_ptr< amrex::MultiFab > > q_star
Definition: ABLMost.H:363
-
amrex::Vector< std::unique_ptr< amrex::MultiFab > > olen
Definition: ABLMost.H:364
-
amrex::Vector< amrex::FArrayBox > z_0
Definition: ABLMost.H:358
-
amrex::Vector< amrex::Geometry > m_geom
Definition: ABLMost.H:357
-
amrex::Real custom_ustar
Definition: ABLMost.H:350
-
amrex::Vector< std::unique_ptr< amrex::MultiFab > > t_surf
Definition: ABLMost.H:365
-
amrex::Real custom_qstar
Definition: ABLMost.H:352
-
amrex::Real depth
Definition: ABLMost.H:354
-
amrex::Real surf_heating_rate
Definition: ABLMost.H:348
-
amrex::Vector< amrex::Vector< amrex::MultiFab * > > m_lsm_flux_lev
Definition: ABLMost.H:370
-
MOSTAverage m_ma
Definition: ABLMost.H:360
+
amrex::Real m_bdy_time_interval
Definition: ABLMost.H:365
+
amrex::Vector< amrex::MultiFab * > m_eddyDiffs_lev
Definition: ABLMost.H:382
+
amrex::Vector< std::unique_ptr< amrex::MultiFab > > q_star
Definition: ABLMost.H:372
+
amrex::Vector< std::unique_ptr< amrex::MultiFab > > olen
Definition: ABLMost.H:373
+
amrex::Vector< amrex::FArrayBox > z_0
Definition: ABLMost.H:367
+
amrex::Vector< amrex::Geometry > m_geom
Definition: ABLMost.H:366
+
amrex::Real custom_ustar
Definition: ABLMost.H:359
+
amrex::Vector< std::unique_ptr< amrex::MultiFab > > t_surf
Definition: ABLMost.H:374
+
amrex::Real custom_qstar
Definition: ABLMost.H:361
+
amrex::Real depth
Definition: ABLMost.H:363
+
amrex::Real surf_heating_rate
Definition: ABLMost.H:357
+
amrex::Vector< amrex::Vector< amrex::MultiFab * > > m_lsm_flux_lev
Definition: ABLMost.H:379
+
MOSTAverage m_ma
Definition: ABLMost.H:369
@ SURFACE_TEMPERATURE
Surface temperature specified.
@ HEAT_FLUX
Heat-flux specified.
-
amrex::Real m_start_bdy_time
Definition: ABLMost.H:355
-
amrex::Vector< amrex::MultiFab * > m_Hwave_lev
Definition: ABLMost.H:371
-
amrex::Real surf_temp
Definition: ABLMost.H:347
-
amrex::Real cnk_a
Definition: ABLMost.H:353
-
ThetaCalcType theta_type
Definition: ABLMost.H:339
+
amrex::Real m_start_bdy_time
Definition: ABLMost.H:364
+
amrex::Vector< amrex::MultiFab * > m_Hwave_lev
Definition: ABLMost.H:380
+
amrex::Real surf_temp
Definition: ABLMost.H:356
+
amrex::Real cnk_a
Definition: ABLMost.H:362
+
ThetaCalcType theta_type
Definition: ABLMost.H:347
@ MOENG
Moeng functional form.
@ CUSTOM
Custom constant flux functional form.
@ DONELAN
Donelan functional form.
-
amrex::Vector< amrex::Vector< amrex::MultiFab * > > m_lsm_data_lev
Definition: ABLMost.H:369
-
amrex::Real surf_temp_flux
Definition: ABLMost.H:349
-
amrex::Vector< amrex::Vector< amrex::iMultiFab * > > m_lmask_lev
Definition: ABLMost.H:368
-
RoughCalcType rough_type_land
Definition: ABLMost.H:340
-
amrex::Vector< amrex::MultiFab * > m_Lwave_lev
Definition: ABLMost.H:372
-
RoughCalcType rough_type_sea
Definition: ABLMost.H:341
-
bool use_moisture
Definition: ABLMost.H:344
-
bool m_exp_most
Definition: ABLMost.H:345
-
amrex::Vector< std::unique_ptr< amrex::MultiFab > > t_star
Definition: ABLMost.H:362
-
amrex::Vector< std::unique_ptr< amrex::MultiFab > > u_star
Definition: ABLMost.H:361
-
amrex::Real z0_const
Definition: ABLMost.H:346
-
FluxCalcType flux_type
Definition: ABLMost.H:338
-
amrex::Vector< amrex::Vector< amrex::MultiFab * > > m_sst_lev
Definition: ABLMost.H:367
+
amrex::Vector< amrex::Vector< amrex::MultiFab * > > m_lsm_data_lev
Definition: ABLMost.H:378
+
amrex::Real surf_temp_flux
Definition: ABLMost.H:358
+
amrex::Vector< amrex::Vector< amrex::iMultiFab * > > m_lmask_lev
Definition: ABLMost.H:377
+
RoughCalcType rough_type_land
Definition: ABLMost.H:348
+
bool m_rotate
Definition: ABLMost.H:354
+
amrex::Vector< amrex::MultiFab * > m_Lwave_lev
Definition: ABLMost.H:381
+
RoughCalcType rough_type_sea
Definition: ABLMost.H:349
+
bool use_moisture
Definition: ABLMost.H:352
+
bool m_exp_most
Definition: ABLMost.H:353
+
amrex::Vector< std::unique_ptr< amrex::MultiFab > > t_star
Definition: ABLMost.H:371
+
amrex::Vector< std::unique_ptr< amrex::MultiFab > > u_star
Definition: ABLMost.H:370
+
amrex::Real z0_const
Definition: ABLMost.H:355
+
FluxCalcType flux_type
Definition: ABLMost.H:346
+
amrex::Vector< amrex::Vector< amrex::MultiFab * > > m_sst_lev
Definition: ABLMost.H:376
@ CONSTANT
Constant z0.
-
amrex::Real custom_tstar
Definition: ABLMost.H:351
+
amrex::Real custom_tstar
Definition: ABLMost.H:360
@ cons
Definition: IndexDefines.H:99
Here is the call graph for this function:
@@ -807,12 +814,12 @@

176  });
177  }
178 }
-
const amrex::MultiFab * get_average(int lev, int comp) const
Definition: MOSTAverage.H:87
+
const amrex::MultiFab * get_average(int lev, int comp) const
Definition: MOSTAverage.H:90
- -

◆ compute_most_bcs() [1/2]

+ +

◆ compute_most_bcs() [1/2]

@@ -861,6 +868,12 @@

amrex::MultiFab *  heat_flux, + + + + amrex::MultiFab *  + qv_flux, + @@ -889,8 +902,8 @@

-

◆ compute_most_bcs() [2/2]

+ +

◆ compute_most_bcs() [2/2]

@@ -939,6 +952,12 @@

MultiFab *  heat_flux, + + + + MultiFab *  + qv_flux, + @@ -974,148 +993,151 @@

240 {
-
241  const int klo = 0;
-
242  const int icomp = 0;
-
243  for (MFIter mfi(*mfs[0]); mfi.isValid(); ++mfi)
-
244  {
-
245  // TODO: No LSM lateral ghost cells, should this change?
-
246  // Valid CC box
-
247  Box vbx = mfi.validbox(); vbx.makeSlab(2,klo-1);
-
248 
-
249  Box vbxx = surroundingNodes(vbx,0);
-
250  Box vbxy = surroundingNodes(vbx,1);
-
251 
-
252  // Expose for GPU
-
253  bool exp_most = m_exp_most;
-
254 
-
255  // Get field arrays
-
256  const auto cons_arr = mfs[Vars::cons]->array(mfi);
-
257  const auto velx_arr = mfs[Vars::xvel]->array(mfi);
-
258  const auto vely_arr = mfs[Vars::yvel]->array(mfi);
-
259 
-
260  auto t13_arr = (m_exp_most) ? xzmom_flux->array(mfi) : Array4<Real>{};
-
261  auto t23_arr = (m_exp_most) ? yzmom_flux->array(mfi) : Array4<Real>{};
-
262  auto t31_arr = (zxmom_flux && m_exp_most) ? zxmom_flux->array(mfi) : Array4<Real>{};
-
263  auto t32_arr = (zymom_flux && m_exp_most) ? zymom_flux->array(mfi) : Array4<Real>{};
-
264  auto hfx_arr = (m_exp_most) ? heat_flux->array(mfi) : Array4<Real>{};
-
265 
-
266  const auto eta_arr = m_eddyDiffs_lev[lev]->array(mfi);
-
267 
-
268  const auto zphys_arr = (z_phys) ? z_phys->const_array(mfi) : Array4<const Real>{};
-
269 
-
270  // Get average arrays
-
271  const auto *const u_mean = m_ma.get_average(lev,0);
-
272  const auto *const v_mean = m_ma.get_average(lev,1);
-
273  const auto *const t_mean = m_ma.get_average(lev,2);
-
274  const auto *const q_mean = m_ma.get_average(lev,3);
-
275  const auto *const u_mag_mean = m_ma.get_average(lev,4);
-
276 
-
277  const auto um_arr = u_mean->array(mfi);
-
278  const auto vm_arr = v_mean->array(mfi);
-
279  const auto tm_arr = t_mean->array(mfi);
-
280  const auto qm_arr = q_mean->array(mfi);
-
281  const auto umm_arr = u_mag_mean->array(mfi);
-
282 
-
283  // Get derived arrays
-
284  const auto u_star_arr = u_star[lev]->array(mfi);
-
285  const auto t_star_arr = t_star[lev]->array(mfi);
-
286  const auto q_star_arr = q_star[lev]->array(mfi);
-
287  const auto t_surf_arr = t_surf[lev]->array(mfi);
-
288 
-
289  // Get LSM fluxes
-
290  auto lmask_arr = (m_lmask_lev[lev][0]) ? m_lmask_lev[lev][0]->array(mfi) :
-
291  Array4<int> {};
-
292  auto lsm_flux_arr = (m_lsm_flux_lev[lev][0]) ? m_lsm_flux_lev[lev][0]->array(mfi) :
-
293  Array4<Real> {};
-
294 
-
295  for (int var_idx = 0; var_idx < Vars::NumTypes; ++var_idx)
-
296  {
-
297  const Box& bx = (*mfs[var_idx])[mfi].box();
-
298  auto dest_arr = (*mfs[var_idx])[mfi].array();
-
299 
-
300  if (var_idx == Vars::cons) {
-
301  Box b2d = bx;
-
302  b2d.setBig(2,klo-1);
-
303  int n = RhoTheta_comp;
-
304  ParallelFor(b2d, [=] AMREX_GPU_DEVICE (int i, int j, int k)
-
305  {
-
306  Real dz = (zphys_arr) ? ( zphys_arr(i,j,klo ) - zphys_arr(i,j,klo-1) ) : dz_no_terrain;
-
307  Real dz1 = (zphys_arr) ? ( zphys_arr(i,j,klo+1) - zphys_arr(i,j,klo ) ) : dz_no_terrain;
-
308  Real Tflux = flux_comp.compute_t_flux(i, j, k, n, icomp, dz, dz1, exp_most, eta_arr,
-
309  cons_arr, velx_arr, vely_arr,
-
310  umm_arr, tm_arr, u_star_arr, t_star_arr, t_surf_arr,
-
311  dest_arr);
-
312 
-
313 
-
314  // TODO: make sure not to double-count surface heat flux if using a LSM
-
315  int is_land = (lmask_arr) ? lmask_arr(i,j,klo) : 1;
-
316  if (is_land && lsm_flux_arr && vbx.contains(i,j,k)) {
-
317  lsm_flux_arr(i,j,klo) = Tflux;
-
318  }
-
319  else if ((k == klo-1) && vbx.contains(i,j,k) && exp_most) {
-
320  hfx_arr(i,j,klo) = Tflux;
+
242 {
+
243  const int klo = 0;
+
244  const int icomp = 0;
+
245  for (MFIter mfi(*mfs[0]); mfi.isValid(); ++mfi)
+
246  {
+
247  // TODO: No LSM lateral ghost cells, should this change?
+
248  // Valid CC box
+
249  Box vbx = mfi.validbox(); vbx.makeSlab(2,klo-1);
+
250 
+
251  Box vbxx = surroundingNodes(vbx,0);
+
252  Box vbxy = surroundingNodes(vbx,1);
+
253 
+
254  // Expose for GPU
+
255  bool exp_most = m_exp_most;
+
256 
+
257  // Get field arrays
+
258  const auto cons_arr = mfs[Vars::cons]->array(mfi);
+
259  const auto velx_arr = mfs[Vars::xvel]->array(mfi);
+
260  const auto vely_arr = mfs[Vars::yvel]->array(mfi);
+
261 
+
262  auto t13_arr = (m_exp_most) ? xzmom_flux->array(mfi) : Array4<Real>{};
+
263  auto t23_arr = (m_exp_most) ? yzmom_flux->array(mfi) : Array4<Real>{};
+
264  auto t31_arr = (zxmom_flux && m_exp_most) ? zxmom_flux->array(mfi) : Array4<Real>{};
+
265  auto t32_arr = (zymom_flux && m_exp_most) ? zymom_flux->array(mfi) : Array4<Real>{};
+
266  auto hfx_arr = (m_exp_most) ? heat_flux->array(mfi) : Array4<Real>{};
+
267  auto qfx_arr = (m_exp_most && qv_flux) ? qv_flux->array(mfi) : Array4<Real>{};
+
268 
+
269  const auto eta_arr = m_eddyDiffs_lev[lev]->array(mfi);
+
270 
+
271  const auto zphys_arr = (z_phys) ? z_phys->const_array(mfi) : Array4<const Real>{};
+
272 
+
273  // Get average arrays
+
274  const auto *const u_mean = m_ma.get_average(lev,0);
+
275  const auto *const v_mean = m_ma.get_average(lev,1);
+
276  const auto *const t_mean = m_ma.get_average(lev,2);
+
277  const auto *const q_mean = m_ma.get_average(lev,3);
+
278  const auto *const u_mag_mean = m_ma.get_average(lev,4);
+
279 
+
280  const auto um_arr = u_mean->array(mfi);
+
281  const auto vm_arr = v_mean->array(mfi);
+
282  const auto tm_arr = t_mean->array(mfi);
+
283  const auto qm_arr = q_mean->array(mfi);
+
284  const auto umm_arr = u_mag_mean->array(mfi);
+
285 
+
286  // Get derived arrays
+
287  const auto u_star_arr = u_star[lev]->array(mfi);
+
288  const auto t_star_arr = t_star[lev]->array(mfi);
+
289  const auto q_star_arr = q_star[lev]->array(mfi);
+
290  const auto t_surf_arr = t_surf[lev]->array(mfi);
+
291 
+
292  // Get LSM fluxes
+
293  auto lmask_arr = (m_lmask_lev[lev][0]) ? m_lmask_lev[lev][0]->array(mfi) :
+
294  Array4<int> {};
+
295  auto lsm_flux_arr = (m_lsm_flux_lev[lev][0]) ? m_lsm_flux_lev[lev][0]->array(mfi) :
+
296  Array4<Real> {};
+
297 
+
298  for (int var_idx = 0; var_idx < Vars::NumTypes; ++var_idx)
+
299  {
+
300  const Box& bx = (*mfs[var_idx])[mfi].box();
+
301  auto dest_arr = (*mfs[var_idx])[mfi].array();
+
302 
+
303  if (var_idx == Vars::cons) {
+
304  Box b2d = bx;
+
305  b2d.setBig(2,klo-1);
+
306  int n = RhoTheta_comp;
+
307  ParallelFor(b2d, [=] AMREX_GPU_DEVICE (int i, int j, int k)
+
308  {
+
309  Real dz = (zphys_arr) ? ( zphys_arr(i,j,klo ) - zphys_arr(i,j,klo-1) ) : dz_no_terrain;
+
310  Real dz1 = (zphys_arr) ? ( zphys_arr(i,j,klo+1) - zphys_arr(i,j,klo ) ) : dz_no_terrain;
+
311  Real Tflux = flux_comp.compute_t_flux(i, j, k, n, icomp, dz, dz1, exp_most, eta_arr,
+
312  cons_arr, velx_arr, vely_arr,
+
313  umm_arr, tm_arr, u_star_arr, t_star_arr, t_surf_arr,
+
314  dest_arr);
+
315 
+
316 
+
317  // TODO: make sure not to double-count surface heat flux if using a LSM
+
318  int is_land = (lmask_arr) ? lmask_arr(i,j,klo) : 1;
+
319  if (is_land && lsm_flux_arr && vbx.contains(i,j,k)) {
+
320  lsm_flux_arr(i,j,klo) = Tflux;
321  }
-
322  });
-
323 
-
324  // TODO: Generalize MOST q flux with MOENG & DONELAN flux types
- -
326  n = RhoQ1_comp;
-
327  ParallelFor(b2d, [=] AMREX_GPU_DEVICE (int i, int j, int k)
-
328  {
-
329  Real dz = (zphys_arr) ? ( zphys_arr(i,j,klo ) - zphys_arr(i,j,klo-1) ) : dz_no_terrain;
-
330  Real dz1 = (zphys_arr) ? ( zphys_arr(i,j,klo+1) - zphys_arr(i,j,klo ) ) : dz_no_terrain;
-
331  Real Qflux = flux_comp.compute_q_flux(i, j, k, n, icomp, dz, dz1, exp_most, eta_arr,
-
332  cons_arr, velx_arr, vely_arr,
-
333  umm_arr, qm_arr, u_star_arr, q_star_arr, t_surf_arr,
-
334  dest_arr);
-
335  amrex::ignore_unused(Qflux);
-
336  });
-
337  }
-
338 
-
339  } else if (var_idx == Vars::xvel) {
-
340 
-
341  Box xb2d = surroundingNodes(bx,0);
-
342  xb2d.setBig(2,klo-1);
+
322  else if ((k == klo-1) && vbx.contains(i,j,k) && exp_most) {
+
323  hfx_arr(i,j,klo) = Tflux;
+
324  }
+
325  });
+
326 
+
327  // TODO: Generalize MOST q flux with MOENG & DONELAN flux types
+ +
329  n = RhoQ1_comp;
+
330  ParallelFor(b2d, [=] AMREX_GPU_DEVICE (int i, int j, int k)
+
331  {
+
332  Real dz = (zphys_arr) ? ( zphys_arr(i,j,klo ) - zphys_arr(i,j,klo-1) ) : dz_no_terrain;
+
333  Real dz1 = (zphys_arr) ? ( zphys_arr(i,j,klo+1) - zphys_arr(i,j,klo ) ) : dz_no_terrain;
+
334  Real Qflux = flux_comp.compute_q_flux(i, j, k, n, icomp, dz, dz1, exp_most, eta_arr,
+
335  cons_arr, velx_arr, vely_arr,
+
336  umm_arr, qm_arr, u_star_arr, q_star_arr, t_surf_arr,
+
337  dest_arr);
+
338  if ((k == klo-1) && vbx.contains(i,j,k) && exp_most) {
+
339  qfx_arr(i,j,klo) = Qflux;
+
340  }
+
341  });
+
342  }
343 
-
344  ParallelFor(xb2d, [=] AMREX_GPU_DEVICE (int i, int j, int k)
-
345  {
-
346  Real dz = (zphys_arr) ? ( zphys_arr(i,j,klo ) - zphys_arr(i,j,klo-1) ) : dz_no_terrain;
-
347  Real dz1 = (zphys_arr) ? ( zphys_arr(i,j,klo+1) - zphys_arr(i,j,klo ) ) : dz_no_terrain;
-
348  Real stressx = flux_comp.compute_u_flux(i, j, k, icomp, dz, dz1, exp_most, eta_arr,
-
349  cons_arr, velx_arr, vely_arr,
-
350  umm_arr, um_arr, u_star_arr,
-
351  dest_arr);
-
352  if ((k == klo-1) && vbxx.contains(i,j,k) && exp_most) {
-
353  t13_arr(i,j,klo) = -stressx;
-
354  if (t31_arr) t31_arr(i,j,klo) = -stressx;
-
355  }
-
356  amrex::ignore_unused(stressx);
-
357  });
-
358 
-
359  } else if (var_idx == Vars::yvel) {
-
360 
-
361  Box yb2d = surroundingNodes(bx,1);
-
362  yb2d.setBig(2,klo-1);
+
344  } else if (var_idx == Vars::xvel) {
+
345 
+
346  Box xb2d = surroundingNodes(bx,0);
+
347  xb2d.setBig(2,klo-1);
+
348 
+
349  ParallelFor(xb2d, [=] AMREX_GPU_DEVICE (int i, int j, int k)
+
350  {
+
351  Real dz = (zphys_arr) ? ( zphys_arr(i,j,klo ) - zphys_arr(i,j,klo-1) ) : dz_no_terrain;
+
352  Real dz1 = (zphys_arr) ? ( zphys_arr(i,j,klo+1) - zphys_arr(i,j,klo ) ) : dz_no_terrain;
+
353  Real stressx = flux_comp.compute_u_flux(i, j, k, icomp, dz, dz1, exp_most, eta_arr,
+
354  cons_arr, velx_arr, vely_arr,
+
355  umm_arr, um_arr, u_star_arr,
+
356  dest_arr);
+
357  if ((k == klo-1) && vbxx.contains(i,j,k) && exp_most) {
+
358  t13_arr(i,j,klo) = -stressx;
+
359  if (t31_arr) t31_arr(i,j,klo) = -stressx;
+
360  }
+
361  amrex::ignore_unused(stressx);
+
362  });
363 
-
364  ParallelFor(yb2d, [=] AMREX_GPU_DEVICE (int i, int j, int k)
-
365  {
-
366  Real dz = (zphys_arr) ? ( zphys_arr(i,j,klo ) - zphys_arr(i,j,klo-1) ) : dz_no_terrain;
-
367  Real dz1 = (zphys_arr) ? ( zphys_arr(i,j,klo+1) - zphys_arr(i,j,klo ) ) : dz_no_terrain;
-
368  Real stressy = flux_comp.compute_v_flux(i, j, k, icomp, dz, dz1, exp_most, eta_arr,
-
369  cons_arr, velx_arr, vely_arr,
-
370  umm_arr, vm_arr, u_star_arr,
-
371  dest_arr);
-
372  if ((k == klo-1) && vbxy.contains(i,j,k) && exp_most) {
-
373  t23_arr(i,j,klo) = -stressy;
-
374  if (t32_arr) t32_arr(i,j,klo) = -stressy;
-
375  }
-
376  amrex::ignore_unused(stressy);
-
377  });
-
378  }
-
379  } // var_idx
-
380  } // mfiter
-
381 }
+
364  } else if (var_idx == Vars::yvel) {
+
365 
+
366  Box yb2d = surroundingNodes(bx,1);
+
367  yb2d.setBig(2,klo-1);
+
368 
+
369  ParallelFor(yb2d, [=] AMREX_GPU_DEVICE (int i, int j, int k)
+
370  {
+
371  Real dz = (zphys_arr) ? ( zphys_arr(i,j,klo ) - zphys_arr(i,j,klo-1) ) : dz_no_terrain;
+
372  Real dz1 = (zphys_arr) ? ( zphys_arr(i,j,klo+1) - zphys_arr(i,j,klo ) ) : dz_no_terrain;
+
373  Real stressy = flux_comp.compute_v_flux(i, j, k, icomp, dz, dz1, exp_most, eta_arr,
+
374  cons_arr, velx_arr, vely_arr,
+
375  umm_arr, vm_arr, u_star_arr,
+
376  dest_arr);
+
377  if ((k == klo-1) && vbxy.contains(i,j,k) && exp_most) {
+
378  t23_arr(i,j,klo) = -stressy;
+
379  if (t32_arr) t32_arr(i,j,klo) = -stressy;
+
380  }
+
381  amrex::ignore_unused(stressy);
+
382  });
+
383  }
+
384  } // var_idx
+
385  } // mfiter
+
386 }
#define RhoTheta_comp
Definition: IndexDefines.H:13
#define RhoQ1_comp
Definition: IndexDefines.H:17
@ xvel
Definition: IndexDefines.H:100
@@ -1139,36 +1161,36 @@

-
420 {
-
421  for (MFIter mfi(*t_surf[lev]); mfi.isValid(); ++mfi)
-
422  {
-
423  Box gtbx = mfi.growntilebox();
-
424 
-
425  // TODO: LSM does not carry lateral ghost cells.
-
426  // This copies the valid box into the ghost cells.
-
427  // Fillboundary is called after this to pick up the
-
428  // interior ghost and periodic directions. Is there
-
429  // a better approach?
-
430  Box vbx = mfi.validbox();
-
431  int i_lo = vbx.smallEnd(0); int i_hi = vbx.bigEnd(0);
-
432  int j_lo = vbx.smallEnd(1); int j_hi = vbx.bigEnd(1);
-
433 
-
434  auto t_surf_arr = t_surf[lev]->array(mfi);
-
435  auto lmask_arr = (m_lmask_lev[lev][0]) ? m_lmask_lev[lev][0]->array(mfi) :
-
436  Array4<int> {};
-
437  const auto lsm_arr = m_lsm_data_lev[lev][0]->const_array(mfi);
+
425 {
+
426  for (MFIter mfi(*t_surf[lev]); mfi.isValid(); ++mfi)
+
427  {
+
428  Box gtbx = mfi.growntilebox();
+
429 
+
430  // TODO: LSM does not carry lateral ghost cells.
+
431  // This copies the valid box into the ghost cells.
+
432  // Fillboundary is called after this to pick up the
+
433  // interior ghost and periodic directions. Is there
+
434  // a better approach?
+
435  Box vbx = mfi.validbox();
+
436  int i_lo = vbx.smallEnd(0); int i_hi = vbx.bigEnd(0);
+
437  int j_lo = vbx.smallEnd(1); int j_hi = vbx.bigEnd(1);
438 
-
439  ParallelFor(gtbx, [=] AMREX_GPU_DEVICE(int i, int j, int k) noexcept
-
440  {
-
441  int is_land = (lmask_arr) ? lmask_arr(i,j,k) : 1;
-
442  if (is_land) {
-
443  int li = amrex::min(amrex::max(i, i_lo), i_hi);
-
444  int lj = amrex::min(amrex::max(j, j_lo), j_hi);
-
445  t_surf_arr(i,j,k) = lsm_arr(li,lj,k);
-
446  }
-
447  });
-
448  }
-
449 }
+
439  auto t_surf_arr = t_surf[lev]->array(mfi);
+
440  auto lmask_arr = (m_lmask_lev[lev][0]) ? m_lmask_lev[lev][0]->array(mfi) :
+
441  Array4<int> {};
+
442  const auto lsm_arr = m_lsm_data_lev[lev][0]->const_array(mfi);
+
443 
+
444  ParallelFor(gtbx, [=] AMREX_GPU_DEVICE(int i, int j, int k) noexcept
+
445  {
+
446  int is_land = (lmask_arr) ? lmask_arr(i,j,k) : 1;
+
447  if (is_land) {
+
448  int li = amrex::min(amrex::max(i, i_lo), i_hi);
+
449  int lj = amrex::min(amrex::max(j, j_lo), j_hi);
+
450  t_surf_arr(i,j,k) = lsm_arr(li,lj,k);
+
451  }
+
452  });
+
453  }
+
454 }

@@ -1205,7 +1227,7 @@

-
308 { return m_ma.get_average(lev,comp); }
+
314 { return m_ma.get_average(lev,comp); }
Here is the call graph for this function:
@@ -1241,7 +1263,7 @@

-
305 { return olen[lev].get(); }
+
311 { return olen[lev].get(); }

@@ -1268,7 +1290,7 @@

-
302 { return t_star[lev].get(); }
+
308 { return t_star[lev].get(); }

@@ -1295,7 +1317,7 @@

-
311 { return t_surf[lev].get(); }
+
317 { return t_surf[lev].get(); }

@@ -1322,7 +1344,7 @@

-
299 { return u_star[lev].get(); }
+
305 { return u_star[lev].get(); }

@@ -1349,7 +1371,7 @@

-
317 {return &z_0[lev];}
+
323 {return &z_0[lev];}

@@ -1375,8 +1397,8 @@

-
314 {return m_ma.get_zref();}
-
amrex::Real get_zref() const
Definition: MOSTAverage.H:90
+
320 {return m_ma.get_zref();}
+
amrex::Real get_zref() const
Definition: MOSTAverage.H:93
Here is the call graph for this function:
@@ -1389,8 +1411,8 @@

-

◆ impose_most_bcs()

+ +

◆ impose_most_bcs()

@@ -1437,6 +1459,12 @@

amrex::MultiFab *  heat_flux, + + + + amrex::MultiFab *  + qv_flux, + @@ -1459,34 +1487,34 @@

195 {
-
196  const int klo = 0;
- -
198  moeng_flux flux_comp(klo);
-
199  compute_most_bcs(lev, mfs,
-
200  xzmom_flux, zxmom_flux,
-
201  yzmom_flux, zymom_flux,
-
202  heat_flux,
-
203  z_phys, m_geom[lev].CellSize(2), flux_comp);
-
204  } else if (flux_type == FluxCalcType::DONELAN) {
-
205  donelan_flux flux_comp(klo);
-
206  compute_most_bcs(lev, mfs,
-
207  xzmom_flux, zxmom_flux,
-
208  yzmom_flux, zymom_flux,
-
209  heat_flux,
-
210  z_phys, m_geom[lev].CellSize(2), flux_comp);
-
211  } else {
-
212  custom_flux flux_comp(klo);
-
213  compute_most_bcs(lev, mfs,
-
214  xzmom_flux, zxmom_flux,
-
215  yzmom_flux, zymom_flux,
-
216  heat_flux,
-
217  z_phys, m_geom[lev].CellSize(2), flux_comp);
-
218  }
-
219 }
-
void compute_most_bcs(const int &lev, const amrex::Vector< amrex::MultiFab * > &mfs, amrex::MultiFab *xzmom_flux, amrex::MultiFab *zxmom_flux, amrex::MultiFab *yzmom_flux, amrex::MultiFab *zymom_flux, amrex::MultiFab *heat_flux, amrex::MultiFab *z_phys, const amrex::Real &dz_no_terrain, const FluxCalc &flux_comp)
-
Definition: MOSTStress.H:1387
-
Definition: MOSTStress.H:1116
+
196 {
+
197  const int klo = 0;
+ +
199  moeng_flux flux_comp(klo);
+
200  compute_most_bcs(lev, mfs,
+
201  xzmom_flux, zxmom_flux,
+
202  yzmom_flux, zymom_flux,
+
203  heat_flux, qv_flux,
+
204  z_phys, m_geom[lev].CellSize(2), flux_comp);
+
205  } else if (flux_type == FluxCalcType::DONELAN) {
+
206  donelan_flux flux_comp(klo);
+
207  compute_most_bcs(lev, mfs,
+
208  xzmom_flux, zxmom_flux,
+
209  yzmom_flux, zymom_flux,
+
210  heat_flux, qv_flux,
+
211  z_phys, m_geom[lev].CellSize(2), flux_comp);
+
212  } else {
+
213  custom_flux flux_comp(klo);
+
214  compute_most_bcs(lev, mfs,
+
215  xzmom_flux, zxmom_flux,
+
216  yzmom_flux, zymom_flux,
+
217  heat_flux, qv_flux,
+
218  z_phys, m_geom[lev].CellSize(2), flux_comp);
+
219  }
+
220 }
+
void compute_most_bcs(const int &lev, const amrex::Vector< amrex::MultiFab * > &mfs, amrex::MultiFab *xzmom_flux, amrex::MultiFab *zxmom_flux, amrex::MultiFab *yzmom_flux, amrex::MultiFab *zymom_flux, amrex::MultiFab *heat_flux, amrex::MultiFab *qv_flux, amrex::MultiFab *z_phys, const amrex::Real &dz_no_terrain, const FluxCalc &flux_comp)
+
Definition: MOSTStress.H:1397
+
Definition: MOSTStress.H:1121
Definition: MOSTStress.H:826

@@ -1516,37 +1544,37 @@

-
386 {
-
387  // Time interpolation
-
388  Real dT = m_bdy_time_interval;
-
389  Real time_since_start = time - m_start_bdy_time;
-
390  int n_time = static_cast<int>( time_since_start / dT);
-
391  Real alpha = (time_since_start - n_time * dT) / dT;
-
392  AMREX_ALWAYS_ASSERT( alpha >= 0. && alpha <= 1.0);
-
393  Real oma = 1.0 - alpha;
-
394  AMREX_ALWAYS_ASSERT( (n_time >= 0) && (n_time < (m_sst_lev[lev].size()-1)));
-
395 
-
396  // Populate t_surf
-
397  for (MFIter mfi(*t_surf[lev]); mfi.isValid(); ++mfi)
-
398  {
-
399  Box gtbx = mfi.growntilebox();
+
391 {
+
392  // Time interpolation
+
393  Real dT = m_bdy_time_interval;
+
394  Real time_since_start = time - m_start_bdy_time;
+
395  int n_time = static_cast<int>( time_since_start / dT);
+
396  Real alpha = (time_since_start - n_time * dT) / dT;
+
397  AMREX_ALWAYS_ASSERT( alpha >= 0. && alpha <= 1.0);
+
398  Real oma = 1.0 - alpha;
+
399  AMREX_ALWAYS_ASSERT( (n_time >= 0) && (n_time < (m_sst_lev[lev].size()-1)));
400 
-
401  auto t_surf_arr = t_surf[lev]->array(mfi);
-
402  const auto sst_hi_arr = m_sst_lev[lev][n_time+1]->const_array(mfi);
-
403  const auto sst_lo_arr = m_sst_lev[lev][n_time ]->const_array(mfi);
-
404  auto lmask_arr = (m_lmask_lev[lev][0]) ? m_lmask_lev[lev][0]->array(mfi) :
-
405  Array4<int> {};
-
406 
-
407  ParallelFor(gtbx, [=] AMREX_GPU_DEVICE(int i, int j, int k) noexcept
-
408  {
-
409  int is_land = (lmask_arr) ? lmask_arr(i,j,k) : 1;
-
410  if (!is_land) {
-
411  t_surf_arr(i,j,k) = oma * sst_lo_arr(i,j,k)
-
412  + alpha * sst_hi_arr(i,j,k);
-
413  }
-
414  });
-
415  }
-
416 }
+
401  // Populate t_surf
+
402  for (MFIter mfi(*t_surf[lev]); mfi.isValid(); ++mfi)
+
403  {
+
404  Box gtbx = mfi.growntilebox();
+
405 
+
406  auto t_surf_arr = t_surf[lev]->array(mfi);
+
407  const auto sst_hi_arr = m_sst_lev[lev][n_time+1]->const_array(mfi);
+
408  const auto sst_lo_arr = m_sst_lev[lev][n_time ]->const_array(mfi);
+
409  auto lmask_arr = (m_lmask_lev[lev][0]) ? m_lmask_lev[lev][0]->array(mfi) :
+
410  Array4<int> {};
+
411 
+
412  ParallelFor(gtbx, [=] AMREX_GPU_DEVICE(int i, int j, int k) noexcept
+
413  {
+
414  int is_land = (lmask_arr) ? lmask_arr(i,j,k) : 1;
+
415  if (!is_land) {
+
416  t_surf_arr(i,j,k) = oma * sst_lo_arr(i,j,k)
+
417  + alpha * sst_hi_arr(i,j,k);
+
418  }
+
419  });
+
420  }
+
421 }

@@ -1699,10 +1727,10 @@

123  }

124 }
void compute_fluxes(const int &lev, const int &max_iters, const FluxIter &most_flux, bool is_land)
Definition: ABLMost.cpp:135
-
void time_interp_sst(const int &lev, const amrex::Real &time)
Definition: ABLMost.cpp:384
-
void update_surf_temp(const amrex::Real &time)
Definition: ABLMost.H:276
-
void get_lsm_tsurf(const int &lev)
Definition: ABLMost.cpp:419
-
void compute_averages(int lev)
Definition: MOSTAverage.cpp:540
+
void time_interp_sst(const int &lev, const amrex::Real &time)
Definition: ABLMost.cpp:389
+
void update_surf_temp(const amrex::Real &time)
Definition: ABLMost.H:282
+
void get_lsm_tsurf(const int &lev)
Definition: ABLMost.cpp:424
+
void compute_averages(int lev)
Definition: MOSTAverage.cpp:628
Definition: MOSTStress.H:111
Definition: MOSTStress.H:166
Definition: MOSTStress.H:222
@@ -1763,8 +1791,8 @@

-
296  { m_ma.update_field_ptrs(lev,vars_old,Theta_prim,Qv_prim); }
-
void update_field_ptrs(int lev, amrex::Vector< amrex::Vector< amrex::MultiFab >> &vars_old, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Theta_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Qv_prim)
Definition: MOSTAverage.cpp:181
+
302  { m_ma.update_field_ptrs(lev,vars_old,Theta_prim,Qv_prim); }
+
void update_field_ptrs(int lev, amrex::Vector< amrex::Vector< amrex::MultiFab >> &vars_old, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Theta_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Qv_prim)
Definition: MOSTAverage.cpp:209
Here is the call graph for this function:
@@ -1800,19 +1828,19 @@

-
277  {
-
278  if (surf_heating_rate != 0) {
-
279  int nlevs = m_geom.size();
-
280  for (int lev = 0; lev < nlevs; lev++)
-
281  {
-
282  t_surf[lev]->setVal(surf_temp + surf_heating_rate*time);
-
283  amrex::Print() << "Surface temp at t=" << time
-
284  << ": "
-
285  << surf_temp + surf_heating_rate*time
-
286  << std::endl;
-
287  }
-
288  }
-
289  }
+
283  {
+
284  if (surf_heating_rate != 0) {
+
285  int nlevs = m_geom.size();
+
286  for (int lev = 0; lev < nlevs; lev++)
+
287  {
+
288  t_surf[lev]->setVal(surf_temp + surf_heating_rate*time);
+
289  amrex::Print() << "Surface temp at t=" << time
+
290  << ": "
+
291  << surf_temp + surf_heating_rate*time
+
292  << std::endl;
+
293  }
+
294  }
+
295  }

@@ -2187,6 +2215,30 @@

Referenced by get_mac_avg(), get_zref(), and update_mac_ptrs().

+

+

+ +

◆ m_rotate

+ +
+
+ + + + + +
+ + + + +
bool ABLMost::m_rotate = false
+
+private
+
+ +

Referenced by ABLMost().

+
diff --git a/classABLMost.js b/classABLMost.js index 0be9d584ae..84af2e4ae5 100644 --- a/classABLMost.js +++ b/classABLMost.js @@ -18,8 +18,8 @@ var classABLMost = ] ], [ "ABLMost", "classABLMost.html#a4ee786860369e5a42ba353308590b372", null ], [ "compute_fluxes", "classABLMost.html#a829339fc8e70a5dff8b7c85f3c2e4138", null ], - [ "compute_most_bcs", "classABLMost.html#a67df60526193cba93df934a540f7a258", null ], - [ "compute_most_bcs", "classABLMost.html#a0c33b98848bdb3beb8249d5b60ec1a83", null ], + [ "compute_most_bcs", "classABLMost.html#afb930118bc66bba7376f0fe2abd85be3", null ], + [ "compute_most_bcs", "classABLMost.html#a64b906be4c2e1328177633f682fab5dd", null ], [ "get_lsm_tsurf", "classABLMost.html#ae28fd8a21f4b514875c24fe4b8e85081", null ], [ "get_mac_avg", "classABLMost.html#af26cdc6b8c162c14b2db32eb395f0565", null ], [ "get_olen", "classABLMost.html#aef7480dbb43cafff3be93a95240c1ec3", null ], @@ -28,7 +28,7 @@ var classABLMost = [ "get_u_star", "classABLMost.html#a0890b6ae8c80d8888effa040af808df0", null ], [ "get_z0", "classABLMost.html#a626a97f944cb297c966a2ff7ce0bad97", null ], [ "get_zref", "classABLMost.html#ae638411093a2d3cc6cc525d4d7efa7ed", null ], - [ "impose_most_bcs", "classABLMost.html#a8e0510d69090549d147c9ebf31f24e5a", null ], + [ "impose_most_bcs", "classABLMost.html#ab3ac1c161450930085ef74208b7f3dcb", null ], [ "time_interp_sst", "classABLMost.html#aaeef06eb7d0ab7e3d100e583337121cc", null ], [ "update_fluxes", "classABLMost.html#af82057d4fbaaf1d8347cf18c7efd7b53", null ], [ "update_mac_ptrs", "classABLMost.html#a6a3e64fcdbe709a947131d31cd0e347b", null ], @@ -49,6 +49,7 @@ var classABLMost = [ "m_lsm_flux_lev", "classABLMost.html#a422336bc908d29f98dafb3b745b4f060", null ], [ "m_Lwave_lev", "classABLMost.html#ab12af4a41dbc189d69850a81447434f7", null ], [ "m_ma", "classABLMost.html#a466bfcda8ae4337d9c8781ab28e3f6fe", null ], + [ "m_rotate", "classABLMost.html#ab107efa0b6bdf80ee44d232919f6a7ad", null ], [ "m_sst_lev", "classABLMost.html#ad8f1957bba407e17edb0a84ace515cde", null ], [ "m_start_bdy_time", "classABLMost.html#a4fb97b28e44e9ff6930f18083923343a", null ], [ "olen", "classABLMost.html#a0d6aa5a113a45ae1e56c0284241cfd01", null ], diff --git a/classABLMost__coll__graph.map b/classABLMost__coll__graph.map index 33275bcbe4..10fed01373 100644 --- a/classABLMost__coll__graph.map +++ b/classABLMost__coll__graph.map @@ -1,23 +1,23 @@ - + - + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/classABLMost__coll__graph.md5 b/classABLMost__coll__graph.md5 index 4b3b57b0fc..2a8437fca4 100644 --- a/classABLMost__coll__graph.md5 +++ b/classABLMost__coll__graph.md5 @@ -1 +1 @@ -51a92484cf447ef77eb689ee8cc0d465 \ No newline at end of file +1dff4da35b8c746af168fd89a90dc174 \ No newline at end of file diff --git a/classABLMost__coll__graph.png b/classABLMost__coll__graph.png index 6f01352c3e..b462aea58b 100644 Binary files a/classABLMost__coll__graph.png and b/classABLMost__coll__graph.png differ diff --git a/classERF-members.html b/classERF-members.html index b0a228bd47..e0475f29e6 100644 --- a/classERF-members.html +++ b/classERF-members.html @@ -211,7 +211,7 @@ init_Dirichlet_bc_data(const std::string input_file)ERFprivate init_from_hse(int lev)ERF init_from_input_sounding(int lev)ERF - init_geo_wind_profile(const std::string input_file, amrex::Vector< amrex::Real > &u_geos, amrex::Gpu::DeviceVector< amrex::Real > &u_geos_d, amrex::Vector< amrex::Real > &v_geos, amrex::Gpu::DeviceVector< amrex::Real > &v_geos_d, const amrex::Geometry &geom, const amrex::Vector< amrex::Real > &zlev_stag)ERFprivate + init_geo_wind_profile(const std::string input_file, amrex::Vector< amrex::Real > &u_geos, amrex::Gpu::DeviceVector< amrex::Real > &u_geos_d, amrex::Vector< amrex::Real > &v_geos, amrex::Gpu::DeviceVector< amrex::Real > &v_geos_d, const amrex::Geometry &lgeom, const amrex::Vector< amrex::Real > &zlev_stag)ERFprivate init_only(int lev, amrex::Real time)ERF init_shrinkERFprivatestatic init_sounding_idealERFprivatestatic diff --git a/classERF.html b/classERF.html index eb09a81777..eec2d3954b 100644 --- a/classERF.html +++ b/classERF.html @@ -368,8 +368,8 @@   void fill_rhs (amrex::MultiFab &rhs_mf, const amrex::MultiFab &state_mf, amrex::Real time, const amrex::Geometry &geom)   -void init_geo_wind_profile (const std::string input_file, amrex::Vector< amrex::Real > &u_geos, amrex::Gpu::DeviceVector< amrex::Real > &u_geos_d, amrex::Vector< amrex::Real > &v_geos, amrex::Gpu::DeviceVector< amrex::Real > &v_geos_d, const amrex::Geometry &geom, const amrex::Vector< amrex::Real > &zlev_stag) -  +void init_geo_wind_profile (const std::string input_file, amrex::Vector< amrex::Real > &u_geos, amrex::Gpu::DeviceVector< amrex::Real > &u_geos_d, amrex::Vector< amrex::Real > &v_geos, amrex::Gpu::DeviceVector< amrex::Real > &v_geos_d, const amrex::Geometry &lgeom, const amrex::Vector< amrex::Real > &zlev_stag) +  void refinement_criteria_setup ()   AMREX_FORCE_INLINE amrex::YAFluxRegister * getAdvFluxReg (int lev) @@ -5366,95 +5366,95 @@

-
579 {
-
580  // Impose bc's at domain boundaries
-
581  for (int lev = 0; lev <= finest_level; ++lev)
-
582  {
-
583  Box domain(Geom(lev).Domain());
-
584 
-
585  int ihi = domain.bigEnd(0);
-
586  int jhi = domain.bigEnd(1);
-
587  int khi = domain.bigEnd(2);
-
588 
-
589  // Impose periodicity first
-
590  mf_cc_vel[lev].FillBoundary(geom[lev].periodicity());
-
591 
-
592  for (MFIter mfi(mf_cc_vel[lev], TilingIfNotGPU()); mfi.isValid(); ++mfi)
-
593  {
-
594  // Note that we don't fill corners here -- only the cells that share a face
-
595  // with interior cells -- this is all that is needed to calculate vorticity
-
596  const Box& bx = mfi.tilebox();
-
597  const Array4<Real>& vel_arr = mf_cc_vel[lev].array(mfi);
-
598 
-
599  if (!Geom(lev).isPeriodic(0)) {
-
600  // Low-x side
-
601  if (bx.smallEnd(0) <= domain.smallEnd(0)) {
-
602  Real mult = (phys_bc_type[0] == ERF_BC::no_slip_wall) ? -1. : 1.;
-
603  ParallelFor(makeSlab(bx,0,0), [=] AMREX_GPU_DEVICE(int , int j, int k) noexcept
-
604  {
-
605  vel_arr(-1,j,k,1) = mult*vel_arr(0,j,k,1); // v
-
606  vel_arr(-1,j,k,2) = mult*vel_arr(0,j,k,2); // w
-
607  });
-
608  }
-
609 
-
610  // High-x side
-
611  if (bx.bigEnd(0) >= domain.bigEnd(0)) {
-
612  Real mult = (phys_bc_type[3] == ERF_BC::no_slip_wall) ? -1. : 1.;
-
613  ParallelFor(makeSlab(bx,0,0), [=] AMREX_GPU_DEVICE(int , int j, int k) noexcept
-
614  {
-
615  vel_arr(ihi+1,j,k,1) = mult*vel_arr(ihi,j,k,1); // v
-
616  vel_arr(ihi+1,j,k,2) = mult*vel_arr(ihi,j,k,2); // w
-
617  });
-
618  }
-
619  } // !periodic
-
620 
-
621  if (!Geom(lev).isPeriodic(1)) {
-
622  // Low-y side
-
623  if (bx.smallEnd(1) <= domain.smallEnd(1)) {
-
624  Real mult = (phys_bc_type[1] == ERF_BC::no_slip_wall) ? -1. : 1.;
-
625  ParallelFor(makeSlab(bx,1,0), [=] AMREX_GPU_DEVICE(int i, int , int k) noexcept
-
626  {
-
627  vel_arr(i,-1,k,0) = mult*vel_arr(i,0,k,0); // u
-
628  vel_arr(i,-1,k,2) = mult*vel_arr(i,0,k,2); // w
-
629  });
-
630  }
-
631 
-
632  // High-y side
-
633  if (bx.bigEnd(1) >= domain.bigEnd(1)) {
-
634  Real mult = (phys_bc_type[4] == ERF_BC::no_slip_wall) ? -1. : 1.;
-
635  ParallelFor(makeSlab(bx,1,0), [=] AMREX_GPU_DEVICE(int i, int , int k) noexcept
-
636  {
-
637  vel_arr(i,jhi+1,k,0) = mult*vel_arr(i,jhi,k,0); // u
-
638  vel_arr(i,jhi+1,k,2) = mult*-vel_arr(i,jhi,k,2); // w
-
639  });
-
640  }
-
641  } // !periodic
-
642 
-
643  if (!Geom(lev).isPeriodic(2)) {
-
644  // Low-z side
-
645  if (bx.smallEnd(2) <= domain.smallEnd(2)) {
-
646  Real mult = (phys_bc_type[2] == ERF_BC::no_slip_wall) ? -1. : 1.;
-
647  ParallelFor(makeSlab(bx,2,0), [=] AMREX_GPU_DEVICE(int i, int j, int) noexcept
-
648  {
-
649  vel_arr(i,j,-1,0) = mult*vel_arr(i,j,0,0); // u
-
650  vel_arr(i,j,-1,1) = mult*vel_arr(i,j,0,1); // v
-
651  });
-
652  }
-
653 
-
654  // High-z side
-
655  if (bx.bigEnd(2) >= domain.bigEnd(2)) {
-
656  Real mult = (phys_bc_type[5] == ERF_BC::no_slip_wall) ? -1. : 1.;
-
657  ParallelFor(makeSlab(bx,2,0), [=] AMREX_GPU_DEVICE(int i, int j, int) noexcept
-
658  {
-
659  vel_arr(i,j,khi+1,0) = mult*vel_arr(i,j,khi,0); // u
-
660  vel_arr(i,j,khi+1,1) = mult*vel_arr(i,j,khi,1); // v
-
661  });
-
662  }
-
663  } // !periodic
-
664  } // MFIter
-
665 
-
666  } // lev
-
667 }
+
580 {
+
581  // Impose bc's at domain boundaries
+
582  for (int lev = 0; lev <= finest_level; ++lev)
+
583  {
+
584  Box domain(Geom(lev).Domain());
+
585 
+
586  int ihi = domain.bigEnd(0);
+
587  int jhi = domain.bigEnd(1);
+
588  int khi = domain.bigEnd(2);
+
589 
+
590  // Impose periodicity first
+
591  mf_cc_vel[lev].FillBoundary(geom[lev].periodicity());
+
592 
+
593  for (MFIter mfi(mf_cc_vel[lev], TilingIfNotGPU()); mfi.isValid(); ++mfi)
+
594  {
+
595  // Note that we don't fill corners here -- only the cells that share a face
+
596  // with interior cells -- this is all that is needed to calculate vorticity
+
597  const Box& bx = mfi.tilebox();
+
598  const Array4<Real>& vel_arr = mf_cc_vel[lev].array(mfi);
+
599 
+
600  if (!Geom(lev).isPeriodic(0)) {
+
601  // Low-x side
+
602  if (bx.smallEnd(0) <= domain.smallEnd(0)) {
+
603  Real mult = (phys_bc_type[0] == ERF_BC::no_slip_wall) ? -1. : 1.;
+
604  ParallelFor(makeSlab(bx,0,0), [=] AMREX_GPU_DEVICE(int , int j, int k) noexcept
+
605  {
+
606  vel_arr(-1,j,k,1) = mult*vel_arr(0,j,k,1); // v
+
607  vel_arr(-1,j,k,2) = mult*vel_arr(0,j,k,2); // w
+
608  });
+
609  }
+
610 
+
611  // High-x side
+
612  if (bx.bigEnd(0) >= domain.bigEnd(0)) {
+
613  Real mult = (phys_bc_type[3] == ERF_BC::no_slip_wall) ? -1. : 1.;
+
614  ParallelFor(makeSlab(bx,0,0), [=] AMREX_GPU_DEVICE(int , int j, int k) noexcept
+
615  {
+
616  vel_arr(ihi+1,j,k,1) = mult*vel_arr(ihi,j,k,1); // v
+
617  vel_arr(ihi+1,j,k,2) = mult*vel_arr(ihi,j,k,2); // w
+
618  });
+
619  }
+
620  } // !periodic
+
621 
+
622  if (!Geom(lev).isPeriodic(1)) {
+
623  // Low-y side
+
624  if (bx.smallEnd(1) <= domain.smallEnd(1)) {
+
625  Real mult = (phys_bc_type[1] == ERF_BC::no_slip_wall) ? -1. : 1.;
+
626  ParallelFor(makeSlab(bx,1,0), [=] AMREX_GPU_DEVICE(int i, int , int k) noexcept
+
627  {
+
628  vel_arr(i,-1,k,0) = mult*vel_arr(i,0,k,0); // u
+
629  vel_arr(i,-1,k,2) = mult*vel_arr(i,0,k,2); // w
+
630  });
+
631  }
+
632 
+
633  // High-y side
+
634  if (bx.bigEnd(1) >= domain.bigEnd(1)) {
+
635  Real mult = (phys_bc_type[4] == ERF_BC::no_slip_wall) ? -1. : 1.;
+
636  ParallelFor(makeSlab(bx,1,0), [=] AMREX_GPU_DEVICE(int i, int , int k) noexcept
+
637  {
+
638  vel_arr(i,jhi+1,k,0) = mult*vel_arr(i,jhi,k,0); // u
+
639  vel_arr(i,jhi+1,k,2) = mult*-vel_arr(i,jhi,k,2); // w
+
640  });
+
641  }
+
642  } // !periodic
+
643 
+
644  if (!Geom(lev).isPeriodic(2)) {
+
645  // Low-z side
+
646  if (bx.smallEnd(2) <= domain.smallEnd(2)) {
+
647  Real mult = (phys_bc_type[2] == ERF_BC::no_slip_wall) ? -1. : 1.;
+
648  ParallelFor(makeSlab(bx,2,0), [=] AMREX_GPU_DEVICE(int i, int j, int) noexcept
+
649  {
+
650  vel_arr(i,j,-1,0) = mult*vel_arr(i,j,0,0); // u
+
651  vel_arr(i,j,-1,1) = mult*vel_arr(i,j,0,1); // v
+
652  });
+
653  }
+
654 
+
655  // High-z side
+
656  if (bx.bigEnd(2) >= domain.bigEnd(2)) {
+
657  Real mult = (phys_bc_type[5] == ERF_BC::no_slip_wall) ? -1. : 1.;
+
658  ParallelFor(makeSlab(bx,2,0), [=] AMREX_GPU_DEVICE(int i, int j, int) noexcept
+
659  {
+
660  vel_arr(i,j,khi+1,0) = mult*vel_arr(i,j,khi,0); // u
+
661  vel_arr(i,j,khi+1,1) = mult*vel_arr(i,j,khi,1); // v
+
662  });
+
663  }
+
664  } // !periodic
+
665  } // MFIter
+
666 
+
667  } // lev
+
668 }
@ no_slip_wall
@@ -5492,122 +5492,122 @@

-
461 {
-
462  BL_PROFILE_VAR("FillCoarsePatch()",FillCoarsePatch);
-
463  AMREX_ASSERT(lev > 0);
-
464 
-
465  //
-
466  // First fill density at the COARSE level so we can convert velocity to momenta at the COARSE level
-
467  //
-
468  bool cons_only = true;
-
469  FillPatch(lev-1, time, {&vars_new[lev-1][Vars::cons], &vars_new[lev-1][Vars::xvel],
-
470  &vars_new[lev-1][Vars::yvel], &vars_new[lev-1][Vars::zvel]},
-
471  {&vars_new[lev-1][Vars::cons],
-
472  &rU_new[lev-1], &rV_new[lev-1], &rW_new[lev-1]},
-
473  false, cons_only);
-
474 
-
475  //
-
476  // Convert velocity to momentum at the COARSE level
-
477  //
-
478  IntVect ngu = IntVect(0,0,0);
-
479  IntVect ngv = IntVect(0,0,0);
-
480  IntVect ngw = IntVect(0,0,0);
-
481 
- -
483  vars_new[lev-1][Vars::yvel], ngv,
-
484  vars_new[lev-1][Vars::zvel], ngw,
-
485  vars_new[lev-1][Vars::cons],
-
486  rU_new[lev-1],
-
487  rV_new[lev-1],
-
488  rW_new[lev-1],
-
489  Geom(lev).Domain(),
- -
491 
+
462 {
+
463  BL_PROFILE_VAR("FillCoarsePatch()",FillCoarsePatch);
+
464  AMREX_ASSERT(lev > 0);
+
465 
+
466  //
+
467  // First fill density at the COARSE level so we can convert velocity to momenta at the COARSE level
+
468  //
+
469  bool cons_only = true;
+
470  FillPatch(lev-1, time, {&vars_new[lev-1][Vars::cons], &vars_new[lev-1][Vars::xvel],
+
471  &vars_new[lev-1][Vars::yvel], &vars_new[lev-1][Vars::zvel]},
+
472  {&vars_new[lev-1][Vars::cons],
+
473  &rU_new[lev-1], &rV_new[lev-1], &rW_new[lev-1]},
+
474  false, cons_only);
+
475 
+
476  //
+
477  // Convert velocity to momentum at the COARSE level
+
478  //
+
479  IntVect ngu = IntVect(0,0,0);
+
480  IntVect ngv = IntVect(0,0,0);
+
481  IntVect ngw = IntVect(0,0,0);
+
482 
+ +
484  vars_new[lev-1][Vars::yvel], ngv,
+
485  vars_new[lev-1][Vars::zvel], ngw,
+
486  vars_new[lev-1][Vars::cons],
+
487  rU_new[lev-1],
+
488  rV_new[lev-1],
+
489  rW_new[lev-1],
+
490  Geom(lev).Domain(),
+
492 
-
493  //
-
494  // Interpolate all cell-centered variables from coarse to fine level
-
495  //
-
496  Interpolater* mapper_c = &cell_cons_interp;
-
497  Interpolater* mapper_f = &face_cons_linear_interp;
-
498 
-
499  int icomp = 0;
-
500  int bccomp = BCVars::cons_bc;
-
501  InterpFromCoarseLevel(vars_new[lev][Vars::cons], time, vars_new[lev-1][Vars::cons],
-
502  icomp, icomp, vars_new[lev][Vars::cons].nComp(),
-
503  geom[lev-1], geom[lev],
-
504  *physbcs_cons[lev-1], BCVars::cons_bc,
- -
506  refRatio(lev-1), mapper_c, domain_bcs_type, bccomp);
-
507 
-
508  //
-
509  // Interpolate x-momentum from coarse to fine level
-
510  //
-
511  InterpFromCoarseLevel(rU_new[lev], time, rU_new[lev-1],
-
512  0, 0, 1, geom[lev-1], geom[lev],
-
513  *physbcs_u[lev-1], BCVars::xvel_bc,
-
514  *physbcs_u[lev ], BCVars::xvel_bc,
-
515  refRatio(lev-1), mapper_f,
- -
517 
-
518  //
-
519  // Interpolate y-momentum from coarse to fine level
-
520  //
-
521  bccomp = BCVars::yvel_bc;
-
522  InterpFromCoarseLevel(rV_new[lev], time, rV_new[lev-1],
-
523  0, 0, 1, geom[lev-1], geom[lev],
-
524  *physbcs_v[lev-1], BCVars::yvel_bc,
-
525  *physbcs_v[lev ], BCVars::yvel_bc,
-
526  refRatio(lev-1), mapper_f,
- -
528 
-
529  //
-
530  // Interpolate z-momentum from coarse to fine level
-
531  //
-
532 
-
533  InterpFromCoarseLevel(rW_new[lev], time, rW_new[lev-1],
-
534  0, 0, 1, geom[lev-1], geom[lev],
- - -
537  refRatio(lev-1), mapper_f,
- -
539 
-
540  for (int which_lev = lev-1; which_lev <= lev; which_lev++)
-
541  {
- -
543  vars_new[which_lev][Vars::yvel],
-
544  vars_new[which_lev][Vars::zvel],
-
545  vars_new[which_lev][Vars::cons],
-
546  rU_new[which_lev],
-
547  rV_new[which_lev],
-
548  rW_new[which_lev],
-
549  Geom(lev).Domain(),
- -
551  }
-
552 
-
553  vars_new[lev][Vars::cons].FillBoundary(geom[lev].periodicity());
-
554  vars_new[lev][Vars::xvel].FillBoundary(geom[lev].periodicity());
-
555  vars_new[lev][Vars::yvel].FillBoundary(geom[lev].periodicity());
-
556  vars_new[lev][Vars::zvel].FillBoundary(geom[lev].periodicity());
-
557 
-
558  // ***************************************************************************
-
559  // Physical bc's at domain boundary
-
560  // ***************************************************************************
-
561  IntVect ngvect_cons = vars_new[lev][Vars::cons].nGrowVect();
-
562  IntVect ngvect_vels = vars_new[lev][Vars::xvel].nGrowVect();
-
563 
-
564  int ncomp_cons = vars_new[lev][Vars::cons].nComp();
-
565 
-
566  (*physbcs_cons[lev])(vars_new[lev][Vars::cons],0,ncomp_cons,ngvect_cons,time,BCVars::cons_bc);
-
567  ( *physbcs_u[lev])(vars_new[lev][Vars::xvel],0,1 ,ngvect_vels,time,BCVars::xvel_bc);
-
568  ( *physbcs_v[lev])(vars_new[lev][Vars::yvel],0,1 ,ngvect_vels,time,BCVars::yvel_bc);
- -
570  ngvect_vels,time,BCVars::zvel_bc);
-
571 
-
572  // ***************************************************************************
-
573  // Since lev > 0 here we don't worry about m_r2d or wrfbdy data
-
574  // ***************************************************************************
-
575 }
-
void FillCoarsePatch(int lev, amrex::Real time)
Definition: ERF_FillPatch.cpp:460
+
493 
+
494  //
+
495  // Interpolate all cell-centered variables from coarse to fine level
+
496  //
+
497  Interpolater* mapper_c = &cell_cons_interp;
+
498  Interpolater* mapper_f = &face_cons_linear_interp;
+
499 
+
500  int icomp = 0;
+
501  int bccomp = BCVars::cons_bc;
+
502  InterpFromCoarseLevel(vars_new[lev][Vars::cons], time, vars_new[lev-1][Vars::cons],
+
503  icomp, icomp, vars_new[lev][Vars::cons].nComp(),
+
504  geom[lev-1], geom[lev],
+
505  *physbcs_cons[lev-1], BCVars::cons_bc,
+ +
507  refRatio(lev-1), mapper_c, domain_bcs_type, bccomp);
+
508 
+
509  //
+
510  // Interpolate x-momentum from coarse to fine level
+
511  //
+
512  InterpFromCoarseLevel(rU_new[lev], time, rU_new[lev-1],
+
513  0, 0, 1, geom[lev-1], geom[lev],
+
514  *physbcs_u[lev-1], BCVars::xvel_bc,
+
515  *physbcs_u[lev ], BCVars::xvel_bc,
+
516  refRatio(lev-1), mapper_f,
+ +
518 
+
519  //
+
520  // Interpolate y-momentum from coarse to fine level
+
521  //
+
522  bccomp = BCVars::yvel_bc;
+
523  InterpFromCoarseLevel(rV_new[lev], time, rV_new[lev-1],
+
524  0, 0, 1, geom[lev-1], geom[lev],
+
525  *physbcs_v[lev-1], BCVars::yvel_bc,
+
526  *physbcs_v[lev ], BCVars::yvel_bc,
+
527  refRatio(lev-1), mapper_f,
+ +
529 
+
530  //
+
531  // Interpolate z-momentum from coarse to fine level
+
532  //
+
533 
+
534  InterpFromCoarseLevel(rW_new[lev], time, rW_new[lev-1],
+
535  0, 0, 1, geom[lev-1], geom[lev],
+ + +
538  refRatio(lev-1), mapper_f,
+ +
540 
+
541  for (int which_lev = lev-1; which_lev <= lev; which_lev++)
+
542  {
+ +
544  vars_new[which_lev][Vars::yvel],
+
545  vars_new[which_lev][Vars::zvel],
+
546  vars_new[which_lev][Vars::cons],
+
547  rU_new[which_lev],
+
548  rV_new[which_lev],
+
549  rW_new[which_lev],
+
550  Geom(lev).Domain(),
+ +
552  }
+
553 
+
554  vars_new[lev][Vars::cons].FillBoundary(geom[lev].periodicity());
+
555  vars_new[lev][Vars::xvel].FillBoundary(geom[lev].periodicity());
+
556  vars_new[lev][Vars::yvel].FillBoundary(geom[lev].periodicity());
+
557  vars_new[lev][Vars::zvel].FillBoundary(geom[lev].periodicity());
+
558 
+
559  // ***************************************************************************
+
560  // Physical bc's at domain boundary
+
561  // ***************************************************************************
+
562  IntVect ngvect_cons = vars_new[lev][Vars::cons].nGrowVect();
+
563  IntVect ngvect_vels = vars_new[lev][Vars::xvel].nGrowVect();
+
564 
+
565  int ncomp_cons = vars_new[lev][Vars::cons].nComp();
+
566 
+
567  (*physbcs_cons[lev])(vars_new[lev][Vars::cons],0,ncomp_cons,ngvect_cons,time,BCVars::cons_bc);
+
568  ( *physbcs_u[lev])(vars_new[lev][Vars::xvel],0,1 ,ngvect_vels,time,BCVars::xvel_bc);
+
569  ( *physbcs_v[lev])(vars_new[lev][Vars::yvel],0,1 ,ngvect_vels,time,BCVars::yvel_bc);
+ +
571  ngvect_vels,time,BCVars::zvel_bc);
+
572 
+
573  // ***************************************************************************
+
574  // Since lev > 0 here we don't worry about m_r2d or wrfbdy data
+
575  // ***************************************************************************
+
576 }
+
void FillCoarsePatch(int lev, amrex::Real time)
Definition: ERF_FillPatch.cpp:461
Here is the call graph for this function:
@@ -5877,31 +5877,32 @@

420  Tau13_lev[lev].get(), Tau31_lev[lev].get(),

421  Tau23_lev[lev].get(), Tau32_lev[lev].get(),
422  SFS_hfx3_lev[lev].get(),
-
423  z_phys_nd[lev].get());
-
424  }
-
425 
-
426  // We always come in to this call with momenta so we need to leave with momenta!
-
427  // We need to make sure we convert back on all ghost cells/faces because this is
-
428  // how velocity from fine-fine copies (as well as physical and interpolated bcs) will be filled
-
429  if (!cons_only) {
-
430  IntVect ngu = mfs_vel[Vars::xvel]->nGrowVect();
-
431  IntVect ngv = mfs_vel[Vars::yvel]->nGrowVect();
-
432  IntVect ngw = mfs_vel[Vars::zvel]->nGrowVect();
-
433 
-
434  if (!solverChoice.use_NumDiff) {
-
435  ngu = IntVect(1,1,1);
-
436  ngv = IntVect(1,1,1);
-
437  ngw = IntVect(1,1,0);
-
438  }
-
439  VelocityToMomentum(*mfs_vel[Vars::xvel], ngu,
-
440  *mfs_vel[Vars::yvel], ngv,
-
441  *mfs_vel[Vars::zvel], ngw,
-
442  *mfs_vel[Vars::cons],
-
443  *mfs_mom[IntVars::xmom], *mfs_mom[IntVars::ymom], *mfs_mom[IntVars::zmom],
-
444  Geom(lev).Domain(),
- -
446  }
-
447 }
+
423  SFS_q1fx3_lev[lev].get(),
+
424  z_phys_nd[lev].get());
+
425  }
+
426 
+
427  // We always come in to this call with momenta so we need to leave with momenta!
+
428  // We need to make sure we convert back on all ghost cells/faces because this is
+
429  // how velocity from fine-fine copies (as well as physical and interpolated bcs) will be filled
+
430  if (!cons_only) {
+
431  IntVect ngu = mfs_vel[Vars::xvel]->nGrowVect();
+
432  IntVect ngv = mfs_vel[Vars::yvel]->nGrowVect();
+
433  IntVect ngw = mfs_vel[Vars::zvel]->nGrowVect();
+
434 
+
435  if (!solverChoice.use_NumDiff) {
+
436  ngu = IntVect(1,1,1);
+
437  ngv = IntVect(1,1,1);
+
438  ngw = IntVect(1,1,0);
+
439  }
+
440  VelocityToMomentum(*mfs_vel[Vars::xvel], ngu,
+
441  *mfs_vel[Vars::yvel], ngv,
+
442  *mfs_vel[Vars::zvel], ngw,
+
443  *mfs_vel[Vars::cons],
+
444  *mfs_mom[IntVars::xmom], *mfs_mom[IntVars::ymom], *mfs_mom[IntVars::zmom],
+
445  Geom(lev).Domain(),
+ +
447  }
+
448 }
PhysBCFunctNoOp null_bc
Definition: ERF_FillPatch.cpp:10
AMREX_GPU_HOST AMREX_FORCE_INLINE void ApplyMask(amrex::MultiFab &dst, const amrex::iMultiFab &imask, const int nghost=0)
Definition: Utils.H:351
void fill_from_bndryregs(const amrex::Vector< amrex::MultiFab * > &mfs, amrex::Real time)
Definition: BoundaryConditions_bndryreg.cpp:13
@@ -7404,8 +7405,8 @@

-

◆ init_geo_wind_profile()

+ +

◆ init_geo_wind_profile()

@@ -7447,7 +7448,7 @@

const amrex::Geometry &  - geom, + lgeom, @@ -7469,12 +7470,12 @@

416 {
417  const int klo = 0;
-
418  const int khi = geom.Domain().bigEnd()[AMREX_SPACEDIM-1];
-
419  const amrex::Real dz = geom.CellSize()[AMREX_SPACEDIM-1];
+
418  const int khi = lgeom.Domain().bigEnd()[AMREX_SPACEDIM-1];
+
419  const amrex::Real dz = lgeom.CellSize()[AMREX_SPACEDIM-1];
420 
421  const bool grid_stretch = (zlev_stag.size() > 0);
-
422  const Real zbot = (grid_stretch) ? zlev_stag[klo] : geom.ProbLo(AMREX_SPACEDIM-1);
-
423  const Real ztop = (grid_stretch) ? zlev_stag[khi+1] : geom.ProbHi(AMREX_SPACEDIM-1);
+
422  const Real zbot = (grid_stretch) ? zlev_stag[klo] : lgeom.ProbLo(AMREX_SPACEDIM-1);
+
423  const Real ztop = (grid_stretch) ? zlev_stag[khi+1] : lgeom.ProbHi(AMREX_SPACEDIM-1);
424 
425  amrex::Print() << "Reading geostrophic wind profile from " << input_file << std::endl;
426  std::ifstream profile_reader(input_file);
@@ -7518,8 +7519,8 @@

Here is the call graph for this function:

772  amrex::Print() << "Note: 1-D geostrophic wind profile input is only defined for grid stretching, not real terrain" << std::endl;
773  }
- +
775  h_u_geos[lev], d_u_geos[lev],
776  h_v_geos[lev], d_v_geos[lev],
777  geom[lev],
@@ -8683,7 +8684,7 @@

amrex::Vector< std::unique_ptr< std::fstream > > sampleptlog
Definition: ERF.H:1224

amrex::Real start_time
Definition: ERF.H:814
std::unique_ptr< WriteBndryPlanes > m_w2d
Definition: ERF.H:1026
-
void init_geo_wind_profile(const std::string input_file, amrex::Vector< amrex::Real > &u_geos, amrex::Gpu::DeviceVector< amrex::Real > &u_geos_d, amrex::Vector< amrex::Real > &v_geos, amrex::Gpu::DeviceVector< amrex::Real > &v_geos_d, const amrex::Geometry &geom, const amrex::Vector< amrex::Real > &zlev_stag)
Definition: ERF_init1d.cpp:409
+
void init_geo_wind_profile(const std::string input_file, amrex::Vector< amrex::Real > &u_geos, amrex::Gpu::DeviceVector< amrex::Real > &u_geos_d, amrex::Vector< amrex::Real > &v_geos, amrex::Gpu::DeviceVector< amrex::Real > &v_geos_d, const amrex::Geometry &lgeom, const amrex::Vector< amrex::Real > &zlev_stag)
Definition: ERF_init1d.cpp:409
void initSponge()
Initialize sponge profiles.
Definition: ERF_init1d.cpp:124
static bool is_it_time_for_action(int nstep, amrex::Real time, amrex::Real dt, int action_interval, amrex::Real action_per)
Definition: ERF_WriteScalarProfiles.cpp:464
void InitData()
Definition: ERF.cpp:556
@@ -16119,7 +16120,7 @@

AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real Compute_h_zeta_AtIface(const int &i, const int &j, const int &k, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &cellSizeInv, const amrex::Array4< const amrex::Real > &z_nd)
Definition: TerrainMetrics.H:80

AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real Compute_h_zeta_AtJface(const int &i, const int &j, const int &k, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &cellSizeInv, const amrex::Array4< const amrex::Real > &z_nd)
Definition: TerrainMetrics.H:123
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real Compute_h_eta_AtJface(const int &i, const int &j, const int &k, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &cellSizeInv, const amrex::Array4< const amrex::Real > &z_nd)
Definition: TerrainMetrics.H:151
-
void FillBdyCCVels(amrex::Vector< amrex::MultiFab > &mf_cc_vel)
Definition: ERF_FillPatch.cpp:578
+
void FillBdyCCVels(amrex::Vector< amrex::MultiFab > &mf_cc_vel)
Definition: ERF_FillPatch.cpp:579
static amrex::Vector< std::string > PlotFileVarNames(amrex::Vector< std::string > plot_var_names)
Definition: Plotfile.cpp:154
void WriteMultiLevelPlotfileWithTerrain(const std::string &plotfilename, int nlevels, const amrex::Vector< const amrex::MultiFab * > &mf, const amrex::Vector< const amrex::MultiFab * > &mf_nd, const amrex::Vector< std::string > &varnames, amrex::Real time, const amrex::Vector< int > &level_steps, const std::string &versionName="HyperCLaw-V1.1", const std::string &levelPrefix="Level_", const std::string &mfPrefix="Cell", const amrex::Vector< std::string > &extra_dirs=amrex::Vector< std::string >()) const
Definition: Plotfile.cpp:1423
void writeJobInfo(const std::string &dir) const
Definition: writeJobInfo.cpp:9
diff --git a/classERF.js b/classERF.js index d992ef60b3..9a0948475a 100644 --- a/classERF.js +++ b/classERF.js @@ -46,7 +46,7 @@ var classERF = [ "init_Dirichlet_bc_data", "classERF.html#a3079a30cce7e1a01d5c9705f393b5a63", null ], [ "init_from_hse", "classERF.html#a857a8f76768ec4451b995cbf4f4ac176", null ], [ "init_from_input_sounding", "classERF.html#a2908bcd920ab5e3fef171a37302853ec", null ], - [ "init_geo_wind_profile", "classERF.html#aacc932516cb277301951a8258545873c", null ], + [ "init_geo_wind_profile", "classERF.html#aab564dd3009ef83466b50db6d997b563", null ], [ "init_only", "classERF.html#a80981e20939a6a38ba17478da2253ff1", null ], [ "init_stuff", "classERF.html#a976799d747d046615ccbf27f366a8b96", null ], [ "init_uniform", "classERF.html#ae618963cf90e247b72fbd71d5b13599d", null ], diff --git a/classERF_aacc932516cb277301951a8258545873c_cgraph.map b/classERF_aab564dd3009ef83466b50db6d997b563_cgraph.map similarity index 100% rename from classERF_aacc932516cb277301951a8258545873c_cgraph.map rename to classERF_aab564dd3009ef83466b50db6d997b563_cgraph.map diff --git a/classERF_aacc932516cb277301951a8258545873c_cgraph.md5 b/classERF_aab564dd3009ef83466b50db6d997b563_cgraph.md5 similarity index 100% rename from classERF_aacc932516cb277301951a8258545873c_cgraph.md5 rename to classERF_aab564dd3009ef83466b50db6d997b563_cgraph.md5 diff --git a/classERF_aacc932516cb277301951a8258545873c_cgraph.png b/classERF_aab564dd3009ef83466b50db6d997b563_cgraph.png similarity index 100% rename from classERF_aacc932516cb277301951a8258545873c_cgraph.png rename to classERF_aab564dd3009ef83466b50db6d997b563_cgraph.png diff --git a/classMOSTAverage-members.html b/classMOSTAverage-members.html index 5a17b47b72..15a6d42e37 100644 --- a/classMOSTAverage-members.html +++ b/classMOSTAverage-members.html @@ -114,6 +114,8 @@ m_policyMOSTAverageprotected m_pp_prefixMOSTAverageprotected m_radiusMOSTAverageprotected + m_rot_fieldsMOSTAverageprotected + m_rotateMOSTAverageprotected m_t_avgMOSTAverageprotected m_t_initMOSTAverageprotected m_time_windowMOSTAverageprotected @@ -133,14 +135,15 @@ set_norm_positions_T()MOSTAverage set_plane_normalization()MOSTAverage set_region_normalization()MOSTAverageinline - set_z_positions_T()MOSTAverage - trilinear_interp_T(const amrex::Real &xp, const amrex::Real &yp, const amrex::Real &zp, amrex::Real *interp_vals, amrex::Array4< amrex::Real const > const &interp_array, amrex::Array4< amrex::Real const > const &z_arr, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &plo, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxi, const int interp_comp)MOSTAverageinlinestatic - update_field_ptrs(int lev, amrex::Vector< amrex::Vector< amrex::MultiFab >> &vars_old, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Theta_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Qv_prim)MOSTAverage - write_averages(int lev)MOSTAverage - write_k_indices(int lev)MOSTAverage - write_norm_indices(int lev)MOSTAverage - write_xz_positions(int lev, int j)MOSTAverage - ~MOSTAverage()MOSTAverageinline + set_rotated_fields(int lev)MOSTAverage + set_z_positions_T()MOSTAverage + trilinear_interp_T(const amrex::Real &xp, const amrex::Real &yp, const amrex::Real &zp, amrex::Real *interp_vals, amrex::Array4< amrex::Real const > const &interp_array, amrex::Array4< amrex::Real const > const &z_arr, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &plo, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxi, const int interp_comp)MOSTAverageinlinestatic + update_field_ptrs(int lev, amrex::Vector< amrex::Vector< amrex::MultiFab >> &vars_old, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Theta_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Qv_prim)MOSTAverage + write_averages(int lev)MOSTAverage + write_k_indices(int lev)MOSTAverage + write_norm_indices(int lev)MOSTAverage + write_xz_positions(int lev, int j)MOSTAverage + ~MOSTAverage()MOSTAverageinline

diff --git a/classMOSTAverage.html b/classMOSTAverage.html index 97024a93eb..f2be80ef7e 100644 --- a/classMOSTAverage.html +++ b/classMOSTAverage.html @@ -98,21 +98,21 @@
Collaboration graph
- - - - - - - - - - - - - - - + + + + + + + + + + + + + + +
[legend]
@@ -132,6 +132,8 @@ + + @@ -178,7 +180,7 @@ - + @@ -186,6 +188,8 @@ + + @@ -204,6 +208,8 @@ + + @@ -385,37 +391,44 @@

541 {
-
542  switch(m_policy) {
-
543  case 0: // Standard plane average
- -
545  break;
-
546  case 1: // Local region/point
- -
548  break;
-
549  default:
-
550  AMREX_ASSERT_WITH_MESSAGE(false, "Unknown policy for MOSTAverage!");
-
551  }
-
552 
-
553  // We have initialized the averages
-
554  if (m_t_avg) m_t_init[lev] = 1;
-
555 }
-
bool m_t_avg
Definition: MOSTAverage.H:202
-
int m_policy
Definition: MOSTAverage.H:173
-
amrex::Vector< int > m_t_init
Definition: MOSTAverage.H:203
-
void compute_region_averages(int lev)
Definition: MOSTAverage.cpp:754
-
void compute_plane_averages(int lev)
Definition: MOSTAverage.cpp:564
+
629 {
+
630  if (m_rotate) set_rotated_fields(lev);
+
631 
+
632  switch(m_policy) {
+
633  case 0: // Standard plane average
+ +
635  break;
+
636  case 1: // Local region/point
+ +
638  break;
+
639  default:
+
640  AMREX_ASSERT_WITH_MESSAGE(false, "Unknown policy for MOSTAverage!");
+
641  }
+
642 
+
643  // We have initialized the averages
+
644  if (m_t_avg) m_t_init[lev] = 1;
+
645 }
+
bool m_t_avg
Definition: MOSTAverage.H:207
+
int m_policy
Definition: MOSTAverage.H:176
+
void set_rotated_fields(int lev)
Definition: MOSTAverage.cpp:227
+
amrex::Vector< int > m_t_init
Definition: MOSTAverage.H:208
+
bool m_rotate
Definition: MOSTAverage.H:177
+
void compute_region_averages(int lev)
Definition: MOSTAverage.cpp:848
+
void compute_plane_averages(int lev)
Definition: MOSTAverage.cpp:654
Here is the call graph for this function:
- - - - - - + + + + + + + + +
@@ -443,206 +456,211 @@

565 {
-
566  // Peel back the level
-
567  auto& fields = m_fields[lev];
-
568  auto& averages = m_averages[lev];
-
569  const auto & geom = m_geom[lev];
-
570 
-
571  auto& z_phys = m_z_phys_nd[lev];
-
572  auto& x_pos = m_x_pos[lev];
-
573  auto& y_pos = m_y_pos[lev];
-
574  auto& z_pos = m_z_pos[lev];
-
575 
-
576  auto& i_indx = m_i_indx[lev];
-
577  auto& j_indx = m_j_indx[lev];
-
578  auto& k_indx = m_k_indx[lev];
-
579 
-
580  auto& ncell_plane = m_ncell_plane[lev];
-
581  auto& plane_average = m_plane_average[lev];
-
582 
-
583  // Set factors for time averaging
-
584  Real d_fact_new, d_fact_old;
-
585  if (m_t_avg && m_t_init[lev]) {
-
586  d_fact_new = m_fact_new;
-
587  d_fact_old = m_fact_old;
-
588  } else {
-
589  d_fact_new = 1.0;
-
590  d_fact_old = 0.0;
-
591  }
-
592 
-
593  // GPU array to accumulate averages into
-
594  Gpu::DeviceVector<Real> pavg(plane_average.size(), 0.0);
-
595  Real* plane_avg = pavg.data();
-
596 
-
597  // Vectors for normalization and buffer storage
-
598  Vector<Real> denom(plane_average.size(),0.0);
-
599  Vector<Real> val_old(plane_average.size(),0.0);
-
600 
-
601  // Averages over all the fields
-
602  //----------------------------------------------------------
-
603  Box domain = geom.Domain();
-
604 
-
605  Array<int,AMREX_SPACEDIM> is_per = {0,0,0};
-
606  for (int idim(0); idim < AMREX_SPACEDIM-1; ++idim) {
-
607  if (geom.isPeriodic(idim)) is_per[idim] = 1;
-
608  }
-
609 
-
610  for (int imf(0); imf < m_nvar; ++imf) {
-
611 
-
612  // Continue if no valid Qv pointer
-
613  if (!fields[imf]) continue;
-
614 
-
615  denom[imf] = 1.0 / (Real)ncell_plane[imf];
-
616  val_old[imf] = plane_average[imf]*d_fact_old;
-
617 
-
618 #ifdef _OPENMP
-
619 #pragma omp parallel if (Gpu::notInLaunchRegion())
-
620 #endif
-
621  for (MFIter mfi(*fields[imf], TileNoZ()); mfi.isValid(); ++mfi) {
-
622  Box vbx = mfi.validbox(); // This is the grid (not tile)
-
623  Box pbx = mfi.tilebox(); // This is the tile (not grid)
-
624  pbx.setSmall(2,0); pbx.setBig(2,0);
-
625 
-
626  // Avoid double counting nodal data by changing the high end when we are
-
627  // at the high side of the grid (not just of the tile)
-
628  IndexType ixt = averages[imf]->boxArray().ixType();
-
629  for (int idim(0); idim < AMREX_SPACEDIM-1; ++idim) {
-
630  if ( ixt.nodeCentered(idim) && (pbx.bigEnd(idim) == vbx.bigEnd(idim)) ) {
-
631  int dom_hi = domain.bigEnd(idim)+1;
-
632  if (pbx.bigEnd(idim) < dom_hi || is_per[idim]) {
-
633  pbx.growHi(idim,-1);
-
634  }
-
635  }
-
636  }
-
637 
-
638  auto mf_arr = fields[imf]->const_array(mfi);
-
639 
-
640  if (m_interp) {
-
641  const auto plo = geom.ProbLoArray();
-
642  const auto dxInv = geom.InvCellSizeArray();
-
643  const auto z_phys_arr = z_phys->const_array(mfi);
-
644  auto x_pos_arr = x_pos->array(mfi);
-
645  auto y_pos_arr = y_pos->array(mfi);
-
646  auto z_pos_arr = z_pos->array(mfi);
-
647  ParallelFor(Gpu::KernelInfo().setReduction(true), pbx, [=]
-
648  AMREX_GPU_DEVICE(int i, int j, int k, Gpu::Handler const& handler) noexcept
-
649  {
-
650  Real interp{0};
-
651  trilinear_interp_T(x_pos_arr(i,j,k), y_pos_arr(i,j,k), z_pos_arr(i,j,k),
-
652  &interp, mf_arr, z_phys_arr, plo, dxInv, 1);
-
653  Real val = interp;
-
654  Gpu::deviceReduceSum(&plane_avg[imf], val, handler);
-
655  });
-
656  } else {
-
657  auto k_arr = k_indx->const_array(mfi);
-
658  auto j_arr = j_indx ? j_indx->const_array(mfi) : Array4<const int> {};
-
659  auto i_arr = i_indx ? i_indx->const_array(mfi) : Array4<const int> {};
-
660  ParallelFor(Gpu::KernelInfo().setReduction(true), pbx, [=]
-
661  AMREX_GPU_DEVICE(int i, int j, int k, Gpu::Handler const& handler) noexcept
-
662  {
-
663  int mk = k_arr(i,j,k);
-
664  int mj = j_arr ? j_arr(i,j,k) : j;
-
665  int mi = i_arr ? i_arr(i,j,k) : i;
-
666  Real val = mf_arr(mi,mj,mk);
-
667  Gpu::deviceReduceSum(&plane_avg[imf], val, handler);
-
668  });
-
669  }
-
670  }
-
671  }
-
672 
-
673  //
-
674  //------------------------------------------------------------------------
-
675  // Averages for the tangential velocity magnitude
-
676  // (This is cell-centered so we don't need to worry about double-counting)
-
677  //------------------------------------------------------------------------
-
678  //
-
679  {
-
680  int imf = 0;
-
681  int iavg = m_navg - 1;
-
682  denom[iavg] = 1.0 / (Real)ncell_plane[iavg];
-
683  val_old[iavg] = plane_average[iavg]*d_fact_old;
-
684 
-
685 #ifdef _OPENMP
-
686 #pragma omp parallel if (Gpu::notInLaunchRegion())
-
687 #endif
-
688  for (MFIter mfi(*averages[iavg], TileNoZ()); mfi.isValid(); ++mfi)
-
689  {
-
690  Box pbx = mfi.tilebox();
-
691  pbx.setSmall(2,0); pbx.setBig(2,0);
-
692 
-
693  // Last element is Umag and always cell centered
-
694  auto u_mf_arr = fields[imf ]->const_array(mfi);
-
695  auto v_mf_arr = fields[imf+1]->const_array(mfi);
-
696 
-
697  if (m_interp) {
-
698  const auto plo = m_geom[lev].ProbLoArray();
-
699  const auto dxInv = m_geom[lev].InvCellSizeArray();
-
700  const auto z_phys_arr = z_phys->const_array(mfi);
-
701  auto x_pos_arr = x_pos->array(mfi);
-
702  auto y_pos_arr = y_pos->array(mfi);
-
703  auto z_pos_arr = z_pos->array(mfi);
-
704  ParallelFor(Gpu::KernelInfo().setReduction(true), pbx, [=]
-
705  AMREX_GPU_DEVICE(int i, int j, int k, Gpu::Handler const& handler) noexcept
-
706  {
-
707  Real u_interp{0};
-
708  Real v_interp{0};
-
709  trilinear_interp_T(x_pos_arr(i,j,k), y_pos_arr(i,j,k), z_pos_arr(i,j,k),
-
710  &u_interp, u_mf_arr, z_phys_arr, plo, dxInv, 1);
-
711  trilinear_interp_T(x_pos_arr(i,j,k), y_pos_arr(i,j,k), z_pos_arr(i,j,k),
-
712  &v_interp, v_mf_arr, z_phys_arr, plo, dxInv, 1);
-
713  const Real val = std::sqrt(u_interp*u_interp + v_interp*v_interp);
-
714  Gpu::deviceReduceSum(&plane_avg[iavg], val, handler);
-
715  });
-
716  } else {
-
717  auto k_arr = k_indx->const_array(mfi);
-
718  auto j_arr = j_indx ? j_indx->const_array(mfi) : Array4<const int> {};
-
719  auto i_arr = i_indx ? i_indx->const_array(mfi) : Array4<const int> {};
-
720  ParallelFor(Gpu::KernelInfo().setReduction(true), pbx, [=]
-
721  AMREX_GPU_DEVICE(int i, int j, int k, Gpu::Handler const& handler) noexcept
-
722  {
-
723  int mk = k_arr(i,j,k);
-
724  int mj = j_arr ? j_arr(i,j,k) : j;
-
725  int mi = i_arr ? i_arr(i,j,k) : i;
-
726  const Real u_val = 0.5 * (u_mf_arr(mi,mj,mk) + u_mf_arr(mi+1,mj ,mk));
-
727  const Real v_val = 0.5 * (v_mf_arr(mi,mj,mk) + v_mf_arr(mi ,mj+1,mk));
-
728  const Real val = std::sqrt(u_val*u_val + v_val*v_val);
-
729  Gpu::deviceReduceSum(&plane_avg[iavg], val, handler);
-
730  });
-
731  }
-
732  }
-
733  }
-
734 
-
735  // Copy to host and sum across procs
-
736  Gpu::copy(Gpu::deviceToHost, pavg.begin(), pavg.end(), plane_average.begin());
-
737  ParallelDescriptor::ReduceRealSum(plane_average.data(), plane_average.size());
-
738 
-
739  // No spatial variation with plane averages
-
740  for (int iavg(0); iavg < m_navg; ++iavg){
-
741  plane_average[iavg] *= denom[iavg]*d_fact_new;
-
742  plane_average[iavg] += val_old[iavg];
-
743  averages[iavg]->setVal(plane_average[iavg]);
-
744  }
-
745 }
+
655 {
+
656  // Peel back the level
+
657  auto& fields = m_fields[lev];
+
658  auto& rot_fields = m_rot_fields[lev];
+
659  auto& averages = m_averages[lev];
+
660  const auto & geom = m_geom[lev];
+
661 
+
662  auto& z_phys = m_z_phys_nd[lev];
+
663  auto& x_pos = m_x_pos[lev];
+
664  auto& y_pos = m_y_pos[lev];
+
665  auto& z_pos = m_z_pos[lev];
+
666 
+
667  auto& i_indx = m_i_indx[lev];
+
668  auto& j_indx = m_j_indx[lev];
+
669  auto& k_indx = m_k_indx[lev];
+
670 
+
671  auto& ncell_plane = m_ncell_plane[lev];
+
672  auto& plane_average = m_plane_average[lev];
+
673 
+
674  // Set factors for time averaging
+
675  Real d_fact_new, d_fact_old;
+
676  if (m_t_avg && m_t_init[lev]) {
+
677  d_fact_new = m_fact_new;
+
678  d_fact_old = m_fact_old;
+
679  } else {
+
680  d_fact_new = 1.0;
+
681  d_fact_old = 0.0;
+
682  }
+
683 
+
684  // GPU array to accumulate averages into
+
685  Gpu::DeviceVector<Real> pavg(plane_average.size(), 0.0);
+
686  Real* plane_avg = pavg.data();
+
687 
+
688  // Vectors for normalization and buffer storage
+
689  Vector<Real> denom(plane_average.size(),0.0);
+
690  Vector<Real> val_old(plane_average.size(),0.0);
+
691 
+
692  // Averages over all the fields
+
693  //----------------------------------------------------------
+
694  Box domain = geom.Domain();
+
695 
+
696  Array<int,AMREX_SPACEDIM> is_per = {0,0,0};
+
697  for (int idim(0); idim < AMREX_SPACEDIM-1; ++idim) {
+
698  if (geom.isPeriodic(idim)) is_per[idim] = 1;
+
699  }
+
700 
+
701  for (int imf(0); imf < (m_nvar-1); ++imf) {
+
702 
+
703  // Continue if no valid Qv pointer
+
704  if (!fields[imf]) continue;
+
705 
+
706  denom[imf] = 1.0 / (Real)ncell_plane[imf];
+
707  val_old[imf] = plane_average[imf]*d_fact_old;
+
708 
+
709 #ifdef _OPENMP
+
710 #pragma omp parallel if (Gpu::notInLaunchRegion())
+
711 #endif
+
712  for (MFIter mfi(*fields[imf], TileNoZ()); mfi.isValid(); ++mfi) {
+
713  Box vbx = mfi.validbox(); // This is the grid (not tile)
+
714  Box pbx = mfi.tilebox(); // This is the tile (not grid)
+
715  pbx.setSmall(2,0); pbx.setBig(2,0);
+
716 
+
717  // Avoid double counting nodal data by changing the high end when we are
+
718  // at the high side of the grid (not just of the tile)
+
719  IndexType ixt = averages[imf]->boxArray().ixType();
+
720  for (int idim(0); idim < AMREX_SPACEDIM-1; ++idim) {
+
721  if ( ixt.nodeCentered(idim) && (pbx.bigEnd(idim) == vbx.bigEnd(idim)) ) {
+
722  int dom_hi = domain.bigEnd(idim)+1;
+
723  if (pbx.bigEnd(idim) < dom_hi || is_per[idim]) {
+
724  pbx.growHi(idim,-1);
+
725  }
+
726  }
+
727  }
+
728 
+
729  auto mf_arr = (m_rotate) ? rot_fields[imf]->const_array(mfi) :
+
730  fields[imf]->const_array(mfi);
+
731 
+
732  if (m_interp) {
+
733  const auto plo = geom.ProbLoArray();
+
734  const auto dxInv = geom.InvCellSizeArray();
+
735  const auto z_phys_arr = z_phys->const_array(mfi);
+
736  auto x_pos_arr = x_pos->array(mfi);
+
737  auto y_pos_arr = y_pos->array(mfi);
+
738  auto z_pos_arr = z_pos->array(mfi);
+
739  ParallelFor(Gpu::KernelInfo().setReduction(true), pbx, [=]
+
740  AMREX_GPU_DEVICE(int i, int j, int k, Gpu::Handler const& handler) noexcept
+
741  {
+
742  Real interp{0};
+
743  trilinear_interp_T(x_pos_arr(i,j,k), y_pos_arr(i,j,k), z_pos_arr(i,j,k),
+
744  &interp, mf_arr, z_phys_arr, plo, dxInv, 1);
+
745  Real val = interp;
+
746  Gpu::deviceReduceSum(&plane_avg[imf], val, handler);
+
747  });
+
748  } else {
+
749  auto k_arr = k_indx->const_array(mfi);
+
750  auto j_arr = j_indx ? j_indx->const_array(mfi) : Array4<const int> {};
+
751  auto i_arr = i_indx ? i_indx->const_array(mfi) : Array4<const int> {};
+
752  ParallelFor(Gpu::KernelInfo().setReduction(true), pbx, [=]
+
753  AMREX_GPU_DEVICE(int i, int j, int k, Gpu::Handler const& handler) noexcept
+
754  {
+
755  int mk = k_arr(i,j,k);
+
756  int mj = j_arr ? j_arr(i,j,k) : j;
+
757  int mi = i_arr ? i_arr(i,j,k) : i;
+
758  Real val = mf_arr(mi,mj,mk);
+
759  Gpu::deviceReduceSum(&plane_avg[imf], val, handler);
+
760  });
+
761  }
+
762  }
+
763  }
+
764 
+
765  //
+
766  //------------------------------------------------------------------------
+
767  // Averages for the tangential velocity magnitude
+
768  // (This is cell-centered so we don't need to worry about double-counting)
+
769  //------------------------------------------------------------------------
+
770  //
+
771  {
+
772  int imf = 0;
+
773  int iavg = m_navg - 1;
+
774  denom[iavg] = 1.0 / (Real)ncell_plane[iavg];
+
775  val_old[iavg] = plane_average[iavg]*d_fact_old;
+
776 
+
777 #ifdef _OPENMP
+
778 #pragma omp parallel if (Gpu::notInLaunchRegion())
+
779 #endif
+
780  for (MFIter mfi(*averages[iavg], TileNoZ()); mfi.isValid(); ++mfi)
+
781  {
+
782  Box pbx = mfi.tilebox();
+
783  pbx.setSmall(2,0); pbx.setBig(2,0);
+
784 
+
785  // Last element is Umag and always cell centered
+
786  auto u_mf_arr = (m_rotate) ? rot_fields[imf ]->const_array(mfi) :
+
787  fields[imf ]->const_array(mfi);
+
788  auto v_mf_arr = (m_rotate) ? rot_fields[imf+1]->const_array(mfi) :
+
789  fields[imf+1]->const_array(mfi);
+
790 
+
791  if (m_interp) {
+
792  const auto plo = m_geom[lev].ProbLoArray();
+
793  const auto dxInv = m_geom[lev].InvCellSizeArray();
+
794  const auto z_phys_arr = z_phys->const_array(mfi);
+
795  auto x_pos_arr = x_pos->array(mfi);
+
796  auto y_pos_arr = y_pos->array(mfi);
+
797  auto z_pos_arr = z_pos->array(mfi);
+
798  ParallelFor(Gpu::KernelInfo().setReduction(true), pbx, [=]
+
799  AMREX_GPU_DEVICE(int i, int j, int k, Gpu::Handler const& handler) noexcept
+
800  {
+
801  Real u_interp{0};
+
802  Real v_interp{0};
+
803  trilinear_interp_T(x_pos_arr(i,j,k), y_pos_arr(i,j,k), z_pos_arr(i,j,k),
+
804  &u_interp, u_mf_arr, z_phys_arr, plo, dxInv, 1);
+
805  trilinear_interp_T(x_pos_arr(i,j,k), y_pos_arr(i,j,k), z_pos_arr(i,j,k),
+
806  &v_interp, v_mf_arr, z_phys_arr, plo, dxInv, 1);
+
807  const Real val = std::sqrt(u_interp*u_interp + v_interp*v_interp);
+
808  Gpu::deviceReduceSum(&plane_avg[iavg], val, handler);
+
809  });
+
810  } else {
+
811  auto k_arr = k_indx->const_array(mfi);
+
812  auto j_arr = j_indx ? j_indx->const_array(mfi) : Array4<const int> {};
+
813  auto i_arr = i_indx ? i_indx->const_array(mfi) : Array4<const int> {};
+
814  ParallelFor(Gpu::KernelInfo().setReduction(true), pbx, [=]
+
815  AMREX_GPU_DEVICE(int i, int j, int k, Gpu::Handler const& handler) noexcept
+
816  {
+
817  int mk = k_arr(i,j,k);
+
818  int mj = j_arr ? j_arr(i,j,k) : j;
+
819  int mi = i_arr ? i_arr(i,j,k) : i;
+
820  const Real u_val = 0.5 * (u_mf_arr(mi,mj,mk) + u_mf_arr(mi+1,mj ,mk));
+
821  const Real v_val = 0.5 * (v_mf_arr(mi,mj,mk) + v_mf_arr(mi ,mj+1,mk));
+
822  const Real val = std::sqrt(u_val*u_val + v_val*v_val);
+
823  Gpu::deviceReduceSum(&plane_avg[iavg], val, handler);
+
824  });
+
825  }
+
826  }
+
827  }
+
828 
+
829  // Copy to host and sum across procs
+
830  Gpu::copy(Gpu::deviceToHost, pavg.begin(), pavg.end(), plane_average.begin());
+
831  ParallelDescriptor::ReduceRealSum(plane_average.data(), plane_average.size());
+
832 
+
833  // No spatial variation with plane averages
+
834  for (int iavg(0); iavg < m_navg; ++iavg){
+
835  plane_average[iavg] *= denom[iavg]*d_fact_new;
+
836  plane_average[iavg] += val_old[iavg];
+
837  averages[iavg]->setVal(plane_average[iavg]);
+
838  }
+
839 }
AMREX_FORCE_INLINE amrex::IntVect TileNoZ()
Definition: TileNoZ.H:11
-
int m_navg
Definition: MOSTAverage.H:171
-
amrex::Vector< amrex::Vector< std::unique_ptr< amrex::MultiFab > > > m_averages
Definition: MOSTAverage.H:182
-
amrex::Vector< std::unique_ptr< amrex::MultiFab > > m_y_pos
Definition: MOSTAverage.H:177
-
amrex::Vector< std::unique_ptr< amrex::iMultiFab > > m_i_indx
Definition: MOSTAverage.H:179
-
amrex::Vector< amrex::MultiFab * > m_z_phys_nd
Definition: MOSTAverage.H:166
-
amrex::Vector< std::unique_ptr< amrex::MultiFab > > m_x_pos
Definition: MOSTAverage.H:176
-
amrex::Vector< amrex::Vector< amrex::Real > > m_plane_average
Definition: MOSTAverage.H:187
-
amrex::Vector< std::unique_ptr< amrex::MultiFab > > m_z_pos
Definition: MOSTAverage.H:178
-
amrex::Vector< amrex::Vector< int > > m_ncell_plane
Definition: MOSTAverage.H:186
-
int m_nvar
Definition: MOSTAverage.H:170
-
amrex::Real m_fact_new
Definition: MOSTAverage.H:205
-
amrex::Vector< std::unique_ptr< amrex::iMultiFab > > m_j_indx
Definition: MOSTAverage.H:180
-
amrex::Vector< amrex::Vector< amrex::MultiFab * > > m_fields
Definition: MOSTAverage.H:165
-
amrex::Real m_fact_old
Definition: MOSTAverage.H:205
-
bool m_interp
Definition: MOSTAverage.H:197
-
const amrex::Vector< amrex::Geometry > m_geom
Definition: MOSTAverage.H:164
-
AMREX_GPU_HOST_DEVICE static AMREX_INLINE void trilinear_interp_T(const amrex::Real &xp, const amrex::Real &yp, const amrex::Real &zp, amrex::Real *interp_vals, amrex::Array4< amrex::Real const > const &interp_array, amrex::Array4< amrex::Real const > const &z_arr, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &plo, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxi, const int interp_comp)
Definition: MOSTAverage.H:105
-
amrex::Vector< std::unique_ptr< amrex::iMultiFab > > m_k_indx
Definition: MOSTAverage.H:181
+
int m_navg
Definition: MOSTAverage.H:174
+
amrex::Vector< amrex::Vector< std::unique_ptr< amrex::MultiFab > > > m_averages
Definition: MOSTAverage.H:186
+
amrex::Vector< std::unique_ptr< amrex::MultiFab > > m_y_pos
Definition: MOSTAverage.H:181
+
amrex::Vector< std::unique_ptr< amrex::iMultiFab > > m_i_indx
Definition: MOSTAverage.H:183
+
amrex::Vector< amrex::MultiFab * > m_z_phys_nd
Definition: MOSTAverage.H:169
+
amrex::Vector< std::unique_ptr< amrex::MultiFab > > m_x_pos
Definition: MOSTAverage.H:180
+
amrex::Vector< amrex::Vector< std::unique_ptr< amrex::MultiFab > > > m_rot_fields
Definition: MOSTAverage.H:187
+
amrex::Vector< amrex::Vector< amrex::Real > > m_plane_average
Definition: MOSTAverage.H:192
+
amrex::Vector< std::unique_ptr< amrex::MultiFab > > m_z_pos
Definition: MOSTAverage.H:182
+
amrex::Vector< amrex::Vector< int > > m_ncell_plane
Definition: MOSTAverage.H:191
+
int m_nvar
Definition: MOSTAverage.H:173
+
amrex::Real m_fact_new
Definition: MOSTAverage.H:210
+
amrex::Vector< std::unique_ptr< amrex::iMultiFab > > m_j_indx
Definition: MOSTAverage.H:184
+
amrex::Vector< amrex::Vector< amrex::MultiFab * > > m_fields
Definition: MOSTAverage.H:168
+
amrex::Real m_fact_old
Definition: MOSTAverage.H:210
+
bool m_interp
Definition: MOSTAverage.H:202
+
const amrex::Vector< amrex::Geometry > m_geom
Definition: MOSTAverage.H:167
+
AMREX_GPU_HOST_DEVICE static AMREX_INLINE void trilinear_interp_T(const amrex::Real &xp, const amrex::Real &yp, const amrex::Real &zp, amrex::Real *interp_vals, amrex::Array4< amrex::Real const > const &interp_array, amrex::Array4< amrex::Real const > const &z_arr, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &plo, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxi, const int interp_comp)
Definition: MOSTAverage.H:108
+
amrex::Vector< std::unique_ptr< amrex::iMultiFab > > m_k_indx
Definition: MOSTAverage.H:185

Referenced by compute_averages().

@@ -689,224 +707,228 @@

755 {
-
756  // Peel back the level
-
757  auto& fields = m_fields[lev];
-
758  auto& averages = m_averages[lev];
-
759  const auto & geom = m_geom[lev];
-
760 
-
761  auto& z_phys = m_z_phys_nd[lev];
-
762  auto& x_pos = m_x_pos[lev];
-
763  auto& y_pos = m_y_pos[lev];
-
764  auto& z_pos = m_z_pos[lev];
-
765 
-
766  auto& i_indx = m_i_indx[lev];
-
767  auto& j_indx = m_j_indx[lev];
-
768  auto& k_indx = m_k_indx[lev];
-
769 
-
770  // Set factors for time averaging
-
771  Real d_fact_new, d_fact_old;
-
772  if (m_t_avg && m_t_init[lev]) {
-
773  d_fact_new = m_fact_new;
-
774  d_fact_old = m_fact_old;
-
775  } else {
-
776  d_fact_new = 1.0;
-
777  d_fact_old = 0.0;
-
778  }
-
779 
-
780  // Number of cells contained in the local average
-
781  const Real denom = 1.0 / (Real) m_ncell_region;
-
782 
-
783  // Capture radius for device
-
784  int d_radius = m_radius;
-
785 
-
786  // Averages over all the fields
-
787  //----------------------------------------------------------
-
788  for (int imf(0); imf < m_nvar; ++imf) {
-
789 
-
790  // Continue if no valid Qv pointer
-
791  if (!fields[imf]) continue;
-
792 
-
793 #ifdef _OPENMP
-
794 #pragma omp parallel if (Gpu::notInLaunchRegion())
-
795 #endif
-
796  for (MFIter mfi(*fields[imf], TileNoZ()); mfi.isValid(); ++mfi) {
-
797  Box pbx = mfi.tilebox(); pbx.setSmall(2,0); pbx.setBig(2,0);
-
798 
-
799  auto mf_arr = fields[imf]->const_array(mfi);
-
800  auto ma_arr = averages[imf]->array(mfi);
-
801 
-
802  if (m_interp) {
-
803  const auto plo = geom.ProbLoArray();
-
804  const auto dx = geom.CellSizeArray();
-
805  const auto dxInv = geom.InvCellSizeArray();
-
806  const auto z_phys_arr = z_phys->const_array(mfi);
-
807  auto x_pos_arr = x_pos->array(mfi);
-
808  auto y_pos_arr = y_pos->array(mfi);
-
809  auto z_pos_arr = z_pos->array(mfi);
-
810  ParallelFor(pbx, [=] AMREX_GPU_DEVICE(int i, int j, int k) noexcept
-
811  {
-
812  ma_arr(i,j,k) *= d_fact_old;
-
813 
-
814  Real met_h_zeta = Compute_h_zeta_AtCellCenter(i,j,k,dxInv,z_phys_arr);
-
815  for (int lk(-d_radius); lk <= (d_radius); ++lk) {
-
816  for (int lj(-d_radius); lj <= (d_radius); ++lj) {
-
817  for (int li(-d_radius); li <= (d_radius); ++li) {
-
818  Real interp{0};
-
819  Real xp = x_pos_arr(i+li,j+lj,k);
-
820  Real yp = y_pos_arr(i+li,j+lj,k);
-
821  Real zp = z_pos_arr(i+li,j+lj,k) + met_h_zeta*lk*dx[2];
-
822  trilinear_interp_T(xp, yp, zp, &interp, mf_arr, z_phys_arr, plo, dxInv, 1);
-
823  Real val = denom * interp * d_fact_new;
-
824  ma_arr(i,j,k) += val;
-
825  }
-
826  }
-
827  }
-
828  });
-
829  } else {
-
830  auto k_arr = k_indx->const_array(mfi);
-
831  auto j_arr = j_indx ? j_indx->const_array(mfi) : Array4<const int> {};
-
832  auto i_arr = i_indx ? i_indx->const_array(mfi) : Array4<const int> {};
-
833  ParallelFor(pbx, [=] AMREX_GPU_DEVICE(int i, int j, int k) noexcept
-
834  {
-
835  ma_arr(i,j,k) *= d_fact_old;
-
836 
-
837  int mk = k_arr(i,j,k);
-
838  int mj = j_arr ? j_arr(i,j,k) : j;
-
839  int mi = i_arr ? i_arr(i,j,k) : i;
-
840  for (int lk(mk-d_radius); lk <= (mk+d_radius); ++lk) {
-
841  for (int lj(mj-d_radius); lj <= (mj+d_radius); ++lj) {
-
842  for (int li(mi-d_radius); li <= (mi+d_radius); ++li) {
-
843  Real val = denom * mf_arr(li, lj, lk) * d_fact_new;
-
844  ma_arr(i,j,k) += val;
-
845  }
-
846  }
-
847  }
-
848  });
-
849  }
-
850  }
-
851 
-
852  // Fill interior ghost cells and any ghost cells outside a periodic domain
-
853  //***********************************************************************************
-
854  averages[imf]->FillBoundary(geom.periodicity());
-
855  }
-
856 
-
857  // Averages for the tangential velocity magnitude
-
858  //----------------------------------------------------------
-
859  {
-
860  int imf = 0;
-
861  int iavg = m_navg - 1;
-
862 
-
863 #ifdef _OPENMP
-
864 #pragma omp parallel if (Gpu::notInLaunchRegion())
-
865 #endif
-
866  for (MFIter mfi(*averages[iavg], TileNoZ()); mfi.isValid(); ++mfi) {
-
867  Box pbx = mfi.tilebox(); pbx.setSmall(2,0); pbx.setBig(2,0);
-
868 
-
869  auto u_mf_arr = fields[imf]->const_array(mfi);
-
870  auto v_mf_arr = fields[imf+1]->const_array(mfi);
-
871  auto ma_arr = averages[iavg]->array(mfi);
-
872 
-
873  if (m_interp) {
-
874  const auto plo = geom.ProbLoArray();
-
875  const auto dx = geom.CellSizeArray();
-
876  const auto dxInv = geom.InvCellSizeArray();
-
877  const auto z_phys_arr = z_phys->const_array(mfi);
-
878  auto x_pos_arr = x_pos->array(mfi);
-
879  auto y_pos_arr = y_pos->array(mfi);
-
880  auto z_pos_arr = z_pos->array(mfi);
-
881  ParallelFor(pbx, [=] AMREX_GPU_DEVICE(int i, int j, int k) noexcept
-
882  {
-
883  ma_arr(i,j,k) *= d_fact_old;
+
849 {
+
850  // Peel back the level
+
851  auto& fields = m_fields[lev];
+
852  auto& rot_fields = m_rot_fields[lev];
+
853  auto& averages = m_averages[lev];
+
854  const auto & geom = m_geom[lev];
+
855 
+
856  auto& z_phys = m_z_phys_nd[lev];
+
857  auto& x_pos = m_x_pos[lev];
+
858  auto& y_pos = m_y_pos[lev];
+
859  auto& z_pos = m_z_pos[lev];
+
860 
+
861  auto& i_indx = m_i_indx[lev];
+
862  auto& j_indx = m_j_indx[lev];
+
863  auto& k_indx = m_k_indx[lev];
+
864 
+
865  // Set factors for time averaging
+
866  Real d_fact_new, d_fact_old;
+
867  if (m_t_avg && m_t_init[lev]) {
+
868  d_fact_new = m_fact_new;
+
869  d_fact_old = m_fact_old;
+
870  } else {
+
871  d_fact_new = 1.0;
+
872  d_fact_old = 0.0;
+
873  }
+
874 
+
875  // Number of cells contained in the local average
+
876  const Real denom = 1.0 / (Real) m_ncell_region;
+
877 
+
878  // Capture radius for device
+
879  int d_radius = m_radius;
+
880 
+
881  // Averages over all the fields
+
882  //----------------------------------------------------------
+
883  for (int imf(0); imf < (m_nvar-1); ++imf) {
884 
-
885  Real met_h_zeta = Compute_h_zeta_AtCellCenter(i,j,k,dxInv,z_phys_arr);
-
886  for (int lk(-d_radius); lk <= (d_radius); ++lk) {
-
887  for (int lj(-d_radius); lj <= (d_radius); ++lj) {
-
888  for (int li(-d_radius); li <= (d_radius); ++li) {
-
889  Real u_interp{0};
-
890  Real v_interp{0};
-
891  Real xp = x_pos_arr(i+li,j+lj,k);
-
892  Real yp = y_pos_arr(i+li,j+lj,k);
-
893  Real zp = z_pos_arr(i+li,j+lj,k) + met_h_zeta*lk*dx[2];
-
894  trilinear_interp_T(xp, yp, zp, &u_interp, u_mf_arr, z_phys_arr, plo, dxInv, 1);
-
895  trilinear_interp_T(xp, yp, zp, &v_interp, v_mf_arr, z_phys_arr, plo, dxInv, 1);
-
896  Real mag = std::sqrt(u_interp*u_interp + v_interp*v_interp);
-
897  Real val = denom * mag * d_fact_new;
-
898  ma_arr(i,j,k) += val;
-
899  }
-
900  }
-
901  }
-
902  });
-
903  } else {
-
904  auto k_arr = k_indx->const_array(mfi);
-
905  auto j_arr = j_indx ? j_indx->const_array(mfi) : Array4<const int> {};
-
906  auto i_arr = i_indx ? i_indx->const_array(mfi) : Array4<const int> {};
-
907  ParallelFor(pbx, [=] AMREX_GPU_DEVICE(int i, int j, int k) noexcept
-
908  {
-
909  ma_arr(i,j,k) *= d_fact_old;
-
910 
-
911  int mk = k_arr(i,j,k);
-
912  int mj = j_arr ? j_arr(i,j,k) : j;
-
913  int mi = i_arr ? i_arr(i,j,k) : i;
-
914  for (int lk(mk-d_radius); lk <= (mk+d_radius); ++lk) {
-
915  for (int lj(mj-d_radius); lj <= (mj+d_radius); ++lj) {
-
916  for (int li(mi-d_radius); li <= (mi+d_radius); ++li) {
-
917  const Real u_val = 0.5 * (u_mf_arr(li,lj,lk) + u_mf_arr(li+1,lj ,lk));
-
918  const Real v_val = 0.5 * (v_mf_arr(li,lj,lk) + v_mf_arr(li ,lj+1,lk));
-
919  const Real mag = std::sqrt(u_val*u_val + v_val*v_val);
-
920  Real val = denom * mag * d_fact_new;
-
921  ma_arr(i,j,k) += val;
-
922  }
-
923  }
-
924  }
-
925  });
-
926  }
-
927 
-
928  // Fill interior ghost cells and any ghost cells outside a periodic domain
-
929  //***********************************************************************************
-
930  averages[iavg]->FillBoundary(geom.periodicity());
-
931  }
-
932  }
-
933 
-
934 
-
935  // Need to fill ghost cells outside the domain if not periodic
-
936  bool not_per_x = !(geom.periodicity().isPeriodic(0));
-
937  bool not_per_y = !(geom.periodicity().isPeriodic(1));
-
938  if (not_per_x || not_per_y) {
-
939  Box domain = geom.Domain();
-
940  for (int iavg(0); iavg < m_navg; ++iavg) {
-
941  IndexType ixt = averages[iavg]->boxArray().ixType();
-
942  Box ldomain = domain; ldomain.convert(ixt);
-
943  IntVect ng = averages[iavg]->nGrowVect(); ng[2]=0;
-
944 #ifdef _OPENMP
-
945 #pragma omp parallel if (Gpu::notInLaunchRegion())
-
946 #endif
-
947  for (MFIter mfi(*averages[iavg], TileNoZ()); mfi.isValid(); ++mfi) {
-
948  Box gpbx = mfi.growntilebox(ng); gpbx.setSmall(2,0); gpbx.setBig(2,0);
-
949 
-
950  if (ldomain.contains(gpbx)) continue;
-
951 
-
952  auto ma_arr = averages[iavg]->array(mfi);
-
953 
-
954  int i_lo = ldomain.smallEnd(0); int i_hi = ldomain.bigEnd(0);
-
955  int j_lo = ldomain.smallEnd(1); int j_hi = ldomain.bigEnd(1);
-
956  ParallelFor(gpbx, [=] AMREX_GPU_DEVICE(int i, int j, int k) noexcept
-
957  {
-
958  int li, lj;
-
959  li = i < i_lo ? i_lo : i;
-
960  li = li > i_hi ? i_hi : li;
-
961  lj = j < j_lo ? j_lo : j;
-
962  lj = lj > j_hi ? j_hi : lj;
-
963 
-
964  ma_arr(i,j,k) = ma_arr(li,lj,k);
-
965  });
-
966  } // MFiter
-
967  } // iavg
-
968  } // Not periodic
-
969 }
+
885  // Continue if no valid Qv pointer
+
886  if (!fields[imf]) continue;
+
887 
+
888 #ifdef _OPENMP
+
889 #pragma omp parallel if (Gpu::notInLaunchRegion())
+
890 #endif
+
891  for (MFIter mfi(*fields[imf], TileNoZ()); mfi.isValid(); ++mfi) {
+
892  Box pbx = mfi.tilebox(); pbx.setSmall(2,0); pbx.setBig(2,0);
+
893 
+
894  auto mf_arr = (m_rotate) ? rot_fields[imf]->const_array(mfi) :
+
895  fields[imf]->const_array(mfi);
+
896  auto ma_arr = averages[imf]->array(mfi);
+
897 
+
898  if (m_interp) {
+
899  const auto plo = geom.ProbLoArray();
+
900  const auto dx = geom.CellSizeArray();
+
901  const auto dxInv = geom.InvCellSizeArray();
+
902  const auto z_phys_arr = z_phys->const_array(mfi);
+
903  auto x_pos_arr = x_pos->array(mfi);
+
904  auto y_pos_arr = y_pos->array(mfi);
+
905  auto z_pos_arr = z_pos->array(mfi);
+
906  ParallelFor(pbx, [=] AMREX_GPU_DEVICE(int i, int j, int k) noexcept
+
907  {
+
908  ma_arr(i,j,k) *= d_fact_old;
+
909 
+
910  Real met_h_zeta = Compute_h_zeta_AtCellCenter(i,j,k,dxInv,z_phys_arr);
+
911  for (int lk(-d_radius); lk <= (d_radius); ++lk) {
+
912  for (int lj(-d_radius); lj <= (d_radius); ++lj) {
+
913  for (int li(-d_radius); li <= (d_radius); ++li) {
+
914  Real interp{0};
+
915  Real xp = x_pos_arr(i+li,j+lj,k);
+
916  Real yp = y_pos_arr(i+li,j+lj,k);
+
917  Real zp = z_pos_arr(i+li,j+lj,k) + met_h_zeta*lk*dx[2];
+
918  trilinear_interp_T(xp, yp, zp, &interp, mf_arr, z_phys_arr, plo, dxInv, 1);
+
919  Real val = denom * interp * d_fact_new;
+
920  ma_arr(i,j,k) += val;
+
921  }
+
922  }
+
923  }
+
924  });
+
925  } else {
+
926  auto k_arr = k_indx->const_array(mfi);
+
927  auto j_arr = j_indx ? j_indx->const_array(mfi) : Array4<const int> {};
+
928  auto i_arr = i_indx ? i_indx->const_array(mfi) : Array4<const int> {};
+
929  ParallelFor(pbx, [=] AMREX_GPU_DEVICE(int i, int j, int k) noexcept
+
930  {
+
931  ma_arr(i,j,k) *= d_fact_old;
+
932 
+
933  int mk = k_arr(i,j,k);
+
934  int mj = j_arr ? j_arr(i,j,k) : j;
+
935  int mi = i_arr ? i_arr(i,j,k) : i;
+
936  for (int lk(mk-d_radius); lk <= (mk+d_radius); ++lk) {
+
937  for (int lj(mj-d_radius); lj <= (mj+d_radius); ++lj) {
+
938  for (int li(mi-d_radius); li <= (mi+d_radius); ++li) {
+
939  Real val = denom * mf_arr(li, lj, lk) * d_fact_new;
+
940  ma_arr(i,j,k) += val;
+
941  }
+
942  }
+
943  }
+
944  });
+
945  }
+
946  }
+
947 
+
948  // Fill interior ghost cells and any ghost cells outside a periodic domain
+
949  //***********************************************************************************
+
950  averages[imf]->FillBoundary(geom.periodicity());
+
951  }
+
952 
+
953  // Averages for the tangential velocity magnitude
+
954  //----------------------------------------------------------
+
955  {
+
956  int imf = 0;
+
957  int iavg = m_navg - 1;
+
958 
+
959 #ifdef _OPENMP
+
960 #pragma omp parallel if (Gpu::notInLaunchRegion())
+
961 #endif
+
962  for (MFIter mfi(*averages[iavg], TileNoZ()); mfi.isValid(); ++mfi) {
+
963  Box pbx = mfi.tilebox(); pbx.setSmall(2,0); pbx.setBig(2,0);
+
964 
+
965  auto u_mf_arr = (m_rotate) ? rot_fields[imf ]->const_array(mfi) :
+
966  fields[imf ]->const_array(mfi);
+
967  auto v_mf_arr = (m_rotate) ? rot_fields[imf+1]->const_array(mfi) :
+
968  fields[imf+1]->const_array(mfi);
+
969  auto ma_arr = averages[iavg]->array(mfi);
+
970 
+
971  if (m_interp) {
+
972  const auto plo = geom.ProbLoArray();
+
973  const auto dx = geom.CellSizeArray();
+
974  const auto dxInv = geom.InvCellSizeArray();
+
975  const auto z_phys_arr = z_phys->const_array(mfi);
+
976  auto x_pos_arr = x_pos->array(mfi);
+
977  auto y_pos_arr = y_pos->array(mfi);
+
978  auto z_pos_arr = z_pos->array(mfi);
+
979  ParallelFor(pbx, [=] AMREX_GPU_DEVICE(int i, int j, int k) noexcept
+
980  {
+
981  ma_arr(i,j,k) *= d_fact_old;
+
982 
+
983  Real met_h_zeta = Compute_h_zeta_AtCellCenter(i,j,k,dxInv,z_phys_arr);
+
984  for (int lk(-d_radius); lk <= (d_radius); ++lk) {
+
985  for (int lj(-d_radius); lj <= (d_radius); ++lj) {
+
986  for (int li(-d_radius); li <= (d_radius); ++li) {
+
987  Real u_interp{0};
+
988  Real v_interp{0};
+
989  Real xp = x_pos_arr(i+li,j+lj,k);
+
990  Real yp = y_pos_arr(i+li,j+lj,k);
+
991  Real zp = z_pos_arr(i+li,j+lj,k) + met_h_zeta*lk*dx[2];
+
992  trilinear_interp_T(xp, yp, zp, &u_interp, u_mf_arr, z_phys_arr, plo, dxInv, 1);
+
993  trilinear_interp_T(xp, yp, zp, &v_interp, v_mf_arr, z_phys_arr, plo, dxInv, 1);
+
994  Real mag = std::sqrt(u_interp*u_interp + v_interp*v_interp);
+
995  Real val = denom * mag * d_fact_new;
+
996  ma_arr(i,j,k) += val;
+
997  }
+
998  }
+
999  }
+
1000  });
+
1001  } else {
+
1002  auto k_arr = k_indx->const_array(mfi);
+
1003  auto j_arr = j_indx ? j_indx->const_array(mfi) : Array4<const int> {};
+
1004  auto i_arr = i_indx ? i_indx->const_array(mfi) : Array4<const int> {};
+
1005  ParallelFor(pbx, [=] AMREX_GPU_DEVICE(int i, int j, int k) noexcept
+
1006  {
+
1007  ma_arr(i,j,k) *= d_fact_old;
+
1008 
+
1009  int mk = k_arr(i,j,k);
+
1010  int mj = j_arr ? j_arr(i,j,k) : j;
+
1011  int mi = i_arr ? i_arr(i,j,k) : i;
+
1012  for (int lk(mk-d_radius); lk <= (mk+d_radius); ++lk) {
+
1013  for (int lj(mj-d_radius); lj <= (mj+d_radius); ++lj) {
+
1014  for (int li(mi-d_radius); li <= (mi+d_radius); ++li) {
+
1015  const Real u_val = 0.5 * (u_mf_arr(li,lj,lk) + u_mf_arr(li+1,lj ,lk));
+
1016  const Real v_val = 0.5 * (v_mf_arr(li,lj,lk) + v_mf_arr(li ,lj+1,lk));
+
1017  const Real mag = std::sqrt(u_val*u_val + v_val*v_val);
+
1018  Real val = denom * mag * d_fact_new;
+
1019  ma_arr(i,j,k) += val;
+
1020  }
+
1021  }
+
1022  }
+
1023  });
+
1024  }
+
1025 
+
1026  // Fill interior ghost cells and any ghost cells outside a periodic domain
+
1027  //***********************************************************************************
+
1028  averages[iavg]->FillBoundary(geom.periodicity());
+
1029  }
+
1030  }
+
1031 
+
1032 
+
1033  // Need to fill ghost cells outside the domain if not periodic
+
1034  bool not_per_x = !(geom.periodicity().isPeriodic(0));
+
1035  bool not_per_y = !(geom.periodicity().isPeriodic(1));
+
1036  if (not_per_x || not_per_y) {
+
1037  Box domain = geom.Domain();
+
1038  for (int iavg(0); iavg < m_navg; ++iavg) {
+
1039  IndexType ixt = averages[iavg]->boxArray().ixType();
+
1040  Box ldomain = domain; ldomain.convert(ixt);
+
1041  IntVect ng = averages[iavg]->nGrowVect(); ng[2]=0;
+
1042 #ifdef _OPENMP
+
1043 #pragma omp parallel if (Gpu::notInLaunchRegion())
+
1044 #endif
+
1045  for (MFIter mfi(*averages[iavg], TileNoZ()); mfi.isValid(); ++mfi) {
+
1046  Box gpbx = mfi.growntilebox(ng); gpbx.setSmall(2,0); gpbx.setBig(2,0);
+
1047 
+
1048  if (ldomain.contains(gpbx)) continue;
+
1049 
+
1050  auto ma_arr = averages[iavg]->array(mfi);
+
1051 
+
1052  int i_lo = ldomain.smallEnd(0); int i_hi = ldomain.bigEnd(0);
+
1053  int j_lo = ldomain.smallEnd(1); int j_hi = ldomain.bigEnd(1);
+
1054  ParallelFor(gpbx, [=] AMREX_GPU_DEVICE(int i, int j, int k) noexcept
+
1055  {
+
1056  int li, lj;
+
1057  li = i < i_lo ? i_lo : i;
+
1058  li = li > i_hi ? i_hi : li;
+
1059  lj = j < j_lo ? j_lo : j;
+
1060  lj = lj > j_hi ? j_hi : lj;
+
1061 
+
1062  ma_arr(i,j,k) = ma_arr(li,lj,k);
+
1063  });
+
1064  } // MFiter
+
1065  } // iavg
+
1066  } // Not periodic
+
1067 }
AMREX_FORCE_INLINE AMREX_GPU_DEVICE amrex::Real Compute_h_zeta_AtCellCenter(const int &i, const int &j, const int &k, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &cellSizeInv, const amrex::Array4< const amrex::Real > &z_nd)
Definition: TerrainMetrics.H:32
-
int m_radius
Definition: MOSTAverage.H:191
-
int m_ncell_region
Definition: MOSTAverage.H:192
+
int m_radius
Definition: MOSTAverage.H:196
+
int m_ncell_region
Definition: MOSTAverage.H:197

Referenced by compute_averages().

@@ -965,7 +987,7 @@

-
87 { return m_averages[lev][comp].get(); }
+
90 { return m_averages[lev][comp].get(); }

Referenced by ABLMost::get_mac_avg().

@@ -1002,8 +1024,8 @@

-
90 { return m_zref; }
-
amrex::Real m_zref
Definition: MOSTAverage.H:174
+
93 { return m_zref; }
+
amrex::Real m_zref
Definition: MOSTAverage.H:178

Referenced by ABLMost::get_zref().

@@ -1085,61 +1107,61 @@

Function to set K indices without terrain.

-
244 {
-
245  ParmParse pp(m_pp_prefix);
-
246  auto read_z = pp.query("most.zref",m_zref);
-
247  auto read_k = pp.queryarr("most.k_arr_in",m_k_in);
-
248 
-
249  // Default behavior is to use the first cell center
-
250  if (!read_z && !read_k) {
-
251  Real m_zlo = m_geom[0].ProbLo(2);
-
252  Real m_dz = m_geom[0].CellSize(2);
-
253  m_zref = m_zlo + 0.5 * m_dz;
-
254  Print() << "Reference height for MOST set to " << m_zref << std::endl;
-
255  read_z = true;
-
256  }
-
257 
-
258  // Specify z_ref & compute k_indx (z_ref takes precedence)
-
259  if (read_z) {
-
260  for (int lev(0); lev < m_maxlev; lev++) {
-
261  Real m_zlo = m_geom[lev].ProbLo(2);
-
262  Real m_zhi = m_geom[lev].ProbHi(2);
-
263  Real m_dz = m_geom[lev].CellSize(2);
-
264 
-
265  amrex::ignore_unused(m_zhi);
-
266 
-
267  AMREX_ASSERT_WITH_MESSAGE(m_zref >= m_zlo + 0.5 * m_dz,
-
268  "Query point must be past first z-cell!");
-
269 
-
270  AMREX_ASSERT_WITH_MESSAGE(m_zref <= m_zhi - 0.5 * m_dz,
-
271  "Query point must be below the last z-cell!");
-
272 
-
273  int lk = static_cast<int>(floor((m_zref - m_zlo) / m_dz - 0.5));
-
274 
-
275  m_zref = (lk + 0.5) * m_dz + m_zlo;
-
276 
-
277  AMREX_ALWAYS_ASSERT(lk >= m_radius);
-
278 
-
279  m_k_indx[lev]->setVal(lk);
-
280  }
-
281  // Specified k_indx & compute z_ref
-
282  } else if (read_k) {
-
283  for (int lev(0); lev < m_maxlev; lev++){
-
284  AMREX_ASSERT_WITH_MESSAGE(m_k_in[lev] >= m_radius,
-
285  "K index must be larger than averaging radius!");
-
286  m_k_indx[lev]->setVal(m_k_in[lev]);
-
287  }
-
288 
-
289  // TODO: check that z_ref is constant across levels
-
290  Real m_zlo = m_geom[0].ProbLo(2);
-
291  Real m_dz = m_geom[0].CellSize(2);
-
292  m_zref = ((Real)m_k_in[0] + 0.5) * m_dz + m_zlo;
-
293  }
-
294 }
+
332 {
+
333  ParmParse pp(m_pp_prefix);
+
334  auto read_z = pp.query("most.zref",m_zref);
+
335  auto read_k = pp.queryarr("most.k_arr_in",m_k_in);
+
336 
+
337  // Default behavior is to use the first cell center
+
338  if (!read_z && !read_k) {
+
339  Real m_zlo = m_geom[0].ProbLo(2);
+
340  Real m_dz = m_geom[0].CellSize(2);
+
341  m_zref = m_zlo + 0.5 * m_dz;
+
342  Print() << "Reference height for MOST set to " << m_zref << std::endl;
+
343  read_z = true;
+
344  }
+
345 
+
346  // Specify z_ref & compute k_indx (z_ref takes precedence)
+
347  if (read_z) {
+
348  for (int lev(0); lev < m_maxlev; lev++) {
+
349  Real m_zlo = m_geom[lev].ProbLo(2);
+
350  Real m_zhi = m_geom[lev].ProbHi(2);
+
351  Real m_dz = m_geom[lev].CellSize(2);
+
352 
+
353  amrex::ignore_unused(m_zhi);
+
354 
+
355  AMREX_ASSERT_WITH_MESSAGE(m_zref >= m_zlo + 0.5 * m_dz,
+
356  "Query point must be past first z-cell!");
+
357 
+
358  AMREX_ASSERT_WITH_MESSAGE(m_zref <= m_zhi - 0.5 * m_dz,
+
359  "Query point must be below the last z-cell!");
+
360 
+
361  int lk = static_cast<int>(floor((m_zref - m_zlo) / m_dz - 0.5));
+
362 
+
363  m_zref = (lk + 0.5) * m_dz + m_zlo;
+
364 
+
365  AMREX_ALWAYS_ASSERT(lk >= m_radius);
+
366 
+
367  m_k_indx[lev]->setVal(lk);
+
368  }
+
369  // Specified k_indx & compute z_ref
+
370  } else if (read_k) {
+
371  for (int lev(0); lev < m_maxlev; lev++){
+
372  AMREX_ASSERT_WITH_MESSAGE(m_k_in[lev] >= m_radius,
+
373  "K index must be larger than averaging radius!");
+
374  m_k_indx[lev]->setVal(m_k_in[lev]);
+
375  }
+
376 
+
377  // TODO: check that z_ref is constant across levels
+
378  Real m_zlo = m_geom[0].ProbLo(2);
+
379  Real m_dz = m_geom[0].CellSize(2);
+
380  m_zref = ((Real)m_k_in[0] + 0.5) * m_dz + m_zlo;
+
381  }
+
382 }
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::Real pp(amrex::Real y)
Definition: Microphysics_Utils.H:219
-
std::string m_pp_prefix
Definition: MOSTAverage.H:175
-
int m_maxlev
Definition: MOSTAverage.H:172
-
amrex::Vector< int > m_k_in
Definition: MOSTAverage.H:193
+
std::string m_pp_prefix
Definition: MOSTAverage.H:179
+
int m_maxlev
Definition: MOSTAverage.H:175
+
amrex::Vector< int > m_k_in
Definition: MOSTAverage.H:198
Here is the call graph for this function:
@@ -1167,55 +1189,55 @@

Function to set K indices with terrain.

-
303 {
-
304  ParmParse pp(m_pp_prefix);
-
305  auto read_z = pp.query("most.zref",m_zref);
-
306  auto read_k = pp.queryarr("most.k_arr_in",m_k_in);
-
307 
-
308  // No default behavior with terrain (we can't tell the difference between
-
309  // vertical grid stretching and true terrain)
-
310  AMREX_ALWAYS_ASSERT_WITH_MESSAGE(read_z != read_k,
-
311  "Need to specify zref or k_arr_in for MOST");
-
312 
-
313  // Capture for device
-
314  Real d_zref = m_zref;
-
315  Real d_radius = m_radius;
-
316  amrex::ignore_unused(d_radius);
-
317 
-
318  // Specify z_ref & compute k_indx (z_ref takes precedence)
-
319  if (read_z) {
-
320  for (int lev(0); lev < m_maxlev; lev++) {
-
321  int kmax = m_geom[lev].Domain().bigEnd(2);
-
322  for (MFIter mfi(*m_k_indx[lev], TileNoZ()); mfi.isValid(); ++mfi) {
-
323  Box npbx = mfi.tilebox(IntVect(1,1,0),IntVect(1,1,0));
-
324  const auto z_phys_arr = m_z_phys_nd[lev]->const_array(mfi);
-
325  auto k_arr = m_k_indx[lev]->array(mfi);
-
326  ParallelFor(npbx, [=] AMREX_GPU_DEVICE (int i, int j, int k) noexcept
-
327  {
-
328  k_arr(i,j,k) = 0;
-
329  Real z_bot_face = 0.25 * ( z_phys_arr(i ,j ,k) + z_phys_arr(i+1,j ,k)
-
330  + z_phys_arr(i ,j+1,k) + z_phys_arr(i+1,j+1,k) );
-
331  Real z_target = z_bot_face + d_zref;
-
332  for (int lk(0); lk<=kmax; ++lk) {
-
333  Real z_lo = 0.25 * ( z_phys_arr(i,j ,lk ) + z_phys_arr(i+1,j ,lk )
-
334  + z_phys_arr(i,j+1,lk ) + z_phys_arr(i+1,j+1,lk ) );
-
335  Real z_hi = 0.25 * ( z_phys_arr(i,j ,lk+1) + z_phys_arr(i+1,j ,lk+1)
-
336  + z_phys_arr(i,j+1,lk+1) + z_phys_arr(i+1,j+1,lk+1) );
-
337  if (z_target > z_lo && z_target < z_hi){
-
338  AMREX_ASSERT_WITH_MESSAGE(lk >= d_radius,
-
339  "K index must be larger than averaging radius!");
-
340  k_arr(i,j,k) = lk;
-
341  break;
-
342  }
-
343  }
-
344  });
-
345  }
-
346  }
-
347  // Specified k_indx & compute z_ref
-
348  } else if (read_k) {
-
349  AMREX_ASSERT_WITH_MESSAGE(false, "Specified k-indx with terrain not implemented!");
-
350  }
-
351 }
+
391 {
+
392  ParmParse pp(m_pp_prefix);
+
393  auto read_z = pp.query("most.zref",m_zref);
+
394  auto read_k = pp.queryarr("most.k_arr_in",m_k_in);
+
395 
+
396  // No default behavior with terrain (we can't tell the difference between
+
397  // vertical grid stretching and true terrain)
+
398  AMREX_ALWAYS_ASSERT_WITH_MESSAGE(read_z != read_k,
+
399  "Need to specify zref or k_arr_in for MOST");
+
400 
+
401  // Capture for device
+
402  Real d_zref = m_zref;
+
403  Real d_radius = m_radius;
+
404  amrex::ignore_unused(d_radius);
+
405 
+
406  // Specify z_ref & compute k_indx (z_ref takes precedence)
+
407  if (read_z) {
+
408  for (int lev(0); lev < m_maxlev; lev++) {
+
409  int kmax = m_geom[lev].Domain().bigEnd(2);
+
410  for (MFIter mfi(*m_k_indx[lev], TileNoZ()); mfi.isValid(); ++mfi) {
+
411  Box npbx = mfi.tilebox(IntVect(1,1,0),IntVect(1,1,0));
+
412  const auto z_phys_arr = m_z_phys_nd[lev]->const_array(mfi);
+
413  auto k_arr = m_k_indx[lev]->array(mfi);
+
414  ParallelFor(npbx, [=] AMREX_GPU_DEVICE (int i, int j, int k) noexcept
+
415  {
+
416  k_arr(i,j,k) = 0;
+
417  Real z_bot_face = 0.25 * ( z_phys_arr(i ,j ,k) + z_phys_arr(i+1,j ,k)
+
418  + z_phys_arr(i ,j+1,k) + z_phys_arr(i+1,j+1,k) );
+
419  Real z_target = z_bot_face + d_zref;
+
420  for (int lk(0); lk<=kmax; ++lk) {
+
421  Real z_lo = 0.25 * ( z_phys_arr(i,j ,lk ) + z_phys_arr(i+1,j ,lk )
+
422  + z_phys_arr(i,j+1,lk ) + z_phys_arr(i+1,j+1,lk ) );
+
423  Real z_hi = 0.25 * ( z_phys_arr(i,j ,lk+1) + z_phys_arr(i+1,j ,lk+1)
+
424  + z_phys_arr(i,j+1,lk+1) + z_phys_arr(i+1,j+1,lk+1) );
+
425  if (z_target > z_lo && z_target < z_hi){
+
426  AMREX_ASSERT_WITH_MESSAGE(lk >= d_radius,
+
427  "K index must be larger than averaging radius!");
+
428  k_arr(i,j,k) = lk;
+
429  break;
+
430  }
+
431  }
+
432  });
+
433  }
+
434  }
+
435  // Specified k_indx & compute z_ref
+
436  } else if (read_k) {
+
437  AMREX_ASSERT_WITH_MESSAGE(false, "Specified k-indx with terrain not implemented!");
+
438  }
+
439 }
Here is the call graph for this function:
@@ -1244,71 +1266,71 @@

Function to set I,J,K indices with terrain normals.

-
360 {
-
361  ParmParse pp(m_pp_prefix);
-
362  pp.get("most.zref",m_zref);
-
363 
-
364  // Capture for device
-
365  Real d_zref = m_zref;
-
366  Real d_radius = m_radius;
-
367 
-
368  for (int lev(0); lev < m_maxlev; lev++) {
-
369  int kmax = m_geom[lev].Domain().bigEnd(2);
-
370  const auto dxInv = m_geom[lev].InvCellSizeArray();
-
371  IntVect ng = m_k_indx[lev]->nGrowVect(); ng[2]=0;
-
372  for (MFIter mfi(*m_k_indx[lev], TileNoZ()); mfi.isValid(); ++mfi) {
-
373  Box npbx = mfi.tilebox(IntVect(1,1,0),IntVect(1,1,0));
-
374  Box gpbx = mfi.growntilebox(ng);
-
375  const auto z_phys_arr = m_z_phys_nd[lev]->const_array(mfi);
-
376  auto i_arr = m_i_indx[lev]->array(mfi);
-
377  auto j_arr = m_j_indx[lev]->array(mfi);
-
378  auto k_arr = m_k_indx[lev]->array(mfi);
-
379  ParallelFor(npbx, [=] AMREX_GPU_DEVICE (int i, int j, int k) noexcept
-
380  {
-
381  // Elements of normal vector
-
382  Real met_h_xi = Compute_h_xi_AtCellCenter (i,j,k,dxInv,z_phys_arr);
-
383  Real met_h_eta = Compute_h_eta_AtCellCenter(i,j,k,dxInv,z_phys_arr);
-
384  Real mag = std::sqrt(met_h_xi*met_h_xi + met_h_eta*met_h_eta + 1.0);
-
385 
-
386  // Unit-normal vector scaled by z_ref
-
387  Real delta_x = -met_h_xi/mag * d_zref;
-
388  Real delta_y = -met_h_eta/mag * d_zref;
-
389  Real delta_z = 1.0/mag * d_zref;
-
390 
-
391  // Compute i & j as displacements (no grid stretching)
-
392  int delta_i = static_cast<int>(std::round(delta_x*dxInv[0]));
-
393  int delta_j = static_cast<int>(std::round(delta_y*dxInv[1]));
-
394  int i_new = i + delta_i;
-
395  int j_new = j + delta_j;
-
396  i_arr(i,j,k) = i_new;
-
397  j_arr(i,j,k) = j_new;
-
398 
-
399  // Search for k (grid is stretched in z)
-
400  Real z_bot_face = 0.25 * ( z_phys_arr(i ,j ,k) + z_phys_arr(i+1,j ,k)
-
401  + z_phys_arr(i ,j+1,k) + z_phys_arr(i+1,j+1,k) );
-
402  Real z_target = z_bot_face + delta_z;
-
403  for (int lk(0); lk<=kmax; ++lk) {
-
404  Real z_lo = 0.25 * ( z_phys_arr(i_new,j_new ,lk ) + z_phys_arr(i_new+1,j_new ,lk )
-
405  + z_phys_arr(i_new,j_new+1,lk ) + z_phys_arr(i_new+1,j_new+1,lk ) );
-
406  Real z_hi = 0.25 * ( z_phys_arr(i_new,j_new ,lk+1) + z_phys_arr(i_new+1,j_new ,lk+1)
-
407  + z_phys_arr(i_new,j_new+1,lk+1) + z_phys_arr(i_new+1,j_new+1,lk+1) );
-
408  if (z_target > z_lo && z_target < z_hi){
-
409  AMREX_ASSERT_WITH_MESSAGE(lk >= d_radius,
-
410  "K index must be larger than averaging radius!");
-
411  amrex::ignore_unused(d_radius);
-
412  k_arr(i,j,k) = lk;
-
413  break;
-
414  }
-
415  }
-
416 
-
417  // Destination cell must be contained on the current process!
-
418  amrex::ignore_unused(gpbx);
-
419  AMREX_ASSERT_WITH_MESSAGE(gpbx.contains(i_arr(i,j,k),j_arr(i,j,k),k_arr(i,j,k)),
-
420  "Query index outside of proc domain!");
-
421  });
-
422  }
-
423  }
-
424 }
+
448 {
+
449  ParmParse pp(m_pp_prefix);
+
450  pp.get("most.zref",m_zref);
+
451 
+
452  // Capture for device
+
453  Real d_zref = m_zref;
+
454  Real d_radius = m_radius;
+
455 
+
456  for (int lev(0); lev < m_maxlev; lev++) {
+
457  int kmax = m_geom[lev].Domain().bigEnd(2);
+
458  const auto dxInv = m_geom[lev].InvCellSizeArray();
+
459  IntVect ng = m_k_indx[lev]->nGrowVect(); ng[2]=0;
+
460  for (MFIter mfi(*m_k_indx[lev], TileNoZ()); mfi.isValid(); ++mfi) {
+
461  Box npbx = mfi.tilebox(IntVect(1,1,0),IntVect(1,1,0));
+
462  Box gpbx = mfi.growntilebox(ng);
+
463  const auto z_phys_arr = m_z_phys_nd[lev]->const_array(mfi);
+
464  auto i_arr = m_i_indx[lev]->array(mfi);
+
465  auto j_arr = m_j_indx[lev]->array(mfi);
+
466  auto k_arr = m_k_indx[lev]->array(mfi);
+
467  ParallelFor(npbx, [=] AMREX_GPU_DEVICE (int i, int j, int k) noexcept
+
468  {
+
469  // Elements of normal vector
+
470  Real met_h_xi = Compute_h_xi_AtCellCenter (i,j,k,dxInv,z_phys_arr);
+
471  Real met_h_eta = Compute_h_eta_AtCellCenter(i,j,k,dxInv,z_phys_arr);
+
472  Real mag = std::sqrt(met_h_xi*met_h_xi + met_h_eta*met_h_eta + 1.0);
+
473 
+
474  // Unit-normal vector scaled by z_ref
+
475  Real delta_x = -met_h_xi/mag * d_zref;
+
476  Real delta_y = -met_h_eta/mag * d_zref;
+
477  Real delta_z = 1.0/mag * d_zref;
+
478 
+
479  // Compute i & j as displacements (no grid stretching)
+
480  int delta_i = static_cast<int>(std::round(delta_x*dxInv[0]));
+
481  int delta_j = static_cast<int>(std::round(delta_y*dxInv[1]));
+
482  int i_new = i + delta_i;
+
483  int j_new = j + delta_j;
+
484  i_arr(i,j,k) = i_new;
+
485  j_arr(i,j,k) = j_new;
+
486 
+
487  // Search for k (grid is stretched in z)
+
488  Real z_bot_face = 0.25 * ( z_phys_arr(i ,j ,k) + z_phys_arr(i+1,j ,k)
+
489  + z_phys_arr(i ,j+1,k) + z_phys_arr(i+1,j+1,k) );
+
490  Real z_target = z_bot_face + delta_z;
+
491  for (int lk(0); lk<=kmax; ++lk) {
+
492  Real z_lo = 0.25 * ( z_phys_arr(i_new,j_new ,lk ) + z_phys_arr(i_new+1,j_new ,lk )
+
493  + z_phys_arr(i_new,j_new+1,lk ) + z_phys_arr(i_new+1,j_new+1,lk ) );
+
494  Real z_hi = 0.25 * ( z_phys_arr(i_new,j_new ,lk+1) + z_phys_arr(i_new+1,j_new ,lk+1)
+
495  + z_phys_arr(i_new,j_new+1,lk+1) + z_phys_arr(i_new+1,j_new+1,lk+1) );
+
496  if (z_target > z_lo && z_target < z_hi){
+
497  AMREX_ASSERT_WITH_MESSAGE(lk >= d_radius,
+
498  "K index must be larger than averaging radius!");
+
499  amrex::ignore_unused(d_radius);
+
500  k_arr(i,j,k) = lk;
+
501  break;
+
502  }
+
503  }
+
504 
+
505  // Destination cell must be contained on the current process!
+
506  amrex::ignore_unused(gpbx);
+
507  AMREX_ASSERT_WITH_MESSAGE(gpbx.contains(i_arr(i,j,k),j_arr(i,j,k),k_arr(i,j,k)),
+
508  "Query index outside of proc domain!");
+
509  });
+
510  }
+
511  }
+
512 }
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real Compute_h_eta_AtCellCenter(const int &i, const int &j, const int &k, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &cellSizeInv, const amrex::Array4< const amrex::Real > &z_nd)
Definition: TerrainMetrics.H:62
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real Compute_h_xi_AtCellCenter(const int &i, const int &j, const int &k, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &cellSizeInv, const amrex::Array4< const amrex::Real > &z_nd)
Definition: TerrainMetrics.H:47
@@ -1341,59 +1363,59 @@

Function to set positions with terrain and normal vector.

-
479 {
-
480  ParmParse pp(m_pp_prefix);
-
481  pp.get("most.zref",m_zref);
-
482 
-
483  // Capture for device
-
484  Real d_zref = m_zref;
-
485 
-
486  for (int lev(0); lev < m_maxlev; lev++) {
-
487  RealVect base;
-
488  const auto dx = m_geom[lev].CellSizeArray();
-
489  const auto dxInv = m_geom[lev].InvCellSizeArray();
-
490  IntVect ng = m_x_pos[lev]->nGrowVect(); ng[2]=0;
-
491  for (MFIter mfi(*m_x_pos[lev], TileNoZ()); mfi.isValid(); ++mfi) {
-
492  Box npbx = mfi.tilebox(IntVect(1,1,0),IntVect(1,1,0));
-
493  Box gpbx = mfi.growntilebox(ng);
-
494  RealBox grb{gpbx,dx.data(),base.dataPtr()};
-
495 
-
496  const auto z_phys_arr = m_z_phys_nd[lev]->const_array(mfi);
-
497  auto x_pos_arr = m_x_pos[lev]->array(mfi);
-
498  auto y_pos_arr = m_y_pos[lev]->array(mfi);
-
499  auto z_pos_arr = m_z_pos[lev]->array(mfi);
-
500  ParallelFor(npbx, [=] AMREX_GPU_DEVICE (int i, int j, int k) noexcept
-
501  {
-
502  // Elements of normal vector
-
503  Real met_h_xi = Compute_h_xi_AtCellCenter (i,j,k,dxInv,z_phys_arr);
-
504  Real met_h_eta = Compute_h_eta_AtCellCenter(i,j,k,dxInv,z_phys_arr);
-
505  Real mag = std::sqrt(met_h_xi*met_h_xi + met_h_eta*met_h_eta + 1.0);
-
506 
-
507  // Unit-normal vector scaled by z_ref
-
508  Real delta_x = -met_h_xi/mag * d_zref;
-
509  Real delta_y = -met_h_eta/mag * d_zref;
-
510  Real delta_z = 1.0/mag * d_zref;
-
511 
-
512  // Position of the current node (indx:0,0,1)
-
513  Real x0 = ((Real) i + 0.5) * dx[0];
-
514  Real y0 = ((Real) j + 0.5) * dx[1];
-
515 
-
516  // Final position at end of vector
-
517  x_pos_arr(i,j,k) = x0 + delta_x;
-
518  y_pos_arr(i,j,k) = y0 + delta_y;
-
519  Real z_bot_face = 0.25 * ( z_phys_arr(i ,j ,k) + z_phys_arr(i+1,j ,k)
-
520  + z_phys_arr(i ,j+1,k) + z_phys_arr(i+1,j+1,k) );
-
521  z_pos_arr(i,j,k) = z_bot_face + delta_z;
-
522 
-
523  // Destination position must be contained on the current process!
-
524  Real pos[] = {x_pos_arr(i,j,k),y_pos_arr(i,j,k),0.5*dx[2]};
-
525  amrex::ignore_unused(pos);
-
526  AMREX_ASSERT_WITH_MESSAGE( grb.contains(&pos[0]),
-
527  "Query point outside of proc domain!");
-
528  });
-
529  }
-
530  }
-
531 }
+
567 {
+
568  ParmParse pp(m_pp_prefix);
+
569  pp.get("most.zref",m_zref);
+
570 
+
571  // Capture for device
+
572  Real d_zref = m_zref;
+
573 
+
574  for (int lev(0); lev < m_maxlev; lev++) {
+
575  RealVect base;
+
576  const auto dx = m_geom[lev].CellSizeArray();
+
577  const auto dxInv = m_geom[lev].InvCellSizeArray();
+
578  IntVect ng = m_x_pos[lev]->nGrowVect(); ng[2]=0;
+
579  for (MFIter mfi(*m_x_pos[lev], TileNoZ()); mfi.isValid(); ++mfi) {
+
580  Box npbx = mfi.tilebox(IntVect(1,1,0),IntVect(1,1,0));
+
581  Box gpbx = mfi.growntilebox(ng);
+
582  RealBox grb{gpbx,dx.data(),base.dataPtr()};
+
583 
+
584  const auto z_phys_arr = m_z_phys_nd[lev]->const_array(mfi);
+
585  auto x_pos_arr = m_x_pos[lev]->array(mfi);
+
586  auto y_pos_arr = m_y_pos[lev]->array(mfi);
+
587  auto z_pos_arr = m_z_pos[lev]->array(mfi);
+
588  ParallelFor(npbx, [=] AMREX_GPU_DEVICE (int i, int j, int k) noexcept
+
589  {
+
590  // Elements of normal vector
+
591  Real met_h_xi = Compute_h_xi_AtCellCenter (i,j,k,dxInv,z_phys_arr);
+
592  Real met_h_eta = Compute_h_eta_AtCellCenter(i,j,k,dxInv,z_phys_arr);
+
593  Real mag = std::sqrt(met_h_xi*met_h_xi + met_h_eta*met_h_eta + 1.0);
+
594 
+
595  // Unit-normal vector scaled by z_ref
+
596  Real delta_x = -met_h_xi/mag * d_zref;
+
597  Real delta_y = -met_h_eta/mag * d_zref;
+
598  Real delta_z = 1.0/mag * d_zref;
+
599 
+
600  // Position of the current node (indx:0,0,1)
+
601  Real x0 = ((Real) i + 0.5) * dx[0];
+
602  Real y0 = ((Real) j + 0.5) * dx[1];
+
603 
+
604  // Final position at end of vector
+
605  x_pos_arr(i,j,k) = x0 + delta_x;
+
606  y_pos_arr(i,j,k) = y0 + delta_y;
+
607  Real z_bot_face = 0.25 * ( z_phys_arr(i ,j ,k) + z_phys_arr(i+1,j ,k)
+
608  + z_phys_arr(i ,j+1,k) + z_phys_arr(i+1,j+1,k) );
+
609  z_pos_arr(i,j,k) = z_bot_face + delta_z;
+
610 
+
611  // Destination position must be contained on the current process!
+
612  Real pos[] = {x_pos_arr(i,j,k),y_pos_arr(i,j,k),0.5*dx[2]};
+
613  amrex::ignore_unused(pos);
+
614  AMREX_ASSERT_WITH_MESSAGE( grb.contains(&pos[0]),
+
615  "Query point outside of proc domain!");
+
616  });
+
617  }
+
618  }
+
619 }
Here is the call graph for this function:
@@ -1424,43 +1446,43 @@

Function to compute normalization for plane average.

-
199 {
-
200  // Cells per plane and temp avg storage
-
201  m_ncell_plane.resize(m_maxlev);
-
202  m_plane_average.resize(m_maxlev);
-
203 
-
204  for (int lev(0); lev < m_maxlev; lev++) {
-
205  // Num components, plane avg, cells per plane
-
206  Array<int,AMREX_SPACEDIM> is_per = {0,0,0};
-
207  for (int idim(0); idim < AMREX_SPACEDIM-1; ++idim) {
-
208  if (m_geom[lev].isPeriodic(idim)) is_per[idim] = 1;
-
209  }
-
210  Box domain = m_geom[lev].Domain();
-
211  m_ncell_plane[lev].resize(m_navg);
-
212  m_plane_average[lev].resize(m_navg);
-
213  for (int iavg(0); iavg < m_navg; ++iavg) {
-
214  // Convert domain to current index type
-
215  IndexType ixt = m_averages[lev][iavg]->boxArray().ixType();
-
216  domain.convert(ixt);
-
217  IntVect dom_lo(domain.loVect());
-
218  IntVect dom_hi(domain.hiVect());
-
219 
-
220  m_plane_average[lev][iavg] = 0.0;
-
221 
-
222  m_ncell_plane[lev][iavg] = 1;
-
223  for (int idim(0); idim < AMREX_SPACEDIM; ++idim) {
-
224  if (idim != 2) {
-
225  if (ixt.nodeCentered(idim) && is_per[idim]) {
-
226  m_ncell_plane[lev][iavg] *= (dom_hi[idim] - dom_lo[idim]);
-
227  } else {
-
228  m_ncell_plane[lev][iavg] *= (dom_hi[idim] - dom_lo[idim] + 1);
-
229  }
-
230  }
-
231  } // idim
-
232  } // iavg
-
233  } // lev
-
234 
-
235 }
+
287 {
+
288  // Cells per plane and temp avg storage
+
289  m_ncell_plane.resize(m_maxlev);
+
290  m_plane_average.resize(m_maxlev);
+
291 
+
292  for (int lev(0); lev < m_maxlev; lev++) {
+
293  // Num components, plane avg, cells per plane
+
294  Array<int,AMREX_SPACEDIM> is_per = {0,0,0};
+
295  for (int idim(0); idim < AMREX_SPACEDIM-1; ++idim) {
+
296  if (m_geom[lev].isPeriodic(idim)) is_per[idim] = 1;
+
297  }
+
298  Box domain = m_geom[lev].Domain();
+
299  m_ncell_plane[lev].resize(m_navg);
+
300  m_plane_average[lev].resize(m_navg);
+
301  for (int iavg(0); iavg < m_navg; ++iavg) {
+
302  // Convert domain to current index type
+
303  IndexType ixt = m_averages[lev][iavg]->boxArray().ixType();
+
304  domain.convert(ixt);
+
305  IntVect dom_lo(domain.loVect());
+
306  IntVect dom_hi(domain.hiVect());
+
307 
+
308  m_plane_average[lev][iavg] = 0.0;
+
309 
+
310  m_ncell_plane[lev][iavg] = 1;
+
311  for (int idim(0); idim < AMREX_SPACEDIM; ++idim) {
+
312  if (idim != 2) {
+
313  if (ixt.nodeCentered(idim) && is_per[idim]) {
+
314  m_ncell_plane[lev][iavg] *= (dom_hi[idim] - dom_lo[idim]);
+
315  } else {
+
316  m_ncell_plane[lev][iavg] *= (dom_hi[idim] - dom_lo[idim] + 1);
+
317  }
+
318  }
+
319  } // idim
+
320  } // iavg
+
321  } // lev
+
322 
+
323 }

@@ -1486,8 +1508,103 @@

-
48  {m_ncell_region = (2 * m_radius + 1) * (2 * m_radius + 1) * (2 * m_radius + 1);}
+
51  {m_ncell_region = (2 * m_radius + 1) * (2 * m_radius + 1) * (2 * m_radius + 1);}
+
+

+ +

◆ set_rotated_fields()

+ +
+
+

 
void update_field_ptrs (int lev, amrex::Vector< amrex::Vector< amrex::MultiFab >> &vars_old, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Theta_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Qv_prim)
 
void set_rotated_fields (int lev)
 
void set_plane_normalization ()
 
void set_region_normalization ()
 
amrex::Vector< amrex::MultiFab * > m_z_phys_nd
 
int m_nvar {4}
int m_nvar {5}
 
int m_navg {5}
 
 
int m_policy {0}
 
bool m_rotate {false}
 
amrex::Real m_zref {10.0}
 
std::string m_pp_prefix {"erf"}
 
amrex::Vector< amrex::Vector< std::unique_ptr< amrex::MultiFab > > > m_averages
 
amrex::Vector< amrex::Vector< std::unique_ptr< amrex::MultiFab > > > m_rot_fields
 
amrex::Vector< amrex::Vector< int > > m_ncell_plane
 
amrex::Vector< amrex::Vector< amrex::Real > > m_plane_average
+ + + + + + + +
void MOSTAverage::set_rotated_fields (int lev)
+
+

Function to set the rotated velocities.

+
228 {
+
229  // Peel back the level
+
230  auto& fields = m_fields[lev];
+
231  auto& rot_fields = m_rot_fields[lev];
+
232  auto z_phys_nd = m_z_phys_nd[lev];
+
233 
+
234  // Inverse grid size
+
235  const auto dxInv = m_geom[lev].InvCellSizeArray();
+
236 
+
237  // Single MFIter over CC data
+
238  int imf_cc = 2;
+
239 
+
240  // Populate rotated U & V for terrain
+
241 #ifdef _OPENMP
+
242 #pragma omp parallel if (Gpu::notInLaunchRegion())
+
243 #endif
+
244  for (MFIter mfi(*fields[imf_cc], TileNoZ()); mfi.isValid(); ++mfi) {
+
245  Box ubx = mfi.tilebox(IntVect(1,0,0));
+
246  Box vbx = mfi.tilebox(IntVect(0,1,0));
+
247 
+
248  const Array4<const Real>& z_phys_arr = z_phys_nd->const_array(mfi);
+
249 
+
250  const Array4<const Real>& u_arr = fields[0]->const_array(mfi);
+
251  const Array4<const Real>& v_arr = fields[1]->const_array(mfi);
+
252  const Array4<const Real>& w_arr = fields[4]->const_array(mfi);
+
253 
+
254  const Array4<Real>& u_rot_arr = rot_fields[0]->array(mfi);
+
255  const Array4<Real>& v_rot_arr = rot_fields[1]->array(mfi);
+
256 
+
257  // U rotated magnitude
+
258  ParallelFor(ubx, [=] AMREX_GPU_DEVICE (int i, int j, int k) noexcept
+
259  {
+
260  // Elements of first tangent vector
+
261  Real met_h_xi = Compute_h_xi_AtIface(i,j,k,dxInv,z_phys_arr);
+
262  u_rot_arr(i,j,k) = (u_arr(i,j,k) + met_h_xi*w_arr(i,j,k))
+
263  / std::sqrt(met_h_xi*met_h_xi + 1.0);
+
264  });
+
265 
+
266  // V rotated magnitude
+
267  ParallelFor(vbx, [=] AMREX_GPU_DEVICE (int i, int j, int k) noexcept
+
268  {
+
269  // Elements of second tangent vector
+
270  Real met_h_eta = Compute_h_eta_AtJface(i,j,k,dxInv,z_phys_arr);
+
271  v_rot_arr(i,j,k) = (v_arr(i,j,k) + met_h_eta*w_arr(i,j,k))
+
272  / std::sqrt(met_h_eta*met_h_eta + 1.0);
+
273  });
+
274  }
+
275 
+
276  // Direct copy of other scalar variables
+
277  MultiFab::Copy(*rot_fields[2],*fields[2],0,0,1,rot_fields[2]->nGrowVect());
+
278  if (fields[3]) MultiFab::Copy(*rot_fields[3],*fields[3],0,0,1,rot_fields[3]->nGrowVect());
+
279 }
+
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real Compute_h_xi_AtIface(const int &i, const int &j, const int &k, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &cellSizeInv, const amrex::Array4< const amrex::Real > &z_nd)
Definition: TerrainMetrics.H:94
+
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real Compute_h_eta_AtJface(const int &i, const int &j, const int &k, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &cellSizeInv, const amrex::Array4< const amrex::Real > &z_nd)
Definition: TerrainMetrics.H:151
+
+

Referenced by compute_averages().

+
+Here is the call graph for this function:
+
+
+ + + + + + +
+
+Here is the caller graph for this function:
+
+
+ + + + +
+
@@ -1505,44 +1622,44 @@

Function to set positions with terrain and e_z vector.

-
433 {
-
434  ParmParse pp(m_pp_prefix);
-
435  pp.get("most.zref",m_zref);
-
436 
-
437  // Capture for device
-
438  Real d_zref = m_zref;
-
439 
-
440  for (int lev(0); lev < m_maxlev; lev++) {
-
441  RealVect base;
-
442  const auto dx = m_geom[lev].CellSizeArray();
-
443  IntVect ng = m_x_pos[lev]->nGrowVect(); ng[2]=0;
-
444  for (MFIter mfi(*m_x_pos[lev], TileNoZ()); mfi.isValid(); ++mfi) {
-
445  Box npbx = mfi.tilebox(IntVect(1,1,0),IntVect(1,1,0));
-
446  Box gpbx = mfi.growntilebox(ng);
-
447  RealBox grb{gpbx,dx.data(),base.dataPtr()};
-
448 
-
449  const auto z_phys_arr = m_z_phys_nd[lev]->const_array(mfi);
-
450  auto x_pos_arr = m_x_pos[lev]->array(mfi);
-
451  auto y_pos_arr = m_y_pos[lev]->array(mfi);
-
452  auto z_pos_arr = m_z_pos[lev]->array(mfi);
-
453  ParallelFor(npbx, [=] AMREX_GPU_DEVICE (int i, int j, int k) noexcept
-
454  {
-
455  // Final position at end of vector
-
456  x_pos_arr(i,j,k) = ((Real) i + 0.5) * dx[0];
-
457  y_pos_arr(i,j,k) = ((Real) j + 0.5) * dx[1];
-
458  Real z_bot_face = 0.25 * ( z_phys_arr(i ,j ,k) + z_phys_arr(i+1,j ,k)
-
459  + z_phys_arr(i ,j+1,k) + z_phys_arr(i+1,j+1,k) );
-
460  z_pos_arr(i,j,k) = z_bot_face + d_zref;
-
461 
-
462  // Destination position must be contained on the current process!
-
463  Real pos[] = {x_pos_arr(i,j,k),y_pos_arr(i,j,k),0.5*dx[2]};
-
464  amrex::ignore_unused(pos);
-
465  AMREX_ASSERT_WITH_MESSAGE( grb.contains(&pos[0]),
-
466  "Query point outside of proc domain!");
-
467  });
-
468  }
-
469  }
-
470 }
+
521 {
+
522  ParmParse pp(m_pp_prefix);
+
523  pp.get("most.zref",m_zref);
+
524 
+
525  // Capture for device
+
526  Real d_zref = m_zref;
+
527 
+
528  for (int lev(0); lev < m_maxlev; lev++) {
+
529  RealVect base;
+
530  const auto dx = m_geom[lev].CellSizeArray();
+
531  IntVect ng = m_x_pos[lev]->nGrowVect(); ng[2]=0;
+
532  for (MFIter mfi(*m_x_pos[lev], TileNoZ()); mfi.isValid(); ++mfi) {
+
533  Box npbx = mfi.tilebox(IntVect(1,1,0),IntVect(1,1,0));
+
534  Box gpbx = mfi.growntilebox(ng);
+
535  RealBox grb{gpbx,dx.data(),base.dataPtr()};
+
536 
+
537  const auto z_phys_arr = m_z_phys_nd[lev]->const_array(mfi);
+
538  auto x_pos_arr = m_x_pos[lev]->array(mfi);
+
539  auto y_pos_arr = m_y_pos[lev]->array(mfi);
+
540  auto z_pos_arr = m_z_pos[lev]->array(mfi);
+
541  ParallelFor(npbx, [=] AMREX_GPU_DEVICE (int i, int j, int k) noexcept
+
542  {
+
543  // Final position at end of vector
+
544  x_pos_arr(i,j,k) = ((Real) i + 0.5) * dx[0];
+
545  y_pos_arr(i,j,k) = ((Real) j + 0.5) * dx[1];
+
546  Real z_bot_face = 0.25 * ( z_phys_arr(i ,j ,k) + z_phys_arr(i+1,j ,k)
+
547  + z_phys_arr(i ,j+1,k) + z_phys_arr(i+1,j+1,k) );
+
548  z_pos_arr(i,j,k) = z_bot_face + d_zref;
+
549 
+
550  // Destination position must be contained on the current process!
+
551  Real pos[] = {x_pos_arr(i,j,k),y_pos_arr(i,j,k),0.5*dx[2]};
+
552  amrex::ignore_unused(pos);
+
553  AMREX_ASSERT_WITH_MESSAGE( grb.contains(&pos[0]),
+
554  "Query point outside of proc domain!");
+
555  });
+
556  }
+
557  }
+
558 }
Here is the call graph for this function:
@@ -1645,51 +1762,51 @@

114  {
-
115  // Search to get z/k
-
116  bool found = false;
-
117  amrex::Real zval= 0.0;
-
118  int kmax = ubound(z_arr).z;
-
119  int i_new = (int) (xp * dxi[0] - 0.5);
-
120  int j_new = (int) (yp * dxi[1] - 0.5);
-
121  amrex::Real z_target = zp;
-
122  for (int lk(0); lk<kmax; ++lk) {
-
123  amrex::Real z_lo = 0.25 * ( z_arr(i_new,j_new ,lk ) + z_arr(i_new+1,j_new ,lk )
-
124  + z_arr(i_new,j_new+1,lk ) + z_arr(i_new+1,j_new+1,lk ) );
-
125  amrex::Real z_hi = 0.25 * ( z_arr(i_new,j_new ,lk+1) + z_arr(i_new+1,j_new ,lk+1)
-
126  + z_arr(i_new,j_new+1,lk+1) + z_arr(i_new+1,j_new+1,lk+1) );
-
127  if (z_target > z_lo && z_target < z_hi){
-
128  found = true;
-
129  zval = (amrex::Real) lk + ((z_target - z_lo) / (z_hi - z_lo)) + 0.5;
-
130  break;
-
131  }
-
132  }
-
133 
-
134  amrex::ignore_unused(found);
-
135  AMREX_ASSERT_WITH_MESSAGE(found, "MOSTAverage: Height above terrain not found, try increasing z_ref!");
+
117  {
+
118  // Search to get z/k
+
119  bool found = false;
+
120  amrex::Real zval= 0.0;
+
121  int kmax = ubound(z_arr).z;
+
122  int i_new = (int) (xp * dxi[0] - 0.5);
+
123  int j_new = (int) (yp * dxi[1] - 0.5);
+
124  amrex::Real z_target = zp;
+
125  for (int lk(0); lk<kmax; ++lk) {
+
126  amrex::Real z_lo = 0.25 * ( z_arr(i_new,j_new ,lk ) + z_arr(i_new+1,j_new ,lk )
+
127  + z_arr(i_new,j_new+1,lk ) + z_arr(i_new+1,j_new+1,lk ) );
+
128  amrex::Real z_hi = 0.25 * ( z_arr(i_new,j_new ,lk+1) + z_arr(i_new+1,j_new ,lk+1)
+
129  + z_arr(i_new,j_new+1,lk+1) + z_arr(i_new+1,j_new+1,lk+1) );
+
130  if (z_target > z_lo && z_target < z_hi){
+
131  found = true;
+
132  zval = (amrex::Real) lk + ((z_target - z_lo) / (z_hi - z_lo)) + 0.5;
+
133  break;
+
134  }
+
135  }
136 
-
137  const amrex::RealVect lx((xp - plo[0])*dxi[0] + 0.5,
-
138  (yp - plo[1])*dxi[1] + 0.5,
-
139  zval);
-
140 
-
141  const amrex::IntVect ijk = lx.floor();
-
142 
-
143  int i = ijk[0]; int j = ijk[1]; int k = ijk[2];
-
144 
-
145  // Weights
-
146  const amrex::RealVect sx_hi = lx - ijk;
-
147  const amrex::RealVect sx_lo = 1.0 - sx_hi;
-
148 
-
149  for (int n = 0; n < interp_comp; n++)
-
150  interp_vals[n] = sx_lo[0]*sx_lo[1]*sx_lo[2]*interp_array(i-1, j-1, k-1,n) +
-
151  sx_lo[0]*sx_lo[1]*sx_hi[2]*interp_array(i-1, j-1, k ,n) +
-
152  sx_lo[0]*sx_hi[1]*sx_lo[2]*interp_array(i-1, j , k-1,n) +
-
153  sx_lo[0]*sx_hi[1]*sx_hi[2]*interp_array(i-1, j , k ,n) +
-
154  sx_hi[0]*sx_lo[1]*sx_lo[2]*interp_array(i , j-1, k-1,n) +
-
155  sx_hi[0]*sx_lo[1]*sx_hi[2]*interp_array(i , j-1, k ,n) +
-
156  sx_hi[0]*sx_hi[1]*sx_lo[2]*interp_array(i , j , k-1,n) +
-
157  sx_hi[0]*sx_hi[1]*sx_hi[2]*interp_array(i , j , k ,n);
-
158  }
+
137  amrex::ignore_unused(found);
+
138  AMREX_ASSERT_WITH_MESSAGE(found, "MOSTAverage: Height above terrain not found, try increasing z_ref!");
+
139 
+
140  const amrex::RealVect lx((xp - plo[0])*dxi[0] + 0.5,
+
141  (yp - plo[1])*dxi[1] + 0.5,
+
142  zval);
+
143 
+
144  const amrex::IntVect ijk = lx.floor();
+
145 
+
146  int i = ijk[0]; int j = ijk[1]; int k = ijk[2];
+
147 
+
148  // Weights
+
149  const amrex::RealVect sx_hi = lx - ijk;
+
150  const amrex::RealVect sx_lo = 1.0 - sx_hi;
+
151 
+
152  for (int n = 0; n < interp_comp; n++)
+
153  interp_vals[n] = sx_lo[0]*sx_lo[1]*sx_lo[2]*interp_array(i-1, j-1, k-1,n) +
+
154  sx_lo[0]*sx_lo[1]*sx_hi[2]*interp_array(i-1, j-1, k ,n) +
+
155  sx_lo[0]*sx_hi[1]*sx_lo[2]*interp_array(i-1, j , k-1,n) +
+
156  sx_lo[0]*sx_hi[1]*sx_hi[2]*interp_array(i-1, j , k ,n) +
+
157  sx_hi[0]*sx_lo[1]*sx_lo[2]*interp_array(i , j-1, k-1,n) +
+
158  sx_hi[0]*sx_lo[1]*sx_hi[2]*interp_array(i , j-1, k ,n) +
+
159  sx_hi[0]*sx_hi[1]*sx_lo[2]*interp_array(i , j , k-1,n) +
+
160  sx_hi[0]*sx_hi[1]*sx_hi[2]*interp_array(i , j , k ,n);
+
161  }

Referenced by compute_plane_averages(), and compute_region_averages().

@@ -1752,13 +1869,15 @@

185 {
-
186  m_fields[lev][0] = &vars_old[lev][Vars::xvel];
-
187  m_fields[lev][1] = &vars_old[lev][Vars::yvel];
-
188  m_fields[lev][2] = Theta_prim[lev].get();
-
189  m_fields[lev][3] = Qv_prim[lev].get();
-
190 }
+
213 {
+
214  m_fields[lev][0] = &vars_old[lev][Vars::xvel];
+
215  m_fields[lev][1] = &vars_old[lev][Vars::yvel];
+
216  m_fields[lev][2] = Theta_prim[lev].get();
+
217  m_fields[lev][3] = Qv_prim[lev].get();
+
218  m_fields[lev][4] = &vars_old[lev][Vars::zvel];
+
219 }
@ xvel
Definition: IndexDefines.H:100
+
@ zvel
Definition: IndexDefines.H:102
@ yvel
Definition: IndexDefines.H:101

Referenced by ABLMost::update_mac_ptrs().

@@ -1796,37 +1915,37 @@

1097 {
-
1098  // Peel back the level
-
1099  auto& averages = m_averages[lev];
-
1100 
-
1101  int navg = m_navg - 1;
-
1102 
-
1103  std::ofstream ofile;
-
1104  ofile.open ("MOST_averages.txt");
-
1105  ofile << "Averages computed via MOSTAverages class:\n";
-
1106 
-
1107  for (MFIter mfi(*averages[navg], TileNoZ()); mfi.isValid(); ++mfi) {
-
1108  Box bx = mfi.tilebox(); bx.setBig(2,0);
-
1109  int il = bx.smallEnd(0); int iu = bx.bigEnd(0);
-
1110  int jl = bx.smallEnd(1); int ju = bx.bigEnd(1);
-
1111 
-
1112  for (int j(jl); j <= ju; ++j) {
-
1113  for (int i(il); i <= iu; ++i) {
-
1114  ofile << "(I,J): " << "(" << i << "," << j << ")" << "\n";
-
1115  int k = 0;
-
1116  for (int iavg(0); iavg <= navg; ++iavg) {
-
1117  auto mf_arr = averages[iavg]->array(mfi);
-
1118  ofile << "iavg val: "
-
1119  << iavg << ' '
-
1120  << mf_arr(i,j,k) << "\n";
-
1121  }
-
1122  ofile << "\n";
-
1123  }
-
1124  }
-
1125  }
-
1126  ofile.close();
-
1127 }
+
1195 {
+
1196  // Peel back the level
+
1197  auto& averages = m_averages[lev];
+
1198 
+
1199  int navg = m_navg - 1;
+
1200 
+
1201  std::ofstream ofile;
+
1202  ofile.open ("MOST_averages.txt");
+
1203  ofile << "Averages computed via MOSTAverages class:\n";
+
1204 
+
1205  for (MFIter mfi(*averages[navg], TileNoZ()); mfi.isValid(); ++mfi) {
+
1206  Box bx = mfi.tilebox(); bx.setBig(2,0);
+
1207  int il = bx.smallEnd(0); int iu = bx.bigEnd(0);
+
1208  int jl = bx.smallEnd(1); int ju = bx.bigEnd(1);
+
1209 
+
1210  for (int j(jl); j <= ju; ++j) {
+
1211  for (int i(il); i <= iu; ++i) {
+
1212  ofile << "(I,J): " << "(" << i << "," << j << ")" << "\n";
+
1213  int k = 0;
+
1214  for (int iavg(0); iavg <= navg; ++iavg) {
+
1215  auto mf_arr = averages[iavg]->array(mfi);
+
1216  ofile << "iavg val: "
+
1217  << iavg << ' '
+
1218  << mf_arr(i,j,k) << "\n";
+
1219  }
+
1220  ofile << "\n";
+
1221  }
+
1222  }
+
1223  }
+
1224  ofile.close();
+
1225 }
Here is the call graph for this function:
@@ -1861,36 +1980,36 @@

979 {
-
980  // Peel back the level
-
981  auto& averages = m_averages[lev];
-
982  auto& k_indx = m_k_indx[lev];
-
983 
-
984  int navg = m_navg - 1;
-
985 
-
986  std::ofstream ofile;
-
987  ofile.open ("MOST_k_indices.txt");
-
988  ofile << "K indices used to compute averages via MOSTAverages class:\n";
-
989 
-
990  for (MFIter mfi(*averages[navg], TileNoZ()); mfi.isValid(); ++mfi) {
-
991  Box bx = mfi.tilebox(); bx.setBig(2,0);
-
992  int il = bx.smallEnd(0); int iu = bx.bigEnd(0);
-
993  int jl = bx.smallEnd(1); int ju = bx.bigEnd(1);
-
994 
-
995  auto k_arr = k_indx->array(mfi);
-
996 
-
997  for (int j(jl); j <= ju; ++j) {
-
998  for (int i(il); i <= iu; ++i) {
-
999  ofile << "(I,J): " << "(" << i << "," << j << ")" << "\n";
-
1000  int k = 0;
-
1001  ofile << "K_ind: "
-
1002  << k_arr(i,j,k) << "\n";
-
1003  ofile << "\n";
-
1004  }
-
1005  }
-
1006  }
-
1007  ofile.close();
-
1008 }
+
1077 {
+
1078  // Peel back the level
+
1079  auto& averages = m_averages[lev];
+
1080  auto& k_indx = m_k_indx[lev];
+
1081 
+
1082  int navg = m_navg - 1;
+
1083 
+
1084  std::ofstream ofile;
+
1085  ofile.open ("MOST_k_indices.txt");
+
1086  ofile << "K indices used to compute averages via MOSTAverages class:\n";
+
1087 
+
1088  for (MFIter mfi(*averages[navg], TileNoZ()); mfi.isValid(); ++mfi) {
+
1089  Box bx = mfi.tilebox(); bx.setBig(2,0);
+
1090  int il = bx.smallEnd(0); int iu = bx.bigEnd(0);
+
1091  int jl = bx.smallEnd(1); int ju = bx.bigEnd(1);
+
1092 
+
1093  auto k_arr = k_indx->array(mfi);
+
1094 
+
1095  for (int j(jl); j <= ju; ++j) {
+
1096  for (int i(il); i <= iu; ++i) {
+
1097  ofile << "(I,J): " << "(" << i << "," << j << ")" << "\n";
+
1098  int k = 0;
+
1099  ofile << "K_ind: "
+
1100  << k_arr(i,j,k) << "\n";
+
1101  ofile << "\n";
+
1102  }
+
1103  }
+
1104  }
+
1105  ofile.close();
+
1106 }
Here is the call graph for this function:
@@ -1925,45 +2044,45 @@

1018 {
-
1019  // Peel back the level
-
1020  auto& averages = m_averages[lev];
-
1021  auto& k_indx = m_k_indx[lev];
-
1022  auto& j_indx = m_j_indx[lev];
-
1023  auto& i_indx = m_i_indx[lev];
-
1024 
-
1025  int navg = m_navg - 1;
-
1026 
-
1027  std::ofstream ofile;
-
1028  ofile.open ("MOST_ijk_indices.txt");
-
1029  ofile << "IJK indices used to compute averages via MOSTAverages class:\n";
-
1030 
-
1031  for (MFIter mfi(*averages[navg], TileNoZ()); mfi.isValid(); ++mfi) {
-
1032  Box bx = mfi.tilebox(); bx.setBig(2,0);
-
1033  int il = bx.smallEnd(0); int iu = bx.bigEnd(0);
-
1034  int jl = bx.smallEnd(1); int ju = bx.bigEnd(1);
-
1035 
-
1036  auto k_arr = k_indx->array(mfi);
-
1037  auto j_arr = j_indx ? j_indx->array(mfi) : Array4<int> {};
-
1038  auto i_arr = i_indx ? i_indx->array(mfi) : Array4<int> {};
-
1039 
-
1040  for (int j(jl); j <= ju; ++j) {
-
1041  for (int i(il); i <= iu; ++i) {
-
1042  ofile << "(I1,J1,K1): " << "(" << i << "," << j << "," << 0 << ")" << "\n";
-
1043 
-
1044  int k = 0;
-
1045  int km = k_arr(i,j,k);
-
1046  int jm = j_arr ? j_arr(i,j,k) : j;
-
1047  int im = i_arr ? i_arr(i,j,k) : i;
-
1048 
-
1049  ofile << "(I2,J2,K2): "
-
1050  << "(" << im << "," << jm << "," << km << ")" << "\n";
-
1051  ofile << "\n";
-
1052  }
-
1053  }
-
1054  }
-
1055  ofile.close();
-
1056 }
+
1116 {
+
1117  // Peel back the level
+
1118  auto& averages = m_averages[lev];
+
1119  auto& k_indx = m_k_indx[lev];
+
1120  auto& j_indx = m_j_indx[lev];
+
1121  auto& i_indx = m_i_indx[lev];
+
1122 
+
1123  int navg = m_navg - 1;
+
1124 
+
1125  std::ofstream ofile;
+
1126  ofile.open ("MOST_ijk_indices.txt");
+
1127  ofile << "IJK indices used to compute averages via MOSTAverages class:\n";
+
1128 
+
1129  for (MFIter mfi(*averages[navg], TileNoZ()); mfi.isValid(); ++mfi) {
+
1130  Box bx = mfi.tilebox(); bx.setBig(2,0);
+
1131  int il = bx.smallEnd(0); int iu = bx.bigEnd(0);
+
1132  int jl = bx.smallEnd(1); int ju = bx.bigEnd(1);
+
1133 
+
1134  auto k_arr = k_indx->array(mfi);
+
1135  auto j_arr = j_indx ? j_indx->array(mfi) : Array4<int> {};
+
1136  auto i_arr = i_indx ? i_indx->array(mfi) : Array4<int> {};
+
1137 
+
1138  for (int j(jl); j <= ju; ++j) {
+
1139  for (int i(il); i <= iu; ++i) {
+
1140  ofile << "(I1,J1,K1): " << "(" << i << "," << j << "," << 0 << ")" << "\n";
+
1141 
+
1142  int k = 0;
+
1143  int km = k_arr(i,j,k);
+
1144  int jm = j_arr ? j_arr(i,j,k) : j;
+
1145  int im = i_arr ? i_arr(i,j,k) : i;
+
1146 
+
1147  ofile << "(I2,J2,K2): "
+
1148  << "(" << im << "," << jm << "," << km << ")" << "\n";
+
1149  ofile << "\n";
+
1150  }
+
1151  }
+
1152  }
+
1153  ofile.close();
+
1154 }
Here is the call graph for this function:
@@ -2009,27 +2128,27 @@

1067 {
-
1068  // Peel back the level
-
1069  auto& x_pos_mf = m_x_pos[lev];
-
1070  auto& z_pos_mf = m_z_pos[lev];
-
1071 
-
1072  std::ofstream ofile;
-
1073  ofile.open ("MOST_xz_positions.txt");
-
1074 
-
1075  for (MFIter mfi(*x_pos_mf, TileNoZ()); mfi.isValid(); ++mfi) {
-
1076  Box bx = mfi.tilebox(); bx.setBig(2,0);
-
1077  int il = bx.smallEnd(0); int iu = bx.bigEnd(0);
-
1078 
-
1079  auto x_pos_arr = x_pos_mf->array(mfi);
-
1080  auto z_pos_arr = z_pos_mf->array(mfi);
-
1081 
-
1082  int k = 0;
-
1083  for (int i(il); i <= iu; ++i)
-
1084  ofile << x_pos_arr(i,j,k) << ' ' << z_pos_arr(i,j,k) << "\n";
-
1085  }
-
1086  ofile.close();
-
1087 }
+
1165 {
+
1166  // Peel back the level
+
1167  auto& x_pos_mf = m_x_pos[lev];
+
1168  auto& z_pos_mf = m_z_pos[lev];
+
1169 
+
1170  std::ofstream ofile;
+
1171  ofile.open ("MOST_xz_positions.txt");
+
1172 
+
1173  for (MFIter mfi(*x_pos_mf, TileNoZ()); mfi.isValid(); ++mfi) {
+
1174  Box bx = mfi.tilebox(); bx.setBig(2,0);
+
1175  int il = bx.smallEnd(0); int iu = bx.bigEnd(0);
+
1176 
+
1177  auto x_pos_arr = x_pos_mf->array(mfi);
+
1178  auto z_pos_arr = z_pos_mf->array(mfi);
+
1179 
+
1180  int k = 0;
+
1181  for (int i(il); i <= iu; ++i)
+
1182  ofile << x_pos_arr(i,j,k) << ' ' << z_pos_arr(i,j,k) << "\n";
+
1183  }
+
1184  ofile.close();
+
1185 }
Here is the call graph for this function:

@@ -2159,7 +2278,7 @@

-

Referenced by compute_plane_averages(), compute_region_averages(), set_k_indices_N(), set_k_indices_T(), set_norm_indices_T(), set_norm_positions_T(), set_plane_normalization(), and set_z_positions_T().

+

Referenced by compute_plane_averages(), compute_region_averages(), set_k_indices_N(), set_k_indices_T(), set_norm_indices_T(), set_norm_positions_T(), set_plane_normalization(), set_rotated_fields(), and set_z_positions_T().

@@ -2411,7 +2530,7 @@

- +
int MOSTAverage::m_nvar {4}int MOSTAverage::m_nvar {5}
@@ -2519,6 +2638,54 @@

Referenced by compute_region_averages(), set_k_indices_N(), set_k_indices_T(), set_norm_indices_T(), and set_region_normalization().

+

+

+ +

◆ m_rot_fields

+ +
+
+ + + + + +
+ + + + +
amrex::Vector<amrex::Vector<std::unique_ptr<amrex::MultiFab> > > MOSTAverage::m_rot_fields
+
+protected
+
+
+ +

◆ m_rotate

+ +
+
+ + + + + +
+ + + + +
bool MOSTAverage::m_rotate {false}
+
+protected
+
@@ -2659,7 +2826,7 @@

-

Referenced by compute_plane_averages(), compute_region_averages(), set_k_indices_T(), set_norm_indices_T(), set_norm_positions_T(), and set_z_positions_T().

+

Referenced by compute_plane_averages(), compute_region_averages(), set_k_indices_T(), set_norm_indices_T(), set_norm_positions_T(), set_rotated_fields(), and set_z_positions_T().

diff --git a/classMOSTAverage.js b/classMOSTAverage.js index 7e05449d91..d82c85b6c0 100644 --- a/classMOSTAverage.js +++ b/classMOSTAverage.js @@ -17,6 +17,7 @@ var classMOSTAverage = [ "set_norm_positions_T", "classMOSTAverage.html#a697396705fddae5c919c7e4020cf20b2", null ], [ "set_plane_normalization", "classMOSTAverage.html#a5a0413a85da2e6a13f21cc875c8295d0", null ], [ "set_region_normalization", "classMOSTAverage.html#a1eafe515fb0a3fc673d604b854a3cc13", null ], + [ "set_rotated_fields", "classMOSTAverage.html#a314ac1672f7b8ce2cf9f9d32d00191a5", null ], [ "set_z_positions_T", "classMOSTAverage.html#a96178b02bec37f171ef608cec9a246bf", null ], [ "trilinear_interp_T", "classMOSTAverage.html#aefb42b9f2a5c3347e7ab87abdfcab3d7", null ], [ "update_field_ptrs", "classMOSTAverage.html#acdb5e2dec5f3e9b0a37e194430ca32a7", null ], @@ -44,6 +45,8 @@ var classMOSTAverage = [ "m_policy", "classMOSTAverage.html#a0e87c91bf31d0e60a31b906081d24eea", null ], [ "m_pp_prefix", "classMOSTAverage.html#a8e48f835a742b02f039aeb6bc520aef8", null ], [ "m_radius", "classMOSTAverage.html#a2c167351f6655ef3276f8e5b39439e91", null ], + [ "m_rot_fields", "classMOSTAverage.html#a733f1b5c94de8ee530f4f257510cb277", null ], + [ "m_rotate", "classMOSTAverage.html#a7d43a66f7518f75e694e0582dd40ec44", null ], [ "m_t_avg", "classMOSTAverage.html#a05905a4754c7eb39b766b96889b1bd47", null ], [ "m_t_init", "classMOSTAverage.html#a3fe20fc4a4eb0b283f1d658b6237004c", null ], [ "m_time_window", "classMOSTAverage.html#ac95147c0d7961323ca8b079f63cd4be9", null ], diff --git a/classMOSTAverage__coll__graph.map b/classMOSTAverage__coll__graph.map index a11af8d9c2..f1baf1033b 100644 --- a/classMOSTAverage__coll__graph.map +++ b/classMOSTAverage__coll__graph.map @@ -1,17 +1,17 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/classMOSTAverage__coll__graph.md5 b/classMOSTAverage__coll__graph.md5 index 6a2f471cb3..7b1283b0ed 100644 --- a/classMOSTAverage__coll__graph.md5 +++ b/classMOSTAverage__coll__graph.md5 @@ -1 +1 @@ -e761f34ee9cc363b7a9de35fb892b43a \ No newline at end of file +a3517679f943a268b38486c83a99a1e7 \ No newline at end of file diff --git a/classMOSTAverage__coll__graph.png b/classMOSTAverage__coll__graph.png index 47cba370de..b316c69c8d 100644 Binary files a/classMOSTAverage__coll__graph.png and b/classMOSTAverage__coll__graph.png differ diff --git a/classMOSTAverage_a314ac1672f7b8ce2cf9f9d32d00191a5_cgraph.map b/classMOSTAverage_a314ac1672f7b8ce2cf9f9d32d00191a5_cgraph.map new file mode 100644 index 0000000000..aa36741be9 --- /dev/null +++ b/classMOSTAverage_a314ac1672f7b8ce2cf9f9d32d00191a5_cgraph.map @@ -0,0 +1,6 @@ + + + + + + diff --git a/classMOSTAverage_a314ac1672f7b8ce2cf9f9d32d00191a5_cgraph.md5 b/classMOSTAverage_a314ac1672f7b8ce2cf9f9d32d00191a5_cgraph.md5 new file mode 100644 index 0000000000..153d008919 --- /dev/null +++ b/classMOSTAverage_a314ac1672f7b8ce2cf9f9d32d00191a5_cgraph.md5 @@ -0,0 +1 @@ +d8a48f22b25fd2d98bd8deec65855e10 \ No newline at end of file diff --git a/classMOSTAverage_a314ac1672f7b8ce2cf9f9d32d00191a5_cgraph.png b/classMOSTAverage_a314ac1672f7b8ce2cf9f9d32d00191a5_cgraph.png new file mode 100644 index 0000000000..b26c006de0 Binary files /dev/null and b/classMOSTAverage_a314ac1672f7b8ce2cf9f9d32d00191a5_cgraph.png differ diff --git a/classMOSTAverage_a314ac1672f7b8ce2cf9f9d32d00191a5_icgraph.map b/classMOSTAverage_a314ac1672f7b8ce2cf9f9d32d00191a5_icgraph.map new file mode 100644 index 0000000000..a4b42f29f6 --- /dev/null +++ b/classMOSTAverage_a314ac1672f7b8ce2cf9f9d32d00191a5_icgraph.map @@ -0,0 +1,4 @@ + + + + diff --git a/classMOSTAverage_a314ac1672f7b8ce2cf9f9d32d00191a5_icgraph.md5 b/classMOSTAverage_a314ac1672f7b8ce2cf9f9d32d00191a5_icgraph.md5 new file mode 100644 index 0000000000..3da8fcbd7b --- /dev/null +++ b/classMOSTAverage_a314ac1672f7b8ce2cf9f9d32d00191a5_icgraph.md5 @@ -0,0 +1 @@ +f7bc8183fbff7cc413bd86d3e56a3848 \ No newline at end of file diff --git a/classMOSTAverage_a314ac1672f7b8ce2cf9f9d32d00191a5_icgraph.png b/classMOSTAverage_a314ac1672f7b8ce2cf9f9d32d00191a5_icgraph.png new file mode 100644 index 0000000000..9a9c62a1b1 Binary files /dev/null and b/classMOSTAverage_a314ac1672f7b8ce2cf9f9d32d00191a5_icgraph.png differ diff --git a/classMOSTAverage_a7a28005871bb8abb49f44c3976133a4f_cgraph.map b/classMOSTAverage_a7a28005871bb8abb49f44c3976133a4f_cgraph.map index ba579138e9..7cf85318d8 100644 --- a/classMOSTAverage_a7a28005871bb8abb49f44c3976133a4f_cgraph.map +++ b/classMOSTAverage_a7a28005871bb8abb49f44c3976133a4f_cgraph.map @@ -1,8 +1,11 @@ - - - - - - + + + + + + + + + diff --git a/classMOSTAverage_a7a28005871bb8abb49f44c3976133a4f_cgraph.md5 b/classMOSTAverage_a7a28005871bb8abb49f44c3976133a4f_cgraph.md5 index 2760c41ace..2be0443497 100644 --- a/classMOSTAverage_a7a28005871bb8abb49f44c3976133a4f_cgraph.md5 +++ b/classMOSTAverage_a7a28005871bb8abb49f44c3976133a4f_cgraph.md5 @@ -1 +1 @@ -c7c3fe9e92f17f1290c90c1ba6349c66 \ No newline at end of file +f04d36843e9f89527384f4d20df31347 \ No newline at end of file diff --git a/classMOSTAverage_a7a28005871bb8abb49f44c3976133a4f_cgraph.png b/classMOSTAverage_a7a28005871bb8abb49f44c3976133a4f_cgraph.png index b4af1118bc..809b8b70a3 100644 Binary files a/classMOSTAverage_a7a28005871bb8abb49f44c3976133a4f_cgraph.png and b/classMOSTAverage_a7a28005871bb8abb49f44c3976133a4f_cgraph.png differ diff --git a/functions_c.html b/functions_c.html index 7f3ada142a..96e8ad772c 100644 --- a/functions_c.html +++ b/functions_c.html @@ -266,15 +266,15 @@

- c -

    : ABLMost
  • compute_most_bcs() -: ABLMost +: ABLMost
  • compute_plane_averages() : MOSTAverage
  • compute_q_flux() -: custom_flux -, donelan_flux -, moeng_flux +: custom_flux +, donelan_flux +, moeng_flux
  • compute_region_averages() : MOSTAverage diff --git a/functions_d.html b/functions_d.html index 64ff7d2096..4c9200e1f6 100644 --- a/functions_d.html +++ b/functions_d.html @@ -124,12 +124,12 @@

    - d -

    • data : NDArray< DataType >
    • -
    • datalog -: ERF -
    • DataLog() : ERF
    • +
    • datalog +: ERF +
    • datalogname : ERF
    • diff --git a/functions_func_c.html b/functions_func_c.html index bd9d1731da..8ed044b0bf 100644 --- a/functions_func_c.html +++ b/functions_func_c.html @@ -153,15 +153,15 @@

      - c -

        : ABLMost
      • compute_most_bcs() -: ABLMost +: ABLMost
      • compute_plane_averages() : MOSTAverage
      • compute_q_flux() -: custom_flux -, donelan_flux -, moeng_flux +: custom_flux +, donelan_flux +, moeng_flux
      • compute_region_averages() : MOSTAverage diff --git a/functions_func_i.html b/functions_func_i.html index 366829d459..d4e3b1386b 100644 --- a/functions_func_i.html +++ b/functions_func_i.html @@ -102,7 +102,7 @@

        - i -

          , ERFPhysBCFunct_w_no_terrain
        • impose_most_bcs() -: ABLMost +: ABLMost
        • impose_vertical_cons_bcs() : ERFPhysBCFunct_cons @@ -185,7 +185,7 @@

          - i -

            : ERF
          • init_geo_wind_profile() -: ERF +: ERF
          • init_mode_comps() : MamConstituents diff --git a/functions_func_s.html b/functions_func_s.html index b05c32544f..a1dd050eb1 100644 --- a/functions_func_s.html +++ b/functions_func_s.html @@ -163,6 +163,9 @@

            - s -

            • set_region_normalization() : MOSTAverage
            • +
            • set_rotated_fields() +: MOSTAverage +
            • set_slow_fast_timestep_ratio() : MRISplitIntegrator< T >
            • diff --git a/functions_i.html b/functions_i.html index bbd197ca23..9079a23c88 100644 --- a/functions_i.html +++ b/functions_i.html @@ -154,7 +154,7 @@

              - i -

                , ERFPhysBCFunct_w_no_terrain
              • impose_most_bcs() -: ABLMost +: ABLMost
              • impose_vertical_cons_bcs() : ERFPhysBCFunct_cons @@ -241,7 +241,7 @@

                - i -

                  : ERF
                • init_geo_wind_profile() -: ERF +: ERF
                • init_mode_comps() : MamConstituents diff --git a/functions_m.html b/functions_m.html index 0ec9b53880..47a9458c38 100644 --- a/functions_m.html +++ b/functions_m.html @@ -530,6 +530,13 @@

                  - m -

                  • m_relax_mask : ERFFillPatcher
                  • +
                  • m_rot_fields +: MOSTAverage +
                  • +
                  • m_rotate +: ABLMost +, MOSTAverage +
                  • m_rotor_rad : NullWindFarm
                  • diff --git a/functions_s.html b/functions_s.html index 681caa4e5b..dc136263f6 100644 --- a/functions_s.html +++ b/functions_s.html @@ -112,12 +112,12 @@

                    - s -

                    • SampleLine() : ERF
                    • -
                    • samplelinelog -: ERF -
                    • SampleLineLog() : ERF
                    • +
                    • samplelinelog +: ERF +
                    • SampleLineLogName() : ERF
                    • @@ -196,6 +196,9 @@

                      - s -

                      • set_region_normalization() : MOSTAverage
                      • +
                      • set_rotated_fields() +: MOSTAverage +
                      • set_slow_fast_timestep_ratio() : MRISplitIntegrator< T >
                      • diff --git a/functions_vars_m.html b/functions_vars_m.html index 5648bb4e56..b17b3544cc 100644 --- a/functions_vars_m.html +++ b/functions_vars_m.html @@ -530,6 +530,13 @@

                        - m -

                        • m_relax_mask : ERFFillPatcher
                        • +
                        • m_rot_fields +: MOSTAverage +
                        • +
                        • m_rotate +: ABLMost +, MOSTAverage +
                        • m_rotor_rad : NullWindFarm
                        • diff --git a/navtreedata.js b/navtreedata.js index a5cd385a44..7b8782b9fe 100644 --- a/navtreedata.js +++ b/navtreedata.js @@ -76,16 +76,16 @@ var NAVTREEINDEX = "ERF__Constants_8H.html#a2fe4f2c6313692ac5073cb9ca72552e2", "MM5_8cpp.html", "Utils_8H.html#a666ef6030bc3baa94198a32754fc65f2", -"classERF.html#a4d6d990d8111c170692b1e9cc0e918b8", -"classERFFillPatcher.html#a89f24e6cfe30a2180b1667aead7edf28", -"classMM5.html#ac5730f1413ae4a3dd5d4b2c683c41297", -"classNullMoist.html#a75e2d77cb28efa62759818d066b53bb9", -"classRadiation.html#a6a65d086e75212c5d372c2fbdb694843", -"classUnionCIF.html#a0bbd9d187f7efd622fb063c08d06151c", -"globals_f.html", -"structMamConstituents_1_1aerosol__t.html#a171adbde051fa00b94b7e0bfbd22d348", -"structTurbulentPerturbation.html#a20940c88c5c2f6ef1b90d1984867777a", -"structsurface__flux__charnock.html#aef89ab0f62c46e93c9a1029be7a7b472" +"classERF.html#a4c1fae5e620fcd64cc9ede73715e3b7c", +"classERFFillPatcher.html#a874bf44ab38e936013bbf8454a41a680", +"classMM5.html#abf2c797ae56fc93043e999db11515a8a", +"classNullMoist.html#a24f0528f7d31b89f36a3c225c7e53010", +"classRadiation.html#a65e14eac1882d0877cb60c185b91f670", +"classTerrainIF.html#ad0a9adc95fd3d0b5903d5ef7f5b74176", +"globals_defs.html", +"structMamConstituents_1_1aerlist__t.html#a21f61436cc2e4a150e675d9d0163fcdf", +"structTurbChoice.html#afbf3b28d53a35977d4ff77e6928122c0", +"structsurface__flux__charnock.html#a08529386a7d5012684c818249a7d76ba" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/navtreeindex10.js b/navtreeindex10.js index 2b6fc9503f..3d1bfaa08c 100644 --- a/navtreeindex10.js +++ b/navtreeindex10.js @@ -1,8 +1,12 @@ var NAVTREEINDEX10 = { +"globals_defs.html":[3,1,6], +"globals_e.html":[3,1,0,4], +"globals_enum.html":[3,1,4], +"globals_eval.html":[3,1,5], "globals_f.html":[3,1,0,5], -"globals_func.html":[3,1,1,0], "globals_func.html":[3,1,1], +"globals_func.html":[3,1,1,0], "globals_func_b.html":[3,1,1,1], "globals_func_c.html":[3,1,1,2], "globals_func_d.html":[3,1,1,3], @@ -245,9 +249,5 @@ var NAVTREEINDEX10 = "structLinInterp_1_1InterpType.html#a4afbbafb5bb8bf9742bdb82b166bef76":[2,0,38,0,1], "structLinInterp_1_1InterpType.html#aa3befaac92860602bab896110eeb65da":[2,0,38,0,2], "structLinInterp_1_1InterpType.html#aa81271a903001f119594cdced62b748c":[2,0,38,0,0], -"structMamConstituents_1_1aerlist__t.html":[2,0,40,0], -"structMamConstituents_1_1aerlist__t.html#a21f61436cc2e4a150e675d9d0163fcdf":[2,0,40,0,0], -"structMamConstituents_1_1aerlist__t.html#ab75334c58294e58e6f802fdc28fcb9c5":[2,0,40,0,1], -"structMamConstituents_1_1aerlist__t.html#afae9af8c61b9fee3afdd374fffaab123":[2,0,40,0,2], -"structMamConstituents_1_1aerosol__t.html":[2,0,40,1] +"structMamConstituents_1_1aerlist__t.html":[2,0,40,0] }; diff --git a/navtreeindex11.js b/navtreeindex11.js index 4952b95053..df36cf1d19 100644 --- a/navtreeindex11.js +++ b/navtreeindex11.js @@ -1,5 +1,9 @@ var NAVTREEINDEX11 = { +"structMamConstituents_1_1aerlist__t.html#a21f61436cc2e4a150e675d9d0163fcdf":[2,0,40,0,0], +"structMamConstituents_1_1aerlist__t.html#ab75334c58294e58e6f802fdc28fcb9c5":[2,0,40,0,1], +"structMamConstituents_1_1aerlist__t.html#afae9af8c61b9fee3afdd374fffaab123":[2,0,40,0,2], +"structMamConstituents_1_1aerosol__t.html":[2,0,40,1], "structMamConstituents_1_1aerosol__t.html#a171adbde051fa00b94b7e0bfbd22d348":[2,0,40,1,3], "structMamConstituents_1_1aerosol__t.html#a23e50740903b1b826352cd7486c69913":[2,0,40,1,0], "structMamConstituents_1_1aerosol__t.html#a300418f68393143be3f4852641ac465b":[2,0,40,1,2], @@ -245,9 +249,5 @@ var NAVTREEINDEX11 = "structTurbChoice.html#aeb3c184b540858407426a606327fba3a":[2,0,80,30], "structTurbChoice.html#aed763f56a6349187c9c0c0e4c952d05a":[2,0,80,27], "structTurbChoice.html#af274e04335b259bb7b35f7c836f8310f":[2,0,80,23], -"structTurbChoice.html#afa27861e0ffa1f4c9373d465d1db378f":[2,0,80,17], -"structTurbChoice.html#afbf3b28d53a35977d4ff77e6928122c0":[2,0,80,5], -"structTurbulentPerturbation.html":[2,0,81], -"structTurbulentPerturbation.html#a17f060634e44ba5701cc1febba23c915":[2,0,81,25], -"structTurbulentPerturbation.html#a1dfc591297a8af23c941b06ed5fabba1":[2,0,81,11] +"structTurbChoice.html#afa27861e0ffa1f4c9373d465d1db378f":[2,0,80,17] }; diff --git a/navtreeindex12.js b/navtreeindex12.js index 4123af7fb6..e49cea1e0d 100644 --- a/navtreeindex12.js +++ b/navtreeindex12.js @@ -1,5 +1,9 @@ var NAVTREEINDEX12 = { +"structTurbChoice.html#afbf3b28d53a35977d4ff77e6928122c0":[2,0,80,5], +"structTurbulentPerturbation.html":[2,0,81], +"structTurbulentPerturbation.html#a17f060634e44ba5701cc1febba23c915":[2,0,81,25], +"structTurbulentPerturbation.html#a1dfc591297a8af23c941b06ed5fabba1":[2,0,81,11], "structTurbulentPerturbation.html#a20940c88c5c2f6ef1b90d1984867777a":[2,0,81,33], "structTurbulentPerturbation.html#a21d9b84c0b8eac4d49ae5ca764247442":[2,0,81,34], "structTurbulentPerturbation.html#a22bb01b7314fa13bdfc1966456f5deed":[2,0,81,26], @@ -155,25 +159,25 @@ var NAVTREEINDEX12 = "structcustom__flux.html#aa04871c3e8d2e06f502cde2404c90be4":[2,0,13,6], "structcustom__flux.html#aa9715fd8b84d6df19fa17c89a703210a":[2,0,13,0], "structcustom__flux.html#abb193ac77724a6452a6068c3b5954081":[2,0,13,2], -"structcustom__flux.html#aca20f274a2d45502698a74ed9b839b02":[2,0,13,1], "structcustom__flux.html#ae0e2af01151c51f4c335f053a8bb8f17":[2,0,13,5], +"structcustom__flux.html#ae9e13bc10b4594df556671d9a042b48b":[2,0,13,1], "structdonelan__flux.html":[2,0,19], "structdonelan__flux.html#a44a032acc6bd6f42ff90f5a0ac14f4cf":[2,0,19,3], "structdonelan__flux.html#a804902863523b5f641c44aadc3602e97":[2,0,19,0], -"structdonelan__flux.html#a8d0fc02fd064b22206380d593b628efa":[2,0,19,1], "structdonelan__flux.html#a999e3bdb322d29fcdfbd51047fb32ee0":[2,0,19,2], "structdonelan__flux.html#aac38c6d44658be0daa32dc8bd0b29adb":[2,0,19,5], "structdonelan__flux.html#ad2da09025b821f79782fa580010c4df2":[2,0,19,4], +"structdonelan__flux.html#adb397919f3dc33f33d8bdc7b99c52efc":[2,0,19,1], "structdonelan__flux.html#af7428f0272064ef770035521c9c9a98b":[2,0,19,6], "structmoeng__flux.html":[2,0,44], "structmoeng__flux.html#a2451f21fea8f87cec2e5f626c36489cb":[2,0,44,3], "structmoeng__flux.html#a2843a181e875e6599b04964c28117900":[2,0,44,0], "structmoeng__flux.html#a32dd97697698052a006613da3a0b7e67":[2,0,44,7], "structmoeng__flux.html#a3d06eff1aa7d6c357e1245eb8f5b96f7":[2,0,44,5], +"structmoeng__flux.html#a5d40e64bd085af2f4c63cfa1e9e20aa6":[2,0,44,1], "structmoeng__flux.html#a5ec0786b043f57c8c41edfd677dde8c9":[2,0,44,4], "structmoeng__flux.html#a67cae16850c061bb189a783159ac6406":[2,0,44,6], "structmoeng__flux.html#a946d89f0b1c8287c83bea9ff628bdb1e":[2,0,44,2], -"structmoeng__flux.html#aee217bd58d625b3fb9e80a9fc4e9189f":[2,0,44,1], "structmost__data.html":[2,0,45], "structmost__data.html#a1acd5276639042ca0834c56656302ea6":[2,0,45,9], "structmost__data.html#a4488059550159398fd2cddaf4d37f31b":[2,0,45,3], @@ -245,9 +249,5 @@ var NAVTREEINDEX12 = "structsurface__flux.html#a960909fe387424192cf802afccdc7bed":[2,0,70,2], "structsurface__flux.html#a99588cc80bc461f24f2217f7c7cb1294":[2,0,70,0], "structsurface__flux.html#abd16b92a75ae384f9fe490b59f046b6a":[2,0,70,4], -"structsurface__flux__charnock.html":[2,0,71], -"structsurface__flux__charnock.html#a08529386a7d5012684c818249a7d76ba":[2,0,71,4], -"structsurface__flux__charnock.html#a4501ca4ecf49dccd6a1a914af03e1ed1":[2,0,71,3], -"structsurface__flux__charnock.html#a60030c5104987d6287efd5d9b996014c":[2,0,71,2], -"structsurface__flux__charnock.html#a6fef08de02ce5a69d4f276dce6721d27":[2,0,71,0] +"structsurface__flux__charnock.html":[2,0,71] }; diff --git a/navtreeindex13.js b/navtreeindex13.js index 32025fa850..5487caf8a9 100644 --- a/navtreeindex13.js +++ b/navtreeindex13.js @@ -1,5 +1,9 @@ var NAVTREEINDEX13 = { +"structsurface__flux__charnock.html#a08529386a7d5012684c818249a7d76ba":[2,0,71,4], +"structsurface__flux__charnock.html#a4501ca4ecf49dccd6a1a914af03e1ed1":[2,0,71,3], +"structsurface__flux__charnock.html#a60030c5104987d6287efd5d9b996014c":[2,0,71,2], +"structsurface__flux__charnock.html#a6fef08de02ce5a69d4f276dce6721d27":[2,0,71,0], "structsurface__flux__charnock.html#aef89ab0f62c46e93c9a1029be7a7b472":[2,0,71,1], "structsurface__flux__mod__charnock.html":[2,0,72], "structsurface__flux__mod__charnock.html#a6fa441221eb1f30d65437ce890adfd46":[2,0,72,2], diff --git a/navtreeindex3.js b/navtreeindex3.js index f89c3002cb..9d352befc9 100644 --- a/navtreeindex3.js +++ b/navtreeindex3.js @@ -20,18 +20,17 @@ var NAVTREEINDEX3 = "classABLMost.html":[2,0,1], "classABLMost.html#a049bc06685178431599f3bfaa57d63bd":[2,0,1,26], "classABLMost.html#a05cc96f74b89c4e277fe3db4ea01d3fa":[2,0,1,27], -"classABLMost.html#a0630def935d5ca0d24160b9b9567f3e1":[2,0,1,39], +"classABLMost.html#a0630def935d5ca0d24160b9b9567f3e1":[2,0,1,40], "classABLMost.html#a0890b6ae8c80d8888effa040af808df0":[2,0,1,12], -"classABLMost.html#a0c33b98848bdb3beb8249d5b60ec1a83":[2,0,1,6], -"classABLMost.html#a0d6aa5a113a45ae1e56c0284241cfd01":[2,0,1,38], +"classABLMost.html#a0d6aa5a113a45ae1e56c0284241cfd01":[2,0,1,39], "classABLMost.html#a108ee0811499e80c9d3226bb20da6973":[2,0,1,10], -"classABLMost.html#a1301dd4cb6875c7bdf5d69126b972f91":[2,0,1,51], +"classABLMost.html#a1301dd4cb6875c7bdf5d69126b972f91":[2,0,1,52], "classABLMost.html#a1795a510d08fbd88e6599e014f97b6c5":[2,0,1,29], "classABLMost.html#a1bce26c6253a6191424e7b753cd24cfa":[2,0,1,23], -"classABLMost.html#a1f488836fca7c3da2bed67c63a94951b":[2,0,1,46], +"classABLMost.html#a1f488836fca7c3da2bed67c63a94951b":[2,0,1,47], "classABLMost.html#a31707b89fbbbdeb445ba35ed240046c3":[2,0,1,21], "classABLMost.html#a38ed37dd984fcc7be3b5ae04b7272459":[2,0,1,24], -"classABLMost.html#a39402ac3794b9a218289cd0d4adec670":[2,0,1,42], +"classABLMost.html#a39402ac3794b9a218289cd0d4adec670":[2,0,1,43], "classABLMost.html#a422336bc908d29f98dafb3b745b4f060":[2,0,1,33], "classABLMost.html#a466bfcda8ae4337d9c8781ab28e3f6fe":[2,0,1,35], "classABLMost.html#a46fbd9260d2adfa7c18edad6452f9bab":[2,0,1,2], @@ -39,36 +38,37 @@ var NAVTREEINDEX3 = "classABLMost.html#a46fbd9260d2adfa7c18edad6452f9baba317cef85d14b4909f1d76becb00dc0f1":[2,0,1,2,2], "classABLMost.html#a46fbd9260d2adfa7c18edad6452f9babac03b743c56d9316fbd3d327453b22226":[2,0,1,2,1], "classABLMost.html#a4ee786860369e5a42ba353308590b372":[2,0,1,3], -"classABLMost.html#a4fb97b28e44e9ff6930f18083923343a":[2,0,1,37], +"classABLMost.html#a4fb97b28e44e9ff6930f18083923343a":[2,0,1,38], "classABLMost.html#a626a97f944cb297c966a2ff7ce0bad97":[2,0,1,13], "classABLMost.html#a644ccdc438574061ec7ae75cdc714ec6":[2,0,1,30], -"classABLMost.html#a67df60526193cba93df934a540f7a258":[2,0,1,5], +"classABLMost.html#a64b906be4c2e1328177633f682fab5dd":[2,0,1,6], "classABLMost.html#a6a3e64fcdbe709a947131d31cd0e347b":[2,0,1,18], -"classABLMost.html#a73621a1b429f2e910a29adac72b7c581":[2,0,1,43], +"classABLMost.html#a73621a1b429f2e910a29adac72b7c581":[2,0,1,44], "classABLMost.html#a75310e9079ee238a932900feaad85ac5":[2,0,1,20], -"classABLMost.html#a7d1394fa01c8c29b20dfb790c0f3ec6b":[2,0,1,47], +"classABLMost.html#a7d1394fa01c8c29b20dfb790c0f3ec6b":[2,0,1,48], "classABLMost.html#a829339fc8e70a5dff8b7c85f3c2e4138":[2,0,1,4], -"classABLMost.html#a8e0510d69090549d147c9ebf31f24e5a":[2,0,1,15], "classABLMost.html#a92e41ba7a650b4768aa6bc006b2241e0":[2,0,1,0], "classABLMost.html#a92e41ba7a650b4768aa6bc006b2241e0a0525d4394471c332f3c0a497584923d5":[2,0,1,0,0], "classABLMost.html#a92e41ba7a650b4768aa6bc006b2241e0a72baef04098f035e8a320b03ad197818":[2,0,1,0,2], "classABLMost.html#a92e41ba7a650b4768aa6bc006b2241e0afbf950ece84b8c4c7ebcf6492db726f7":[2,0,1,0,1], "classABLMost.html#a958aaaf9e040462197c88c6c77f2aaf6":[2,0,1,32], -"classABLMost.html#a98390481d302c2a2c7346bf2328305a8":[2,0,1,44], +"classABLMost.html#a98390481d302c2a2c7346bf2328305a8":[2,0,1,45], "classABLMost.html#aaa5bbc610662825ddd8a184b43f3541b":[2,0,1,31], "classABLMost.html#aaeef06eb7d0ab7e3d100e583337121cc":[2,0,1,16], -"classABLMost.html#ab052d62a07e8765a6de67264d05aff37":[2,0,1,40], +"classABLMost.html#ab052d62a07e8765a6de67264d05aff37":[2,0,1,41], +"classABLMost.html#ab107efa0b6bdf80ee44d232919f6a7ad":[2,0,1,36], "classABLMost.html#ab12af4a41dbc189d69850a81447434f7":[2,0,1,34], -"classABLMost.html#ab5041b7c6a15b759a8f33dadd1a67e92":[2,0,1,41], -"classABLMost.html#ab55a547b6b74a177128af6c6a107930c":[2,0,1,49], +"classABLMost.html#ab3ac1c161450930085ef74208b7f3dcb":[2,0,1,15], +"classABLMost.html#ab5041b7c6a15b759a8f33dadd1a67e92":[2,0,1,42], +"classABLMost.html#ab55a547b6b74a177128af6c6a107930c":[2,0,1,50], "classABLMost.html#ac3de35be0d6cf3841e9a868830fc42c5":[2,0,1,28], -"classABLMost.html#ac9d90016f196c3861d225132e8b6a921":[2,0,1,45], +"classABLMost.html#ac9d90016f196c3861d225132e8b6a921":[2,0,1,46], "classABLMost.html#aca21d4f7aae064515bfec992b263d6d2":[2,0,1,11], -"classABLMost.html#acd5510d2f47502a57107f12c66f8a552":[2,0,1,48], -"classABLMost.html#acfc9a08ed0d029602e2e8e99232d0149":[2,0,1,50], +"classABLMost.html#acd5510d2f47502a57107f12c66f8a552":[2,0,1,49], +"classABLMost.html#acfc9a08ed0d029602e2e8e99232d0149":[2,0,1,51], "classABLMost.html#ad837d92390012682056ffac0b5f9a8f9":[2,0,1,25], "classABLMost.html#ad878840b1c998160ba79c1e9714adc70":[2,0,1,19], -"classABLMost.html#ad8f1957bba407e17edb0a84ace515cde":[2,0,1,36], +"classABLMost.html#ad8f1957bba407e17edb0a84ace515cde":[2,0,1,37], "classABLMost.html#ae28fd8a21f4b514875c24fe4b8e85081":[2,0,1,7], "classABLMost.html#ae638411093a2d3cc6cc525d4d7efa7ed":[2,0,1,14], "classABLMost.html#ae825f96c2d098b3e070642a74e6a3f13":[2,0,1,1], @@ -79,6 +79,7 @@ var NAVTREEINDEX3 = "classABLMost.html#aef7480dbb43cafff3be93a95240c1ec3":[2,0,1,9], "classABLMost.html#af26cdc6b8c162c14b2db32eb395f0565":[2,0,1,8], "classABLMost.html#af82057d4fbaaf1d8347cf18c7efd7b53":[2,0,1,17], +"classABLMost.html#afb930118bc66bba7376f0fe2abd85be3":[2,0,1,5], "classABLMost.html#afbd0b1a37d9e9d716d82910db203e82f":[2,0,1,22], "classAerRadProps.html":[2,0,7], "classAerRadProps.html#a0690511bbea6225a4afa365c4c153f0c":[2,0,7,28], @@ -248,6 +249,5 @@ var NAVTREEINDEX3 = "classERF.html#a47413fe5588f7dd71a1d5087a9e804f9":[2,0,21,4], "classERF.html#a48bba6b1c1b39940b09aefbe56311e2f":[2,0,21,139], "classERF.html#a4990f1796b65ec8ee602f177a66afc3e":[2,0,21,274], -"classERF.html#a4b7277d54649219f31fe286eee9d415a":[2,0,21,229], -"classERF.html#a4c1fae5e620fcd64cc9ede73715e3b7c":[2,0,21,127] +"classERF.html#a4b7277d54649219f31fe286eee9d415a":[2,0,21,229] }; diff --git a/navtreeindex4.js b/navtreeindex4.js index 29170c4526..be8d15e184 100644 --- a/navtreeindex4.js +++ b/navtreeindex4.js @@ -1,5 +1,6 @@ var NAVTREEINDEX4 = { +"classERF.html#a4c1fae5e620fcd64cc9ede73715e3b7c":[2,0,21,127], "classERF.html#a4d6d990d8111c170692b1e9cc0e918b8":[2,0,21,37], "classERF.html#a4d717bb9fe936fd1a124d0d3e720f9d1":[2,0,21,247], "classERF.html#a4dd7c603e65d230105a4f1e0afb4cf8a":[2,0,21,180], @@ -128,7 +129,7 @@ var NAVTREEINDEX4 = "classERF.html#aa89efe0abf37918ce3f212fb0e26f1bc":[2,0,21,104], "classERF.html#aa90c9756f684404f8b69b8a23568b535":[2,0,21,84], "classERF.html#aab4575d8fb57595a2f1aaf088c60447a":[2,0,21,129], -"classERF.html#aacc932516cb277301951a8258545873c":[2,0,21,46], +"classERF.html#aab564dd3009ef83466b50db6d997b563":[2,0,21,46], "classERF.html#aae7a3a76e08e54c618cf79b30ed2d73d":[2,0,21,85], "classERF.html#aaee255b031e63bd9b5807f6612739dbd":[2,0,21,39], "classERF.html#aaf10bbf8c9a5dbc257a88c4c1b650fee":[2,0,21,65], @@ -248,6 +249,5 @@ var NAVTREEINDEX4 = "classERFFillPatcher.html#a61c68ee600be65606db582402599c1d4":[2,0,22,24], "classERFFillPatcher.html#a69bc23658f5c545f654c7ddd0cabb105":[2,0,22,4], "classERFFillPatcher.html#a713333f0602eb39a96836c5ea8825a67":[2,0,22,10], -"classERFFillPatcher.html#a83a91e2dc7bd7c39a27327024814061c":[2,0,22,26], -"classERFFillPatcher.html#a874bf44ab38e936013bbf8454a41a680":[2,0,22,16] +"classERFFillPatcher.html#a83a91e2dc7bd7c39a27327024814061c":[2,0,22,26] }; diff --git a/navtreeindex5.js b/navtreeindex5.js index ff452a0fa6..327b9b03f4 100644 --- a/navtreeindex5.js +++ b/navtreeindex5.js @@ -1,5 +1,6 @@ var NAVTREEINDEX5 = { +"classERFFillPatcher.html#a874bf44ab38e936013bbf8454a41a680":[2,0,22,16], "classERFFillPatcher.html#a89f24e6cfe30a2180b1667aead7edf28":[2,0,22,14], "classERFFillPatcher.html#a9d188e7b7e85221b257799a5a9c5098e":[2,0,22,29], "classERFFillPatcher.html#aa1dd4ccdd7812057d8ee529015e3750d":[2,0,22,8], @@ -248,6 +249,5 @@ var NAVTREEINDEX5 = "classMM5.html#aa1428d274d51e6db03618151c2fd91cb":[2,0,42,2], "classMM5.html#ab8187a0b9206d9c1d6632d494a149d1a":[2,0,42,28], "classMM5.html#abb2bfd47b01eb3f85f6466a886a00dc9":[2,0,42,18], -"classMM5.html#abe51eb4823a379cd70d05eef17832f7b":[2,0,42,12], -"classMM5.html#abf2c797ae56fc93043e999db11515a8a":[2,0,42,10] +"classMM5.html#abe51eb4823a379cd70d05eef17832f7b":[2,0,42,12] }; diff --git a/navtreeindex6.js b/navtreeindex6.js index 173bae206f..0c783d0e2d 100644 --- a/navtreeindex6.js +++ b/navtreeindex6.js @@ -1,61 +1,65 @@ var NAVTREEINDEX6 = { +"classMM5.html#abf2c797ae56fc93043e999db11515a8a":[2,0,42,10], "classMM5.html#ac5730f1413ae4a3dd5d4b2c683c41297":[2,0,42,24], "classMM5.html#aca75345d5bf1a5ef4ce434047cc70437":[2,0,42,7], "classMM5.html#ad0b90571d201254c36a28b26aa4c4926":[2,0,42,13], "classMOSTAverage.html":[2,0,46], -"classMOSTAverage.html#a0554ee593b5deca61ef0d26ebd26f6d6":[2,0,46,35], -"classMOSTAverage.html#a05905a4754c7eb39b766b96889b1bd47":[2,0,46,44], -"classMOSTAverage.html#a0e87c91bf31d0e60a31b906081d24eea":[2,0,46,41], -"classMOSTAverage.html#a158b82286f1bed8b02da2c8b2ac7f4c0":[2,0,46,24], +"classMOSTAverage.html#a0554ee593b5deca61ef0d26ebd26f6d6":[2,0,46,36], +"classMOSTAverage.html#a05905a4754c7eb39b766b96889b1bd47":[2,0,46,47], +"classMOSTAverage.html#a0e87c91bf31d0e60a31b906081d24eea":[2,0,46,42], +"classMOSTAverage.html#a158b82286f1bed8b02da2c8b2ac7f4c0":[2,0,46,25], "classMOSTAverage.html#a1892a3f9c2175cd2323d8d3a3bc83b6c":[2,0,46,12], -"classMOSTAverage.html#a1beb0dad926be2f2d9cb1de69a1a3374":[2,0,46,48], +"classMOSTAverage.html#a1beb0dad926be2f2d9cb1de69a1a3374":[2,0,46,51], "classMOSTAverage.html#a1eafe515fb0a3fc673d604b854a3cc13":[2,0,46,16], -"classMOSTAverage.html#a221a026c642af21a051b05b2b4ea763a":[2,0,46,23], +"classMOSTAverage.html#a221a026c642af21a051b05b2b4ea763a":[2,0,46,24], "classMOSTAverage.html#a2908278cc9088e345af422a187eba337":[2,0,46,13], -"classMOSTAverage.html#a2c167351f6655ef3276f8e5b39439e91":[2,0,46,43], -"classMOSTAverage.html#a2f5fb25e7c5196338ee5a051708d8f62":[2,0,46,29], -"classMOSTAverage.html#a3a49018467b69573ef84df9cdfd86da4":[2,0,46,49], -"classMOSTAverage.html#a3fe20fc4a4eb0b283f1d658b6237004c":[2,0,46,45], +"classMOSTAverage.html#a2c167351f6655ef3276f8e5b39439e91":[2,0,46,44], +"classMOSTAverage.html#a2f5fb25e7c5196338ee5a051708d8f62":[2,0,46,30], +"classMOSTAverage.html#a314ac1672f7b8ce2cf9f9d32d00191a5":[2,0,46,17], +"classMOSTAverage.html#a3a49018467b69573ef84df9cdfd86da4":[2,0,46,52], +"classMOSTAverage.html#a3fe20fc4a4eb0b283f1d658b6237004c":[2,0,46,48], "classMOSTAverage.html#a56f533937767a348d7c1dff755989531":[2,0,46,9], "classMOSTAverage.html#a584b986a317b2c4d799163574c43b3b3":[2,0,46,10], -"classMOSTAverage.html#a58c320eb48f9b8a1b0983d2770e9f3ea":[2,0,46,47], +"classMOSTAverage.html#a58c320eb48f9b8a1b0983d2770e9f3ea":[2,0,46,50], "classMOSTAverage.html#a5a0413a85da2e6a13f21cc875c8295d0":[2,0,46,15], "classMOSTAverage.html#a5b590fcba4d5d99178a0f8de14a1f174":[2,0,46,8], -"classMOSTAverage.html#a612fdb06ff433e33c717198c7e3e4b0b":[2,0,46,21], +"classMOSTAverage.html#a612fdb06ff433e33c717198c7e3e4b0b":[2,0,46,22], "classMOSTAverage.html#a63d4ee91f32fe95e61b0dfe8fa5fac22":[2,0,46,0], "classMOSTAverage.html#a697396705fddae5c919c7e4020cf20b2":[2,0,46,14], +"classMOSTAverage.html#a733f1b5c94de8ee530f4f257510cb277":[2,0,46,45], "classMOSTAverage.html#a7a28005871bb8abb49f44c3976133a4f":[2,0,46,4], -"classMOSTAverage.html#a81ad3bc2787e30025f8bee91bc5c9dc2":[2,0,46,40], -"classMOSTAverage.html#a81ff1b7e8d026f0cd74147cbcc016d15":[2,0,46,50], +"classMOSTAverage.html#a7d43a66f7518f75e694e0582dd40ec44":[2,0,46,46], +"classMOSTAverage.html#a81ad3bc2787e30025f8bee91bc5c9dc2":[2,0,46,41], +"classMOSTAverage.html#a81ff1b7e8d026f0cd74147cbcc016d15":[2,0,46,53], "classMOSTAverage.html#a8928b9f9d6d45fdd9fd88053fcae34e2":[2,0,46,11], -"classMOSTAverage.html#a89b9ec10eb8dee9a8be7c9597a3f5008":[2,0,46,36], -"classMOSTAverage.html#a8e48f835a742b02f039aeb6bc520aef8":[2,0,46,42], -"classMOSTAverage.html#a90d1df8bd48dd2bf45776a01ba1a89f7":[2,0,46,38], -"classMOSTAverage.html#a94ece9d178d0e85296cce07bab556bc7":[2,0,46,39], -"classMOSTAverage.html#a960bae1d528aef6d0e7034dbea65a2c3":[2,0,46,25], -"classMOSTAverage.html#a96178b02bec37f171ef608cec9a246bf":[2,0,46,17], +"classMOSTAverage.html#a89b9ec10eb8dee9a8be7c9597a3f5008":[2,0,46,37], +"classMOSTAverage.html#a8e48f835a742b02f039aeb6bc520aef8":[2,0,46,43], +"classMOSTAverage.html#a90d1df8bd48dd2bf45776a01ba1a89f7":[2,0,46,39], +"classMOSTAverage.html#a94ece9d178d0e85296cce07bab556bc7":[2,0,46,40], +"classMOSTAverage.html#a960bae1d528aef6d0e7034dbea65a2c3":[2,0,46,26], +"classMOSTAverage.html#a96178b02bec37f171ef608cec9a246bf":[2,0,46,18], "classMOSTAverage.html#aa52cd2c83e24eef47d6a409b7bcf4c81":[2,0,46,7], "classMOSTAverage.html#aaea0b00766b3cdeefd2b54bade8a86bd":[2,0,46,6], -"classMOSTAverage.html#ab227f9a8e9224820c00fa8b223712b3e":[2,0,46,37], +"classMOSTAverage.html#ab227f9a8e9224820c00fa8b223712b3e":[2,0,46,38], "classMOSTAverage.html#ab85828af24cd22d737931c51862389e4":[2,0,46,5], -"classMOSTAverage.html#ab886a0b96314880c4769318c81b23fbb":[2,0,46,22], -"classMOSTAverage.html#abc66735142b394193e3b6934ea817015":[2,0,46,34], -"classMOSTAverage.html#ac37b71ce655ea973ad6fc4c564b040c1":[2,0,46,20], +"classMOSTAverage.html#ab886a0b96314880c4769318c81b23fbb":[2,0,46,23], +"classMOSTAverage.html#abc66735142b394193e3b6934ea817015":[2,0,46,35], +"classMOSTAverage.html#ac37b71ce655ea973ad6fc4c564b040c1":[2,0,46,21], "classMOSTAverage.html#ac755f71a35f1231c8add20993364832a":[2,0,46,1], -"classMOSTAverage.html#ac95147c0d7961323ca8b079f63cd4be9":[2,0,46,46], -"classMOSTAverage.html#acdb5e2dec5f3e9b0a37e194430ca32a7":[2,0,46,19], -"classMOSTAverage.html#acdc75484e6ed5d2fadfb93573b6dded2":[2,0,46,31], +"classMOSTAverage.html#ac95147c0d7961323ca8b079f63cd4be9":[2,0,46,49], +"classMOSTAverage.html#acdb5e2dec5f3e9b0a37e194430ca32a7":[2,0,46,20], +"classMOSTAverage.html#acdc75484e6ed5d2fadfb93573b6dded2":[2,0,46,32], "classMOSTAverage.html#acfc77dc21a0821d4b446f7be289c64d6":[2,0,46,2], -"classMOSTAverage.html#ad301df8e1ee46557a4d277c3f87fae69":[2,0,46,27], -"classMOSTAverage.html#ad570edb25d41640aa2d52122ae303884":[2,0,46,32], +"classMOSTAverage.html#ad301df8e1ee46557a4d277c3f87fae69":[2,0,46,28], +"classMOSTAverage.html#ad570edb25d41640aa2d52122ae303884":[2,0,46,33], "classMOSTAverage.html#add74667e947201bbb2ddf2785f02ee0c":[2,0,46,3], -"classMOSTAverage.html#ae1d62c88d62bbef8458d0084200f65f2":[2,0,46,26], -"classMOSTAverage.html#aeac5da9c3972fdde64f60720f88efe2e":[2,0,46,30], -"classMOSTAverage.html#aed9b6c726189d8858abba0a2a66feca1":[2,0,46,28], -"classMOSTAverage.html#aefb42b9f2a5c3347e7ab87abdfcab3d7":[2,0,46,18], -"classMOSTAverage.html#af2f1477f6bc5e4b2f2ddee27d17dab9f":[2,0,46,51], -"classMOSTAverage.html#afbe752293b7c2790b1994a2349261fda":[2,0,46,33], +"classMOSTAverage.html#ae1d62c88d62bbef8458d0084200f65f2":[2,0,46,27], +"classMOSTAverage.html#aeac5da9c3972fdde64f60720f88efe2e":[2,0,46,31], +"classMOSTAverage.html#aed9b6c726189d8858abba0a2a66feca1":[2,0,46,29], +"classMOSTAverage.html#aefb42b9f2a5c3347e7ab87abdfcab3d7":[2,0,46,19], +"classMOSTAverage.html#af2f1477f6bc5e4b2f2ddee27d17dab9f":[2,0,46,54], +"classMOSTAverage.html#afbe752293b7c2790b1994a2349261fda":[2,0,46,34], "classMRISplitIntegrator.html":[2,0,47], "classMRISplitIntegrator.html#a02e299d44fcd24c67717267dd15a7895":[2,0,47,32], "classMRISplitIntegrator.html#a088e107111ca012e026908b0c0b3cef7":[2,0,47,25], @@ -245,9 +249,5 @@ var NAVTREEINDEX6 = "classMultiBlockContainer.html#afe74361709855a6b78669dea775edc45":[2,0,48,2], "classNullMoist.html":[2,0,50], "classNullMoist.html#a11a25944d4ddb955f74e355838b9d8b0":[2,0,50,3], -"classNullMoist.html#a1b6a72d67d9b2642e99a5b768315476c":[2,0,50,7], -"classNullMoist.html#a24f0528f7d31b89f36a3c225c7e53010":[2,0,50,11], -"classNullMoist.html#a3cb016aa9c0f1ee7534ad678723d1c59":[2,0,50,13], -"classNullMoist.html#a645f66b91b08d84aa7451a9da0c11a72":[2,0,50,12], -"classNullMoist.html#a6f526044328db858069e4b6a70fdbdf7":[2,0,50,6] +"classNullMoist.html#a1b6a72d67d9b2642e99a5b768315476c":[2,0,50,7] }; diff --git a/navtreeindex7.js b/navtreeindex7.js index cc43a64b18..23e3f30c2f 100644 --- a/navtreeindex7.js +++ b/navtreeindex7.js @@ -1,5 +1,9 @@ var NAVTREEINDEX7 = { +"classNullMoist.html#a24f0528f7d31b89f36a3c225c7e53010":[2,0,50,11], +"classNullMoist.html#a3cb016aa9c0f1ee7534ad678723d1c59":[2,0,50,13], +"classNullMoist.html#a645f66b91b08d84aa7451a9da0c11a72":[2,0,50,12], +"classNullMoist.html#a6f526044328db858069e4b6a70fdbdf7":[2,0,50,6], "classNullMoist.html#a75e2d77cb28efa62759818d066b53bb9":[2,0,50,1], "classNullMoist.html#a987746c147545a1a7d0efd21e5e34a12":[2,0,50,0], "classNullMoist.html#aa2f97dcd622bc4ef212421d496ee2297":[2,0,50,2], @@ -245,9 +249,5 @@ var NAVTREEINDEX7 = "classRadiation.html#a628ab4164c223bc55241535374a780cb":[2,0,59,40], "classRadiation.html#a62efb2cdbddfca4321d9e866b6a79b11":[2,0,59,24], "classRadiation.html#a6569e23160036eb2186d6142e2387d9f":[2,0,59,51], -"classRadiation.html#a65e0577b3ffe9a808731650c75941674":[2,0,59,74], -"classRadiation.html#a65e14eac1882d0877cb60c185b91f670":[2,0,59,34], -"classRadiation.html#a65f94329afd4aad11489c87e5174c462":[2,0,59,47], -"classRadiation.html#a687fe7137c6cb0b0040addeb90249a0c":[2,0,59,60], -"classRadiation.html#a6a43bd5c228b629042b73e06f8fbcf87":[2,0,59,17] +"classRadiation.html#a65e0577b3ffe9a808731650c75941674":[2,0,59,74] }; diff --git a/navtreeindex8.js b/navtreeindex8.js index 57c74d5af4..ba2bba47f5 100644 --- a/navtreeindex8.js +++ b/navtreeindex8.js @@ -1,5 +1,9 @@ var NAVTREEINDEX8 = { +"classRadiation.html#a65e14eac1882d0877cb60c185b91f670":[2,0,59,34], +"classRadiation.html#a65f94329afd4aad11489c87e5174c462":[2,0,59,47], +"classRadiation.html#a687fe7137c6cb0b0040addeb90249a0c":[2,0,59,60], +"classRadiation.html#a6a43bd5c228b629042b73e06f8fbcf87":[2,0,59,17], "classRadiation.html#a6a65d086e75212c5d372c2fbdb694843":[2,0,59,26], "classRadiation.html#a748f2155d330eecb6d0ce4fba32db8e7":[2,0,59,9], "classRadiation.html#a753f36a08e04e4332b9f6851dbd34128":[2,0,59,12], @@ -245,9 +249,5 @@ var NAVTREEINDEX8 = "classSlingo.html#aedbfc95f917b864354b84a9a78d74c94":[2,0,66,0], "classTerrainIF.html":[2,0,78], "classTerrainIF.html#a3e1f2814d20da7b5dd6d1d620b04784c":[2,0,78,4], -"classTerrainIF.html#ac037e7de054cca909a921eccc620ef4a":[2,0,78,0], -"classTerrainIF.html#ad0a9adc95fd3d0b5903d5ef7f5b74176":[2,0,78,2], -"classTerrainIF.html#ad7eb62071230ad12fbaa91ec2a13f110":[2,0,78,1], -"classTerrainIF.html#aeb902107efd92150abad59ec0a8cf088":[2,0,78,3], -"classUnionCIF.html":[2,0,82] +"classTerrainIF.html#ac037e7de054cca909a921eccc620ef4a":[2,0,78,0] }; diff --git a/navtreeindex9.js b/navtreeindex9.js index 1356eab059..898d2c0674 100644 --- a/navtreeindex9.js +++ b/navtreeindex9.js @@ -1,5 +1,9 @@ var NAVTREEINDEX9 = { +"classTerrainIF.html#ad0a9adc95fd3d0b5903d5ef7f5b74176":[2,0,78,2], +"classTerrainIF.html#ad7eb62071230ad12fbaa91ec2a13f110":[2,0,78,1], +"classTerrainIF.html#aeb902107efd92150abad59ec0a8cf088":[2,0,78,3], +"classUnionCIF.html":[2,0,82], "classUnionCIF.html#a0bbd9d187f7efd622fb063c08d06151c":[2,0,82,7], "classUnionCIF.html#a150413e8d9e4bbd2b44e924c839f296a":[2,0,82,11], "classUnionCIF.html#a2efa596306e1f101538ea7addef01c50":[2,0,82,8], @@ -157,8 +161,8 @@ var NAVTREEINDEX9 = "eb__if_8H_source.html":[3,0,1,4,2], "eb__regular_8cpp.html":[3,0,1,4,3], "files.html":[3,0], -"functions.html":[2,3,0,0], "functions.html":[2,3,0], +"functions.html":[2,3,0,0], "functions_b.html":[2,3,0,1], "functions_c.html":[2,3,0,2], "functions_d.html":[2,3,0,3], @@ -166,8 +170,8 @@ var NAVTREEINDEX9 = "functions_enum.html":[2,3,4], "functions_eval.html":[2,3,5], "functions_f.html":[2,3,0,5], -"functions_func.html":[2,3,1,0], "functions_func.html":[2,3,1], +"functions_func.html":[2,3,1,0], "functions_func_b.html":[2,3,1,1], "functions_func_c.html":[2,3,1,2], "functions_func_d.html":[2,3,1,3], @@ -245,9 +249,5 @@ var NAVTREEINDEX9 = "globals.html":[3,1,0], "globals_b.html":[3,1,0,1], "globals_c.html":[3,1,0,2], -"globals_d.html":[3,1,0,3], -"globals_defs.html":[3,1,6], -"globals_e.html":[3,1,0,4], -"globals_enum.html":[3,1,4], -"globals_eval.html":[3,1,5] +"globals_d.html":[3,1,0,3] }; diff --git a/search/all_0.js b/search/all_0.js index 31490a337d..240bea7bbd 100644 --- a/search/all_0.js +++ b/search/all_0.js @@ -28,16 +28,16 @@ var searchData= ['add_5fpar_25',['add_par',['../main_8cpp.html#a183e783116d02836167ccbed3b28c1d3',1,'main.cpp']]], ['add_5fthin_5fbody_5fsources_26',['add_thin_body_sources',['../Src__headers_8H.html#a5b82614fa1590f73caf25dc65b1c937d',1,'add_thin_body_sources(amrex::MultiFab &xmom_source, amrex::MultiFab &ymom_source, amrex::MultiFab &zmom_source, std::unique_ptr< amrex::iMultiFab > &xflux_imask_lev, std::unique_ptr< amrex::iMultiFab > &yflux_imask_lev, std::unique_ptr< amrex::iMultiFab > &zflux_imask_lev, std::unique_ptr< amrex::MultiFab > &thin_xforce_lev, std::unique_ptr< amrex::MultiFab > &thin_yforce_lev, std::unique_ptr< amrex::MultiFab > &thin_zforce_lev): Src_headers.H'],['../ERF__add__thin__body__sources_8cpp.html#afe1f106475861ba9ed98d5163c7f4e20',1,'add_thin_body_sources(MultiFab &xmom_src, MultiFab &ymom_src, MultiFab &zmom_src, std::unique_ptr< iMultiFab > &xflux_imask_lev, std::unique_ptr< iMultiFab > &yflux_imask_lev, std::unique_ptr< iMultiFab > &zflux_imask_lev, std::unique_ptr< MultiFab > &thin_xforce_lev, std::unique_ptr< MultiFab > &thin_yforce_lev, std::unique_ptr< MultiFab > &thin_zforce_lev): ERF_add_thin_body_sources.cpp']]], ['add_5fvar_27',['add_var',['../structTimeInterpolatedData.html#a3b9292eb3012672361abacc2ab7d9b2c',1,'TimeInterpolatedData']]], - ['adiabatic_28',['ADIABATIC',['../classABLMost.html#a46fbd9260d2adfa7c18edad6452f9baba10548012f42e962e7945ce998b571c5c',1,'ABLMost']]], - ['adiabatic_29',['adiabatic',['../structadiabatic.html#a43c914de601009400405ce6cfaaf2936',1,'adiabatic::adiabatic()'],['../structadiabatic.html',1,'adiabatic']]], - ['adiabatic_5fcharnock_30',['adiabatic_charnock',['../structadiabatic__charnock.html',1,'adiabatic_charnock'],['../structadiabatic__charnock.html#a03e2e3c105b2939c433c758d067a74a9',1,'adiabatic_charnock::adiabatic_charnock()']]], - ['adiabatic_5fmod_5fcharnock_31',['adiabatic_mod_charnock',['../structadiabatic__mod__charnock.html',1,'adiabatic_mod_charnock'],['../structadiabatic__mod__charnock.html#a4d85da446411e8d3f4dfb8e47e4c14b4',1,'adiabatic_mod_charnock::adiabatic_mod_charnock()']]], - ['adiabatic_5fwave_5fcoupled_32',['adiabatic_wave_coupled',['../structadiabatic__wave__coupled.html',1,'adiabatic_wave_coupled'],['../structadiabatic__wave__coupled.html#ab4bae3bcb6d202acedfa914203374506',1,'adiabatic_wave_coupled::adiabatic_wave_coupled()']]], - ['adv_5ftype_5fconvert_5fint_5fto_5fstring_33',['adv_type_convert_int_to_string',['../structAdvChoice.html#abea240033571adc8f3993bd56bf28fa2',1,'AdvChoice']]], - ['adv_5ftype_5fconvert_5fstring_5fto_5fadvtype_34',['adv_type_convert_string_to_advtype',['../structAdvChoice.html#a191cb08c4e809d1982ea90e4b4f9a528',1,'AdvChoice']]], - ['advance_35',['Advance',['../classLandSurface.html#a2170397164e0f533884e744a2a73deb7',1,'LandSurface::Advance()'],['../classERF.html#a47413fe5588f7dd71a1d5087a9e804f9',1,'ERF::Advance()']]], - ['advance_36',['advance',['../classWindFarm.html#a1ee7eda7941fb31102be525bd79c8eb6',1,'WindFarm::advance()'],['../classSimpleAD.html#a846f49f7333ed47f1c92d5cc8b57cb08',1,'SimpleAD::advance()'],['../classNullWindFarm.html#a3085f67dd33114a5984f51ccdeffc7fa',1,'NullWindFarm::advance()'],['../classFitch.html#a9360fcfcc51477e24b225c54387543c6',1,'Fitch::advance()'],['../classEWP.html#ab1f86b9667e1b3b119458c86b8655939',1,'EWP::advance()'],['../classMRISplitIntegrator.html#ad78b5d1908a131c3597232a041ca267b',1,'MRISplitIntegrator::advance()']]], - ['advance_37',['Advance',['../classMM5.html#a2acfbfb967111ce4aed50e55adbcc15c',1,'MM5::Advance()'],['../classNullSurf.html#a70a49bad633a2a87c4df7de8f368ef95',1,'NullSurf::Advance()'],['../classSLM.html#a31956746a8b8bbf207027cb784c9bfa4',1,'SLM::Advance()'],['../classEulerianMicrophysics.html#a6cc7efaa2f4f27f8a7f485fd96e5635b',1,'EulerianMicrophysics::Advance()'],['../classKessler.html#adbfb72df664abc2f02fede6b91b066b6',1,'Kessler::Advance()'],['../classMicrophysics.html#a88b5020f081efbf8805cffff5cde298c',1,'Microphysics::Advance()'],['../classNullMoist.html#aa2f97dcd622bc4ef212421d496ee2297',1,'NullMoist::Advance()'],['../classSAM.html#a012056ae20ded7928adf1be8afa665b9',1,'SAM::Advance()']]], + ['adiabatic_28',['adiabatic',['../structadiabatic.html#a43c914de601009400405ce6cfaaf2936',1,'adiabatic']]], + ['adiabatic_29',['ADIABATIC',['../classABLMost.html#a46fbd9260d2adfa7c18edad6452f9baba10548012f42e962e7945ce998b571c5c',1,'ABLMost']]], + ['adiabatic_30',['adiabatic',['../structadiabatic.html',1,'']]], + ['adiabatic_5fcharnock_31',['adiabatic_charnock',['../structadiabatic__charnock.html',1,'adiabatic_charnock'],['../structadiabatic__charnock.html#a03e2e3c105b2939c433c758d067a74a9',1,'adiabatic_charnock::adiabatic_charnock()']]], + ['adiabatic_5fmod_5fcharnock_32',['adiabatic_mod_charnock',['../structadiabatic__mod__charnock.html',1,'adiabatic_mod_charnock'],['../structadiabatic__mod__charnock.html#a4d85da446411e8d3f4dfb8e47e4c14b4',1,'adiabatic_mod_charnock::adiabatic_mod_charnock()']]], + ['adiabatic_5fwave_5fcoupled_33',['adiabatic_wave_coupled',['../structadiabatic__wave__coupled.html',1,'adiabatic_wave_coupled'],['../structadiabatic__wave__coupled.html#ab4bae3bcb6d202acedfa914203374506',1,'adiabatic_wave_coupled::adiabatic_wave_coupled()']]], + ['adv_5ftype_5fconvert_5fint_5fto_5fstring_34',['adv_type_convert_int_to_string',['../structAdvChoice.html#abea240033571adc8f3993bd56bf28fa2',1,'AdvChoice']]], + ['adv_5ftype_5fconvert_5fstring_5fto_5fadvtype_35',['adv_type_convert_string_to_advtype',['../structAdvChoice.html#a191cb08c4e809d1982ea90e4b4f9a528',1,'AdvChoice']]], + ['advance_36',['Advance',['../classMicrophysics.html#a88b5020f081efbf8805cffff5cde298c',1,'Microphysics::Advance()'],['../classKessler.html#adbfb72df664abc2f02fede6b91b066b6',1,'Kessler::Advance()'],['../classEulerianMicrophysics.html#a6cc7efaa2f4f27f8a7f485fd96e5635b',1,'EulerianMicrophysics::Advance()'],['../classSLM.html#a31956746a8b8bbf207027cb784c9bfa4',1,'SLM::Advance()'],['../classNullSurf.html#a70a49bad633a2a87c4df7de8f368ef95',1,'NullSurf::Advance()'],['../classMM5.html#a2acfbfb967111ce4aed50e55adbcc15c',1,'MM5::Advance()'],['../classLandSurface.html#a2170397164e0f533884e744a2a73deb7',1,'LandSurface::Advance()'],['../classERF.html#a47413fe5588f7dd71a1d5087a9e804f9',1,'ERF::Advance()'],['../classNullMoist.html#aa2f97dcd622bc4ef212421d496ee2297',1,'NullMoist::Advance()'],['../classSAM.html#a012056ae20ded7928adf1be8afa665b9',1,'SAM::Advance()']]], + ['advance_37',['advance',['../classMRISplitIntegrator.html#ad78b5d1908a131c3597232a041ca267b',1,'MRISplitIntegrator::advance()'],['../classEWP.html#ab1f86b9667e1b3b119458c86b8655939',1,'EWP::advance()'],['../classFitch.html#a9360fcfcc51477e24b225c54387543c6',1,'Fitch::advance()'],['../classNullWindFarm.html#a3085f67dd33114a5984f51ccdeffc7fa',1,'NullWindFarm::advance()'],['../classSimpleAD.html#a846f49f7333ed47f1c92d5cc8b57cb08',1,'SimpleAD::advance()'],['../classWindFarm.html#a1ee7eda7941fb31102be525bd79c8eb6',1,'WindFarm::advance()']]], ['advance_5fdycore_38',['advance_dycore',['../classERF.html#af836d1bb05ac4c9f535358e14714f13e',1,'ERF']]], ['advance_5flsm_39',['advance_lsm',['../classERF.html#ac3f83ba16254a0efd4395900cef97efc',1,'ERF']]], ['advance_5fmicrophysics_40',['advance_microphysics',['../classERF.html#ad64b5fe566102dc053b35ad337971a3e',1,'ERF']]], diff --git a/search/all_10.js b/search/all_10.js index f4857bc588..980a87593c 100644 --- a/search/all_10.js +++ b/search/all_10.js @@ -1,43 +1,43 @@ var searchData= [ - ['q_5fh_1624',['Q_h',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea5bdaa761454a0b6bbfd57ec7f2b41c8f',1,'EddyDiff']]], - ['q_5fstar_1625',['q_star',['../classABLMost.html#a0630def935d5ca0d24160b9b9567f3e1',1,'ABLMost']]], - ['q_5fv_1626',['Q_v',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea4166b9561a2ef0ad6d1b6d2c34cb9580',1,'EddyDiff']]], - ['qaerwat_5fm_1627',['qaerwat_m',['../classMam4__aer.html#a0f94d150e77cc227c30e434a851f7d52',1,'Mam4_aer']]], - ['qc_1628',['qc',['../classRadiation.html#abc0bc2362396171354decd80be18dde1',1,'Radiation']]], - ['qci_1629',['qci',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a1bb53b1131a676fadffc9e0a53c0309a',1,'MicVar']]], - ['qci0_1630',['qci0',['../ERF__Constants_8H.html#a1aa289f72f87789e664357396befb8eb',1,'ERF_Constants.H']]], - ['qcl_1631',['qcl',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea6b81d3dc642e339490ef9ab50db41a65',1,'MicVar_Kess::qcl()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a9b5910b49731b9337307885dee73e090',1,'MicVar::qcl()']]], - ['qcw0_1632',['qcw0',['../ERF__Constants_8H.html#a86f34aeefa355fa0d6d0cca8f033a878',1,'ERF_Constants.H']]], - ['qi_1633',['qi',['../classRadiation.html#a86954a9c03e7c7eb9cd610b4e533b27e',1,'Radiation']]], - ['qke_5fh_1634',['QKE_h',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149eafa82972314696da2709ea8ac9b63d963',1,'EddyDiff']]], - ['qke_5fv_1635',['QKE_v',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149eab74402005c035d247402e5f247827dcc',1,'EddyDiff']]], - ['qmoist_1636',['qmoist',['../classERF.html#ae00126a9c2738bf6a6cbbe77321c9cfc',1,'ERF']]], - ['qmoist_5fptr_1637',['Qmoist_Ptr',['../classKessler.html#a0a84c629a080e71ed93a5f349ad7724a',1,'Kessler::Qmoist_Ptr()'],['../classSAM.html#af6652cb6f7b93a1e418da98b5a8b57b7',1,'SAM::Qmoist_Ptr()'],['../classNullMoist.html#a1b6a72d67d9b2642e99a5b768315476c',1,'NullMoist::Qmoist_Ptr()']]], - ['qmoist_5fsize_1638',['Qmoist_Size',['../classSAM.html#ae27c1d50525a70f838fa9ba73e61ef46',1,'SAM::Qmoist_Size()'],['../classNullMoist.html#abdf706f193bbb09c62e41734570f3cd1',1,'NullMoist::Qmoist_Size()'],['../classKessler.html#a3925ff722ac968e306dbcc233718030a',1,'Kessler::Qmoist_Size()']]], - ['qn_1639',['qn',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a62db2b95f840b974246d431152593fb8',1,'MicVar::qn()'],['../classRadiation.html#a913e1b4a5c5ddf093f81c6a6c7051035',1,'Radiation::qn()']]], - ['qn1d_1640',['qn1d',['../classSAM.html#a9fafcc2e5b063f7ccb94e2cc78324d35',1,'SAM']]], - ['qp_1641',['qp',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea2edc86e05fd080c928faeb1f6f39c701',1,'MicVar_Kess::qp()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8af86a273a88ba038dd1ea798c51ebf8c4',1,'MicVar::qp()']]], - ['qp_5fthreshold_1642',['qp_threshold',['../ERF__Constants_8H.html#a956656dbad95153bb8d3f0e42fa3d356',1,'ERF_Constants.H']]], - ['qpg_1643',['qpg',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a36203351003064cd3dfd2c84f66c0ea1',1,'MicVar']]], - ['qpr_1644',['qpr',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a1669c627fc476575ea3c391a275d8cd3',1,'MicVar']]], - ['qps_1645',['qps',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8ae960e0fe1fea5fc017938ab2b92757ed',1,'MicVar']]], - ['qrad_5fsrc_1646',['qrad_src',['../classRadiation.html#a687fe7137c6cb0b0040addeb90249a0c',1,'Radiation']]], - ['qrl_1647',['qrl',['../classRadiation.html#a20fc801b4852279dafb58e95bc728338',1,'Radiation']]], - ['qrlc_1648',['qrlc',['../classRadiation.html#a3308c21539f43b459729b9b02652dd01',1,'Radiation']]], - ['qrs_1649',['qrs',['../classRadiation.html#a9eaa967e3b5556ce43d07e48d3e0c66f',1,'Radiation']]], - ['qrsc_1650',['qrsc',['../classRadiation.html#abb3bb540832d451a76367e441df528a0',1,'Radiation']]], - ['qsat_1651',['qsat',['../classWaterVaporSat.html#a4dac5d0ff52b333add64a13539fca1c8',1,'WaterVaporSat']]], - ['qsat_5fice_1652',['qsat_ice',['../classWaterVaporSat.html#a55f00a8a0a629c85e6a477d11a4f14e5',1,'WaterVaporSat']]], - ['qsat_5fwater_1653',['qsat_water',['../classWaterVaporSat.html#a96e18136b9a523d912f9d86829de8b38',1,'WaterVaporSat']]], - ['qstate_5fsize_1654',['Qstate_Size',['../classNullMoist.html#afaa201a3a1dc21c18888d9c6a068f956',1,'NullMoist::Qstate_Size()'],['../classSAM.html#aba750ad815594f21255d26d24810d3fe',1,'SAM::Qstate_Size()'],['../classKessler.html#a25a6c3f8cda023e5ea70f1ddd983626c',1,'Kessler::Qstate_Size()']]], - ['qt_1655',['qt',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea9f81c8a38dd25b5ae5821d48e8878b03',1,'MicVar_Kess::qt()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a584161f7272862cb35496c7560617286',1,'MicVar::qt()'],['../classRadiation.html#aa3961f0a2837a89f1d08dd5aba2ed056',1,'Radiation::qt()'],['../classAerRadProps.html#a837035712a214f1b8daf7a4d30727e6d',1,'AerRadProps::qt()']]], - ['qt1d_1656',['qt1d',['../classSAM.html#aaa3dd79bbd6ac41ae1170d003b1a423d',1,'SAM']]], - ['qv_1657',['qv',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476beaf099273d19f4b8cdca199c5177231e35',1,'MicVar_Kess::qv()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a24d3a4784c4c0b3c8ab827a784198261',1,'MicVar::qv()']]], - ['qv_1658',['QV',['../namespaceRealBdyVars.html#aa4743649b85ade11df23692d7c3947bda70da43bc7762a74b799365a54a1c1b2c',1,'RealBdyVars::QV()'],['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a3b5140db1e7e68b5103cb3372b24faf5',1,'WRFBdyVars::QV()'],['../namespaceMetGridBdyVars.html#a22bd27d0288d22c74bd7c0bb57b2b89fa7da9efd84268db8dc519ebf62f34c4c0',1,'MetGridBdyVars::QV()']]], - ['qv1d_1659',['qv1d',['../classSAM.html#a65e2ba7cb72946a8af2e7541b072e3ba',1,'SAM']]], - ['qv_5finp_5fsound_1660',['qv_inp_sound',['../structInputSoundingData.html#a7710e6498adaf4b94a54e600ef6a0ca7',1,'InputSoundingData']]], - ['qv_5finp_5fsound_5fd_1661',['qv_inp_sound_d',['../structInputSoundingData.html#acc5ac869d8e7dda08bdcba3c663c9705',1,'InputSoundingData']]], - ['qv_5fprim_1662',['Qv_prim',['../classERF.html#a521d1faf157e3bccc86c0f26ee923576',1,'ERF']]], - ['qv_5fref_5finp_5fsound_1663',['qv_ref_inp_sound',['../structInputSoundingData.html#a9cb5ab7b69363eca08231b634e94e109',1,'InputSoundingData']]] + ['q_5fh_1627',['Q_h',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea5bdaa761454a0b6bbfd57ec7f2b41c8f',1,'EddyDiff']]], + ['q_5fstar_1628',['q_star',['../classABLMost.html#a0630def935d5ca0d24160b9b9567f3e1',1,'ABLMost']]], + ['q_5fv_1629',['Q_v',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea4166b9561a2ef0ad6d1b6d2c34cb9580',1,'EddyDiff']]], + ['qaerwat_5fm_1630',['qaerwat_m',['../classMam4__aer.html#a0f94d150e77cc227c30e434a851f7d52',1,'Mam4_aer']]], + ['qc_1631',['qc',['../classRadiation.html#abc0bc2362396171354decd80be18dde1',1,'Radiation']]], + ['qci_1632',['qci',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a1bb53b1131a676fadffc9e0a53c0309a',1,'MicVar']]], + ['qci0_1633',['qci0',['../ERF__Constants_8H.html#a1aa289f72f87789e664357396befb8eb',1,'ERF_Constants.H']]], + ['qcl_1634',['qcl',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea6b81d3dc642e339490ef9ab50db41a65',1,'MicVar_Kess::qcl()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a9b5910b49731b9337307885dee73e090',1,'MicVar::qcl()']]], + ['qcw0_1635',['qcw0',['../ERF__Constants_8H.html#a86f34aeefa355fa0d6d0cca8f033a878',1,'ERF_Constants.H']]], + ['qi_1636',['qi',['../classRadiation.html#a86954a9c03e7c7eb9cd610b4e533b27e',1,'Radiation']]], + ['qke_5fh_1637',['QKE_h',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149eafa82972314696da2709ea8ac9b63d963',1,'EddyDiff']]], + ['qke_5fv_1638',['QKE_v',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149eab74402005c035d247402e5f247827dcc',1,'EddyDiff']]], + ['qmoist_1639',['qmoist',['../classERF.html#ae00126a9c2738bf6a6cbbe77321c9cfc',1,'ERF']]], + ['qmoist_5fptr_1640',['Qmoist_Ptr',['../classKessler.html#a0a84c629a080e71ed93a5f349ad7724a',1,'Kessler::Qmoist_Ptr()'],['../classSAM.html#af6652cb6f7b93a1e418da98b5a8b57b7',1,'SAM::Qmoist_Ptr()'],['../classNullMoist.html#a1b6a72d67d9b2642e99a5b768315476c',1,'NullMoist::Qmoist_Ptr()']]], + ['qmoist_5fsize_1641',['Qmoist_Size',['../classSAM.html#ae27c1d50525a70f838fa9ba73e61ef46',1,'SAM::Qmoist_Size()'],['../classNullMoist.html#abdf706f193bbb09c62e41734570f3cd1',1,'NullMoist::Qmoist_Size()'],['../classKessler.html#a3925ff722ac968e306dbcc233718030a',1,'Kessler::Qmoist_Size()']]], + ['qn_1642',['qn',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a62db2b95f840b974246d431152593fb8',1,'MicVar::qn()'],['../classRadiation.html#a913e1b4a5c5ddf093f81c6a6c7051035',1,'Radiation::qn()']]], + ['qn1d_1643',['qn1d',['../classSAM.html#a9fafcc2e5b063f7ccb94e2cc78324d35',1,'SAM']]], + ['qp_1644',['qp',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea2edc86e05fd080c928faeb1f6f39c701',1,'MicVar_Kess::qp()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8af86a273a88ba038dd1ea798c51ebf8c4',1,'MicVar::qp()']]], + ['qp_5fthreshold_1645',['qp_threshold',['../ERF__Constants_8H.html#a956656dbad95153bb8d3f0e42fa3d356',1,'ERF_Constants.H']]], + ['qpg_1646',['qpg',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a36203351003064cd3dfd2c84f66c0ea1',1,'MicVar']]], + ['qpr_1647',['qpr',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a1669c627fc476575ea3c391a275d8cd3',1,'MicVar']]], + ['qps_1648',['qps',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8ae960e0fe1fea5fc017938ab2b92757ed',1,'MicVar']]], + ['qrad_5fsrc_1649',['qrad_src',['../classRadiation.html#a687fe7137c6cb0b0040addeb90249a0c',1,'Radiation']]], + ['qrl_1650',['qrl',['../classRadiation.html#a20fc801b4852279dafb58e95bc728338',1,'Radiation']]], + ['qrlc_1651',['qrlc',['../classRadiation.html#a3308c21539f43b459729b9b02652dd01',1,'Radiation']]], + ['qrs_1652',['qrs',['../classRadiation.html#a9eaa967e3b5556ce43d07e48d3e0c66f',1,'Radiation']]], + ['qrsc_1653',['qrsc',['../classRadiation.html#abb3bb540832d451a76367e441df528a0',1,'Radiation']]], + ['qsat_1654',['qsat',['../classWaterVaporSat.html#a4dac5d0ff52b333add64a13539fca1c8',1,'WaterVaporSat']]], + ['qsat_5fice_1655',['qsat_ice',['../classWaterVaporSat.html#a55f00a8a0a629c85e6a477d11a4f14e5',1,'WaterVaporSat']]], + ['qsat_5fwater_1656',['qsat_water',['../classWaterVaporSat.html#a96e18136b9a523d912f9d86829de8b38',1,'WaterVaporSat']]], + ['qstate_5fsize_1657',['Qstate_Size',['../classNullMoist.html#afaa201a3a1dc21c18888d9c6a068f956',1,'NullMoist::Qstate_Size()'],['../classSAM.html#aba750ad815594f21255d26d24810d3fe',1,'SAM::Qstate_Size()'],['../classKessler.html#a25a6c3f8cda023e5ea70f1ddd983626c',1,'Kessler::Qstate_Size()']]], + ['qt_1658',['qt',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea9f81c8a38dd25b5ae5821d48e8878b03',1,'MicVar_Kess::qt()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a584161f7272862cb35496c7560617286',1,'MicVar::qt()'],['../classRadiation.html#aa3961f0a2837a89f1d08dd5aba2ed056',1,'Radiation::qt()'],['../classAerRadProps.html#a837035712a214f1b8daf7a4d30727e6d',1,'AerRadProps::qt()']]], + ['qt1d_1659',['qt1d',['../classSAM.html#aaa3dd79bbd6ac41ae1170d003b1a423d',1,'SAM']]], + ['qv_1660',['qv',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476beaf099273d19f4b8cdca199c5177231e35',1,'MicVar_Kess::qv()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a24d3a4784c4c0b3c8ab827a784198261',1,'MicVar::qv()']]], + ['qv_1661',['QV',['../namespaceRealBdyVars.html#aa4743649b85ade11df23692d7c3947bda70da43bc7762a74b799365a54a1c1b2c',1,'RealBdyVars::QV()'],['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a3b5140db1e7e68b5103cb3372b24faf5',1,'WRFBdyVars::QV()'],['../namespaceMetGridBdyVars.html#a22bd27d0288d22c74bd7c0bb57b2b89fa7da9efd84268db8dc519ebf62f34c4c0',1,'MetGridBdyVars::QV()']]], + ['qv1d_1662',['qv1d',['../classSAM.html#a65e2ba7cb72946a8af2e7541b072e3ba',1,'SAM']]], + ['qv_5finp_5fsound_1663',['qv_inp_sound',['../structInputSoundingData.html#a7710e6498adaf4b94a54e600ef6a0ca7',1,'InputSoundingData']]], + ['qv_5finp_5fsound_5fd_1664',['qv_inp_sound_d',['../structInputSoundingData.html#acc5ac869d8e7dda08bdcba3c663c9705',1,'InputSoundingData']]], + ['qv_5fprim_1665',['Qv_prim',['../classERF.html#a521d1faf157e3bccc86c0f26ee923576',1,'ERF']]], + ['qv_5fref_5finp_5fsound_1666',['qv_ref_inp_sound',['../structInputSoundingData.html#a9cb5ab7b69363eca08231b634e94e109',1,'InputSoundingData']]] ]; diff --git a/search/all_11.js b/search/all_11.js index 8f71f0a37c..823cd9e83f 100644 --- a/search/all_11.js +++ b/search/all_11.js @@ -1,152 +1,152 @@ var searchData= [ - ['r_1664',['R',['../namespaceRealBdyVars.html#aa4743649b85ade11df23692d7c3947bda00b4f21134a7ba868f49f0d2ed3f7506',1,'RealBdyVars::R()'],['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a21c496fde087064e9fa91a2349d4d2eb',1,'WRFBdyVars::R()'],['../namespaceMetGridBdyVars.html#a22bd27d0288d22c74bd7c0bb57b2b89fa890a68deeda33b83d4ac4e821f78be84',1,'MetGridBdyVars::R()']]], - ['r_5fd_1665',['R_d',['../ERF__Constants_8H.html#aeb133d0ac46d639050313ce36187e870',1,'ERF_Constants.H']]], - ['r_5flw_5fabs_1666',['r_lw_abs',['../structPhysProp_1_1physprop__t.html#af41dfd624f5e565f0435e9bef6182ba5',1,'PhysProp::physprop_t']]], - ['r_5fsw_5fascat_1667',['r_sw_ascat',['../structPhysProp_1_1physprop__t.html#a8f237360219885a558fb5c5bfeb5c015',1,'PhysProp::physprop_t']]], - ['r_5fsw_5fext_1668',['r_sw_ext',['../structPhysProp_1_1physprop__t.html#a2c8b9cd5f27f8c039d9ec76d665f08bc',1,'PhysProp::physprop_t']]], - ['r_5fsw_5fscat_1669',['r_sw_scat',['../structPhysProp_1_1physprop__t.html#ad3d6e9851177a676ab13788002e83bc0',1,'PhysProp::physprop_t']]], - ['r_5fv_1670',['R_v',['../ERF__Constants_8H.html#a0ab59ff21ef0b178fde0843394f5674a',1,'ERF_Constants.H']]], - ['rad_5fcnst_5fget_5faer_5fidx_1671',['rad_cnst_get_aer_idx',['../classMamConstituents.html#a34183bce976a770cdace5b4b51b2f1cc',1,'MamConstituents']]], - ['rad_5fcnst_5fget_5faer_5fmmr_5fby_5fidx_1672',['rad_cnst_get_aer_mmr_by_idx',['../classMamConstituents.html#a51f22d472f105d4586cbf3e2a05ef7c2',1,'MamConstituents']]], - ['rad_5fcnst_5fget_5fgas_1673',['rad_cnst_get_gas',['../classMamConstituents.html#a54283f7f7c2d8b81a37a6c4fa84c88ff',1,'MamConstituents']]], - ['rad_5fcnst_5fget_5finfo_5fby_5fmode_1674',['rad_cnst_get_info_by_mode',['../classMamConstituents.html#a52ef200c09c64ec7d34984262e6c5939',1,'MamConstituents']]], - ['rad_5fcnst_5fget_5finfo_5fby_5fmode_5fspec_1675',['rad_cnst_get_info_by_mode_spec',['../classMamConstituents.html#a1c3ed658d0910537c8f8ca304a8da959',1,'MamConstituents']]], - ['rad_5fcnst_5fget_5finfo_5fby_5fspectype_1676',['rad_cnst_get_info_by_spectype',['../classMamConstituents.html#a232c585283486fd1b1a08142aa82355d',1,'MamConstituents']]], - ['rad_5fcnst_5fget_5fmam_5fmmr_5fby_5fidx_1677',['rad_cnst_get_mam_mmr_by_idx',['../classMamConstituents.html#afb5674421ff78c9688d71bfbf460a746',1,'MamConstituents']]], - ['rad_5fcnst_5fget_5fmam_5fmmr_5fidx_1678',['rad_cnst_get_mam_mmr_idx',['../classMamConstituents.html#a961fa56ba740189db861cdce2d903f7a',1,'MamConstituents']]], - ['rad_5fcnst_5fget_5fmode_5fidx_1679',['rad_cnst_get_mode_idx',['../classMamConstituents.html#ad4cf2f8e8744e1f06be9936ad8e47a5a',1,'MamConstituents']]], - ['rad_5fcnst_5fget_5fmode_5fnum_1680',['rad_cnst_get_mode_num',['../classMamConstituents.html#a47b426e82c4a19365d77eaa51c7cac32',1,'MamConstituents']]], - ['rad_5fcnst_5fget_5fmode_5fnum_5fidx_1681',['rad_cnst_get_mode_num_idx',['../classMamConstituents.html#a4076c6a6cf134bef0e6c6ad1b683c098',1,'MamConstituents']]], - ['rad_5fcnst_5fget_5fspec_5fidx_1682',['rad_cnst_get_spec_idx',['../classMamConstituents.html#aaecf4d2caa28eb62f46307aa7a97b059',1,'MamConstituents']]], - ['rad_5fcnst_5finit_1683',['rad_cnst_init',['../classMamConstituents.html#a5e7be8b1cc061652374bb6ab9e2d3645',1,'MamConstituents']]], - ['rad_5fcnst_5fout_1684',['rad_cnst_out',['../classMamConstituents.html#af4848bed3a1019cc1e3d423494bbda0a',1,'MamConstituents']]], - ['rad_5fconstants_2eh_1685',['Rad_constants.H',['../Rad__constants_8H.html',1,'']]], - ['rad_5fgas_5findex_1686',['rad_gas_index',['../classRadConstants.html#a41beba72a1d7ac337497bca58b5ff6f7',1,'RadConstants']]], - ['radconstants_1687',['RadConstants',['../classRadConstants.html',1,'']]], - ['radiation_1688',['Radiation',['../classRadiation.html',1,'Radiation'],['../classRadiation.html#aff1bb11c6262db1629ede245d861be18',1,'Radiation::Radiation()']]], - ['radiation_1689',['radiation',['../classRadiation.html#adbdd39584f1836cc21a816a7ee7098bb',1,'Radiation']]], - ['radiation_2ecpp_1690',['Radiation.cpp',['../Radiation_8cpp.html',1,'']]], - ['radiation_2eh_1691',['Radiation.H',['../Radiation_8H.html',1,'']]], - ['radiation_5fdriver_5flw_1692',['radiation_driver_lw',['../classRadiation.html#accd99e73e1c185372d1219e87fa5d94b',1,'Radiation']]], - ['radiation_5fdriver_5fsw_1693',['radiation_driver_sw',['../classRadiation.html#abf8ab94227c1a5f729ac24d92e52518b',1,'Radiation']]], - ['rain_5faccum_1694',['rain_accum',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476beaa364685bc5d7f6f41ff14bbaf6ca3fc1',1,'MicVar_Kess::rain_accum()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a710fb698c72c08828c86a3efa6e28614',1,'MicVar::rain_accum()']]], - ['rair_1695',['rair',['../ERF__Constants_8H.html#a864e81eb46f4207f25cb52e5046c23b8',1,'ERF_Constants.H']]], - ['randomreal_1696',['RandomReal',['../structTurbulentPerturbation.html#ad1831bbc1cee603520e0b66692cebfa7',1,'TurbulentPerturbation']]], - ['rayleigh_1697',['Rayleigh',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239',1,'DataStruct.H']]], - ['rayleigh_5fdamp_5ft_1698',['rayleigh_damp_T',['../structSolverChoice.html#a06a0dd1c8f7c1ed73a4f8d24b6b31cdf',1,'SolverChoice']]], - ['rayleigh_5fdamp_5fu_1699',['rayleigh_damp_U',['../structSolverChoice.html#a5aed4016dd7d17a2d2904c60af59ae9d',1,'SolverChoice']]], - ['rayleigh_5fdamp_5fv_1700',['rayleigh_damp_V',['../structSolverChoice.html#a1bae456f7b26e8ed50d78ce1af1b5ef0',1,'SolverChoice']]], - ['rayleigh_5fdamp_5fw_1701',['rayleigh_damp_W',['../structSolverChoice.html#abf35af2e52f5c1197264d895396ca59c',1,'SolverChoice']]], - ['rd_5fon_5frv_1702',['Rd_on_Rv',['../ERF__Constants_8H.html#a212cca9324fcc25708184de9d9c7a07e',1,'ERF_Constants.H']]], - ['rdocp_1703',['rdOcp',['../structSolverChoice.html#a2e1ef762ee1dc1bd3d4cbd08125c758a',1,'SolverChoice']]], - ['read_5fcustom_5fterrain_1704',['read_custom_terrain',['../classProblemBase.html#a7497a6e90bebb14387f5716ee2e51c2d',1,'ProblemBase']]], - ['read_5ffile_1705',['read_file',['../classReadBndryPlanes.html#a5c2780ff94cadd975717d0f4084e6c9e',1,'ReadBndryPlanes']]], - ['read_5ffrom_5ffile_1706',['read_from_file',['../structInputSpongeData.html#a8480886e7e481c5f83915d5feae62907',1,'InputSpongeData::read_from_file()'],['../structInputSoundingData.html#a596a65687875bb0172f0621f446452ae',1,'InputSoundingData::read_from_file()']]], - ['read_5ffrom_5fmetgrid_1707',['read_from_metgrid',['../Metgrid__utils_8H.html#a1c4ef6b718a4e7c9c225b35ba096ebf9',1,'Metgrid_utils.H']]], - ['read_5finput_5ffiles_1708',['read_input_files',['../classReadBndryPlanes.html#a6545891550da1a217d5e566ddafdd566',1,'ReadBndryPlanes']]], - ['read_5ftables_1709',['read_tables',['../classWindFarm.html#afd5b76a577e1a810a1599014957a1d9b',1,'WindFarm']]], - ['read_5ftime_5ffile_1710',['read_time_file',['../classReadBndryPlanes.html#ac6633331e3b4ae3d7c93534930b7f856',1,'ReadBndryPlanes']]], - ['read_5fwater_5frefindex_1711',['read_water_refindex',['../classMam4__aer.html#a4bd98954eadce524390046791a1730a1',1,'Mam4_aer']]], - ['read_5fwindfarm_5flocations_5ftable_1712',['read_windfarm_locations_table',['../classWindFarm.html#acbc15873f66a7ee7ae10023fdfc3a8c7',1,'WindFarm']]], - ['read_5fwindfarm_5fspec_5ftable_1713',['read_windfarm_spec_table',['../classWindFarm.html#a92bd0b9d5124a84555b8ea2633502191',1,'WindFarm']]], - ['readbndryplanes_1714',['ReadBndryPlanes',['../classReadBndryPlanes.html#a16269dfa161d2fdbe02eeb5ac0cb0e24',1,'ReadBndryPlanes::ReadBndryPlanes()'],['../classReadBndryPlanes.html',1,'ReadBndryPlanes']]], - ['readcheckpointfile_1715',['ReadCheckpointFile',['../classERF.html#af285247b24b173cd851fe49799d17f42',1,'ERF']]], - ['readfrommetgrid_2ecpp_1716',['ReadFromMetgrid.cpp',['../ReadFromMetgrid_8cpp.html',1,'']]], - ['readfromwrfbdy_2ecpp_1717',['ReadFromWRFBdy.cpp',['../ReadFromWRFBdy_8cpp.html',1,'']]], - ['readfromwrfinput_2ecpp_1718',['ReadFromWRFInput.cpp',['../ReadFromWRFInput_8cpp.html',1,'']]], - ['readnetcdffile_1719',['ReadNetCDFFile',['../NCWpsFile_8H.html#aa682cd5b28ee9ffaf36c6944bd124af0',1,'NCWpsFile.H']]], - ['readparameters_1720',['ReadParameters',['../classERF.html#a2d39cd3bdc3d90609ad3b14e266d190a',1,'ERF']]], - ['real_1721',['Real',['../structncutils_1_1NCDType.html#a7a5be35daa7dbb2cc72507cc4b5a422c',1,'ncutils::NCDType']]], - ['real_5fset_5fwidth_1722',['real_set_width',['../classERF.html#acab120bb9324e7298534d765c447d703',1,'ERF']]], - ['real_5fwidth_1723',['real_width',['../classERF.html#abb15119348ad5399947bc8883084b230',1,'ERF']]], - ['realbdy_5fcompute_5finterior_5fghost_5frhs_1724',['realbdy_compute_interior_ghost_rhs',['../InteriorGhostCells_8cpp.html#a41e809a463649991c08af8667d3947cb',1,'realbdy_compute_interior_ghost_rhs(const std::string &, const Real &bdy_time_interval, const Real &start_bdy_time, const Real &time, const Real &delta_t, int width, int set_width, const Geometry &geom, Vector< MultiFab > &S_rhs, Vector< MultiFab > &S_old_data, Vector< MultiFab > &S_cur_data, Vector< Vector< FArrayBox >> &bdy_data_xlo, Vector< Vector< FArrayBox >> &bdy_data_xhi, Vector< Vector< FArrayBox >> &bdy_data_ylo, Vector< Vector< FArrayBox >> &bdy_data_yhi): InteriorGhostCells.cpp'],['../Utils_8H.html#a64ede26fe5618a31fe1e297ef29095cd',1,'realbdy_compute_interior_ghost_rhs(const std::string &init_type, const amrex::Real &bdy_time_interval, const amrex::Real &start_bdy_time, const amrex::Real &time, const amrex::Real &delta_t, int width, int set_width, const amrex::Geometry &geom, amrex::Vector< amrex::MultiFab > &S_rhs, amrex::Vector< amrex::MultiFab > &S_old_data, amrex::Vector< amrex::MultiFab > &S_cur_data, amrex::Vector< amrex::Vector< amrex::FArrayBox >> &bdy_data_xlo, amrex::Vector< amrex::Vector< amrex::FArrayBox >> &bdy_data_xhi, amrex::Vector< amrex::Vector< amrex::FArrayBox >> &bdy_data_ylo, amrex::Vector< amrex::Vector< amrex::FArrayBox >> &bdy_data_yhi): Utils.H']]], - ['realbdyvars_1725',['RealBdyVars',['../namespaceRealBdyVars.html',1,'']]], - ['reduce_5fto_5fmax_5fper_5flevel_1726',['reduce_to_max_per_level',['../ParFunctions_8H.html#a7e646d3f1b936883c143204caa88c7c5',1,'ParFunctions.H']]], - ['ref_5fcounted_1727',['ref_counted',['../structNDArray.html#a8a0bbff40020f6aea23346ac656bf972',1,'NDArray']]], - ['ref_5ftags_1728',['ref_tags',['../classERF.html#ac81b3dfd7c6f21ba8479834e2ff1e652',1,'ERF']]], - ['refindex_5faer_5finit_1729',['refindex_aer_init',['../classPhysProp.html#a0be655aa777ad0bcd46e6b896942a733',1,'PhysProp']]], - ['refindex_5fim_5faer_5flw_1730',['refindex_im_aer_lw',['../structPhysProp_1_1physprop__t.html#a2b3656af3ed847bc9e0c7a5bfc1d64e0',1,'PhysProp::physprop_t']]], - ['refindex_5fim_5faer_5fsw_1731',['refindex_im_aer_sw',['../structPhysProp_1_1physprop__t.html#a01444396cbb69da2b50af017fef7b8e3',1,'PhysProp::physprop_t']]], - ['refindex_5freal_5faer_5flw_1732',['refindex_real_aer_lw',['../structPhysProp_1_1physprop__t.html#aa6b86d69efca7951eac318ef0a407acf',1,'PhysProp::physprop_t']]], - ['refindex_5freal_5faer_5fsw_1733',['refindex_real_aer_sw',['../structPhysProp_1_1physprop__t.html#a39ec574c71085ec5a6aa268b3b752a23',1,'PhysProp::physprop_t']]], - ['refinement_5fcriteria_5fsetup_1734',['refinement_criteria_setup',['../classERF.html#aa90c9756f684404f8b69b8a23568b535',1,'ERF']]], - ['refitablw_1735',['refitablw',['../structPhysProp_1_1physprop__t.html#a8c8ef5042c0b53fa05d1d97a49de3833',1,'PhysProp::physprop_t']]], - ['refitabsw_1736',['refitabsw',['../structPhysProp_1_1physprop__t.html#a7a536b72896ed7e80fe3b13d990bce61',1,'PhysProp::physprop_t']]], - ['reflect_5feven_1737',['reflect_even',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01cabc47f82507730e1734a2f3bc58893cf9',1,'ERFBCType']]], - ['reflect_5fodd_1738',['reflect_odd',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca41cecdb4487b15207675ae9ee564e705',1,'ERFBCType']]], - ['refrtablw_1739',['refrtablw',['../structPhysProp_1_1physprop__t.html#accf672f5038e149841b092ffb9ee1ba1',1,'PhysProp::physprop_t']]], - ['refrtabsw_1740',['refrtabsw',['../structPhysProp_1_1physprop__t.html#a2cb505dd76f365687ee5e33a22a14e9b',1,'PhysProp::physprop_t']]], - ['registercoarsedata_1741',['RegisterCoarseData',['../classERFFillPatcher.html#a58c4f0d21effa697eff8a0b22b2f3bc1',1,'ERFFillPatcher']]], - ['regrid_5fint_1742',['regrid_int',['../classERF.html#a3937527f96c81674fa38dc34ed24f3f5',1,'ERF']]], - ['remakelevel_1743',['RemakeLevel',['../classERF.html#aae7a3a76e08e54c618cf79b30ed2d73d',1,'ERF']]], - ['reordered_1744',['reordered',['../namespaceinternal.html#a2e09ba4f36b78ebbb569741fedab06ed',1,'internal']]], - ['resize_1745',['ReSize',['../classLandSurface.html#a58bc8a6e1b1369cd863f8b4f424a6270',1,'LandSurface']]], - ['restart_1746',['restart',['../classERF.html#a530d2ce59e6fd46e9fb00e4d11eaf737',1,'ERF']]], - ['restart_5fchkfile_1747',['restart_chkfile',['../classERF.html#a8e758060d3dede9694fbfcabddc17169',1,'ERF']]], - ['restart_5ftype_1748',['restart_type',['../classERF.html#a30a0b9e3a037c71580d1feb3b30a8258',1,'ERF']]], - ['retab_1749',['retab',['../classRadConstants.html#af93f09fe2ad546b17aff927963cf90d1',1,'RadConstants']]], - ['rga_1750',['rga',['../ERF__Constants_8H.html#a379aa3c3394d67b78990663a36ed5285',1,'ERF_Constants.H']]], - ['rh20_1751',['rh20',['../ERF__Constants_8H.html#ade17c0f300126a2fd0829d0e1a553512',1,'ERF_Constants.H']]], - ['rh_5fto_5fmxrat_1752',['rh_to_mxrat',['../Metgrid__utils_8H.html#a8458220de6985f12501aa040c218bff0',1,'Metgrid_utils.H']]], - ['rhcrystal_1753',['rhcrystal',['../structPhysProp_1_1physprop__t.html#aedb70926e32d7aaa6655f0a417acb18d',1,'PhysProp::physprop_t']]], - ['rhdeliques_1754',['rhdeliques',['../structPhysProp_1_1physprop__t.html#a136a646945382e1e7808b61ec9c648fe',1,'PhysProp::physprop_t']]], - ['rho_1755',['rho',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea89de8c3bfc941080efb960e5119fbd61',1,'MicVar_Kess::rho()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a2534fc55b1bd99268d18c38ddd112e53',1,'MicVar::rho()']]], - ['rho0_5ftrans_1756',['rho0_trans',['../structDiffChoice.html#a4df179b6e7d84efc89a22ac5900f98c8',1,'DiffChoice']]], - ['rho1d_1757',['rho1d',['../classSAM.html#a0853b1a3a4ec94178ca208ea594fc455',1,'SAM']]], - ['rho_5f0_1758',['rho_0',['../structProbParmDefaults.html#af75997d9e4a94ab3b221657799ef720f',1,'ProbParmDefaults']]], - ['rho_5fbc_5fcomp_1759',['Rho_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa559799ff291d4e692283c4056bac8db1',1,'BCVars']]], - ['rho_5fcomp_1760',['Rho_comp',['../IndexDefines_8H.html#a27dcc910aeb002a0fd44727954dc0e49',1,'IndexDefines.H']]], - ['rho_5finp_5fsound_5fd_1761',['rho_inp_sound_d',['../structInputSoundingData.html#a749f99cf96305b40d55beb3d5d98bb93',1,'InputSoundingData']]], - ['rhoalpha_5fc_1762',['rhoAlpha_C',['../structDiffChoice.html#a553bdd290d667cca9699ed37f86f7e22',1,'DiffChoice']]], - ['rhoalpha_5ft_1763',['rhoAlpha_T',['../structDiffChoice.html#a574cf6ad397fd50169cafe025c9da5f3',1,'DiffChoice']]], - ['rhod_5finteg_1764',['rhod_integ',['../structInputSoundingData.html#a401b589250214e7bb84555050c5b6657',1,'InputSoundingData']]], - ['rhog_1765',['rhog',['../ERF__Constants_8H.html#a00c6555efa1735f66b36929196ff6b98',1,'ERF_Constants.H']]], - ['rhoh2o_1766',['rhoh2o',['../ERF__Constants_8H.html#a404d50fe6660930b74e3b191e2088754',1,'ERF_Constants.H']]], - ['rhoke_5fbc_5fcomp_1767',['RhoKE_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa1556c0a3817c6fab60fbb6952cf0124f',1,'BCVars']]], - ['rhoke_5fcomp_1768',['RhoKE_comp',['../IndexDefines_8H.html#ae15721db2cb4c2ab4732afe226bbba64',1,'IndexDefines.H']]], - ['rhoq1_5fbc_5fcomp_1769',['RhoQ1_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa0473174d8328f2bf7f74b84e9047e684',1,'BCVars']]], - ['rhoq1_5fcomp_1770',['RhoQ1_comp',['../IndexDefines_8H.html#aa965e9988f14d5d2a5aef4a942168a15',1,'IndexDefines.H']]], - ['rhoq2_5fbc_5fcomp_1771',['RhoQ2_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa502372fe4399d381375f39c17301030c',1,'BCVars']]], - ['rhoq2_5fcomp_1772',['RhoQ2_comp',['../IndexDefines_8H.html#a3bf0a4783e82ba30db2b7c0a332c2f16',1,'IndexDefines.H']]], - ['rhoq3_5fcomp_1773',['RhoQ3_comp',['../IndexDefines_8H.html#a49fe20d81f4d923a4a6ec4eb1652072b',1,'IndexDefines.H']]], - ['rhoq4_5fcomp_1774',['RhoQ4_comp',['../IndexDefines_8H.html#a28c5deab9008c0999c26affeff2fa6da',1,'IndexDefines.H']]], - ['rhoq5_5fcomp_1775',['RhoQ5_comp',['../IndexDefines_8H.html#ac46d015fd5b1ee0060bbaf22e79113e7',1,'IndexDefines.H']]], - ['rhoq6_5fcomp_1776',['RhoQ6_comp',['../IndexDefines_8H.html#aae057dae5f599b944184a0ecf7801064',1,'IndexDefines.H']]], - ['rhoqke_5fbc_5fcomp_1777',['RhoQKE_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa3fd5e6f8378f1e1e80146b207c062cd8',1,'BCVars']]], - ['rhoqke_5fcomp_1778',['RhoQKE_comp',['../IndexDefines_8H.html#ac190f1f4846f6e6e31628041150f3d93',1,'IndexDefines.H']]], - ['rhor_1779',['rhor',['../ERF__Constants_8H.html#ad6e28022b74cd595f282e2cc97c2c0d8',1,'ERF_Constants.H']]], - ['rhos_1780',['rhos',['../ERF__Constants_8H.html#ac0e05183a58d4400f06346d18371218f',1,'ERF_Constants.H']]], - ['rhoscalar_5fbc_5fcomp_1781',['RhoScalar_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa029ef491930290dea3a984ebdb6d6ae4',1,'BCVars']]], - ['rhoscalar_5fcomp_1782',['RhoScalar_comp',['../IndexDefines_8H.html#a0296f21cd48e5d8236c62ae4ce319b2f',1,'IndexDefines.H']]], - ['rhotheta_5fbc_5fcomp_1783',['RhoTheta_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa417d2de099d125a0f6b3e32cde3733d1',1,'BCVars']]], - ['rhotheta_5fcomp_1784',['RhoTheta_comp',['../IndexDefines_8H.html#a28f96fd04e1ff08fa7a8f53ccde0f877',1,'IndexDefines.H']]], - ['rhs_1785',['rhs',['../classMRISplitIntegrator.html#ab0f2e5848bf5e8f4959b6f990cb73053',1,'MRISplitIntegrator']]], - ['rotor_5frad_1786',['rotor_rad',['../classEWP.html#ac89ee08eabbf2cc7a64a7908a449f016',1,'EWP::rotor_rad()'],['../classFitch.html#aadaedef0e6f0ac149483ee6b4d8b1a4e',1,'Fitch::rotor_rad()'],['../classSimpleAD.html#a04490ef9f591e86588c5bb7870c1b77f',1,'SimpleAD::rotor_rad()'],['../classWindFarm.html#ad0925f54be32d71ae431a2078afee91b',1,'WindFarm::rotor_rad()']]], - ['rough_5ftype_5fland_1787',['rough_type_land',['../classABLMost.html#ab052d62a07e8765a6de67264d05aff37',1,'ABLMost']]], - ['rough_5ftype_5fsea_1788',['rough_type_sea',['../classABLMost.html#ab5041b7c6a15b759a8f33dadd1a67e92',1,'ABLMost']]], - ['roughcalctype_1789',['RoughCalcType',['../classABLMost.html#ae825f96c2d098b3e070642a74e6a3f13',1,'ABLMost']]], - ['rrtmg_5flw_5fcloudsim_5fband_1790',['rrtmg_lw_cloudsim_band',['../classRadConstants.html#aef2395d6f1bbed699fd4033b9c3104b8',1,'RadConstants']]], - ['rrtmg_5fsw_5fcloudsim_5fband_1791',['rrtmg_sw_cloudsim_band',['../classRadConstants.html#acd093dbcb244a162598bc23658a3f5d0',1,'RadConstants']]], - ['rrtmg_5fto_5frrtmgp_1792',['rrtmg_to_rrtmgp',['../classRadiation.html#a343cbb13362229a43f02df3a95eaa0ea',1,'Radiation']]], - ['rrtmgp_1793',['Rrtmgp',['../classRrtmgp.html#afb3690c8a0708be5b1d213f5a17fd668',1,'Rrtmgp::Rrtmgp()'],['../classRrtmgp.html',1,'Rrtmgp']]], - ['rrtmgp_2eh_1794',['Rrtmgp.H',['../Rrtmgp_8H.html',1,'']]], - ['rrtmgp_5fcoefficients_5ffile_5flw_1795',['rrtmgp_coefficients_file_lw',['../classRadiation.html#a0f24e2a14bfa218815d6d602374b6f0b',1,'Radiation']]], - ['rrtmgp_5fcoefficients_5ffile_5fname_5flw_1796',['rrtmgp_coefficients_file_name_lw',['../classRadiation.html#a9adc323a74a713f43a9952b3601d7f85',1,'Radiation']]], - ['rrtmgp_5fcoefficients_5ffile_5fname_5fsw_1797',['rrtmgp_coefficients_file_name_sw',['../classRadiation.html#ae6df86058b5dda6cb7b32e48f08f92f9',1,'Radiation']]], - ['rrtmgp_5fcoefficients_5ffile_5fsw_1798',['rrtmgp_coefficients_file_sw',['../classRadiation.html#a8b27a952d1ceb83c174a5d30f6198230',1,'Radiation']]], - ['rrtmgp_5fdata_5fpath_1799',['rrtmgp_data_path',['../classRadiation.html#a054782cce0873bc799bf8a3fdda6a1fb',1,'Radiation']]], - ['rrtmgp_5fenable_5ftemperature_5fwarnings_1800',['rrtmgp_enable_temperature_warnings',['../classRadiation.html#a4959db25c75a67b8166635413aae4888',1,'Radiation']]], - ['rtype_1801',['RType',['../structncutils_1_1NCDType.html#a079bbf4314ad09362b5c8124670c821f',1,'ncutils::NCDType']]], - ['ru_5fnew_1802',['rU_new',['../classERF.html#a01f3db32272f53dc68025f0a98195e57',1,'ERF']]], - ['ru_5fold_1803',['rU_old',['../classERF.html#a6eecc44323f77917c95869928284f61d',1,'ERF']]], - ['run_1804',['run',['../classRadiation.html#a748f2155d330eecb6d0ce4fba32db8e7',1,'Radiation']]], - ['run_5flongwave_5frrtmgp_1805',['run_longwave_rrtmgp',['../classRrtmgp.html#a3d62575dce314f1bae7898cfdadebce6',1,'Rrtmgp']]], - ['run_5flongwave_5frrtmgp_2ecpp_1806',['Run_longwave_rrtmgp.cpp',['../Run__longwave__rrtmgp_8cpp.html',1,'']]], - ['run_5fshortwave_5frrtmgp_1807',['run_shortwave_rrtmgp',['../classRrtmgp.html#a1f1633f280b8584c58747278b376854a',1,'Rrtmgp']]], - ['run_5fshortwave_5frrtmgp_2ecpp_1808',['Run_shortwave_rrtmgp.cpp',['../Run__shortwave__rrtmgp_8cpp.html',1,'']]], - ['rv_5fnew_1809',['rV_new',['../classERF.html#a54e37988486ef96e55e84bd8e91bb688',1,'ERF']]], - ['rv_5fold_1810',['rV_old',['../classERF.html#aeb64e3b4def989ce68d873aefeed5e0e',1,'ERF']]], - ['rw_5fnew_1811',['rW_new',['../classERF.html#aa46c0b0d20525aed10f447923e54dde7',1,'ERF']]], - ['rw_5fold_1812',['rW_old',['../classERF.html#ac1fa56ec90f44e3cdf487af46804163f',1,'ERF']]] + ['r_1667',['R',['../namespaceRealBdyVars.html#aa4743649b85ade11df23692d7c3947bda00b4f21134a7ba868f49f0d2ed3f7506',1,'RealBdyVars::R()'],['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a21c496fde087064e9fa91a2349d4d2eb',1,'WRFBdyVars::R()'],['../namespaceMetGridBdyVars.html#a22bd27d0288d22c74bd7c0bb57b2b89fa890a68deeda33b83d4ac4e821f78be84',1,'MetGridBdyVars::R()']]], + ['r_5fd_1668',['R_d',['../ERF__Constants_8H.html#aeb133d0ac46d639050313ce36187e870',1,'ERF_Constants.H']]], + ['r_5flw_5fabs_1669',['r_lw_abs',['../structPhysProp_1_1physprop__t.html#af41dfd624f5e565f0435e9bef6182ba5',1,'PhysProp::physprop_t']]], + ['r_5fsw_5fascat_1670',['r_sw_ascat',['../structPhysProp_1_1physprop__t.html#a8f237360219885a558fb5c5bfeb5c015',1,'PhysProp::physprop_t']]], + ['r_5fsw_5fext_1671',['r_sw_ext',['../structPhysProp_1_1physprop__t.html#a2c8b9cd5f27f8c039d9ec76d665f08bc',1,'PhysProp::physprop_t']]], + ['r_5fsw_5fscat_1672',['r_sw_scat',['../structPhysProp_1_1physprop__t.html#ad3d6e9851177a676ab13788002e83bc0',1,'PhysProp::physprop_t']]], + ['r_5fv_1673',['R_v',['../ERF__Constants_8H.html#a0ab59ff21ef0b178fde0843394f5674a',1,'ERF_Constants.H']]], + ['rad_5fcnst_5fget_5faer_5fidx_1674',['rad_cnst_get_aer_idx',['../classMamConstituents.html#a34183bce976a770cdace5b4b51b2f1cc',1,'MamConstituents']]], + ['rad_5fcnst_5fget_5faer_5fmmr_5fby_5fidx_1675',['rad_cnst_get_aer_mmr_by_idx',['../classMamConstituents.html#a51f22d472f105d4586cbf3e2a05ef7c2',1,'MamConstituents']]], + ['rad_5fcnst_5fget_5fgas_1676',['rad_cnst_get_gas',['../classMamConstituents.html#a54283f7f7c2d8b81a37a6c4fa84c88ff',1,'MamConstituents']]], + ['rad_5fcnst_5fget_5finfo_5fby_5fmode_1677',['rad_cnst_get_info_by_mode',['../classMamConstituents.html#a52ef200c09c64ec7d34984262e6c5939',1,'MamConstituents']]], + ['rad_5fcnst_5fget_5finfo_5fby_5fmode_5fspec_1678',['rad_cnst_get_info_by_mode_spec',['../classMamConstituents.html#a1c3ed658d0910537c8f8ca304a8da959',1,'MamConstituents']]], + ['rad_5fcnst_5fget_5finfo_5fby_5fspectype_1679',['rad_cnst_get_info_by_spectype',['../classMamConstituents.html#a232c585283486fd1b1a08142aa82355d',1,'MamConstituents']]], + ['rad_5fcnst_5fget_5fmam_5fmmr_5fby_5fidx_1680',['rad_cnst_get_mam_mmr_by_idx',['../classMamConstituents.html#afb5674421ff78c9688d71bfbf460a746',1,'MamConstituents']]], + ['rad_5fcnst_5fget_5fmam_5fmmr_5fidx_1681',['rad_cnst_get_mam_mmr_idx',['../classMamConstituents.html#a961fa56ba740189db861cdce2d903f7a',1,'MamConstituents']]], + ['rad_5fcnst_5fget_5fmode_5fidx_1682',['rad_cnst_get_mode_idx',['../classMamConstituents.html#ad4cf2f8e8744e1f06be9936ad8e47a5a',1,'MamConstituents']]], + ['rad_5fcnst_5fget_5fmode_5fnum_1683',['rad_cnst_get_mode_num',['../classMamConstituents.html#a47b426e82c4a19365d77eaa51c7cac32',1,'MamConstituents']]], + ['rad_5fcnst_5fget_5fmode_5fnum_5fidx_1684',['rad_cnst_get_mode_num_idx',['../classMamConstituents.html#a4076c6a6cf134bef0e6c6ad1b683c098',1,'MamConstituents']]], + ['rad_5fcnst_5fget_5fspec_5fidx_1685',['rad_cnst_get_spec_idx',['../classMamConstituents.html#aaecf4d2caa28eb62f46307aa7a97b059',1,'MamConstituents']]], + ['rad_5fcnst_5finit_1686',['rad_cnst_init',['../classMamConstituents.html#a5e7be8b1cc061652374bb6ab9e2d3645',1,'MamConstituents']]], + ['rad_5fcnst_5fout_1687',['rad_cnst_out',['../classMamConstituents.html#af4848bed3a1019cc1e3d423494bbda0a',1,'MamConstituents']]], + ['rad_5fconstants_2eh_1688',['Rad_constants.H',['../Rad__constants_8H.html',1,'']]], + ['rad_5fgas_5findex_1689',['rad_gas_index',['../classRadConstants.html#a41beba72a1d7ac337497bca58b5ff6f7',1,'RadConstants']]], + ['radconstants_1690',['RadConstants',['../classRadConstants.html',1,'']]], + ['radiation_1691',['Radiation',['../classRadiation.html',1,'Radiation'],['../classRadiation.html#aff1bb11c6262db1629ede245d861be18',1,'Radiation::Radiation()']]], + ['radiation_1692',['radiation',['../classRadiation.html#adbdd39584f1836cc21a816a7ee7098bb',1,'Radiation']]], + ['radiation_2ecpp_1693',['Radiation.cpp',['../Radiation_8cpp.html',1,'']]], + ['radiation_2eh_1694',['Radiation.H',['../Radiation_8H.html',1,'']]], + ['radiation_5fdriver_5flw_1695',['radiation_driver_lw',['../classRadiation.html#accd99e73e1c185372d1219e87fa5d94b',1,'Radiation']]], + ['radiation_5fdriver_5fsw_1696',['radiation_driver_sw',['../classRadiation.html#abf8ab94227c1a5f729ac24d92e52518b',1,'Radiation']]], + ['rain_5faccum_1697',['rain_accum',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476beaa364685bc5d7f6f41ff14bbaf6ca3fc1',1,'MicVar_Kess::rain_accum()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a710fb698c72c08828c86a3efa6e28614',1,'MicVar::rain_accum()']]], + ['rair_1698',['rair',['../ERF__Constants_8H.html#a864e81eb46f4207f25cb52e5046c23b8',1,'ERF_Constants.H']]], + ['randomreal_1699',['RandomReal',['../structTurbulentPerturbation.html#ad1831bbc1cee603520e0b66692cebfa7',1,'TurbulentPerturbation']]], + ['rayleigh_1700',['Rayleigh',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239',1,'DataStruct.H']]], + ['rayleigh_5fdamp_5ft_1701',['rayleigh_damp_T',['../structSolverChoice.html#a06a0dd1c8f7c1ed73a4f8d24b6b31cdf',1,'SolverChoice']]], + ['rayleigh_5fdamp_5fu_1702',['rayleigh_damp_U',['../structSolverChoice.html#a5aed4016dd7d17a2d2904c60af59ae9d',1,'SolverChoice']]], + ['rayleigh_5fdamp_5fv_1703',['rayleigh_damp_V',['../structSolverChoice.html#a1bae456f7b26e8ed50d78ce1af1b5ef0',1,'SolverChoice']]], + ['rayleigh_5fdamp_5fw_1704',['rayleigh_damp_W',['../structSolverChoice.html#abf35af2e52f5c1197264d895396ca59c',1,'SolverChoice']]], + ['rd_5fon_5frv_1705',['Rd_on_Rv',['../ERF__Constants_8H.html#a212cca9324fcc25708184de9d9c7a07e',1,'ERF_Constants.H']]], + ['rdocp_1706',['rdOcp',['../structSolverChoice.html#a2e1ef762ee1dc1bd3d4cbd08125c758a',1,'SolverChoice']]], + ['read_5fcustom_5fterrain_1707',['read_custom_terrain',['../classProblemBase.html#a7497a6e90bebb14387f5716ee2e51c2d',1,'ProblemBase']]], + ['read_5ffile_1708',['read_file',['../classReadBndryPlanes.html#a5c2780ff94cadd975717d0f4084e6c9e',1,'ReadBndryPlanes']]], + ['read_5ffrom_5ffile_1709',['read_from_file',['../structInputSpongeData.html#a8480886e7e481c5f83915d5feae62907',1,'InputSpongeData::read_from_file()'],['../structInputSoundingData.html#a596a65687875bb0172f0621f446452ae',1,'InputSoundingData::read_from_file()']]], + ['read_5ffrom_5fmetgrid_1710',['read_from_metgrid',['../Metgrid__utils_8H.html#a1c4ef6b718a4e7c9c225b35ba096ebf9',1,'Metgrid_utils.H']]], + ['read_5finput_5ffiles_1711',['read_input_files',['../classReadBndryPlanes.html#a6545891550da1a217d5e566ddafdd566',1,'ReadBndryPlanes']]], + ['read_5ftables_1712',['read_tables',['../classWindFarm.html#afd5b76a577e1a810a1599014957a1d9b',1,'WindFarm']]], + ['read_5ftime_5ffile_1713',['read_time_file',['../classReadBndryPlanes.html#ac6633331e3b4ae3d7c93534930b7f856',1,'ReadBndryPlanes']]], + ['read_5fwater_5frefindex_1714',['read_water_refindex',['../classMam4__aer.html#a4bd98954eadce524390046791a1730a1',1,'Mam4_aer']]], + ['read_5fwindfarm_5flocations_5ftable_1715',['read_windfarm_locations_table',['../classWindFarm.html#acbc15873f66a7ee7ae10023fdfc3a8c7',1,'WindFarm']]], + ['read_5fwindfarm_5fspec_5ftable_1716',['read_windfarm_spec_table',['../classWindFarm.html#a92bd0b9d5124a84555b8ea2633502191',1,'WindFarm']]], + ['readbndryplanes_1717',['ReadBndryPlanes',['../classReadBndryPlanes.html#a16269dfa161d2fdbe02eeb5ac0cb0e24',1,'ReadBndryPlanes::ReadBndryPlanes()'],['../classReadBndryPlanes.html',1,'ReadBndryPlanes']]], + ['readcheckpointfile_1718',['ReadCheckpointFile',['../classERF.html#af285247b24b173cd851fe49799d17f42',1,'ERF']]], + ['readfrommetgrid_2ecpp_1719',['ReadFromMetgrid.cpp',['../ReadFromMetgrid_8cpp.html',1,'']]], + ['readfromwrfbdy_2ecpp_1720',['ReadFromWRFBdy.cpp',['../ReadFromWRFBdy_8cpp.html',1,'']]], + ['readfromwrfinput_2ecpp_1721',['ReadFromWRFInput.cpp',['../ReadFromWRFInput_8cpp.html',1,'']]], + ['readnetcdffile_1722',['ReadNetCDFFile',['../NCWpsFile_8H.html#aa682cd5b28ee9ffaf36c6944bd124af0',1,'NCWpsFile.H']]], + ['readparameters_1723',['ReadParameters',['../classERF.html#a2d39cd3bdc3d90609ad3b14e266d190a',1,'ERF']]], + ['real_1724',['Real',['../structncutils_1_1NCDType.html#a7a5be35daa7dbb2cc72507cc4b5a422c',1,'ncutils::NCDType']]], + ['real_5fset_5fwidth_1725',['real_set_width',['../classERF.html#acab120bb9324e7298534d765c447d703',1,'ERF']]], + ['real_5fwidth_1726',['real_width',['../classERF.html#abb15119348ad5399947bc8883084b230',1,'ERF']]], + ['realbdy_5fcompute_5finterior_5fghost_5frhs_1727',['realbdy_compute_interior_ghost_rhs',['../InteriorGhostCells_8cpp.html#a41e809a463649991c08af8667d3947cb',1,'realbdy_compute_interior_ghost_rhs(const std::string &, const Real &bdy_time_interval, const Real &start_bdy_time, const Real &time, const Real &delta_t, int width, int set_width, const Geometry &geom, Vector< MultiFab > &S_rhs, Vector< MultiFab > &S_old_data, Vector< MultiFab > &S_cur_data, Vector< Vector< FArrayBox >> &bdy_data_xlo, Vector< Vector< FArrayBox >> &bdy_data_xhi, Vector< Vector< FArrayBox >> &bdy_data_ylo, Vector< Vector< FArrayBox >> &bdy_data_yhi): InteriorGhostCells.cpp'],['../Utils_8H.html#a64ede26fe5618a31fe1e297ef29095cd',1,'realbdy_compute_interior_ghost_rhs(const std::string &init_type, const amrex::Real &bdy_time_interval, const amrex::Real &start_bdy_time, const amrex::Real &time, const amrex::Real &delta_t, int width, int set_width, const amrex::Geometry &geom, amrex::Vector< amrex::MultiFab > &S_rhs, amrex::Vector< amrex::MultiFab > &S_old_data, amrex::Vector< amrex::MultiFab > &S_cur_data, amrex::Vector< amrex::Vector< amrex::FArrayBox >> &bdy_data_xlo, amrex::Vector< amrex::Vector< amrex::FArrayBox >> &bdy_data_xhi, amrex::Vector< amrex::Vector< amrex::FArrayBox >> &bdy_data_ylo, amrex::Vector< amrex::Vector< amrex::FArrayBox >> &bdy_data_yhi): Utils.H']]], + ['realbdyvars_1728',['RealBdyVars',['../namespaceRealBdyVars.html',1,'']]], + ['reduce_5fto_5fmax_5fper_5flevel_1729',['reduce_to_max_per_level',['../ParFunctions_8H.html#a7e646d3f1b936883c143204caa88c7c5',1,'ParFunctions.H']]], + ['ref_5fcounted_1730',['ref_counted',['../structNDArray.html#a8a0bbff40020f6aea23346ac656bf972',1,'NDArray']]], + ['ref_5ftags_1731',['ref_tags',['../classERF.html#ac81b3dfd7c6f21ba8479834e2ff1e652',1,'ERF']]], + ['refindex_5faer_5finit_1732',['refindex_aer_init',['../classPhysProp.html#a0be655aa777ad0bcd46e6b896942a733',1,'PhysProp']]], + ['refindex_5fim_5faer_5flw_1733',['refindex_im_aer_lw',['../structPhysProp_1_1physprop__t.html#a2b3656af3ed847bc9e0c7a5bfc1d64e0',1,'PhysProp::physprop_t']]], + ['refindex_5fim_5faer_5fsw_1734',['refindex_im_aer_sw',['../structPhysProp_1_1physprop__t.html#a01444396cbb69da2b50af017fef7b8e3',1,'PhysProp::physprop_t']]], + ['refindex_5freal_5faer_5flw_1735',['refindex_real_aer_lw',['../structPhysProp_1_1physprop__t.html#aa6b86d69efca7951eac318ef0a407acf',1,'PhysProp::physprop_t']]], + ['refindex_5freal_5faer_5fsw_1736',['refindex_real_aer_sw',['../structPhysProp_1_1physprop__t.html#a39ec574c71085ec5a6aa268b3b752a23',1,'PhysProp::physprop_t']]], + ['refinement_5fcriteria_5fsetup_1737',['refinement_criteria_setup',['../classERF.html#aa90c9756f684404f8b69b8a23568b535',1,'ERF']]], + ['refitablw_1738',['refitablw',['../structPhysProp_1_1physprop__t.html#a8c8ef5042c0b53fa05d1d97a49de3833',1,'PhysProp::physprop_t']]], + ['refitabsw_1739',['refitabsw',['../structPhysProp_1_1physprop__t.html#a7a536b72896ed7e80fe3b13d990bce61',1,'PhysProp::physprop_t']]], + ['reflect_5feven_1740',['reflect_even',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01cabc47f82507730e1734a2f3bc58893cf9',1,'ERFBCType']]], + ['reflect_5fodd_1741',['reflect_odd',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca41cecdb4487b15207675ae9ee564e705',1,'ERFBCType']]], + ['refrtablw_1742',['refrtablw',['../structPhysProp_1_1physprop__t.html#accf672f5038e149841b092ffb9ee1ba1',1,'PhysProp::physprop_t']]], + ['refrtabsw_1743',['refrtabsw',['../structPhysProp_1_1physprop__t.html#a2cb505dd76f365687ee5e33a22a14e9b',1,'PhysProp::physprop_t']]], + ['registercoarsedata_1744',['RegisterCoarseData',['../classERFFillPatcher.html#a58c4f0d21effa697eff8a0b22b2f3bc1',1,'ERFFillPatcher']]], + ['regrid_5fint_1745',['regrid_int',['../classERF.html#a3937527f96c81674fa38dc34ed24f3f5',1,'ERF']]], + ['remakelevel_1746',['RemakeLevel',['../classERF.html#aae7a3a76e08e54c618cf79b30ed2d73d',1,'ERF']]], + ['reordered_1747',['reordered',['../namespaceinternal.html#a2e09ba4f36b78ebbb569741fedab06ed',1,'internal']]], + ['resize_1748',['ReSize',['../classLandSurface.html#a58bc8a6e1b1369cd863f8b4f424a6270',1,'LandSurface']]], + ['restart_1749',['restart',['../classERF.html#a530d2ce59e6fd46e9fb00e4d11eaf737',1,'ERF']]], + ['restart_5fchkfile_1750',['restart_chkfile',['../classERF.html#a8e758060d3dede9694fbfcabddc17169',1,'ERF']]], + ['restart_5ftype_1751',['restart_type',['../classERF.html#a30a0b9e3a037c71580d1feb3b30a8258',1,'ERF']]], + ['retab_1752',['retab',['../classRadConstants.html#af93f09fe2ad546b17aff927963cf90d1',1,'RadConstants']]], + ['rga_1753',['rga',['../ERF__Constants_8H.html#a379aa3c3394d67b78990663a36ed5285',1,'ERF_Constants.H']]], + ['rh20_1754',['rh20',['../ERF__Constants_8H.html#ade17c0f300126a2fd0829d0e1a553512',1,'ERF_Constants.H']]], + ['rh_5fto_5fmxrat_1755',['rh_to_mxrat',['../Metgrid__utils_8H.html#a8458220de6985f12501aa040c218bff0',1,'Metgrid_utils.H']]], + ['rhcrystal_1756',['rhcrystal',['../structPhysProp_1_1physprop__t.html#aedb70926e32d7aaa6655f0a417acb18d',1,'PhysProp::physprop_t']]], + ['rhdeliques_1757',['rhdeliques',['../structPhysProp_1_1physprop__t.html#a136a646945382e1e7808b61ec9c648fe',1,'PhysProp::physprop_t']]], + ['rho_1758',['rho',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea89de8c3bfc941080efb960e5119fbd61',1,'MicVar_Kess::rho()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a2534fc55b1bd99268d18c38ddd112e53',1,'MicVar::rho()']]], + ['rho0_5ftrans_1759',['rho0_trans',['../structDiffChoice.html#a4df179b6e7d84efc89a22ac5900f98c8',1,'DiffChoice']]], + ['rho1d_1760',['rho1d',['../classSAM.html#a0853b1a3a4ec94178ca208ea594fc455',1,'SAM']]], + ['rho_5f0_1761',['rho_0',['../structProbParmDefaults.html#af75997d9e4a94ab3b221657799ef720f',1,'ProbParmDefaults']]], + ['rho_5fbc_5fcomp_1762',['Rho_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa559799ff291d4e692283c4056bac8db1',1,'BCVars']]], + ['rho_5fcomp_1763',['Rho_comp',['../IndexDefines_8H.html#a27dcc910aeb002a0fd44727954dc0e49',1,'IndexDefines.H']]], + ['rho_5finp_5fsound_5fd_1764',['rho_inp_sound_d',['../structInputSoundingData.html#a749f99cf96305b40d55beb3d5d98bb93',1,'InputSoundingData']]], + ['rhoalpha_5fc_1765',['rhoAlpha_C',['../structDiffChoice.html#a553bdd290d667cca9699ed37f86f7e22',1,'DiffChoice']]], + ['rhoalpha_5ft_1766',['rhoAlpha_T',['../structDiffChoice.html#a574cf6ad397fd50169cafe025c9da5f3',1,'DiffChoice']]], + ['rhod_5finteg_1767',['rhod_integ',['../structInputSoundingData.html#a401b589250214e7bb84555050c5b6657',1,'InputSoundingData']]], + ['rhog_1768',['rhog',['../ERF__Constants_8H.html#a00c6555efa1735f66b36929196ff6b98',1,'ERF_Constants.H']]], + ['rhoh2o_1769',['rhoh2o',['../ERF__Constants_8H.html#a404d50fe6660930b74e3b191e2088754',1,'ERF_Constants.H']]], + ['rhoke_5fbc_5fcomp_1770',['RhoKE_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa1556c0a3817c6fab60fbb6952cf0124f',1,'BCVars']]], + ['rhoke_5fcomp_1771',['RhoKE_comp',['../IndexDefines_8H.html#ae15721db2cb4c2ab4732afe226bbba64',1,'IndexDefines.H']]], + ['rhoq1_5fbc_5fcomp_1772',['RhoQ1_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa0473174d8328f2bf7f74b84e9047e684',1,'BCVars']]], + ['rhoq1_5fcomp_1773',['RhoQ1_comp',['../IndexDefines_8H.html#aa965e9988f14d5d2a5aef4a942168a15',1,'IndexDefines.H']]], + ['rhoq2_5fbc_5fcomp_1774',['RhoQ2_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa502372fe4399d381375f39c17301030c',1,'BCVars']]], + ['rhoq2_5fcomp_1775',['RhoQ2_comp',['../IndexDefines_8H.html#a3bf0a4783e82ba30db2b7c0a332c2f16',1,'IndexDefines.H']]], + ['rhoq3_5fcomp_1776',['RhoQ3_comp',['../IndexDefines_8H.html#a49fe20d81f4d923a4a6ec4eb1652072b',1,'IndexDefines.H']]], + ['rhoq4_5fcomp_1777',['RhoQ4_comp',['../IndexDefines_8H.html#a28c5deab9008c0999c26affeff2fa6da',1,'IndexDefines.H']]], + ['rhoq5_5fcomp_1778',['RhoQ5_comp',['../IndexDefines_8H.html#ac46d015fd5b1ee0060bbaf22e79113e7',1,'IndexDefines.H']]], + ['rhoq6_5fcomp_1779',['RhoQ6_comp',['../IndexDefines_8H.html#aae057dae5f599b944184a0ecf7801064',1,'IndexDefines.H']]], + ['rhoqke_5fbc_5fcomp_1780',['RhoQKE_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa3fd5e6f8378f1e1e80146b207c062cd8',1,'BCVars']]], + ['rhoqke_5fcomp_1781',['RhoQKE_comp',['../IndexDefines_8H.html#ac190f1f4846f6e6e31628041150f3d93',1,'IndexDefines.H']]], + ['rhor_1782',['rhor',['../ERF__Constants_8H.html#ad6e28022b74cd595f282e2cc97c2c0d8',1,'ERF_Constants.H']]], + ['rhos_1783',['rhos',['../ERF__Constants_8H.html#ac0e05183a58d4400f06346d18371218f',1,'ERF_Constants.H']]], + ['rhoscalar_5fbc_5fcomp_1784',['RhoScalar_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa029ef491930290dea3a984ebdb6d6ae4',1,'BCVars']]], + ['rhoscalar_5fcomp_1785',['RhoScalar_comp',['../IndexDefines_8H.html#a0296f21cd48e5d8236c62ae4ce319b2f',1,'IndexDefines.H']]], + ['rhotheta_5fbc_5fcomp_1786',['RhoTheta_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa417d2de099d125a0f6b3e32cde3733d1',1,'BCVars']]], + ['rhotheta_5fcomp_1787',['RhoTheta_comp',['../IndexDefines_8H.html#a28f96fd04e1ff08fa7a8f53ccde0f877',1,'IndexDefines.H']]], + ['rhs_1788',['rhs',['../classMRISplitIntegrator.html#ab0f2e5848bf5e8f4959b6f990cb73053',1,'MRISplitIntegrator']]], + ['rotor_5frad_1789',['rotor_rad',['../classEWP.html#ac89ee08eabbf2cc7a64a7908a449f016',1,'EWP::rotor_rad()'],['../classFitch.html#aadaedef0e6f0ac149483ee6b4d8b1a4e',1,'Fitch::rotor_rad()'],['../classSimpleAD.html#a04490ef9f591e86588c5bb7870c1b77f',1,'SimpleAD::rotor_rad()'],['../classWindFarm.html#ad0925f54be32d71ae431a2078afee91b',1,'WindFarm::rotor_rad()']]], + ['rough_5ftype_5fland_1790',['rough_type_land',['../classABLMost.html#ab052d62a07e8765a6de67264d05aff37',1,'ABLMost']]], + ['rough_5ftype_5fsea_1791',['rough_type_sea',['../classABLMost.html#ab5041b7c6a15b759a8f33dadd1a67e92',1,'ABLMost']]], + ['roughcalctype_1792',['RoughCalcType',['../classABLMost.html#ae825f96c2d098b3e070642a74e6a3f13',1,'ABLMost']]], + ['rrtmg_5flw_5fcloudsim_5fband_1793',['rrtmg_lw_cloudsim_band',['../classRadConstants.html#aef2395d6f1bbed699fd4033b9c3104b8',1,'RadConstants']]], + ['rrtmg_5fsw_5fcloudsim_5fband_1794',['rrtmg_sw_cloudsim_band',['../classRadConstants.html#acd093dbcb244a162598bc23658a3f5d0',1,'RadConstants']]], + ['rrtmg_5fto_5frrtmgp_1795',['rrtmg_to_rrtmgp',['../classRadiation.html#a343cbb13362229a43f02df3a95eaa0ea',1,'Radiation']]], + ['rrtmgp_1796',['Rrtmgp',['../classRrtmgp.html#afb3690c8a0708be5b1d213f5a17fd668',1,'Rrtmgp::Rrtmgp()'],['../classRrtmgp.html',1,'Rrtmgp']]], + ['rrtmgp_2eh_1797',['Rrtmgp.H',['../Rrtmgp_8H.html',1,'']]], + ['rrtmgp_5fcoefficients_5ffile_5flw_1798',['rrtmgp_coefficients_file_lw',['../classRadiation.html#a0f24e2a14bfa218815d6d602374b6f0b',1,'Radiation']]], + ['rrtmgp_5fcoefficients_5ffile_5fname_5flw_1799',['rrtmgp_coefficients_file_name_lw',['../classRadiation.html#a9adc323a74a713f43a9952b3601d7f85',1,'Radiation']]], + ['rrtmgp_5fcoefficients_5ffile_5fname_5fsw_1800',['rrtmgp_coefficients_file_name_sw',['../classRadiation.html#ae6df86058b5dda6cb7b32e48f08f92f9',1,'Radiation']]], + ['rrtmgp_5fcoefficients_5ffile_5fsw_1801',['rrtmgp_coefficients_file_sw',['../classRadiation.html#a8b27a952d1ceb83c174a5d30f6198230',1,'Radiation']]], + ['rrtmgp_5fdata_5fpath_1802',['rrtmgp_data_path',['../classRadiation.html#a054782cce0873bc799bf8a3fdda6a1fb',1,'Radiation']]], + ['rrtmgp_5fenable_5ftemperature_5fwarnings_1803',['rrtmgp_enable_temperature_warnings',['../classRadiation.html#a4959db25c75a67b8166635413aae4888',1,'Radiation']]], + ['rtype_1804',['RType',['../structncutils_1_1NCDType.html#a079bbf4314ad09362b5c8124670c821f',1,'ncutils::NCDType']]], + ['ru_5fnew_1805',['rU_new',['../classERF.html#a01f3db32272f53dc68025f0a98195e57',1,'ERF']]], + ['ru_5fold_1806',['rU_old',['../classERF.html#a6eecc44323f77917c95869928284f61d',1,'ERF']]], + ['run_1807',['run',['../classRadiation.html#a748f2155d330eecb6d0ce4fba32db8e7',1,'Radiation']]], + ['run_5flongwave_5frrtmgp_1808',['run_longwave_rrtmgp',['../classRrtmgp.html#a3d62575dce314f1bae7898cfdadebce6',1,'Rrtmgp']]], + ['run_5flongwave_5frrtmgp_2ecpp_1809',['Run_longwave_rrtmgp.cpp',['../Run__longwave__rrtmgp_8cpp.html',1,'']]], + ['run_5fshortwave_5frrtmgp_1810',['run_shortwave_rrtmgp',['../classRrtmgp.html#a1f1633f280b8584c58747278b376854a',1,'Rrtmgp']]], + ['run_5fshortwave_5frrtmgp_2ecpp_1811',['Run_shortwave_rrtmgp.cpp',['../Run__shortwave__rrtmgp_8cpp.html',1,'']]], + ['rv_5fnew_1812',['rV_new',['../classERF.html#a54e37988486ef96e55e84bd8e91bb688',1,'ERF']]], + ['rv_5fold_1813',['rV_old',['../classERF.html#aeb64e3b4def989ce68d873aefeed5e0e',1,'ERF']]], + ['rw_5fnew_1814',['rW_new',['../classERF.html#aa46c0b0d20525aed10f447923e54dde7',1,'ERF']]], + ['rw_5fold_1815',['rW_old',['../classERF.html#ac1fa56ec90f44e3cdf487af46804163f',1,'ERF']]] ]; diff --git a/search/all_12.js b/search/all_12.js index aa5681c911..c49d47e4d1 100644 --- a/search/all_12.js +++ b/search/all_12.js @@ -1,163 +1,164 @@ var searchData= [ - ['s_5fscratch_1813',['S_scratch',['../classMRISplitIntegrator.html#a6bcdee4380cd503256cb460b558184aa',1,'MRISplitIntegrator']]], - ['s_5fsum_1814',['S_sum',['../classMRISplitIntegrator.html#ad570588876d21506bc7232884841cab1',1,'MRISplitIntegrator']]], - ['sam_1815',['SAM',['../DataStruct_8H.html#ab34704153a585940411c26587cb82ad0a9f1b3be4a82b11d104e4ef7f7ccb1c19',1,'SAM(): DataStruct.H'],['../classSAM.html#a14fc54f233862c3c339abcc16412078c',1,'SAM::SAM()'],['../classSAM.html',1,'SAM']]], - ['sam_2eh_1816',['SAM.H',['../SAM_8H.html',1,'']]], - ['sam_5fnoice_1817',['SAM_NoIce',['../DataStruct_8H.html#ab34704153a585940411c26587cb82ad0aca8fb8e2f9829763f29ce489f9f6e535',1,'DataStruct.H']]], - ['sam_5fnoprecip_5fnoice_1818',['SAM_NoPrecip_NoIce',['../DataStruct_8H.html#ab34704153a585940411c26587cb82ad0a1571939639d68374fc4af7fae4b66d03',1,'DataStruct.H']]], - ['sample_5fcloud_5foptics_5flw_1819',['sample_cloud_optics_lw',['../classOptics.html#aa4a9d3efc9d464090f9a803bdab51ca1',1,'Optics']]], - ['sample_5fcloud_5foptics_5fsw_1820',['sample_cloud_optics_sw',['../classOptics.html#abf585c4bba33e85f0eb2f685c87b22a7',1,'Optics']]], - ['sample_5flines_1821',['sample_lines',['../classERF.html#afb798c72ea4fde6f4da8d01a24c8c165',1,'ERF']]], - ['sample_5fpoints_1822',['sample_points',['../classERF.html#aa28182226262c67cfd686d35bfeabcad',1,'ERF']]], - ['sampleline_1823',['sampleline',['../classERF.html#a0fa1582bb13357895d2aba91b695624a',1,'ERF']]], - ['sampleline_1824',['SampleLine',['../classERF.html#a54357e2f81f3d7d3a9189a3e21283e6b',1,'ERF']]], - ['samplelinelog_1825',['samplelinelog',['../classERF.html#a4990f1796b65ec8ee602f177a66afc3e',1,'ERF']]], - ['samplelinelog_1826',['SampleLineLog',['../classERF.html#aa559426d0435e669b04148c58b20caef',1,'ERF']]], - ['samplelinelogname_1827',['samplelinelogname',['../classERF.html#a0553967f1131860bb8ecb47c0f192eaa',1,'ERF']]], - ['samplelinelogname_1828',['SampleLineLogName',['../classERF.html#a59eae161173111d66e88dc3acc65b552',1,'ERF']]], - ['samplepoint_1829',['samplepoint',['../classERF.html#ae8a57b7fbf5a67c99d04b7d4f43ad100',1,'ERF']]], - ['samplepoint_1830',['SamplePoint',['../classERF.html#a9095d1b641b4d7f32ca5acb679786891',1,'ERF']]], - ['samplepointlog_1831',['SamplePointLog',['../classERF.html#af5f6c32cc5463e52901f21117d3156c7',1,'ERF']]], - ['samplepointlogname_1832',['SamplePointLogName',['../classERF.html#aa87242f053bfae4efb2a7698ef417ab9',1,'ERF']]], - ['sampleptlog_1833',['sampleptlog',['../classERF.html#a9737ddb0de6b9e8a5b17c109d5ad3e08',1,'ERF']]], - ['sampleptlogname_1834',['sampleptlogname',['../classERF.html#a8fbfa8bb47c0a3b53e244081aa1e8ad3',1,'ERF']]], - ['sat_5fmethods_2eh_1835',['Sat_methods.H',['../Sat__methods_8H.html',1,'']]], - ['satmethods_1836',['SatMethods',['../classSatMethods.html',1,'']]], - ['sc_5ft_1837',['Sc_t',['../structTurbChoice.html#aed763f56a6349187c9c0c0e4c952d05a',1,'TurbChoice']]], - ['sc_5ft_5finv_1838',['Sc_t_inv',['../structTurbChoice.html#a2daa4d23f9d89ee777a0d0fbd43196b6',1,'TurbChoice']]], - ['scalar_5fh_1839',['Scalar_h',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea85d322ae06bc4f66f791d4eda0a13ae6',1,'EddyDiff']]], - ['scalar_5fv_1840',['Scalar_v',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea2b82a72be137b3159e7d4945735fcbf5',1,'EddyDiff']]], - ['scalefactor_1841',['scalefactor',['../classEbertCurry.html#ab8edf44ffa6bd8f71ad9748b92928072',1,'EbertCurry']]], - ['set_5factive_1842',['set_active',['../classCIF.html#a76d1ac8079f53130cbc9f3367a149823',1,'CIF']]], - ['set_5faerosol_5foptics_5flw_1843',['set_aerosol_optics_lw',['../classOptics.html#aecf608be7db530dc74beb0a03b2279f2',1,'Optics']]], - ['set_5faerosol_5foptics_5fsw_1844',['set_aerosol_optics_sw',['../classOptics.html#a54463b4d74c22934fcbf36a7c95f0b3f',1,'Optics']]], - ['set_5falbedo_1845',['set_albedo',['../Albedo_8H.html#a677778ad4c4fb53a8c7076ace6d436ce',1,'set_albedo(const real1d &coszrs, real2d &albedo_dir, real2d &albedo_dif): Albedo.cpp'],['../Albedo_8cpp.html#a677778ad4c4fb53a8c7076ace6d436ce',1,'set_albedo(const real1d &coszrs, real2d &albedo_dir, real2d &albedo_dif): Albedo.cpp']]], - ['set_5fdaynight_5findices_1846',['set_daynight_indices',['../classRadiation.html#a5a59f4f8e03a0e6dcfe96c31a0c9b352',1,'Radiation']]], - ['set_5ffast_5frhs_1847',['set_fast_rhs',['../classMRISplitIntegrator.html#aafed3f1d61d477bd1f01bdeb71a9ab11',1,'MRISplitIntegrator']]], - ['set_5fk_5findices_5fn_1848',['set_k_indices_N',['../classMOSTAverage.html#a8928b9f9d6d45fdd9fd88053fcae34e2',1,'MOSTAverage']]], - ['set_5fk_5findices_5ft_1849',['set_k_indices_T',['../classMOSTAverage.html#a1892a3f9c2175cd2323d8d3a3bc83b6c',1,'MOSTAverage']]], - ['set_5fno_5fsubstep_1850',['set_no_substep',['../classMRISplitIntegrator.html#a216903aa134536df210f489acdfd2b8b',1,'MRISplitIntegrator']]], - ['set_5fnorm_5findices_5ft_1851',['set_norm_indices_T',['../classMOSTAverage.html#a2908278cc9088e345af422a187eba337',1,'MOSTAverage']]], - ['set_5fnorm_5fpositions_5ft_1852',['set_norm_positions_T',['../classMOSTAverage.html#a697396705fddae5c919c7e4020cf20b2',1,'MOSTAverage']]], - ['set_5fplane_5fnormalization_1853',['set_plane_normalization',['../classMOSTAverage.html#a5a0413a85da2e6a13f21cc875c8295d0',1,'MOSTAverage']]], - ['set_5fpost_5fupdate_1854',['set_post_update',['../classMRISplitIntegrator.html#a95b3c0742918b516a3d12a60eb280b48',1,'MRISplitIntegrator']]], - ['set_5fpre_5fupdate_1855',['set_pre_update',['../classMRISplitIntegrator.html#a7c3d1c29712cdc8888af315d37960561',1,'MRISplitIntegrator']]], - ['set_5fprecision_1856',['set_precision',['../classPlaneAverage.html#a6933fa8d1b71a55f5276250050c54216',1,'PlaneAverage']]], - ['set_5fregion_5fnormalization_1857',['set_region_normalization',['../classMOSTAverage.html#a1eafe515fb0a3fc673d604b854a3cc13',1,'MOSTAverage']]], - ['set_5fslow_5ffast_5ftimestep_5fratio_1858',['set_slow_fast_timestep_ratio',['../classMRISplitIntegrator.html#ad31fb2cda1fc2dce80820ed7c4a3c052',1,'MRISplitIntegrator']]], - ['set_5fslow_5frhs_5finc_1859',['set_slow_rhs_inc',['../classMRISplitIntegrator.html#a26955c190dfb0d6cef7237198dbfd099',1,'MRISplitIntegrator']]], - ['set_5fslow_5frhs_5fpost_1860',['set_slow_rhs_post',['../classMRISplitIntegrator.html#af086d3c68787442d07f0a9d530618cc1',1,'MRISplitIntegrator']]], - ['set_5fslow_5frhs_5fpre_1861',['set_slow_rhs_pre',['../classMRISplitIntegrator.html#a137a1ceb1e8051b5a97aaab40492c0e1',1,'MRISplitIntegrator']]], - ['set_5ftime_1862',['set_time',['../structTimeInterpolatedData.html#a0d6dcefbf7407a24669d2a37c7f558d4',1,'TimeInterpolatedData']]], - ['set_5fturb_5floc_1863',['set_turb_loc',['../classNullWindFarm.html#aadf3ba54909c2931d089f631889dbd5b',1,'NullWindFarm::set_turb_loc()'],['../classWindFarm.html#a5defcbb732ba325db7b6e8a819ab381e',1,'WindFarm::set_turb_loc()']]], - ['set_5fturb_5fspec_1864',['set_turb_spec',['../classNullWindFarm.html#a745c730028714c13ff11fefb5440b2e5',1,'NullWindFarm::set_turb_spec()'],['../classWindFarm.html#aabf18956cad4a8546eb60ff8300c94c8',1,'WindFarm::set_turb_spec()']]], - ['set_5fvshape_1865',['set_vshape',['../structNDArray.html#a6a0a485b6da8ce09dda81fc51607da73',1,'NDArray']]], - ['set_5fz_5fpositions_5ft_1866',['set_z_positions_T',['../classMOSTAverage.html#a96178b02bec37f171ef608cec9a246bf',1,'MOSTAverage']]], - ['setblockcommmetadata_1867',['SetBlockCommMetaData',['../classMultiBlockContainer.html#a154697509fae9c842b83ede2d30b7060',1,'MultiBlockContainer']]], - ['setboxlists_1868',['SetBoxLists',['../classMultiBlockContainer.html#a6965a65ae5ef2533298b274797b5d8c7',1,'MultiBlockContainer']]], - ['setforcefirststagesinglesubstep_1869',['setForceFirstStageSingleSubstep',['../classMRISplitIntegrator.html#a5ae771a094162dc22bfdded7b12fd5c4',1,'MRISplitIntegrator']]], - ['setincompressible_1870',['setIncompressible',['../classMRISplitIntegrator.html#aad2f2b1f64f0d193e3321a46afa15deb',1,'MRISplitIntegrator']]], - ['setmodel_1871',['SetModel',['../classLandSurface.html#a91df3382b60a6566b78a23c87b46f065',1,'LandSurface::SetModel()'],['../classEulerianMicrophysics.html#aa882ea75f222099b16b43a579d11e2c1',1,'EulerianMicrophysics::SetModel()'],['../classWindFarm.html#a638bdc717e37526689d507a5cd36735e',1,'WindFarm::SetModel()']]], - ['setncompcons_1872',['setNcompCons',['../classMRISplitIntegrator.html#a294f18465629a72da152b3e9aa4b0455',1,'MRISplitIntegrator']]], - ['setnosubstepping_1873',['setNoSubstepping',['../classMRISplitIntegrator.html#a6ca4eef257ddfcb793de89d2309ac9a1',1,'MRISplitIntegrator']]], - ['setplotvariables_1874',['setPlotVariables',['../classERF.html#a1fcb440c67da60c86372aec1fe871cb7',1,'ERF']]], - ['setrayleighreffromsounding_1875',['setRayleighRefFromSounding',['../classERF.html#a0877d5a0263641c13b92d2d16f47b689',1,'ERF']]], - ['setrecorddatainfo_1876',['setRecordDataInfo',['../classERF.html#a2486b49bb0d7917f812318822e42a03c',1,'ERF']]], - ['setrecordsamplelineinfo_1877',['setRecordSampleLineInfo',['../classERF.html#ae1a8856961aaee53016122facba03dbe',1,'ERF']]], - ['setrecordsamplepointinfo_1878',['setRecordSamplePointInfo',['../classERF.html#af8d930dce1b926ecc3bdc6787dd47818',1,'ERF']]], - ['setspongereffromsounding_1879',['setSpongeRefFromSounding',['../classERF.html#ae27a45d751287a887769df20dea60633',1,'ERF']]], - ['sfs_5fdiss_5flev_1880',['SFS_diss_lev',['../classERF.html#a6e1ad417e3bd062468d74830b65911fb',1,'ERF']]], - ['sfs_5fhfx1_5flev_1881',['SFS_hfx1_lev',['../classERF.html#a25174b4ae6cfcac8f7d183ce5c9fe67b',1,'ERF']]], - ['sfs_5fhfx2_5flev_1882',['SFS_hfx2_lev',['../classERF.html#acb607b2e675b45fdcabc09b640ce5ae2',1,'ERF']]], - ['sfs_5fhfx3_5flev_1883',['SFS_hfx3_lev',['../classERF.html#a1a2e3faf5dd90ad2f9ded28b486f3b46',1,'ERF']]], - ['sfs_5fq1fx3_5flev_1884',['SFS_q1fx3_lev',['../classERF.html#a101ceb89b1a249efeea3f4e8052bc8c0',1,'ERF']]], - ['sfs_5fq2fx3_5flev_1885',['SFS_q2fx3_lev',['../classERF.html#a3ea10ef7383e594b6ee5e7a9ad67607b',1,'ERF']]], - ['sfuns_1886',['sfuns',['../structsurface__flux__charnock.html#a4501ca4ecf49dccd6a1a914af03e1ed1',1,'surface_flux_charnock::sfuns()'],['../structsurface__temp__wave__coupled.html#abf85e6ffabb9974a13bc03e6f7d11e96',1,'surface_temp_wave_coupled::sfuns()'],['../structsurface__temp__mod__charnock.html#a1f329567f9dbb2f1f7a09e32603c9964',1,'surface_temp_mod_charnock::sfuns()'],['../structsurface__temp__charnock.html#ad7008c8f849acb706853f7aa39cda24d',1,'surface_temp_charnock::sfuns()'],['../structsurface__temp.html#a66e248c3558685f25206441914e8dfbf',1,'surface_temp::sfuns()'],['../structsurface__flux__wave__coupled.html#a91a27aa83da28c6bed01137ad0619b45',1,'surface_flux_wave_coupled::sfuns()'],['../structsurface__flux__mod__charnock.html#adb4a96d510f1e437c9efc41ba5fd16f9',1,'surface_flux_mod_charnock::sfuns()'],['../structsurface__flux.html#a01e8827b2f7e84c4d72496993822d806',1,'surface_flux::sfuns()'],['../structadiabatic__wave__coupled.html#ab5f4ad8ae9907cf15e3eba1129ea1375',1,'adiabatic_wave_coupled::sfuns()'],['../structadiabatic__mod__charnock.html#a66df1185e73be51b2bb72b55e70b64cd',1,'adiabatic_mod_charnock::sfuns()'],['../structadiabatic__charnock.html#ad4c4fe599c1b8692fa8ef8346866c349',1,'adiabatic_charnock::sfuns()'],['../structadiabatic.html#a6c7e923e1a01f0f0408829081a6b215c',1,'adiabatic::sfuns()']]], - ['shape_1887',['shape',['../structncutils_1_1NCVar.html#adb6e5fe1bfe8ab79e9ecf33ca5800797',1,'ncutils::NCVar::shape()'],['../structNDArray.html#a99d704051dda7b5635b12cbe785d7bb5',1,'NDArray::shape()']]], - ['shr_5forb_5fcosz_1888',['shr_orb_cosz',['../Orbit_8H.html#a5e24c049c05ea5e14bfc131dcca54c93',1,'Orbit.H']]], - ['shr_5forb_5fdecl_1889',['shr_orb_decl',['../Orbit_8H.html#a778a20e582ab3eaecfe3a5f67c73d68d',1,'Orbit.H']]], - ['sigma_5fk_1890',['sigma_k',['../structTurbChoice.html#a0bb2b38f64a12b0b50552e05dee629e7',1,'TurbChoice']]], - ['sigmag_1891',['sigmag',['../structPhysProp_1_1physprop__t.html#a3f78f2921f22ba1912926ef62da7b19f',1,'PhysProp::physprop_t']]], - ['similarity_5ffuns_1892',['similarity_funs',['../structsimilarity__funs.html',1,'']]], - ['simplead_1893',['SimpleAD',['../classSimpleAD.html',1,'SimpleAD'],['../DataStruct_8H.html#a5930188cdc2dd4def9ce58fdf5f46847a492784fb728d5797eb8db8b25fa2b33a',1,'SimpleAD(): DataStruct.H'],['../classSimpleAD.html#a708d4346c7d8900854def95ffd127985',1,'SimpleAD::SimpleAD()']]], - ['simplead_2eh_1894',['SimpleAD.H',['../SimpleAD_8H.html',1,'']]], - ['sinphi_1895',['sinphi',['../structSolverChoice.html#a6426e150ba9c1ba2e14151228bf6ffaf',1,'SolverChoice']]], - ['size_1896',['size',['../structInputSpongeData.html#aff9684faaf6b3a26494766819e4ba6dd',1,'InputSpongeData::size()'],['../structInputSoundingData.html#af2e8c00eb0bd0d64abf35528b33b3240',1,'InputSoundingData::size()']]], - ['slingo_1897',['Slingo',['../classSlingo.html',1,'']]], - ['slingo_2eh_1898',['Slingo.H',['../Slingo_8H.html',1,'']]], - ['slingo_5fliq_5foptics_5flw_1899',['slingo_liq_optics_lw',['../classSlingo.html#aedbfc95f917b864354b84a9a78d74c94',1,'Slingo']]], - ['slingo_5fliq_5foptics_5fsw_1900',['slingo_liq_optics_sw',['../classSlingo.html#ab37f1c288e0dcc71337629a65fb65e17',1,'Slingo']]], - ['slip_5fwall_1901',['slip_wall',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9a03ee6de9fd100444c5c0567ea01bd538',1,'IndexDefines.H']]], - ['slm_1902',['SLM',['../classSLM.html#a0f889af6d11c1e5fc4afbe7841e1c5c0',1,'SLM::SLM()'],['../classSLM.html',1,'SLM'],['../DataStruct_8H.html#abeec366fd5381f3bb7ba39f6e5c1e7e4ad3a11aacb1a63c0b2e5165c43b8ccd68',1,'SLM(): DataStruct.H']]], - ['slm_2ecpp_1903',['SLM.cpp',['../SLM_8cpp.html',1,'']]], - ['slm_2eh_1904',['SLM.H',['../SLM_8H.html',1,'']]], - ['slow_5ffast_5ftimestep_5fratio_1905',['slow_fast_timestep_ratio',['../classMRISplitIntegrator.html#ac627f7a16fd409d33916eeccb9ab3c3f',1,'MRISplitIntegrator']]], - ['slow_5frhs_5ffun_5fpost_1906',['slow_rhs_fun_post',['../TI__slow__rhs__fun_8H.html#af460c930508105e92f60fd868d23ebcf',1,'TI_slow_rhs_fun.H']]], - ['slow_5frhs_5ffun_5fpre_1907',['slow_rhs_fun_pre',['../TI__slow__rhs__fun_8H.html#a963142d364408ee1775dbef20383b244',1,'TI_slow_rhs_fun.H']]], - ['slow_5frhs_5finc_1908',['slow_rhs_inc',['../classMRISplitIntegrator.html#a8549e46229b347585323bcc079b483f8',1,'MRISplitIntegrator']]], - ['slow_5frhs_5fpost_1909',['slow_rhs_post',['../classMRISplitIntegrator.html#a168352ef9fbddab9850fc5d1686d3e66',1,'MRISplitIntegrator']]], - ['slow_5frhs_5fpre_1910',['slow_rhs_pre',['../classMRISplitIntegrator.html#a51f92090a883eae0fa605c4a0a033311',1,'MRISplitIntegrator']]], - ['smagorinsky_1911',['Smagorinsky',['../TurbStruct_8H.html#aa346fa9f5c0cb101a7766563fb76c500a409c5986f243d66ca7b1ef5882f4f808',1,'TurbStruct.H']]], - ['smnsmn_5flev_1912',['SmnSmn_lev',['../classERF.html#a9faaa96a7c270d2b2b062d9f30f19711',1,'ERF']]], - ['snow_5faccum_1913',['snow_accum',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a310c28c6a2a5e209f43302921d535af2',1,'MicVar']]], - ['solar_5fref_5fband_5firradiance_1914',['solar_ref_band_irradiance',['../classRadConstants.html#a08249d3010b2b85d35732b90d970cdf9',1,'RadConstants']]], - ['solverchoice_1915',['SolverChoice',['../structSolverChoice.html',1,'']]], - ['solverchoice_1916',['solverChoice',['../classERF.html#a32dd48049e8acbe95decdd4b01b782c4',1,'ERF']]], - ['source_1917',['source',['../structMamConstituents_1_1aerosol__t.html#ab48037e47876a2ed6f26eb592a62d789',1,'MamConstituents::aerosol_t::source()'],['../structMamConstituents_1_1gas__t.html#a619486c07ea85c8a1f1866b98e3f58f8',1,'MamConstituents::gas_t::source()']]], - ['source_5fmmr_5fa_1918',['source_mmr_a',['../structMamConstituents_1_1mode__component__t.html#a1414bee3812094600db773ce95ba57be',1,'MamConstituents::mode_component_t']]], - ['source_5fmmr_5fc_1919',['source_mmr_c',['../structMamConstituents_1_1mode__component__t.html#a69feca853d0ca8cae0a8fae58f4858e2',1,'MamConstituents::mode_component_t']]], - ['source_5fnum_5fa_1920',['source_num_a',['../structMamConstituents_1_1mode__component__t.html#ae1cdc979f1e678c3ea8bd5263e849153',1,'MamConstituents::mode_component_t']]], - ['source_5fnum_5fc_1921',['source_num_c',['../structMamConstituents_1_1mode__component__t.html#a349533043289a158d59b2ffd39d95378',1,'MamConstituents::mode_component_t']]], - ['source_5fterms_5fcellcentered_1922',['source_terms_cellcentered',['../classSimpleAD.html#a740ca3e67d7489e03f6f599ad2f162e7',1,'SimpleAD::source_terms_cellcentered()'],['../classEWP.html#a4f28000173748f88919eda5fbed1368e',1,'EWP::source_terms_cellcentered()'],['../classFitch.html#aa56821341be1cf4d01558e297993c0f2',1,'Fitch::source_terms_cellcentered()']]], - ['sourcefile_1923',['sourcefile',['../structPhysProp_1_1physprop__t.html#a3e3968847760816c03052a8b76da1a13',1,'PhysProp::physprop_t']]], - ['spec_5ftype_5fnames_1924',['spec_type_names',['../classMamConstituents.html#a2a3c67427c13fc60d592017076ddc8ce',1,'MamConstituents']]], - ['spectralflux_1925',['spectralflux',['../classRadiation.html#a65e0577b3ffe9a808731650c75941674',1,'Radiation']]], - ['sponge_1926',['Sponge',['../DataStruct_8H.html#a5bebd9ff4e2455172deca3b399214fcb',1,'DataStruct.H']]], - ['sponge_5fdensity_1927',['sponge_density',['../structSpongeChoice.html#adb74ee3cbc24251272d6ad5fafdb885d',1,'SpongeChoice']]], - ['sponge_5fstrength_1928',['sponge_strength',['../structSpongeChoice.html#a48f4b8a95b93cf8fa36d00d355757a1e',1,'SpongeChoice']]], - ['sponge_5ftype_1929',['sponge_type',['../classERF.html#a6c570cbcb63ba3b0b09557537310ea46',1,'ERF::sponge_type()'],['../structSpongeChoice.html#a1a41f754595d713df32583f0b0fa606e',1,'SpongeChoice::sponge_type()']]], - ['sponge_5fx_5fvelocity_1930',['sponge_x_velocity',['../structSpongeChoice.html#aad5ca098e341c3f76dc8420daeb8b629',1,'SpongeChoice']]], - ['sponge_5fy_5fvelocity_1931',['sponge_y_velocity',['../structSpongeChoice.html#a13c70085162f73a4b6c36f7161be7260',1,'SpongeChoice']]], - ['sponge_5fz_5fvelocity_1932',['sponge_z_velocity',['../structSpongeChoice.html#a830ff63e204ed6c9dd381fd2baa1b33e',1,'SpongeChoice']]], - ['spongechoice_1933',['SpongeChoice',['../structSpongeChoice.html',1,'']]], - ['spongechoice_1934',['spongeChoice',['../structSolverChoice.html#ac066852f06a6409e1638f59868b7c57d',1,'SolverChoice']]], - ['spongestruct_2eh_1935',['SpongeStruct.H',['../SpongeStruct_8H.html',1,'']]], - ['src_5fheaders_2eh_1936',['Src_headers.H',['../Src__headers_8H.html',1,'']]], - ['ssa_5fcmip6_5fsw_1937',['ssa_cmip6_sw',['../classAerRadProps.html#a0690511bbea6225a4afa365c4c153f0c',1,'AerRadProps']]], - ['ssa_5fsw_5fice_1938',['ssa_sw_ice',['../classCloudRadProps.html#a65b15fc94853bc17e04f24926155b7c5',1,'CloudRadProps']]], - ['ssa_5fsw_5fliq_1939',['ssa_sw_liq',['../classCloudRadProps.html#a6a070723376d30c2d64c808898faebfb',1,'CloudRadProps']]], - ['sst_5flev_1940',['sst_lev',['../classERF.html#a5a5395054a212d8f3fc577562c14b66e',1,'ERF']]], - ['start_5ftime_1941',['start_time',['../classERF.html#aa0c07f31b23d977646b8161e5473fab5',1,'ERF']]], - ['startcputime_1942',['startCPUTime',['../classERF.html#a6d00e1cb76bfbcbada173e092b6accf3',1,'ERF']]], - ['static_1943',['Static',['../DataStruct_8H.html#af82ff6f1edafee12190434b73fe91127a84a8921b25f505d0d2077aeb5db4bc16',1,'DataStruct.H']]], - ['stop_5ftime_1944',['stop_time',['../classERF.html#a405556a52bef334ab68294c1a540e107',1,'ERF']]], - ['sum_5fintegrated_5fquantities_1945',['sum_integrated_quantities',['../classERF.html#a922892a05ee0c5bccd210a3e5a8599e1',1,'ERF']]], - ['sum_5finterval_1946',['sum_interval',['../classERF.html#a5232e98479611a24fe97994640c61faa',1,'ERF']]], - ['sum_5fper_1947',['sum_per',['../classERF.html#a1cf2ba396f4404724824516da4c4a084',1,'ERF']]], - ['surf_5fheating_5frate_1948',['surf_heating_rate',['../classABLMost.html#a39402ac3794b9a218289cd0d4adec670',1,'ABLMost']]], - ['surf_5ftemp_1949',['surf_temp',['../classABLMost.html#a73621a1b429f2e910a29adac72b7c581',1,'ABLMost']]], - ['surf_5ftemp_5fflux_1950',['surf_temp_flux',['../classABLMost.html#a98390481d302c2a2c7346bf2328305a8',1,'ABLMost::surf_temp_flux()'],['../structmost__data.html#af1d069399319831cf4ae17fba1dda19f',1,'most_data::surf_temp_flux()']]], - ['surface_5fflux_1951',['surface_flux',['../structsurface__flux.html#a99588cc80bc461f24f2217f7c7cb1294',1,'surface_flux::surface_flux()'],['../structsurface__flux.html',1,'surface_flux']]], - ['surface_5fflux_5fcharnock_1952',['surface_flux_charnock',['../structsurface__flux__charnock.html',1,'surface_flux_charnock'],['../structsurface__flux__charnock.html#a6fef08de02ce5a69d4f276dce6721d27',1,'surface_flux_charnock::surface_flux_charnock()']]], - ['surface_5fflux_5fmod_5fcharnock_1953',['surface_flux_mod_charnock',['../structsurface__flux__mod__charnock.html',1,'surface_flux_mod_charnock'],['../structsurface__flux__mod__charnock.html#ab0516a2bad4b4a38ecfa71f75fa3b00c',1,'surface_flux_mod_charnock::surface_flux_mod_charnock()']]], - ['surface_5fflux_5fwave_5fcoupled_1954',['surface_flux_wave_coupled',['../structsurface__flux__wave__coupled.html',1,'surface_flux_wave_coupled'],['../structsurface__flux__wave__coupled.html#a1f7495d05cf04a69be3d51e6535644d6',1,'surface_flux_wave_coupled::surface_flux_wave_coupled()']]], - ['surface_5ftemp_1955',['surface_temp',['../structsurface__temp.html',1,'surface_temp'],['../structsurface__temp.html#a6b5b55df12e42231fa3d8cf36ab0c734',1,'surface_temp::surface_temp()']]], - ['surface_5ftemp_5fcharnock_1956',['surface_temp_charnock',['../structsurface__temp__charnock.html',1,'surface_temp_charnock'],['../structsurface__temp__charnock.html#a21617e7d85b0127ca609a82c0f95556b',1,'surface_temp_charnock::surface_temp_charnock()']]], - ['surface_5ftemp_5fmod_5fcharnock_1957',['surface_temp_mod_charnock',['../structsurface__temp__mod__charnock.html',1,'surface_temp_mod_charnock'],['../structsurface__temp__mod__charnock.html#a5812f19588039a9d3186e63bfe529b9c',1,'surface_temp_mod_charnock::surface_temp_mod_charnock()']]], - ['surface_5ftemp_5fwave_5fcoupled_1958',['surface_temp_wave_coupled',['../structsurface__temp__wave__coupled.html',1,'surface_temp_wave_coupled'],['../structsurface__temp__wave__coupled.html#afb061b2c2b86edd4821efbcb70295412',1,'surface_temp_wave_coupled::surface_temp_wave_coupled()']]], - ['surface_5ftemperature_1959',['SURFACE_TEMPERATURE',['../classABLMost.html#a46fbd9260d2adfa7c18edad6452f9baba317cef85d14b4909f1d76becb00dc0f1',1,'ABLMost']]], - ['svp_5fice_1960',['svp_ice',['../classWaterVaporSat.html#a0ff4f9b6dff1a33f4ed6eb9d7af72e49',1,'WaterVaporSat']]], - ['svp_5ftrans_1961',['svp_trans',['../classWaterVaporSat.html#a65b6cc3dc802016e84bc19030f6ad65a',1,'WaterVaporSat']]], - ['svp_5fwater_1962',['svp_water',['../classWaterVaporSat.html#a5463980977e84f7268ed9afde2bad62e',1,'WaterVaporSat']]], - ['sw_5fband_5fmidpoints_1963',['sw_band_midpoints',['../classRadiation.html#a8ed843e3e2bb03d388b0c3ab869b1dba',1,'Radiation']]], - ['sw_5fhygro_5fasm_1964',['sw_hygro_asm',['../structPhysProp_1_1physprop__t.html#ae7278f6fb1910558af27c7ff79b18fa0',1,'PhysProp::physprop_t']]], - ['sw_5fhygro_5fext_1965',['sw_hygro_ext',['../structPhysProp_1_1physprop__t.html#aff3fc87f8134cab71058c4372ddb853f',1,'PhysProp::physprop_t']]], - ['sw_5fhygro_5fssa_1966',['sw_hygro_ssa',['../structPhysProp_1_1physprop__t.html#ae326430d60fa6170ccbebccb10b8a86a',1,'PhysProp::physprop_t']]], - ['sw_5fnonhygro_5fascat_1967',['sw_nonhygro_ascat',['../structPhysProp_1_1physprop__t.html#a4789a50f02b5f5cdee6a284cc782eed9',1,'PhysProp::physprop_t']]], - ['sw_5fnonhygro_5fasm_1968',['sw_nonhygro_asm',['../structPhysProp_1_1physprop__t.html#a744ddbbe6c903be22244e84cbc85c567',1,'PhysProp::physprop_t']]], - ['sw_5fnonhygro_5fext_1969',['sw_nonhygro_ext',['../structPhysProp_1_1physprop__t.html#a3b762bb10073922aba1fdc89e8f4d412',1,'PhysProp::physprop_t']]], - ['sw_5fnonhygro_5fscat_1970',['sw_nonhygro_scat',['../structPhysProp_1_1physprop__t.html#abbcc9ba3c0f329c98e7ba078f2ebf1dc',1,'PhysProp::physprop_t']]], - ['sw_5fnonhygro_5fssa_1971',['sw_nonhygro_ssa',['../structPhysProp_1_1physprop__t.html#aad14342b28b8939c5ae115605318ed02',1,'PhysProp::physprop_t']]], - ['symmetry_1972',['symmetry',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9a40e712f30d56083318ab20a2402921d2',1,'IndexDefines.H']]] + ['s_5fscratch_1816',['S_scratch',['../classMRISplitIntegrator.html#a6bcdee4380cd503256cb460b558184aa',1,'MRISplitIntegrator']]], + ['s_5fsum_1817',['S_sum',['../classMRISplitIntegrator.html#ad570588876d21506bc7232884841cab1',1,'MRISplitIntegrator']]], + ['sam_1818',['SAM',['../DataStruct_8H.html#ab34704153a585940411c26587cb82ad0a9f1b3be4a82b11d104e4ef7f7ccb1c19',1,'SAM(): DataStruct.H'],['../classSAM.html#a14fc54f233862c3c339abcc16412078c',1,'SAM::SAM()'],['../classSAM.html',1,'SAM']]], + ['sam_2eh_1819',['SAM.H',['../SAM_8H.html',1,'']]], + ['sam_5fnoice_1820',['SAM_NoIce',['../DataStruct_8H.html#ab34704153a585940411c26587cb82ad0aca8fb8e2f9829763f29ce489f9f6e535',1,'DataStruct.H']]], + ['sam_5fnoprecip_5fnoice_1821',['SAM_NoPrecip_NoIce',['../DataStruct_8H.html#ab34704153a585940411c26587cb82ad0a1571939639d68374fc4af7fae4b66d03',1,'DataStruct.H']]], + ['sample_5fcloud_5foptics_5flw_1822',['sample_cloud_optics_lw',['../classOptics.html#aa4a9d3efc9d464090f9a803bdab51ca1',1,'Optics']]], + ['sample_5fcloud_5foptics_5fsw_1823',['sample_cloud_optics_sw',['../classOptics.html#abf585c4bba33e85f0eb2f685c87b22a7',1,'Optics']]], + ['sample_5flines_1824',['sample_lines',['../classERF.html#afb798c72ea4fde6f4da8d01a24c8c165',1,'ERF']]], + ['sample_5fpoints_1825',['sample_points',['../classERF.html#aa28182226262c67cfd686d35bfeabcad',1,'ERF']]], + ['sampleline_1826',['sampleline',['../classERF.html#a0fa1582bb13357895d2aba91b695624a',1,'ERF']]], + ['sampleline_1827',['SampleLine',['../classERF.html#a54357e2f81f3d7d3a9189a3e21283e6b',1,'ERF']]], + ['samplelinelog_1828',['SampleLineLog',['../classERF.html#aa559426d0435e669b04148c58b20caef',1,'ERF']]], + ['samplelinelog_1829',['samplelinelog',['../classERF.html#a4990f1796b65ec8ee602f177a66afc3e',1,'ERF']]], + ['samplelinelogname_1830',['samplelinelogname',['../classERF.html#a0553967f1131860bb8ecb47c0f192eaa',1,'ERF']]], + ['samplelinelogname_1831',['SampleLineLogName',['../classERF.html#a59eae161173111d66e88dc3acc65b552',1,'ERF']]], + ['samplepoint_1832',['samplepoint',['../classERF.html#ae8a57b7fbf5a67c99d04b7d4f43ad100',1,'ERF']]], + ['samplepoint_1833',['SamplePoint',['../classERF.html#a9095d1b641b4d7f32ca5acb679786891',1,'ERF']]], + ['samplepointlog_1834',['SamplePointLog',['../classERF.html#af5f6c32cc5463e52901f21117d3156c7',1,'ERF']]], + ['samplepointlogname_1835',['SamplePointLogName',['../classERF.html#aa87242f053bfae4efb2a7698ef417ab9',1,'ERF']]], + ['sampleptlog_1836',['sampleptlog',['../classERF.html#a9737ddb0de6b9e8a5b17c109d5ad3e08',1,'ERF']]], + ['sampleptlogname_1837',['sampleptlogname',['../classERF.html#a8fbfa8bb47c0a3b53e244081aa1e8ad3',1,'ERF']]], + ['sat_5fmethods_2eh_1838',['Sat_methods.H',['../Sat__methods_8H.html',1,'']]], + ['satmethods_1839',['SatMethods',['../classSatMethods.html',1,'']]], + ['sc_5ft_1840',['Sc_t',['../structTurbChoice.html#aed763f56a6349187c9c0c0e4c952d05a',1,'TurbChoice']]], + ['sc_5ft_5finv_1841',['Sc_t_inv',['../structTurbChoice.html#a2daa4d23f9d89ee777a0d0fbd43196b6',1,'TurbChoice']]], + ['scalar_5fh_1842',['Scalar_h',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea85d322ae06bc4f66f791d4eda0a13ae6',1,'EddyDiff']]], + ['scalar_5fv_1843',['Scalar_v',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea2b82a72be137b3159e7d4945735fcbf5',1,'EddyDiff']]], + ['scalefactor_1844',['scalefactor',['../classEbertCurry.html#ab8edf44ffa6bd8f71ad9748b92928072',1,'EbertCurry']]], + ['set_5factive_1845',['set_active',['../classCIF.html#a76d1ac8079f53130cbc9f3367a149823',1,'CIF']]], + ['set_5faerosol_5foptics_5flw_1846',['set_aerosol_optics_lw',['../classOptics.html#aecf608be7db530dc74beb0a03b2279f2',1,'Optics']]], + ['set_5faerosol_5foptics_5fsw_1847',['set_aerosol_optics_sw',['../classOptics.html#a54463b4d74c22934fcbf36a7c95f0b3f',1,'Optics']]], + ['set_5falbedo_1848',['set_albedo',['../Albedo_8H.html#a677778ad4c4fb53a8c7076ace6d436ce',1,'set_albedo(const real1d &coszrs, real2d &albedo_dir, real2d &albedo_dif): Albedo.cpp'],['../Albedo_8cpp.html#a677778ad4c4fb53a8c7076ace6d436ce',1,'set_albedo(const real1d &coszrs, real2d &albedo_dir, real2d &albedo_dif): Albedo.cpp']]], + ['set_5fdaynight_5findices_1849',['set_daynight_indices',['../classRadiation.html#a5a59f4f8e03a0e6dcfe96c31a0c9b352',1,'Radiation']]], + ['set_5ffast_5frhs_1850',['set_fast_rhs',['../classMRISplitIntegrator.html#aafed3f1d61d477bd1f01bdeb71a9ab11',1,'MRISplitIntegrator']]], + ['set_5fk_5findices_5fn_1851',['set_k_indices_N',['../classMOSTAverage.html#a8928b9f9d6d45fdd9fd88053fcae34e2',1,'MOSTAverage']]], + ['set_5fk_5findices_5ft_1852',['set_k_indices_T',['../classMOSTAverage.html#a1892a3f9c2175cd2323d8d3a3bc83b6c',1,'MOSTAverage']]], + ['set_5fno_5fsubstep_1853',['set_no_substep',['../classMRISplitIntegrator.html#a216903aa134536df210f489acdfd2b8b',1,'MRISplitIntegrator']]], + ['set_5fnorm_5findices_5ft_1854',['set_norm_indices_T',['../classMOSTAverage.html#a2908278cc9088e345af422a187eba337',1,'MOSTAverage']]], + ['set_5fnorm_5fpositions_5ft_1855',['set_norm_positions_T',['../classMOSTAverage.html#a697396705fddae5c919c7e4020cf20b2',1,'MOSTAverage']]], + ['set_5fplane_5fnormalization_1856',['set_plane_normalization',['../classMOSTAverage.html#a5a0413a85da2e6a13f21cc875c8295d0',1,'MOSTAverage']]], + ['set_5fpost_5fupdate_1857',['set_post_update',['../classMRISplitIntegrator.html#a95b3c0742918b516a3d12a60eb280b48',1,'MRISplitIntegrator']]], + ['set_5fpre_5fupdate_1858',['set_pre_update',['../classMRISplitIntegrator.html#a7c3d1c29712cdc8888af315d37960561',1,'MRISplitIntegrator']]], + ['set_5fprecision_1859',['set_precision',['../classPlaneAverage.html#a6933fa8d1b71a55f5276250050c54216',1,'PlaneAverage']]], + ['set_5fregion_5fnormalization_1860',['set_region_normalization',['../classMOSTAverage.html#a1eafe515fb0a3fc673d604b854a3cc13',1,'MOSTAverage']]], + ['set_5frotated_5ffields_1861',['set_rotated_fields',['../classMOSTAverage.html#a314ac1672f7b8ce2cf9f9d32d00191a5',1,'MOSTAverage']]], + ['set_5fslow_5ffast_5ftimestep_5fratio_1862',['set_slow_fast_timestep_ratio',['../classMRISplitIntegrator.html#ad31fb2cda1fc2dce80820ed7c4a3c052',1,'MRISplitIntegrator']]], + ['set_5fslow_5frhs_5finc_1863',['set_slow_rhs_inc',['../classMRISplitIntegrator.html#a26955c190dfb0d6cef7237198dbfd099',1,'MRISplitIntegrator']]], + ['set_5fslow_5frhs_5fpost_1864',['set_slow_rhs_post',['../classMRISplitIntegrator.html#af086d3c68787442d07f0a9d530618cc1',1,'MRISplitIntegrator']]], + ['set_5fslow_5frhs_5fpre_1865',['set_slow_rhs_pre',['../classMRISplitIntegrator.html#a137a1ceb1e8051b5a97aaab40492c0e1',1,'MRISplitIntegrator']]], + ['set_5ftime_1866',['set_time',['../structTimeInterpolatedData.html#a0d6dcefbf7407a24669d2a37c7f558d4',1,'TimeInterpolatedData']]], + ['set_5fturb_5floc_1867',['set_turb_loc',['../classNullWindFarm.html#aadf3ba54909c2931d089f631889dbd5b',1,'NullWindFarm::set_turb_loc()'],['../classWindFarm.html#a5defcbb732ba325db7b6e8a819ab381e',1,'WindFarm::set_turb_loc()']]], + ['set_5fturb_5fspec_1868',['set_turb_spec',['../classNullWindFarm.html#a745c730028714c13ff11fefb5440b2e5',1,'NullWindFarm::set_turb_spec()'],['../classWindFarm.html#aabf18956cad4a8546eb60ff8300c94c8',1,'WindFarm::set_turb_spec()']]], + ['set_5fvshape_1869',['set_vshape',['../structNDArray.html#a6a0a485b6da8ce09dda81fc51607da73',1,'NDArray']]], + ['set_5fz_5fpositions_5ft_1870',['set_z_positions_T',['../classMOSTAverage.html#a96178b02bec37f171ef608cec9a246bf',1,'MOSTAverage']]], + ['setblockcommmetadata_1871',['SetBlockCommMetaData',['../classMultiBlockContainer.html#a154697509fae9c842b83ede2d30b7060',1,'MultiBlockContainer']]], + ['setboxlists_1872',['SetBoxLists',['../classMultiBlockContainer.html#a6965a65ae5ef2533298b274797b5d8c7',1,'MultiBlockContainer']]], + ['setforcefirststagesinglesubstep_1873',['setForceFirstStageSingleSubstep',['../classMRISplitIntegrator.html#a5ae771a094162dc22bfdded7b12fd5c4',1,'MRISplitIntegrator']]], + ['setincompressible_1874',['setIncompressible',['../classMRISplitIntegrator.html#aad2f2b1f64f0d193e3321a46afa15deb',1,'MRISplitIntegrator']]], + ['setmodel_1875',['SetModel',['../classLandSurface.html#a91df3382b60a6566b78a23c87b46f065',1,'LandSurface::SetModel()'],['../classEulerianMicrophysics.html#aa882ea75f222099b16b43a579d11e2c1',1,'EulerianMicrophysics::SetModel()'],['../classWindFarm.html#a638bdc717e37526689d507a5cd36735e',1,'WindFarm::SetModel()']]], + ['setncompcons_1876',['setNcompCons',['../classMRISplitIntegrator.html#a294f18465629a72da152b3e9aa4b0455',1,'MRISplitIntegrator']]], + ['setnosubstepping_1877',['setNoSubstepping',['../classMRISplitIntegrator.html#a6ca4eef257ddfcb793de89d2309ac9a1',1,'MRISplitIntegrator']]], + ['setplotvariables_1878',['setPlotVariables',['../classERF.html#a1fcb440c67da60c86372aec1fe871cb7',1,'ERF']]], + ['setrayleighreffromsounding_1879',['setRayleighRefFromSounding',['../classERF.html#a0877d5a0263641c13b92d2d16f47b689',1,'ERF']]], + ['setrecorddatainfo_1880',['setRecordDataInfo',['../classERF.html#a2486b49bb0d7917f812318822e42a03c',1,'ERF']]], + ['setrecordsamplelineinfo_1881',['setRecordSampleLineInfo',['../classERF.html#ae1a8856961aaee53016122facba03dbe',1,'ERF']]], + ['setrecordsamplepointinfo_1882',['setRecordSamplePointInfo',['../classERF.html#af8d930dce1b926ecc3bdc6787dd47818',1,'ERF']]], + ['setspongereffromsounding_1883',['setSpongeRefFromSounding',['../classERF.html#ae27a45d751287a887769df20dea60633',1,'ERF']]], + ['sfs_5fdiss_5flev_1884',['SFS_diss_lev',['../classERF.html#a6e1ad417e3bd062468d74830b65911fb',1,'ERF']]], + ['sfs_5fhfx1_5flev_1885',['SFS_hfx1_lev',['../classERF.html#a25174b4ae6cfcac8f7d183ce5c9fe67b',1,'ERF']]], + ['sfs_5fhfx2_5flev_1886',['SFS_hfx2_lev',['../classERF.html#acb607b2e675b45fdcabc09b640ce5ae2',1,'ERF']]], + ['sfs_5fhfx3_5flev_1887',['SFS_hfx3_lev',['../classERF.html#a1a2e3faf5dd90ad2f9ded28b486f3b46',1,'ERF']]], + ['sfs_5fq1fx3_5flev_1888',['SFS_q1fx3_lev',['../classERF.html#a101ceb89b1a249efeea3f4e8052bc8c0',1,'ERF']]], + ['sfs_5fq2fx3_5flev_1889',['SFS_q2fx3_lev',['../classERF.html#a3ea10ef7383e594b6ee5e7a9ad67607b',1,'ERF']]], + ['sfuns_1890',['sfuns',['../structsurface__flux__charnock.html#a4501ca4ecf49dccd6a1a914af03e1ed1',1,'surface_flux_charnock::sfuns()'],['../structsurface__temp__wave__coupled.html#abf85e6ffabb9974a13bc03e6f7d11e96',1,'surface_temp_wave_coupled::sfuns()'],['../structsurface__temp__mod__charnock.html#a1f329567f9dbb2f1f7a09e32603c9964',1,'surface_temp_mod_charnock::sfuns()'],['../structsurface__temp__charnock.html#ad7008c8f849acb706853f7aa39cda24d',1,'surface_temp_charnock::sfuns()'],['../structsurface__temp.html#a66e248c3558685f25206441914e8dfbf',1,'surface_temp::sfuns()'],['../structsurface__flux__wave__coupled.html#a91a27aa83da28c6bed01137ad0619b45',1,'surface_flux_wave_coupled::sfuns()'],['../structsurface__flux__mod__charnock.html#adb4a96d510f1e437c9efc41ba5fd16f9',1,'surface_flux_mod_charnock::sfuns()'],['../structsurface__flux.html#a01e8827b2f7e84c4d72496993822d806',1,'surface_flux::sfuns()'],['../structadiabatic__wave__coupled.html#ab5f4ad8ae9907cf15e3eba1129ea1375',1,'adiabatic_wave_coupled::sfuns()'],['../structadiabatic__mod__charnock.html#a66df1185e73be51b2bb72b55e70b64cd',1,'adiabatic_mod_charnock::sfuns()'],['../structadiabatic__charnock.html#ad4c4fe599c1b8692fa8ef8346866c349',1,'adiabatic_charnock::sfuns()'],['../structadiabatic.html#a6c7e923e1a01f0f0408829081a6b215c',1,'adiabatic::sfuns()']]], + ['shape_1891',['shape',['../structncutils_1_1NCVar.html#adb6e5fe1bfe8ab79e9ecf33ca5800797',1,'ncutils::NCVar::shape()'],['../structNDArray.html#a99d704051dda7b5635b12cbe785d7bb5',1,'NDArray::shape()']]], + ['shr_5forb_5fcosz_1892',['shr_orb_cosz',['../Orbit_8H.html#a5e24c049c05ea5e14bfc131dcca54c93',1,'Orbit.H']]], + ['shr_5forb_5fdecl_1893',['shr_orb_decl',['../Orbit_8H.html#a778a20e582ab3eaecfe3a5f67c73d68d',1,'Orbit.H']]], + ['sigma_5fk_1894',['sigma_k',['../structTurbChoice.html#a0bb2b38f64a12b0b50552e05dee629e7',1,'TurbChoice']]], + ['sigmag_1895',['sigmag',['../structPhysProp_1_1physprop__t.html#a3f78f2921f22ba1912926ef62da7b19f',1,'PhysProp::physprop_t']]], + ['similarity_5ffuns_1896',['similarity_funs',['../structsimilarity__funs.html',1,'']]], + ['simplead_1897',['SimpleAD',['../classSimpleAD.html',1,'SimpleAD'],['../DataStruct_8H.html#a5930188cdc2dd4def9ce58fdf5f46847a492784fb728d5797eb8db8b25fa2b33a',1,'SimpleAD(): DataStruct.H'],['../classSimpleAD.html#a708d4346c7d8900854def95ffd127985',1,'SimpleAD::SimpleAD()']]], + ['simplead_2eh_1898',['SimpleAD.H',['../SimpleAD_8H.html',1,'']]], + ['sinphi_1899',['sinphi',['../structSolverChoice.html#a6426e150ba9c1ba2e14151228bf6ffaf',1,'SolverChoice']]], + ['size_1900',['size',['../structInputSpongeData.html#aff9684faaf6b3a26494766819e4ba6dd',1,'InputSpongeData::size()'],['../structInputSoundingData.html#af2e8c00eb0bd0d64abf35528b33b3240',1,'InputSoundingData::size()']]], + ['slingo_1901',['Slingo',['../classSlingo.html',1,'']]], + ['slingo_2eh_1902',['Slingo.H',['../Slingo_8H.html',1,'']]], + ['slingo_5fliq_5foptics_5flw_1903',['slingo_liq_optics_lw',['../classSlingo.html#aedbfc95f917b864354b84a9a78d74c94',1,'Slingo']]], + ['slingo_5fliq_5foptics_5fsw_1904',['slingo_liq_optics_sw',['../classSlingo.html#ab37f1c288e0dcc71337629a65fb65e17',1,'Slingo']]], + ['slip_5fwall_1905',['slip_wall',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9a03ee6de9fd100444c5c0567ea01bd538',1,'IndexDefines.H']]], + ['slm_1906',['SLM',['../classSLM.html#a0f889af6d11c1e5fc4afbe7841e1c5c0',1,'SLM::SLM()'],['../classSLM.html',1,'SLM'],['../DataStruct_8H.html#abeec366fd5381f3bb7ba39f6e5c1e7e4ad3a11aacb1a63c0b2e5165c43b8ccd68',1,'SLM(): DataStruct.H']]], + ['slm_2ecpp_1907',['SLM.cpp',['../SLM_8cpp.html',1,'']]], + ['slm_2eh_1908',['SLM.H',['../SLM_8H.html',1,'']]], + ['slow_5ffast_5ftimestep_5fratio_1909',['slow_fast_timestep_ratio',['../classMRISplitIntegrator.html#ac627f7a16fd409d33916eeccb9ab3c3f',1,'MRISplitIntegrator']]], + ['slow_5frhs_5ffun_5fpost_1910',['slow_rhs_fun_post',['../TI__slow__rhs__fun_8H.html#af460c930508105e92f60fd868d23ebcf',1,'TI_slow_rhs_fun.H']]], + ['slow_5frhs_5ffun_5fpre_1911',['slow_rhs_fun_pre',['../TI__slow__rhs__fun_8H.html#a963142d364408ee1775dbef20383b244',1,'TI_slow_rhs_fun.H']]], + ['slow_5frhs_5finc_1912',['slow_rhs_inc',['../classMRISplitIntegrator.html#a8549e46229b347585323bcc079b483f8',1,'MRISplitIntegrator']]], + ['slow_5frhs_5fpost_1913',['slow_rhs_post',['../classMRISplitIntegrator.html#a168352ef9fbddab9850fc5d1686d3e66',1,'MRISplitIntegrator']]], + ['slow_5frhs_5fpre_1914',['slow_rhs_pre',['../classMRISplitIntegrator.html#a51f92090a883eae0fa605c4a0a033311',1,'MRISplitIntegrator']]], + ['smagorinsky_1915',['Smagorinsky',['../TurbStruct_8H.html#aa346fa9f5c0cb101a7766563fb76c500a409c5986f243d66ca7b1ef5882f4f808',1,'TurbStruct.H']]], + ['smnsmn_5flev_1916',['SmnSmn_lev',['../classERF.html#a9faaa96a7c270d2b2b062d9f30f19711',1,'ERF']]], + ['snow_5faccum_1917',['snow_accum',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a310c28c6a2a5e209f43302921d535af2',1,'MicVar']]], + ['solar_5fref_5fband_5firradiance_1918',['solar_ref_band_irradiance',['../classRadConstants.html#a08249d3010b2b85d35732b90d970cdf9',1,'RadConstants']]], + ['solverchoice_1919',['SolverChoice',['../structSolverChoice.html',1,'']]], + ['solverchoice_1920',['solverChoice',['../classERF.html#a32dd48049e8acbe95decdd4b01b782c4',1,'ERF']]], + ['source_1921',['source',['../structMamConstituents_1_1aerosol__t.html#ab48037e47876a2ed6f26eb592a62d789',1,'MamConstituents::aerosol_t::source()'],['../structMamConstituents_1_1gas__t.html#a619486c07ea85c8a1f1866b98e3f58f8',1,'MamConstituents::gas_t::source()']]], + ['source_5fmmr_5fa_1922',['source_mmr_a',['../structMamConstituents_1_1mode__component__t.html#a1414bee3812094600db773ce95ba57be',1,'MamConstituents::mode_component_t']]], + ['source_5fmmr_5fc_1923',['source_mmr_c',['../structMamConstituents_1_1mode__component__t.html#a69feca853d0ca8cae0a8fae58f4858e2',1,'MamConstituents::mode_component_t']]], + ['source_5fnum_5fa_1924',['source_num_a',['../structMamConstituents_1_1mode__component__t.html#ae1cdc979f1e678c3ea8bd5263e849153',1,'MamConstituents::mode_component_t']]], + ['source_5fnum_5fc_1925',['source_num_c',['../structMamConstituents_1_1mode__component__t.html#a349533043289a158d59b2ffd39d95378',1,'MamConstituents::mode_component_t']]], + ['source_5fterms_5fcellcentered_1926',['source_terms_cellcentered',['../classSimpleAD.html#a740ca3e67d7489e03f6f599ad2f162e7',1,'SimpleAD::source_terms_cellcentered()'],['../classEWP.html#a4f28000173748f88919eda5fbed1368e',1,'EWP::source_terms_cellcentered()'],['../classFitch.html#aa56821341be1cf4d01558e297993c0f2',1,'Fitch::source_terms_cellcentered()']]], + ['sourcefile_1927',['sourcefile',['../structPhysProp_1_1physprop__t.html#a3e3968847760816c03052a8b76da1a13',1,'PhysProp::physprop_t']]], + ['spec_5ftype_5fnames_1928',['spec_type_names',['../classMamConstituents.html#a2a3c67427c13fc60d592017076ddc8ce',1,'MamConstituents']]], + ['spectralflux_1929',['spectralflux',['../classRadiation.html#a65e0577b3ffe9a808731650c75941674',1,'Radiation']]], + ['sponge_1930',['Sponge',['../DataStruct_8H.html#a5bebd9ff4e2455172deca3b399214fcb',1,'DataStruct.H']]], + ['sponge_5fdensity_1931',['sponge_density',['../structSpongeChoice.html#adb74ee3cbc24251272d6ad5fafdb885d',1,'SpongeChoice']]], + ['sponge_5fstrength_1932',['sponge_strength',['../structSpongeChoice.html#a48f4b8a95b93cf8fa36d00d355757a1e',1,'SpongeChoice']]], + ['sponge_5ftype_1933',['sponge_type',['../classERF.html#a6c570cbcb63ba3b0b09557537310ea46',1,'ERF::sponge_type()'],['../structSpongeChoice.html#a1a41f754595d713df32583f0b0fa606e',1,'SpongeChoice::sponge_type()']]], + ['sponge_5fx_5fvelocity_1934',['sponge_x_velocity',['../structSpongeChoice.html#aad5ca098e341c3f76dc8420daeb8b629',1,'SpongeChoice']]], + ['sponge_5fy_5fvelocity_1935',['sponge_y_velocity',['../structSpongeChoice.html#a13c70085162f73a4b6c36f7161be7260',1,'SpongeChoice']]], + ['sponge_5fz_5fvelocity_1936',['sponge_z_velocity',['../structSpongeChoice.html#a830ff63e204ed6c9dd381fd2baa1b33e',1,'SpongeChoice']]], + ['spongechoice_1937',['SpongeChoice',['../structSpongeChoice.html',1,'']]], + ['spongechoice_1938',['spongeChoice',['../structSolverChoice.html#ac066852f06a6409e1638f59868b7c57d',1,'SolverChoice']]], + ['spongestruct_2eh_1939',['SpongeStruct.H',['../SpongeStruct_8H.html',1,'']]], + ['src_5fheaders_2eh_1940',['Src_headers.H',['../Src__headers_8H.html',1,'']]], + ['ssa_5fcmip6_5fsw_1941',['ssa_cmip6_sw',['../classAerRadProps.html#a0690511bbea6225a4afa365c4c153f0c',1,'AerRadProps']]], + ['ssa_5fsw_5fice_1942',['ssa_sw_ice',['../classCloudRadProps.html#a65b15fc94853bc17e04f24926155b7c5',1,'CloudRadProps']]], + ['ssa_5fsw_5fliq_1943',['ssa_sw_liq',['../classCloudRadProps.html#a6a070723376d30c2d64c808898faebfb',1,'CloudRadProps']]], + ['sst_5flev_1944',['sst_lev',['../classERF.html#a5a5395054a212d8f3fc577562c14b66e',1,'ERF']]], + ['start_5ftime_1945',['start_time',['../classERF.html#aa0c07f31b23d977646b8161e5473fab5',1,'ERF']]], + ['startcputime_1946',['startCPUTime',['../classERF.html#a6d00e1cb76bfbcbada173e092b6accf3',1,'ERF']]], + ['static_1947',['Static',['../DataStruct_8H.html#af82ff6f1edafee12190434b73fe91127a84a8921b25f505d0d2077aeb5db4bc16',1,'DataStruct.H']]], + ['stop_5ftime_1948',['stop_time',['../classERF.html#a405556a52bef334ab68294c1a540e107',1,'ERF']]], + ['sum_5fintegrated_5fquantities_1949',['sum_integrated_quantities',['../classERF.html#a922892a05ee0c5bccd210a3e5a8599e1',1,'ERF']]], + ['sum_5finterval_1950',['sum_interval',['../classERF.html#a5232e98479611a24fe97994640c61faa',1,'ERF']]], + ['sum_5fper_1951',['sum_per',['../classERF.html#a1cf2ba396f4404724824516da4c4a084',1,'ERF']]], + ['surf_5fheating_5frate_1952',['surf_heating_rate',['../classABLMost.html#a39402ac3794b9a218289cd0d4adec670',1,'ABLMost']]], + ['surf_5ftemp_1953',['surf_temp',['../classABLMost.html#a73621a1b429f2e910a29adac72b7c581',1,'ABLMost']]], + ['surf_5ftemp_5fflux_1954',['surf_temp_flux',['../classABLMost.html#a98390481d302c2a2c7346bf2328305a8',1,'ABLMost::surf_temp_flux()'],['../structmost__data.html#af1d069399319831cf4ae17fba1dda19f',1,'most_data::surf_temp_flux()']]], + ['surface_5fflux_1955',['surface_flux',['../structsurface__flux.html#a99588cc80bc461f24f2217f7c7cb1294',1,'surface_flux::surface_flux()'],['../structsurface__flux.html',1,'surface_flux']]], + ['surface_5fflux_5fcharnock_1956',['surface_flux_charnock',['../structsurface__flux__charnock.html',1,'surface_flux_charnock'],['../structsurface__flux__charnock.html#a6fef08de02ce5a69d4f276dce6721d27',1,'surface_flux_charnock::surface_flux_charnock()']]], + ['surface_5fflux_5fmod_5fcharnock_1957',['surface_flux_mod_charnock',['../structsurface__flux__mod__charnock.html',1,'surface_flux_mod_charnock'],['../structsurface__flux__mod__charnock.html#ab0516a2bad4b4a38ecfa71f75fa3b00c',1,'surface_flux_mod_charnock::surface_flux_mod_charnock()']]], + ['surface_5fflux_5fwave_5fcoupled_1958',['surface_flux_wave_coupled',['../structsurface__flux__wave__coupled.html',1,'surface_flux_wave_coupled'],['../structsurface__flux__wave__coupled.html#a1f7495d05cf04a69be3d51e6535644d6',1,'surface_flux_wave_coupled::surface_flux_wave_coupled()']]], + ['surface_5ftemp_1959',['surface_temp',['../structsurface__temp.html',1,'surface_temp'],['../structsurface__temp.html#a6b5b55df12e42231fa3d8cf36ab0c734',1,'surface_temp::surface_temp()']]], + ['surface_5ftemp_5fcharnock_1960',['surface_temp_charnock',['../structsurface__temp__charnock.html',1,'surface_temp_charnock'],['../structsurface__temp__charnock.html#a21617e7d85b0127ca609a82c0f95556b',1,'surface_temp_charnock::surface_temp_charnock()']]], + ['surface_5ftemp_5fmod_5fcharnock_1961',['surface_temp_mod_charnock',['../structsurface__temp__mod__charnock.html',1,'surface_temp_mod_charnock'],['../structsurface__temp__mod__charnock.html#a5812f19588039a9d3186e63bfe529b9c',1,'surface_temp_mod_charnock::surface_temp_mod_charnock()']]], + ['surface_5ftemp_5fwave_5fcoupled_1962',['surface_temp_wave_coupled',['../structsurface__temp__wave__coupled.html',1,'surface_temp_wave_coupled'],['../structsurface__temp__wave__coupled.html#afb061b2c2b86edd4821efbcb70295412',1,'surface_temp_wave_coupled::surface_temp_wave_coupled()']]], + ['surface_5ftemperature_1963',['SURFACE_TEMPERATURE',['../classABLMost.html#a46fbd9260d2adfa7c18edad6452f9baba317cef85d14b4909f1d76becb00dc0f1',1,'ABLMost']]], + ['svp_5fice_1964',['svp_ice',['../classWaterVaporSat.html#a0ff4f9b6dff1a33f4ed6eb9d7af72e49',1,'WaterVaporSat']]], + ['svp_5ftrans_1965',['svp_trans',['../classWaterVaporSat.html#a65b6cc3dc802016e84bc19030f6ad65a',1,'WaterVaporSat']]], + ['svp_5fwater_1966',['svp_water',['../classWaterVaporSat.html#a5463980977e84f7268ed9afde2bad62e',1,'WaterVaporSat']]], + ['sw_5fband_5fmidpoints_1967',['sw_band_midpoints',['../classRadiation.html#a8ed843e3e2bb03d388b0c3ab869b1dba',1,'Radiation']]], + ['sw_5fhygro_5fasm_1968',['sw_hygro_asm',['../structPhysProp_1_1physprop__t.html#ae7278f6fb1910558af27c7ff79b18fa0',1,'PhysProp::physprop_t']]], + ['sw_5fhygro_5fext_1969',['sw_hygro_ext',['../structPhysProp_1_1physprop__t.html#aff3fc87f8134cab71058c4372ddb853f',1,'PhysProp::physprop_t']]], + ['sw_5fhygro_5fssa_1970',['sw_hygro_ssa',['../structPhysProp_1_1physprop__t.html#ae326430d60fa6170ccbebccb10b8a86a',1,'PhysProp::physprop_t']]], + ['sw_5fnonhygro_5fascat_1971',['sw_nonhygro_ascat',['../structPhysProp_1_1physprop__t.html#a4789a50f02b5f5cdee6a284cc782eed9',1,'PhysProp::physprop_t']]], + ['sw_5fnonhygro_5fasm_1972',['sw_nonhygro_asm',['../structPhysProp_1_1physprop__t.html#a744ddbbe6c903be22244e84cbc85c567',1,'PhysProp::physprop_t']]], + ['sw_5fnonhygro_5fext_1973',['sw_nonhygro_ext',['../structPhysProp_1_1physprop__t.html#a3b762bb10073922aba1fdc89e8f4d412',1,'PhysProp::physprop_t']]], + ['sw_5fnonhygro_5fscat_1974',['sw_nonhygro_scat',['../structPhysProp_1_1physprop__t.html#abbcc9ba3c0f329c98e7ba078f2ebf1dc',1,'PhysProp::physprop_t']]], + ['sw_5fnonhygro_5fssa_1975',['sw_nonhygro_ssa',['../structPhysProp_1_1physprop__t.html#aad14342b28b8939c5ae115605318ed02',1,'PhysProp::physprop_t']]], + ['symmetry_1976',['symmetry',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9a40e712f30d56083318ab20a2402921d2',1,'IndexDefines.H']]] ]; diff --git a/search/all_13.js b/search/all_13.js index b27dcf993a..52c2eb5c16 100644 --- a/search/all_13.js +++ b/search/all_13.js @@ -1,120 +1,120 @@ var searchData= [ - ['t_1973',['T',['../namespaceRealBdyVars.html#aa4743649b85ade11df23692d7c3947bda8ecd2dbb16824e5c68db7daf2254fc79',1,'RealBdyVars::T()'],['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a1e7df4966430ffdaa4bb7bbd0f8a6d02',1,'WRFBdyVars::T()'],['../namespaceMetGridBdyVars.html#a22bd27d0288d22c74bd7c0bb57b2b89faba8b3d297f43d3f8d507b19ff6e21757',1,'MetGridBdyVars::T()']]], - ['t_5f0_1974',['T_0',['../structProbParmDefaults.html#a16db7fa78b123f2a956bacbce26f32c6',1,'ProbParmDefaults']]], - ['t_5favg_5fcnt_1975',['t_avg_cnt',['../classERF.html#a6837423e9248e923fcaa1987b59d8160',1,'ERF']]], - ['t_5fnew_1976',['t_new',['../classERF.html#a65741b6379d273c19a25cf48bb947614',1,'ERF']]], - ['t_5fold_1977',['t_old',['../classERF.html#a7085d7d5fc94a0f84efc06957267d58e',1,'ERF']]], - ['t_5fstar_1978',['t_star',['../classABLMost.html#ac9d90016f196c3861d225132e8b6a921',1,'ABLMost']]], - ['t_5fstore_1979',['T_store',['../classMRISplitIntegrator.html#a10fa09211f3b0a6b7357ab79dbadbb80',1,'MRISplitIntegrator']]], - ['t_5fsurf_1980',['t_surf',['../classABLMost.html#a1f488836fca7c3da2bed67c63a94951b',1,'ABLMost']]], - ['tabs_1981',['tabs',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea7cde81843cd190a3122d7c3912a39b74',1,'MicVar_Kess::tabs()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8aaf3c3122dd3954fe2b19abfc5c27b3dc',1,'MicVar::tabs()']]], - ['tabs1d_1982',['tabs1d',['../classSAM.html#aee5da977a069c0b9cb98d150027f746c',1,'SAM']]], - ['target_5fbox_1983',['target_box',['../classWriteBndryPlanes.html#a4d7d2b3b5b1c823b905ae3042bb62379',1,'WriteBndryPlanes']]], - ['tau_1984',['tau',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239a0831ecd8c789131994c1f350dce2b02f',1,'DataStruct.H']]], - ['tau11_5flev_1985',['Tau11_lev',['../classERF.html#aeb9348353b2415d023d8f52c293cad7e',1,'ERF']]], - ['tau12_5flev_1986',['Tau12_lev',['../classERF.html#ad8c2eca71737b102cc5cf75f97c6bd63',1,'ERF']]], - ['tau13_5flev_1987',['Tau13_lev',['../classERF.html#a5392e6104804d799b3fd943dfe390766',1,'ERF']]], - ['tau21_5flev_1988',['Tau21_lev',['../classERF.html#a547864dc0347f4620feb99ed564acb4d',1,'ERF']]], - ['tau22_5flev_1989',['Tau22_lev',['../classERF.html#afb4294f848d86e4aefb74848bb71047e',1,'ERF']]], - ['tau23_5flev_1990',['Tau23_lev',['../classERF.html#a03a4ad7368c1c98b492cd9d9fec9cbc5',1,'ERF']]], - ['tau31_5flev_1991',['Tau31_lev',['../classERF.html#a203e7334296218672e36bab93174e146',1,'ERF']]], - ['tau32_5flev_1992',['Tau32_lev',['../classERF.html#aa650bf1f6885b179fd8d4c24b48668cb',1,'ERF']]], - ['tau33_5flev_1993',['Tau33_lev',['../classERF.html#a60a185c47f07bf4fb537a15d5a226d8a',1,'ERF']]], - ['tbgmax_1994',['tbgmax',['../ERF__Constants_8H.html#a2b4ea8a29735038e49703c7f8c1f20c8',1,'ERF_Constants.H']]], - ['tbgmin_1995',['tbgmin',['../ERF__Constants_8H.html#abf1e890912f1117211516f13b27ed2e8',1,'ERF_Constants.H']]], - ['tboil_1996',['tboil',['../ERF__Constants_8H.html#a123bd9756d4f11bae80bb918f88cbd3f',1,'ERF_Constants.H']]], - ['temp_1997',['temp',['../classAerRadProps.html#a0a03391413de1fcd9ea2550fea907b33',1,'AerRadProps']]], - ['term_5fvel_5fqp_1998',['term_vel_qp',['../Microphysics__Utils_8H.html#a7cf098884df5812417aa6ca8a52ec713',1,'Microphysics_Utils.H']]], - ['terrain_5ftype_1999',['terrain_type',['../structSolverChoice.html#ab734eb0a5147b93dc6590038b6decc60',1,'SolverChoice']]], - ['terrainif_2000',['TerrainIF',['../classTerrainIF.html#ac037e7de054cca909a921eccc620ef4a',1,'TerrainIF::TerrainIF()'],['../classTerrainIF.html',1,'TerrainIF']]], - ['terrainif_2eh_2001',['TerrainIF.H',['../TerrainIF_8H.html',1,'']]], - ['terrainmetrics_2ecpp_2002',['TerrainMetrics.cpp',['../TerrainMetrics_8cpp.html',1,'']]], - ['terrainmetrics_2eh_2003',['TerrainMetrics.H',['../TerrainMetrics_8H.html',1,'']]], - ['terraintype_2004',['TerrainType',['../DataStruct_8H.html#af82ff6f1edafee12190434b73fe91127',1,'DataStruct.H']]], - ['test_5fmapfactor_2005',['test_mapfactor',['../structSolverChoice.html#a9c7942f6ef7cf05115f35702097cf107',1,'SolverChoice']]], - ['tgrmax_2006',['tgrmax',['../ERF__Constants_8H.html#ab24d300166813654b7d8adb31bc71938',1,'ERF_Constants.H']]], - ['tgrmin_2007',['tgrmin',['../ERF__Constants_8H.html#afb7d1700c60728d56ef525934fe6a098',1,'ERF_Constants.H']]], - ['therco_2008',['therco',['../ERF__Constants_8H.html#a583248545708b1481d513f2c9621f0ba',1,'ERF_Constants.H']]], - ['theta_2009',['theta',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a96295e93c39d249775ba2498eb3d4fc1',1,'MicVar::theta()'],['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea8e4ed7630edede7500eef0da31218c36',1,'MicVar_Kess::theta()'],['../namespaceLsmVar__SLM.html#a9927bc85abdc2fa6040b222a6c1ddd91a8cbbe7ff58f91759c10f65b097bcfc0f',1,'LsmVar_SLM::theta()'],['../namespaceLsmVar__MM5.html#a0c17a1ae9d9db120b8947e6da767cd3baf198df5800148ff3680d005b5fb09c68',1,'LsmVar_MM5::theta()']]], - ['theta_5fh_2010',['Theta_h',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ead0cfc6c50b43867895cbc2c02eb2b99a',1,'EddyDiff']]], - ['theta_5finp_5fsound_2011',['theta_inp_sound',['../structInputSoundingData.html#acf38db2cecabcd07fe794b41974ba866',1,'InputSoundingData']]], - ['theta_5finp_5fsound_5fd_2012',['theta_inp_sound_d',['../structInputSoundingData.html#ae990e8cfad78f0fa5a603db3154d0124',1,'InputSoundingData']]], - ['theta_5fprim_2013',['Theta_prim',['../classERF.html#a71629ae2fda396472198691b75d83b2e',1,'ERF']]], - ['theta_5fref_2014',['theta_ref',['../structTurbChoice.html#aeb3c184b540858407426a606327fba3a',1,'TurbChoice']]], - ['theta_5fref_5finp_5fsound_2015',['theta_ref_inp_sound',['../structInputSoundingData.html#a15782809644a4daa0e8de9c3cc4c346a',1,'InputSoundingData']]], - ['theta_5ftype_2016',['theta_type',['../classABLMost.html#a7d1394fa01c8c29b20dfb790c0f3ec6b',1,'ABLMost']]], - ['theta_5fv_2017',['Theta_v',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea0af64d676c5c6f4312eb892f9a7a46cd',1,'EddyDiff']]], - ['thetabar_2018',['thetabar',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239ae41e9f65f26ee3b04db07f2db7f28bdb',1,'DataStruct.H']]], - ['thetacalctype_2019',['ThetaCalcType',['../classABLMost.html#a46fbd9260d2adfa7c18edad6452f9bab',1,'ABLMost']]], - ['thin_5fxforce_2020',['thin_xforce',['../classERF.html#a5b9b8d719a87a6940f611c6a30e8ccf5',1,'ERF']]], - ['thin_5fyforce_2021',['thin_yforce',['../classERF.html#a18c1142552120bbd22987f34995ee939',1,'ERF']]], - ['thin_5fzforce_2022',['thin_zforce',['../classERF.html#a56a23d298bc66218bf257d0e793e341f',1,'ERF']]], - ['third_2023',['third',['../classModalAeroWateruptake.html#a77bdba258f0d10234a98a54a39a5fb7f',1,'ModalAeroWateruptake']]], - ['thrust_5fcoeff_2024',['thrust_coeff',['../classEWP.html#a9cdc57dc5a1a63c4a4e62ba85dffecc4',1,'EWP::thrust_coeff()'],['../classWindFarm.html#a8d5e6333f2f9f8e36dfd4766ad171b84',1,'WindFarm::thrust_coeff()'],['../classSimpleAD.html#a0d915eaf360210453a081a2b721d0fa0',1,'SimpleAD::thrust_coeff()'],['../classFitch.html#a7cafd25264dba6194d42285153683f34',1,'Fitch::thrust_coeff()']]], - ['thrust_5fcoeff_5fstanding_2025',['thrust_coeff_standing',['../classWindFarm.html#ab8d68a72cf4346074daf47f825eff105',1,'WindFarm::thrust_coeff_standing()'],['../classSimpleAD.html#a1665d726556fc42558e77fe94e732d43',1,'SimpleAD::thrust_coeff_standing()'],['../classFitch.html#adc5df318361103709d0fa5421358e29d',1,'Fitch::thrust_coeff_standing()'],['../classEWP.html#a22f50393881ced019cae2a74ee04cdea',1,'EWP::thrust_coeff_standing()']]], - ['ti_5ffast_5fheaders_2eh_2026',['TI_fast_headers.H',['../TI__fast__headers_8H.html',1,'']]], - ['ti_5ffast_5frhs_5ffun_2eh_2027',['TI_fast_rhs_fun.H',['../TI__fast__rhs__fun_8H.html',1,'']]], - ['ti_5fno_5fsubstep_5ffun_2eh_2028',['TI_no_substep_fun.H',['../TI__no__substep__fun_8H.html',1,'']]], - ['ti_5fslow_5fheaders_2eh_2029',['TI_slow_headers.H',['../TI__slow__headers_8H.html',1,'']]], - ['ti_5fslow_5frhs_5ffun_2eh_2030',['TI_slow_rhs_fun.H',['../TI__slow__rhs__fun_8H.html',1,'']]], - ['ti_5futils_2eh_2031',['TI_utils.H',['../TI__utils_8H.html',1,'']]], - ['tilenoz_2032',['TileNoZ',['../TileNoZ_8H.html#a8da113f1d5603f7297fe1d03e5013f00',1,'TileNoZ.H']]], - ['tilenoz_2eh_2033',['TileNoZ.H',['../TileNoZ_8H.html',1,'']]], - ['time_2034',['Time',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06aa76d4ef5f3f6a672bbfab2865563e530',1,'NCWpsFile.H']]], - ['time_5favg_5fvel_2035',['time_avg_vel',['../structSolverChoice.html#af3119a4089367206db9fc3a17664e874',1,'SolverChoice']]], - ['time_5favg_5fvel_2ecpp_2036',['Time_Avg_Vel.cpp',['../Time__Avg__Vel_8cpp.html',1,'']]], - ['time_5favg_5fvel_5fatcc_2037',['Time_Avg_Vel_atCC',['../Utils_8H.html#ac3d734b65fd91857925d381c476e7965',1,'Time_Avg_Vel_atCC(const amrex::Real &dt, amrex::Real &t_avg_cnt, amrex::MultiFab *vel_t_avg, amrex::MultiFab &xvel, amrex::MultiFab &yvel, amrex::MultiFab &zvel): Utils.H'],['../Time__Avg__Vel_8cpp.html#a2241063c19e843eaaa749c3b51b6b0fe',1,'Time_Avg_Vel_atCC(const Real &dt, Real &t_avg_cnt, MultiFab *vel_t_avg, MultiFab &xvel, MultiFab &yvel, MultiFab &zvel): Time_Avg_Vel.cpp']]], - ['time_5fbdywidth_5fbt_5fsn_2038',['Time_BdyWidth_BT_SN',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06a2f43039d16fd9942908dc0b55b462b18',1,'NCWpsFile.H']]], - ['time_5fbdywidth_5fbt_5fwe_2039',['Time_BdyWidth_BT_WE',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06aaa684fa862f886663c11fcad18416550',1,'NCWpsFile.H']]], - ['time_5fbdywidth_5fsn_2040',['Time_BdyWidth_SN',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06a7d998330c55b56c1e46c449b2e39e89f',1,'NCWpsFile.H']]], - ['time_5fbdywidth_5fwe_2041',['Time_BdyWidth_WE',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06a1bfaf1bd09d922faf1b4bb0ffb3a6ec3',1,'NCWpsFile.H']]], - ['time_5fbt_2042',['Time_BT',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06a539ca443eab3c322b2b37046e896dc62',1,'NCWpsFile.H']]], - ['time_5fbt_5fsn_5fwe_2043',['Time_BT_SN_WE',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06aa3968158227ea04595d4003503cca22b',1,'NCWpsFile.H']]], - ['time_5finterp_5fsst_2044',['time_interp_sst',['../classABLMost.html#aaeef06eb7d0ab7e3d100e583337121cc',1,'ABLMost']]], - ['time_5fsn_5fwe_2045',['Time_SN_WE',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06a5f93bace93896872075eae75770cadc4',1,'NCWpsFile.H']]], - ['timeinterpolateddata_2046',['TimeInterpolatedData',['../structTimeInterpolatedData.html#a9fa3bce37585ef02c43d0ba1546f93eb',1,'TimeInterpolatedData::TimeInterpolatedData()'],['../structTimeInterpolatedData.html',1,'TimeInterpolatedData'],['../structTimeInterpolatedData.html#a1184805b0ed3f51a5f64344e40913165',1,'TimeInterpolatedData::TimeInterpolatedData()=default'],['../structTimeInterpolatedData.html#ae8db82a30cc400c01b3cb5a2ee83a778',1,'TimeInterpolatedData::TimeInterpolatedData(amrex::Real time)'],['../structTimeInterpolatedData.html#afc37639ef60efba7c592f9d1b6380df6',1,'TimeInterpolatedData::TimeInterpolatedData(TimeInterpolatedData &&) noexcept=default']]], - ['timeinterpolateddata_2eh_2047',['TimeInterpolatedData.H',['../TimeInterpolatedData_8H.html',1,'']]], - ['timestep_2048',['timeStep',['../classERF.html#aff397ccf7eb99c51d7c705a35e85ec5f',1,'ERF']]], - ['timestep_2049',['timestep',['../classMRISplitIntegrator.html#a3f21bedf222ce95136d4889012401612',1,'MRISplitIntegrator']]], - ['tint_2050',['tint',['../classRadiation.html#a76bb14b6a6eafd04ffad69f50547be41',1,'Radiation']]], - ['tinterp_2051',['tinterp',['../classReadBndryPlanes.html#a6f54411420eb4d57e4dc201b256f3d5e',1,'ReadBndryPlanes']]], - ['tmax_2052',['tmax',['../classWaterVaporSat.html#a8e168a8ca074d530d7afe596739270b4',1,'WaterVaporSat']]], - ['tmelt_2053',['tmelt',['../ERF__Constants_8H.html#a764526b482e006cd52004d3f53467b57',1,'ERF_Constants.H']]], - ['tmid_2054',['tmid',['../classRadiation.html#ac1ed1e73ee4f8832a699967c8354bd6e',1,'Radiation']]], - ['tmin_2055',['tmin',['../classWaterVaporSat.html#ac7a0c53f3985416b26f43135e25accca',1,'WaterVaporSat']]], - ['tol_2056',['tol',['../structsurface__flux.html#abd16b92a75ae384f9fe490b59f046b6a',1,'surface_flux']]], - ['tol_2057',['TOL',['../namespaceHSEutils.html#aace33d14958f235a111e6cead400a61e',1,'HSEutils']]], - ['tol_2058',['tol',['../structsurface__flux__wave__coupled.html#a928bb0b9a4141fc6452c6f83fbec58aa',1,'surface_flux_wave_coupled::tol()'],['../structWENO__Z5.html#af5daab47aa96e124f3bf0508489e3017',1,'WENO_Z5::tol()'],['../structWENO__MZQ3.html#af1d30022fe1ebe59529f45843dff3ae5',1,'WENO_MZQ3::tol()'],['../structWENO__Z3.html#aec489e3be4dbc31eb46b729b8510fdfc',1,'WENO_Z3::tol()'],['../structWENO5.html#a99f8a8620164e0e1460c7bce55ec3b02',1,'WENO5::tol()'],['../structWENO3.html#aa09b52432a69d89bef16a06015252661',1,'WENO3::tol()'],['../structsurface__temp__wave__coupled.html#a3715864e9c6bfdc6e4556925d0fc48fa',1,'surface_temp_wave_coupled::tol()'],['../structsurface__temp__mod__charnock.html#a77dc7e5a012fbe6066fa21f57145c938',1,'surface_temp_mod_charnock::tol()'],['../structsurface__flux__mod__charnock.html#ac01a07a59f56ff6683dd9942b4d500ba',1,'surface_flux_mod_charnock::tol()'],['../structsurface__flux__charnock.html#a08529386a7d5012684c818249a7d76ba',1,'surface_flux_charnock::tol()'],['../structadiabatic__wave__coupled.html#ad18802ec131991fbaaebfb80a1a12d07',1,'adiabatic_wave_coupled::tol()'],['../structadiabatic__mod__charnock.html#a8a007e09d416f6879b7ba68c7e4ac29e',1,'adiabatic_mod_charnock::tol()'],['../structadiabatic__charnock.html#abb822b2278b8cd500c6fb0fb0a028709',1,'adiabatic_charnock::tol()'],['../structsurface__temp__charnock.html#ab1cdc86ca25ac91cb375348372f2ddf1',1,'surface_temp_charnock::tol()'],['../structsurface__temp.html#a7c4031cfb8cbb020115ee7fae12ddb05',1,'surface_temp::tol()']]], - ['top_5flev_2059',['top_lev',['../classAerRadProps.html#a83216edbd2d57b575f1869df38a1b668',1,'AerRadProps::top_lev()'],['../classMam4__aer.html#ae15e0c356e4fed002069ecd5d8bb33af',1,'Mam4_aer::top_lev()']]], - ['tpi_5fboxdim_2060',['tpi_boxDim',['../structTurbulentPerturbation.html#ab90f89bf4bf3d497f88c27d1b92f3d39',1,'TurbulentPerturbation']]], - ['tpi_5fdirection_2061',['tpi_direction',['../structTurbulentPerturbation.html#af2a72d18ce8c0f5bc011d3682ad93e0f',1,'TurbulentPerturbation']]], - ['tpi_5fhpb_2062',['tpi_Hpb',['../structTurbulentPerturbation.html#aef47959ab81660b54f583a7304816ef4',1,'TurbulentPerturbation']]], - ['tpi_5flayers_2063',['tpi_layers',['../structTurbulentPerturbation.html#a17f060634e44ba5701cc1febba23c915',1,'TurbulentPerturbation']]], - ['tpi_5flpb_2064',['tpi_Lpb',['../structTurbulentPerturbation.html#a22bb01b7314fa13bdfc1966456f5deed',1,'TurbulentPerturbation']]], - ['tpi_5flref_2065',['tpi_lref',['../structTurbulentPerturbation.html#ab3db22cfce521750d46e44ed93c49bb8',1,'TurbulentPerturbation']]], - ['tpi_5fnet_5fbuoyant_2066',['tpi_net_buoyant',['../structTurbulentPerturbation.html#adaf88736c8d43a23f8bb3eb8065f0b84',1,'TurbulentPerturbation']]], - ['tpi_5fnondim_2067',['tpi_nonDim',['../structTurbulentPerturbation.html#abe0155dd9b530c537b1f639ab4dc8691',1,'TurbulentPerturbation']]], - ['tpi_5foffset_2068',['tpi_offset',['../structTurbulentPerturbation.html#a7bcb39c84b03deefaa166c89f22c229c',1,'TurbulentPerturbation']]], - ['tpi_5fpert_5fadjust_2069',['tpi_pert_adjust',['../structTurbulentPerturbation.html#aa4e6ee511ae71277885d87f5aa2ddad3',1,'TurbulentPerturbation']]], - ['tpi_5fti_2070',['tpi_Ti',['../structTurbulentPerturbation.html#aa2c2e894fc858d8cdaa9cde0092e896e',1,'TurbulentPerturbation']]], - ['tpi_5ftinf_2071',['tpi_Tinf',['../structTurbulentPerturbation.html#a20940c88c5c2f6ef1b90d1984867777a',1,'TurbulentPerturbation']]], - ['tpi_5fwpb_2072',['tpi_Wpb',['../structTurbulentPerturbation.html#a21d9b84c0b8eac4d49ae5ca764247442',1,'TurbulentPerturbation']]], - ['tprmax_2073',['tprmax',['../ERF__Constants_8H.html#a06a70c05086650ead098e2994ad1bd43',1,'ERF_Constants.H']]], - ['tprmin_2074',['tprmin',['../ERF__Constants_8H.html#a9180d622aa39d89312941eba03fa1347',1,'ERF_Constants.H']]], - ['tq_5fenthalpy_2075',['tq_enthalpy',['../classWaterVaporSat.html#afae0dfb4f85c8ac528ff330ccfa182b2',1,'WaterVaporSat']]], - ['trilinear_5finterp_5ft_2076',['trilinear_interp_T',['../classMOSTAverage.html#aefb42b9f2a5c3347e7ab87abdfcab3d7',1,'MOSTAverage']]], - ['ttrice_2077',['ttrice',['../ERF__Constants_8H.html#a9b3da60e1e65429fe546d18c9c926105',1,'ERF_Constants.H']]], - ['turbchoice_2078',['TurbChoice',['../structTurbChoice.html',1,'']]], - ['turbchoice_2079',['turbChoice',['../structSolverChoice.html#aa53b017d79e0067923180a0aa59367b4',1,'SolverChoice']]], - ['turbpert_2080',['turbPert',['../classERF.html#ac1b9cce4a3c1736c4af78f6b0e2143ce',1,'ERF']]], - ['turbpert_5famplitude_2081',['turbPert_amplitude',['../classERF.html#afb76c0633e2ba944c543e7a03a5e9424',1,'ERF']]], - ['turbpert_5fupdate_2082',['turbPert_update',['../classERF.html#aa89efe0abf37918ce3f212fb0e26f1bc',1,'ERF']]], - ['turbpertstruct_2eh_2083',['TurbPertStruct.H',['../TurbPertStruct_8H.html',1,'']]], - ['turbstruct_2eh_2084',['TurbStruct.H',['../TurbStruct_8H.html',1,'']]], - ['turbulentperturbation_2085',['TurbulentPerturbation',['../structTurbulentPerturbation.html',1,'']]], - ['twoway_2086',['TwoWay',['../DataStruct_8H.html#ad285be248c0803917aaf5cf8ce62139ba6c267346f8ebb889610a5a90838be815',1,'DataStruct.H']]], - ['type_2087',['Type',['../classSatMethods.html#a62096d95f324cd2a3504554437067ef7',1,'SatMethods']]], - ['type_2088',['type',['../structMamConstituents_1_1mode__component__t.html#a96f5cdd50364b1e2760b1cb4e88cd153',1,'MamConstituents::mode_component_t']]], - ['types_2089',['types',['../structMamConstituents_1_1modes__t.html#aea58b375f13ddc20860b2bd2a183899b',1,'MamConstituents::modes_t']]] + ['t_1977',['T',['../namespaceRealBdyVars.html#aa4743649b85ade11df23692d7c3947bda8ecd2dbb16824e5c68db7daf2254fc79',1,'RealBdyVars::T()'],['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a1e7df4966430ffdaa4bb7bbd0f8a6d02',1,'WRFBdyVars::T()'],['../namespaceMetGridBdyVars.html#a22bd27d0288d22c74bd7c0bb57b2b89faba8b3d297f43d3f8d507b19ff6e21757',1,'MetGridBdyVars::T()']]], + ['t_5f0_1978',['T_0',['../structProbParmDefaults.html#a16db7fa78b123f2a956bacbce26f32c6',1,'ProbParmDefaults']]], + ['t_5favg_5fcnt_1979',['t_avg_cnt',['../classERF.html#a6837423e9248e923fcaa1987b59d8160',1,'ERF']]], + ['t_5fnew_1980',['t_new',['../classERF.html#a65741b6379d273c19a25cf48bb947614',1,'ERF']]], + ['t_5fold_1981',['t_old',['../classERF.html#a7085d7d5fc94a0f84efc06957267d58e',1,'ERF']]], + ['t_5fstar_1982',['t_star',['../classABLMost.html#ac9d90016f196c3861d225132e8b6a921',1,'ABLMost']]], + ['t_5fstore_1983',['T_store',['../classMRISplitIntegrator.html#a10fa09211f3b0a6b7357ab79dbadbb80',1,'MRISplitIntegrator']]], + ['t_5fsurf_1984',['t_surf',['../classABLMost.html#a1f488836fca7c3da2bed67c63a94951b',1,'ABLMost']]], + ['tabs_1985',['tabs',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea7cde81843cd190a3122d7c3912a39b74',1,'MicVar_Kess::tabs()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8aaf3c3122dd3954fe2b19abfc5c27b3dc',1,'MicVar::tabs()']]], + ['tabs1d_1986',['tabs1d',['../classSAM.html#aee5da977a069c0b9cb98d150027f746c',1,'SAM']]], + ['target_5fbox_1987',['target_box',['../classWriteBndryPlanes.html#a4d7d2b3b5b1c823b905ae3042bb62379',1,'WriteBndryPlanes']]], + ['tau_1988',['tau',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239a0831ecd8c789131994c1f350dce2b02f',1,'DataStruct.H']]], + ['tau11_5flev_1989',['Tau11_lev',['../classERF.html#aeb9348353b2415d023d8f52c293cad7e',1,'ERF']]], + ['tau12_5flev_1990',['Tau12_lev',['../classERF.html#ad8c2eca71737b102cc5cf75f97c6bd63',1,'ERF']]], + ['tau13_5flev_1991',['Tau13_lev',['../classERF.html#a5392e6104804d799b3fd943dfe390766',1,'ERF']]], + ['tau21_5flev_1992',['Tau21_lev',['../classERF.html#a547864dc0347f4620feb99ed564acb4d',1,'ERF']]], + ['tau22_5flev_1993',['Tau22_lev',['../classERF.html#afb4294f848d86e4aefb74848bb71047e',1,'ERF']]], + ['tau23_5flev_1994',['Tau23_lev',['../classERF.html#a03a4ad7368c1c98b492cd9d9fec9cbc5',1,'ERF']]], + ['tau31_5flev_1995',['Tau31_lev',['../classERF.html#a203e7334296218672e36bab93174e146',1,'ERF']]], + ['tau32_5flev_1996',['Tau32_lev',['../classERF.html#aa650bf1f6885b179fd8d4c24b48668cb',1,'ERF']]], + ['tau33_5flev_1997',['Tau33_lev',['../classERF.html#a60a185c47f07bf4fb537a15d5a226d8a',1,'ERF']]], + ['tbgmax_1998',['tbgmax',['../ERF__Constants_8H.html#a2b4ea8a29735038e49703c7f8c1f20c8',1,'ERF_Constants.H']]], + ['tbgmin_1999',['tbgmin',['../ERF__Constants_8H.html#abf1e890912f1117211516f13b27ed2e8',1,'ERF_Constants.H']]], + ['tboil_2000',['tboil',['../ERF__Constants_8H.html#a123bd9756d4f11bae80bb918f88cbd3f',1,'ERF_Constants.H']]], + ['temp_2001',['temp',['../classAerRadProps.html#a0a03391413de1fcd9ea2550fea907b33',1,'AerRadProps']]], + ['term_5fvel_5fqp_2002',['term_vel_qp',['../Microphysics__Utils_8H.html#a7cf098884df5812417aa6ca8a52ec713',1,'Microphysics_Utils.H']]], + ['terrain_5ftype_2003',['terrain_type',['../structSolverChoice.html#ab734eb0a5147b93dc6590038b6decc60',1,'SolverChoice']]], + ['terrainif_2004',['TerrainIF',['../classTerrainIF.html#ac037e7de054cca909a921eccc620ef4a',1,'TerrainIF::TerrainIF()'],['../classTerrainIF.html',1,'TerrainIF']]], + ['terrainif_2eh_2005',['TerrainIF.H',['../TerrainIF_8H.html',1,'']]], + ['terrainmetrics_2ecpp_2006',['TerrainMetrics.cpp',['../TerrainMetrics_8cpp.html',1,'']]], + ['terrainmetrics_2eh_2007',['TerrainMetrics.H',['../TerrainMetrics_8H.html',1,'']]], + ['terraintype_2008',['TerrainType',['../DataStruct_8H.html#af82ff6f1edafee12190434b73fe91127',1,'DataStruct.H']]], + ['test_5fmapfactor_2009',['test_mapfactor',['../structSolverChoice.html#a9c7942f6ef7cf05115f35702097cf107',1,'SolverChoice']]], + ['tgrmax_2010',['tgrmax',['../ERF__Constants_8H.html#ab24d300166813654b7d8adb31bc71938',1,'ERF_Constants.H']]], + ['tgrmin_2011',['tgrmin',['../ERF__Constants_8H.html#afb7d1700c60728d56ef525934fe6a098',1,'ERF_Constants.H']]], + ['therco_2012',['therco',['../ERF__Constants_8H.html#a583248545708b1481d513f2c9621f0ba',1,'ERF_Constants.H']]], + ['theta_2013',['theta',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a96295e93c39d249775ba2498eb3d4fc1',1,'MicVar::theta()'],['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea8e4ed7630edede7500eef0da31218c36',1,'MicVar_Kess::theta()'],['../namespaceLsmVar__SLM.html#a9927bc85abdc2fa6040b222a6c1ddd91a8cbbe7ff58f91759c10f65b097bcfc0f',1,'LsmVar_SLM::theta()'],['../namespaceLsmVar__MM5.html#a0c17a1ae9d9db120b8947e6da767cd3baf198df5800148ff3680d005b5fb09c68',1,'LsmVar_MM5::theta()']]], + ['theta_5fh_2014',['Theta_h',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ead0cfc6c50b43867895cbc2c02eb2b99a',1,'EddyDiff']]], + ['theta_5finp_5fsound_2015',['theta_inp_sound',['../structInputSoundingData.html#acf38db2cecabcd07fe794b41974ba866',1,'InputSoundingData']]], + ['theta_5finp_5fsound_5fd_2016',['theta_inp_sound_d',['../structInputSoundingData.html#ae990e8cfad78f0fa5a603db3154d0124',1,'InputSoundingData']]], + ['theta_5fprim_2017',['Theta_prim',['../classERF.html#a71629ae2fda396472198691b75d83b2e',1,'ERF']]], + ['theta_5fref_2018',['theta_ref',['../structTurbChoice.html#aeb3c184b540858407426a606327fba3a',1,'TurbChoice']]], + ['theta_5fref_5finp_5fsound_2019',['theta_ref_inp_sound',['../structInputSoundingData.html#a15782809644a4daa0e8de9c3cc4c346a',1,'InputSoundingData']]], + ['theta_5ftype_2020',['theta_type',['../classABLMost.html#a7d1394fa01c8c29b20dfb790c0f3ec6b',1,'ABLMost']]], + ['theta_5fv_2021',['Theta_v',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea0af64d676c5c6f4312eb892f9a7a46cd',1,'EddyDiff']]], + ['thetabar_2022',['thetabar',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239ae41e9f65f26ee3b04db07f2db7f28bdb',1,'DataStruct.H']]], + ['thetacalctype_2023',['ThetaCalcType',['../classABLMost.html#a46fbd9260d2adfa7c18edad6452f9bab',1,'ABLMost']]], + ['thin_5fxforce_2024',['thin_xforce',['../classERF.html#a5b9b8d719a87a6940f611c6a30e8ccf5',1,'ERF']]], + ['thin_5fyforce_2025',['thin_yforce',['../classERF.html#a18c1142552120bbd22987f34995ee939',1,'ERF']]], + ['thin_5fzforce_2026',['thin_zforce',['../classERF.html#a56a23d298bc66218bf257d0e793e341f',1,'ERF']]], + ['third_2027',['third',['../classModalAeroWateruptake.html#a77bdba258f0d10234a98a54a39a5fb7f',1,'ModalAeroWateruptake']]], + ['thrust_5fcoeff_2028',['thrust_coeff',['../classEWP.html#a9cdc57dc5a1a63c4a4e62ba85dffecc4',1,'EWP::thrust_coeff()'],['../classWindFarm.html#a8d5e6333f2f9f8e36dfd4766ad171b84',1,'WindFarm::thrust_coeff()'],['../classSimpleAD.html#a0d915eaf360210453a081a2b721d0fa0',1,'SimpleAD::thrust_coeff()'],['../classFitch.html#a7cafd25264dba6194d42285153683f34',1,'Fitch::thrust_coeff()']]], + ['thrust_5fcoeff_5fstanding_2029',['thrust_coeff_standing',['../classWindFarm.html#ab8d68a72cf4346074daf47f825eff105',1,'WindFarm::thrust_coeff_standing()'],['../classSimpleAD.html#a1665d726556fc42558e77fe94e732d43',1,'SimpleAD::thrust_coeff_standing()'],['../classFitch.html#adc5df318361103709d0fa5421358e29d',1,'Fitch::thrust_coeff_standing()'],['../classEWP.html#a22f50393881ced019cae2a74ee04cdea',1,'EWP::thrust_coeff_standing()']]], + ['ti_5ffast_5fheaders_2eh_2030',['TI_fast_headers.H',['../TI__fast__headers_8H.html',1,'']]], + ['ti_5ffast_5frhs_5ffun_2eh_2031',['TI_fast_rhs_fun.H',['../TI__fast__rhs__fun_8H.html',1,'']]], + ['ti_5fno_5fsubstep_5ffun_2eh_2032',['TI_no_substep_fun.H',['../TI__no__substep__fun_8H.html',1,'']]], + ['ti_5fslow_5fheaders_2eh_2033',['TI_slow_headers.H',['../TI__slow__headers_8H.html',1,'']]], + ['ti_5fslow_5frhs_5ffun_2eh_2034',['TI_slow_rhs_fun.H',['../TI__slow__rhs__fun_8H.html',1,'']]], + ['ti_5futils_2eh_2035',['TI_utils.H',['../TI__utils_8H.html',1,'']]], + ['tilenoz_2036',['TileNoZ',['../TileNoZ_8H.html#a8da113f1d5603f7297fe1d03e5013f00',1,'TileNoZ.H']]], + ['tilenoz_2eh_2037',['TileNoZ.H',['../TileNoZ_8H.html',1,'']]], + ['time_2038',['Time',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06aa76d4ef5f3f6a672bbfab2865563e530',1,'NCWpsFile.H']]], + ['time_5favg_5fvel_2039',['time_avg_vel',['../structSolverChoice.html#af3119a4089367206db9fc3a17664e874',1,'SolverChoice']]], + ['time_5favg_5fvel_2ecpp_2040',['Time_Avg_Vel.cpp',['../Time__Avg__Vel_8cpp.html',1,'']]], + ['time_5favg_5fvel_5fatcc_2041',['Time_Avg_Vel_atCC',['../Utils_8H.html#ac3d734b65fd91857925d381c476e7965',1,'Time_Avg_Vel_atCC(const amrex::Real &dt, amrex::Real &t_avg_cnt, amrex::MultiFab *vel_t_avg, amrex::MultiFab &xvel, amrex::MultiFab &yvel, amrex::MultiFab &zvel): Utils.H'],['../Time__Avg__Vel_8cpp.html#a2241063c19e843eaaa749c3b51b6b0fe',1,'Time_Avg_Vel_atCC(const Real &dt, Real &t_avg_cnt, MultiFab *vel_t_avg, MultiFab &xvel, MultiFab &yvel, MultiFab &zvel): Time_Avg_Vel.cpp']]], + ['time_5fbdywidth_5fbt_5fsn_2042',['Time_BdyWidth_BT_SN',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06a2f43039d16fd9942908dc0b55b462b18',1,'NCWpsFile.H']]], + ['time_5fbdywidth_5fbt_5fwe_2043',['Time_BdyWidth_BT_WE',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06aaa684fa862f886663c11fcad18416550',1,'NCWpsFile.H']]], + ['time_5fbdywidth_5fsn_2044',['Time_BdyWidth_SN',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06a7d998330c55b56c1e46c449b2e39e89f',1,'NCWpsFile.H']]], + ['time_5fbdywidth_5fwe_2045',['Time_BdyWidth_WE',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06a1bfaf1bd09d922faf1b4bb0ffb3a6ec3',1,'NCWpsFile.H']]], + ['time_5fbt_2046',['Time_BT',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06a539ca443eab3c322b2b37046e896dc62',1,'NCWpsFile.H']]], + ['time_5fbt_5fsn_5fwe_2047',['Time_BT_SN_WE',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06aa3968158227ea04595d4003503cca22b',1,'NCWpsFile.H']]], + ['time_5finterp_5fsst_2048',['time_interp_sst',['../classABLMost.html#aaeef06eb7d0ab7e3d100e583337121cc',1,'ABLMost']]], + ['time_5fsn_5fwe_2049',['Time_SN_WE',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06a5f93bace93896872075eae75770cadc4',1,'NCWpsFile.H']]], + ['timeinterpolateddata_2050',['TimeInterpolatedData',['../structTimeInterpolatedData.html#a9fa3bce37585ef02c43d0ba1546f93eb',1,'TimeInterpolatedData::TimeInterpolatedData()'],['../structTimeInterpolatedData.html',1,'TimeInterpolatedData'],['../structTimeInterpolatedData.html#a1184805b0ed3f51a5f64344e40913165',1,'TimeInterpolatedData::TimeInterpolatedData()=default'],['../structTimeInterpolatedData.html#ae8db82a30cc400c01b3cb5a2ee83a778',1,'TimeInterpolatedData::TimeInterpolatedData(amrex::Real time)'],['../structTimeInterpolatedData.html#afc37639ef60efba7c592f9d1b6380df6',1,'TimeInterpolatedData::TimeInterpolatedData(TimeInterpolatedData &&) noexcept=default']]], + ['timeinterpolateddata_2eh_2051',['TimeInterpolatedData.H',['../TimeInterpolatedData_8H.html',1,'']]], + ['timestep_2052',['timeStep',['../classERF.html#aff397ccf7eb99c51d7c705a35e85ec5f',1,'ERF']]], + ['timestep_2053',['timestep',['../classMRISplitIntegrator.html#a3f21bedf222ce95136d4889012401612',1,'MRISplitIntegrator']]], + ['tint_2054',['tint',['../classRadiation.html#a76bb14b6a6eafd04ffad69f50547be41',1,'Radiation']]], + ['tinterp_2055',['tinterp',['../classReadBndryPlanes.html#a6f54411420eb4d57e4dc201b256f3d5e',1,'ReadBndryPlanes']]], + ['tmax_2056',['tmax',['../classWaterVaporSat.html#a8e168a8ca074d530d7afe596739270b4',1,'WaterVaporSat']]], + ['tmelt_2057',['tmelt',['../ERF__Constants_8H.html#a764526b482e006cd52004d3f53467b57',1,'ERF_Constants.H']]], + ['tmid_2058',['tmid',['../classRadiation.html#ac1ed1e73ee4f8832a699967c8354bd6e',1,'Radiation']]], + ['tmin_2059',['tmin',['../classWaterVaporSat.html#ac7a0c53f3985416b26f43135e25accca',1,'WaterVaporSat']]], + ['tol_2060',['tol',['../structsurface__flux.html#abd16b92a75ae384f9fe490b59f046b6a',1,'surface_flux']]], + ['tol_2061',['TOL',['../namespaceHSEutils.html#aace33d14958f235a111e6cead400a61e',1,'HSEutils']]], + ['tol_2062',['tol',['../structsurface__flux__wave__coupled.html#a928bb0b9a4141fc6452c6f83fbec58aa',1,'surface_flux_wave_coupled::tol()'],['../structWENO__Z5.html#af5daab47aa96e124f3bf0508489e3017',1,'WENO_Z5::tol()'],['../structWENO__MZQ3.html#af1d30022fe1ebe59529f45843dff3ae5',1,'WENO_MZQ3::tol()'],['../structWENO__Z3.html#aec489e3be4dbc31eb46b729b8510fdfc',1,'WENO_Z3::tol()'],['../structWENO5.html#a99f8a8620164e0e1460c7bce55ec3b02',1,'WENO5::tol()'],['../structWENO3.html#aa09b52432a69d89bef16a06015252661',1,'WENO3::tol()'],['../structsurface__temp__wave__coupled.html#a3715864e9c6bfdc6e4556925d0fc48fa',1,'surface_temp_wave_coupled::tol()'],['../structsurface__temp__mod__charnock.html#a77dc7e5a012fbe6066fa21f57145c938',1,'surface_temp_mod_charnock::tol()'],['../structsurface__flux__mod__charnock.html#ac01a07a59f56ff6683dd9942b4d500ba',1,'surface_flux_mod_charnock::tol()'],['../structsurface__flux__charnock.html#a08529386a7d5012684c818249a7d76ba',1,'surface_flux_charnock::tol()'],['../structadiabatic__wave__coupled.html#ad18802ec131991fbaaebfb80a1a12d07',1,'adiabatic_wave_coupled::tol()'],['../structadiabatic__mod__charnock.html#a8a007e09d416f6879b7ba68c7e4ac29e',1,'adiabatic_mod_charnock::tol()'],['../structadiabatic__charnock.html#abb822b2278b8cd500c6fb0fb0a028709',1,'adiabatic_charnock::tol()'],['../structsurface__temp__charnock.html#ab1cdc86ca25ac91cb375348372f2ddf1',1,'surface_temp_charnock::tol()'],['../structsurface__temp.html#a7c4031cfb8cbb020115ee7fae12ddb05',1,'surface_temp::tol()']]], + ['top_5flev_2063',['top_lev',['../classAerRadProps.html#a83216edbd2d57b575f1869df38a1b668',1,'AerRadProps::top_lev()'],['../classMam4__aer.html#ae15e0c356e4fed002069ecd5d8bb33af',1,'Mam4_aer::top_lev()']]], + ['tpi_5fboxdim_2064',['tpi_boxDim',['../structTurbulentPerturbation.html#ab90f89bf4bf3d497f88c27d1b92f3d39',1,'TurbulentPerturbation']]], + ['tpi_5fdirection_2065',['tpi_direction',['../structTurbulentPerturbation.html#af2a72d18ce8c0f5bc011d3682ad93e0f',1,'TurbulentPerturbation']]], + ['tpi_5fhpb_2066',['tpi_Hpb',['../structTurbulentPerturbation.html#aef47959ab81660b54f583a7304816ef4',1,'TurbulentPerturbation']]], + ['tpi_5flayers_2067',['tpi_layers',['../structTurbulentPerturbation.html#a17f060634e44ba5701cc1febba23c915',1,'TurbulentPerturbation']]], + ['tpi_5flpb_2068',['tpi_Lpb',['../structTurbulentPerturbation.html#a22bb01b7314fa13bdfc1966456f5deed',1,'TurbulentPerturbation']]], + ['tpi_5flref_2069',['tpi_lref',['../structTurbulentPerturbation.html#ab3db22cfce521750d46e44ed93c49bb8',1,'TurbulentPerturbation']]], + ['tpi_5fnet_5fbuoyant_2070',['tpi_net_buoyant',['../structTurbulentPerturbation.html#adaf88736c8d43a23f8bb3eb8065f0b84',1,'TurbulentPerturbation']]], + ['tpi_5fnondim_2071',['tpi_nonDim',['../structTurbulentPerturbation.html#abe0155dd9b530c537b1f639ab4dc8691',1,'TurbulentPerturbation']]], + ['tpi_5foffset_2072',['tpi_offset',['../structTurbulentPerturbation.html#a7bcb39c84b03deefaa166c89f22c229c',1,'TurbulentPerturbation']]], + ['tpi_5fpert_5fadjust_2073',['tpi_pert_adjust',['../structTurbulentPerturbation.html#aa4e6ee511ae71277885d87f5aa2ddad3',1,'TurbulentPerturbation']]], + ['tpi_5fti_2074',['tpi_Ti',['../structTurbulentPerturbation.html#aa2c2e894fc858d8cdaa9cde0092e896e',1,'TurbulentPerturbation']]], + ['tpi_5ftinf_2075',['tpi_Tinf',['../structTurbulentPerturbation.html#a20940c88c5c2f6ef1b90d1984867777a',1,'TurbulentPerturbation']]], + ['tpi_5fwpb_2076',['tpi_Wpb',['../structTurbulentPerturbation.html#a21d9b84c0b8eac4d49ae5ca764247442',1,'TurbulentPerturbation']]], + ['tprmax_2077',['tprmax',['../ERF__Constants_8H.html#a06a70c05086650ead098e2994ad1bd43',1,'ERF_Constants.H']]], + ['tprmin_2078',['tprmin',['../ERF__Constants_8H.html#a9180d622aa39d89312941eba03fa1347',1,'ERF_Constants.H']]], + ['tq_5fenthalpy_2079',['tq_enthalpy',['../classWaterVaporSat.html#afae0dfb4f85c8ac528ff330ccfa182b2',1,'WaterVaporSat']]], + ['trilinear_5finterp_5ft_2080',['trilinear_interp_T',['../classMOSTAverage.html#aefb42b9f2a5c3347e7ab87abdfcab3d7',1,'MOSTAverage']]], + ['ttrice_2081',['ttrice',['../ERF__Constants_8H.html#a9b3da60e1e65429fe546d18c9c926105',1,'ERF_Constants.H']]], + ['turbchoice_2082',['TurbChoice',['../structTurbChoice.html',1,'']]], + ['turbchoice_2083',['turbChoice',['../structSolverChoice.html#aa53b017d79e0067923180a0aa59367b4',1,'SolverChoice']]], + ['turbpert_2084',['turbPert',['../classERF.html#ac1b9cce4a3c1736c4af78f6b0e2143ce',1,'ERF']]], + ['turbpert_5famplitude_2085',['turbPert_amplitude',['../classERF.html#afb76c0633e2ba944c543e7a03a5e9424',1,'ERF']]], + ['turbpert_5fupdate_2086',['turbPert_update',['../classERF.html#aa89efe0abf37918ce3f212fb0e26f1bc',1,'ERF']]], + ['turbpertstruct_2eh_2087',['TurbPertStruct.H',['../TurbPertStruct_8H.html',1,'']]], + ['turbstruct_2eh_2088',['TurbStruct.H',['../TurbStruct_8H.html',1,'']]], + ['turbulentperturbation_2089',['TurbulentPerturbation',['../structTurbulentPerturbation.html',1,'']]], + ['twoway_2090',['TwoWay',['../DataStruct_8H.html#ad285be248c0803917aaf5cf8ce62139ba6c267346f8ebb889610a5a90838be815',1,'DataStruct.H']]], + ['type_2091',['Type',['../classSatMethods.html#a62096d95f324cd2a3504554437067ef7',1,'SatMethods']]], + ['type_2092',['type',['../structMamConstituents_1_1mode__component__t.html#a96f5cdd50364b1e2760b1cb4e88cd153',1,'MamConstituents::mode_component_t']]], + ['types_2093',['types',['../structMamConstituents_1_1modes__t.html#aea58b375f13ddc20860b2bd2a183899b',1,'MamConstituents::modes_t']]] ]; diff --git a/search/all_14.js b/search/all_14.js index bc3966b1c3..8248c5bddb 100644 --- a/search/all_14.js +++ b/search/all_14.js @@ -1,61 +1,61 @@ var searchData= [ - ['u_2090',['U',['../namespaceRealBdyVars.html#aa4743649b85ade11df23692d7c3947bda18f2b09699f8c7ee3796d766f288f411',1,'RealBdyVars::U()'],['../namespaceMetGridBdyVars.html#a22bd27d0288d22c74bd7c0bb57b2b89fa378f42ee4d721483e332f15a50a6f3ea',1,'MetGridBdyVars::U()'],['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582aa53bdf551bf25340a362d722eac4ab6f',1,'WRFBdyVars::U()']]], - ['u_5finp_5fsound_2091',['U_inp_sound',['../structInputSoundingData.html#a92f73e73fbc10bb7cbc1ba38155879f6',1,'InputSoundingData']]], - ['u_5finp_5fsound_5fd_2092',['U_inp_sound_d',['../structInputSoundingData.html#aab7841d6e2803dd86596604d85411d8d',1,'InputSoundingData']]], - ['u_5finp_5fsponge_2093',['U_inp_sponge',['../structInputSpongeData.html#aece8029ec7a192a21d88a796ada8e917',1,'InputSpongeData']]], - ['u_5fstar_2094',['u_star',['../classABLMost.html#acd5510d2f47502a57107f12c66f8a552',1,'ABLMost']]], - ['ubar_2095',['ubar',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239a3d2cdf8cea6cb933d4ce759c1ff1b948',1,'DataStruct.H']]], - ['ubar_5fsponge_2096',['ubar_sponge',['../DataStruct_8H.html#a5bebd9ff4e2455172deca3b399214fcbac159d9fae0d25be7ce907e1feb87cdaa',1,'DataStruct.H']]], - ['undefined_2097',['undefined',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9a5e543256c480ac577d30f76f9120eb74',1,'IndexDefines.H']]], - ['undefined_2098',['Undefined',['../DataStruct_8H.html#a62a5a9bde82457a1611cde231a43bfe5aec0fc0100c4fc1ce4eea230c3dc10360',1,'DataStruct.H']]], - ['uniform_5fangle_2099',['uniform_angle',['../classRadiation.html#aedbf9cc7e81f84db53d0145a3c18727a',1,'Radiation']]], - ['unioncif_2100',['UnionCIF',['../classUnionCIF.html',1,'UnionCIF< F1, F2 >'],['../classUnionCIF.html#ae309467c4c5a1af20d285441d1fb9670',1,'UnionCIF::UnionCIF(const F1 &f1, const F2 &f2)'],['../classUnionCIF.html#a409d59d8707a2695b13b7115f69f406e',1,'UnionCIF::UnionCIF(const UnionCIF &rhs)=default'],['../classUnionCIF.html#aafc94c60436bf1ae2decb6fb84ce300f',1,'UnionCIF::UnionCIF(UnionCIF &&rhs) noexcept=default']]], - ['unionlistif_2101',['UnionListIF',['../classUnionListIF.html',1,'UnionListIF< F >'],['../classUnionListIF.html#a7d510d7cb349a3e162d88ac660a6b3c2',1,'UnionListIF::UnionListIF()']]], - ['uniquefilenames_2102',['uniquefilenames',['../classPhysProp.html#a4bc8ab2d58a26e16bea177aa9ea70b57',1,'PhysProp']]], - ['units_2103',['Units',['../classRadConstants.html#a2de1ff8cbc3cafe6a42e8f884002e4f1',1,'RadConstants']]], - ['unknown_2104',['Unknown',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70a88183b946cc5f0e8c96b2e66e1c74a7e',1,'IndexDefines.H']]], - ['update_2105',['update',['../classEWP.html#a762189d5d9c02d32fa1e6186adb35ae0',1,'EWP::update()'],['../classFitch.html#a1a2db68abb0185de73bd870884f0b019',1,'Fitch::update()'],['../classSimpleAD.html#a1d87675adbb7e56ff0969cd1543c72c4',1,'SimpleAD::update()']]], - ['update_5fdiffusive_5farrays_2106',['update_diffusive_arrays',['../classERF.html#a419510fced05e9afc05c466beeeb66f7',1,'ERF']]], - ['update_5ffield_5fptrs_2107',['update_field_ptrs',['../classMOSTAverage.html#acdb5e2dec5f3e9b0a37e194430ca32a7',1,'MOSTAverage']]], - ['update_5ffluxes_2108',['update_fluxes',['../classABLMost.html#af82057d4fbaaf1d8347cf18c7efd7b53',1,'ABLMost']]], - ['update_5fgeostrophic_5fprofile_2109',['update_geostrophic_profile',['../classProblemBase.html#a7ca260b5527bb1ecbae0aa78897dd666',1,'ProblemBase']]], - ['update_5fkessler_2ecpp_2110',['Update_Kessler.cpp',['../Update__Kessler_8cpp.html',1,'']]], - ['update_5fmac_5fptrs_2111',['update_mac_ptrs',['../classABLMost.html#a6a3e64fcdbe709a947131d31cd0e347b',1,'ABLMost']]], - ['update_5fmicro_5fvars_2112',['Update_Micro_Vars',['../classNullMoist.html#aece7a50f16bf40e3e9d536cc030458f7',1,'NullMoist::Update_Micro_Vars()'],['../classSAM.html#a2e6ff95cf827306bbcf3661c954a692e',1,'SAM::Update_Micro_Vars()'],['../classKessler.html#a05b9426e9fd6af90ea40aa77ed0cbe66',1,'Kessler::Update_Micro_Vars()'],['../classNullSurf.html#aad733e954aefc643ed1f2c6a1bb564ac',1,'NullSurf::Update_Micro_Vars()']]], - ['update_5fmicro_5fvars_5flev_2113',['Update_Micro_Vars_Lev',['../classLandSurface.html#afcb150f2d64cc46a8fbdc817d6fb9872',1,'LandSurface::Update_Micro_Vars_Lev()'],['../classEulerianMicrophysics.html#a0f8fc766c44f4331bfc86337eb43f6cc',1,'EulerianMicrophysics::Update_Micro_Vars_Lev()'],['../classMicrophysics.html#a6b8a14f003da6293f7a9ee118bc60149',1,'Microphysics::Update_Micro_Vars_Lev()']]], - ['update_5frhoqt_5fsources_2114',['update_rhoqt_sources',['../classProblemBase.html#a9ef723333579aac2295b535c79193088',1,'ProblemBase']]], - ['update_5frhotheta_5fsources_2115',['update_rhotheta_sources',['../classProblemBase.html#ad8f582edde4d124612f67d9d2a17f4a4',1,'ProblemBase']]], - ['update_5fsam_2ecpp_2116',['Update_SAM.cpp',['../Update__SAM_8cpp.html',1,'']]], - ['update_5fstate_5fvars_2117',['Update_State_Vars',['../classSAM.html#aea5fdd520cbb1bc936a0f11d55400029',1,'SAM::Update_State_Vars()'],['../classNullMoist.html#a24f0528f7d31b89f36a3c225c7e53010',1,'NullMoist::Update_State_Vars()'],['../classKessler.html#add7ed88ab0086ee53aa15e87cc8686ef',1,'Kessler::Update_State_Vars()'],['../classNullSurf.html#aec12d8aa3e358ea40f7d4371651eb73a',1,'NullSurf::Update_State_Vars()']]], - ['update_5fstate_5fvars_5flev_2118',['Update_State_Vars_Lev',['../classMicrophysics.html#a5d7ee0e4867e53e492b8179365e85bb4',1,'Microphysics::Update_State_Vars_Lev()'],['../classLandSurface.html#adc42b59dad9dc817ee882778a2b3d273',1,'LandSurface::Update_State_Vars_Lev()'],['../classEulerianMicrophysics.html#a6f0dc90119a228e56c5616267eba6009',1,'EulerianMicrophysics::Update_State_Vars_Lev()']]], - ['update_5fsurf_5ftemp_2119',['update_surf_temp',['../classABLMost.html#ad878840b1c998160ba79c1e9714adc70',1,'ABLMost']]], - ['update_5fterrain_5farrays_2120',['update_terrain_arrays',['../classERF.html#a900a0119c110486650f2759287e22cba',1,'ERF']]], - ['update_5fw_5fsubsidence_2121',['update_w_subsidence',['../classProblemBase.html#aeea63567f941d0ee6f5a653bd8404268',1,'ProblemBase']]], - ['upwind3_2122',['UPWIND3',['../structUPWIND3.html',1,'UPWIND3'],['../structUPWIND3.html#a8292861e993880bb65b24308d62d52a8',1,'UPWIND3::UPWIND3()']]], - ['upwind5_2123',['UPWIND5',['../structUPWIND5.html',1,'UPWIND5'],['../structUPWIND5.html#ac13bbcdad8180ebd3e15168365299f40',1,'UPWIND5::UPWIND5()']]], - ['upwind_5f3rd_2124',['Upwind_3rd',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70a40adf6565c1a31b2c72d8072412d0b9f',1,'IndexDefines.H']]], - ['upwind_5f5th_2125',['Upwind_5th',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70a83aec89012c35752597047c6ebdd983a',1,'IndexDefines.H']]], - ['upwindall_2126',['UPWINDALL',['../structUPWINDALL.html#a0201b903572d5e51aa42bbc43cd94242',1,'UPWINDALL::UPWINDALL()'],['../structUPWINDALL.html',1,'UPWINDALL']]], - ['use_5fcoriolis_2127',['use_coriolis',['../structSolverChoice.html#a9e86533aa6df5bf6408d91f0dfd23606',1,'SolverChoice']]], - ['use_5fefficient_5fadvection_2128',['use_efficient_advection',['../structAdvChoice.html#a50c43113d4bd0ccaf9f1878134f00bb8',1,'AdvChoice']]], - ['use_5fexplicit_5fmost_2129',['use_explicit_most',['../structSolverChoice.html#a15db794855101421e20ba970dcd634e9',1,'SolverChoice']]], - ['use_5fgravity_2130',['use_gravity',['../structSolverChoice.html#a3ab48411073a3c1f75435292d7b407e5',1,'SolverChoice']]], - ['use_5flagged_5fdelta_5frt_2131',['use_lagged_delta_rt',['../structSolverChoice.html#a0e2a9a1ec68a94b24dc8f3f6d8bb7af0',1,'SolverChoice']]], - ['use_5fmoist_5fbackground_2132',['use_moist_background',['../structSolverChoice.html#aab88dd74d39b1ad369ae6324e05d7a35',1,'SolverChoice']]], - ['use_5fmoisture_2133',['use_moisture',['../classABLMost.html#ab55a547b6b74a177128af6c6a107930c',1,'ABLMost']]], - ['use_5fmono_5fadv_2134',['use_mono_adv',['../structSolverChoice.html#a3660145ad90d59b2a6693fd88bb01381',1,'SolverChoice']]], - ['use_5fnumdiff_2135',['use_NumDiff',['../structSolverChoice.html#aa2de671156cccf1f3a34b9f250fb0e28',1,'SolverChoice']]], - ['use_5fqke_2136',['use_QKE',['../structTurbChoice.html#a81d6903354abbc64e7dc12b7da91070b',1,'TurbChoice']]], - ['use_5frad_5fdt_5fcosz_2137',['use_rad_dt_cosz',['../classRadiation.html#a18cd8ea8ce343768fc2f630bcda8629d',1,'Radiation']]], - ['use_5freal_5fbcs_2138',['use_real_bcs',['../classERF.html#a86208285bf705f360a3c318a75097f61',1,'ERF']]], - ['use_5fterrain_2139',['use_terrain',['../structSolverChoice.html#a063a88594452100497651e8aaf1f68d7',1,'SolverChoice']]], - ['use_5fvolume_5faverage_2140',['USE_VOLUME_AVERAGE',['../TurbPertStruct_8H.html#a1cd6e2210df20afb1fdec3183cbef7ba',1,'TurbPertStruct.H']]], - ['use_5fxhi_5fsponge_5fdamping_2141',['use_xhi_sponge_damping',['../structSpongeChoice.html#a980e2c4485a0769eb0405a77445e3db1',1,'SpongeChoice']]], - ['use_5fxlo_5fsponge_5fdamping_2142',['use_xlo_sponge_damping',['../structSpongeChoice.html#a0d60faef2ee2597c1df7807fc25204e2',1,'SpongeChoice']]], - ['use_5fyhi_5fsponge_5fdamping_2143',['use_yhi_sponge_damping',['../structSpongeChoice.html#ae2907fb8c5755c951b765b7d835013f6',1,'SpongeChoice']]], - ['use_5fylo_5fsponge_5fdamping_2144',['use_ylo_sponge_damping',['../structSpongeChoice.html#a5e3fe59ec39bd6ed95b33bd568dd711b',1,'SpongeChoice']]], - ['use_5fzhi_5fsponge_5fdamping_2145',['use_zhi_sponge_damping',['../structSpongeChoice.html#ac335f4f1640ad959aadb8e9054c3fda2',1,'SpongeChoice']]], - ['use_5fzlo_5fsponge_5fdamping_2146',['use_zlo_sponge_damping',['../structSpongeChoice.html#a2ac1def940f7e6666a1076be69b3cc33',1,'SpongeChoice']]], - ['utils_2eh_2147',['Utils.H',['../Utils_8H.html',1,'']]] + ['u_2094',['U',['../namespaceRealBdyVars.html#aa4743649b85ade11df23692d7c3947bda18f2b09699f8c7ee3796d766f288f411',1,'RealBdyVars::U()'],['../namespaceMetGridBdyVars.html#a22bd27d0288d22c74bd7c0bb57b2b89fa378f42ee4d721483e332f15a50a6f3ea',1,'MetGridBdyVars::U()'],['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582aa53bdf551bf25340a362d722eac4ab6f',1,'WRFBdyVars::U()']]], + ['u_5finp_5fsound_2095',['U_inp_sound',['../structInputSoundingData.html#a92f73e73fbc10bb7cbc1ba38155879f6',1,'InputSoundingData']]], + ['u_5finp_5fsound_5fd_2096',['U_inp_sound_d',['../structInputSoundingData.html#aab7841d6e2803dd86596604d85411d8d',1,'InputSoundingData']]], + ['u_5finp_5fsponge_2097',['U_inp_sponge',['../structInputSpongeData.html#aece8029ec7a192a21d88a796ada8e917',1,'InputSpongeData']]], + ['u_5fstar_2098',['u_star',['../classABLMost.html#acd5510d2f47502a57107f12c66f8a552',1,'ABLMost']]], + ['ubar_2099',['ubar',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239a3d2cdf8cea6cb933d4ce759c1ff1b948',1,'DataStruct.H']]], + ['ubar_5fsponge_2100',['ubar_sponge',['../DataStruct_8H.html#a5bebd9ff4e2455172deca3b399214fcbac159d9fae0d25be7ce907e1feb87cdaa',1,'DataStruct.H']]], + ['undefined_2101',['undefined',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9a5e543256c480ac577d30f76f9120eb74',1,'IndexDefines.H']]], + ['undefined_2102',['Undefined',['../DataStruct_8H.html#a62a5a9bde82457a1611cde231a43bfe5aec0fc0100c4fc1ce4eea230c3dc10360',1,'DataStruct.H']]], + ['uniform_5fangle_2103',['uniform_angle',['../classRadiation.html#aedbf9cc7e81f84db53d0145a3c18727a',1,'Radiation']]], + ['unioncif_2104',['UnionCIF',['../classUnionCIF.html',1,'UnionCIF< F1, F2 >'],['../classUnionCIF.html#ae309467c4c5a1af20d285441d1fb9670',1,'UnionCIF::UnionCIF(const F1 &f1, const F2 &f2)'],['../classUnionCIF.html#a409d59d8707a2695b13b7115f69f406e',1,'UnionCIF::UnionCIF(const UnionCIF &rhs)=default'],['../classUnionCIF.html#aafc94c60436bf1ae2decb6fb84ce300f',1,'UnionCIF::UnionCIF(UnionCIF &&rhs) noexcept=default']]], + ['unionlistif_2105',['UnionListIF',['../classUnionListIF.html',1,'UnionListIF< F >'],['../classUnionListIF.html#a7d510d7cb349a3e162d88ac660a6b3c2',1,'UnionListIF::UnionListIF()']]], + ['uniquefilenames_2106',['uniquefilenames',['../classPhysProp.html#a4bc8ab2d58a26e16bea177aa9ea70b57',1,'PhysProp']]], + ['units_2107',['Units',['../classRadConstants.html#a2de1ff8cbc3cafe6a42e8f884002e4f1',1,'RadConstants']]], + ['unknown_2108',['Unknown',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70a88183b946cc5f0e8c96b2e66e1c74a7e',1,'IndexDefines.H']]], + ['update_2109',['update',['../classEWP.html#a762189d5d9c02d32fa1e6186adb35ae0',1,'EWP::update()'],['../classFitch.html#a1a2db68abb0185de73bd870884f0b019',1,'Fitch::update()'],['../classSimpleAD.html#a1d87675adbb7e56ff0969cd1543c72c4',1,'SimpleAD::update()']]], + ['update_5fdiffusive_5farrays_2110',['update_diffusive_arrays',['../classERF.html#a419510fced05e9afc05c466beeeb66f7',1,'ERF']]], + ['update_5ffield_5fptrs_2111',['update_field_ptrs',['../classMOSTAverage.html#acdb5e2dec5f3e9b0a37e194430ca32a7',1,'MOSTAverage']]], + ['update_5ffluxes_2112',['update_fluxes',['../classABLMost.html#af82057d4fbaaf1d8347cf18c7efd7b53',1,'ABLMost']]], + ['update_5fgeostrophic_5fprofile_2113',['update_geostrophic_profile',['../classProblemBase.html#a7ca260b5527bb1ecbae0aa78897dd666',1,'ProblemBase']]], + ['update_5fkessler_2ecpp_2114',['Update_Kessler.cpp',['../Update__Kessler_8cpp.html',1,'']]], + ['update_5fmac_5fptrs_2115',['update_mac_ptrs',['../classABLMost.html#a6a3e64fcdbe709a947131d31cd0e347b',1,'ABLMost']]], + ['update_5fmicro_5fvars_2116',['Update_Micro_Vars',['../classNullMoist.html#aece7a50f16bf40e3e9d536cc030458f7',1,'NullMoist::Update_Micro_Vars()'],['../classSAM.html#a2e6ff95cf827306bbcf3661c954a692e',1,'SAM::Update_Micro_Vars()'],['../classKessler.html#a05b9426e9fd6af90ea40aa77ed0cbe66',1,'Kessler::Update_Micro_Vars()'],['../classNullSurf.html#aad733e954aefc643ed1f2c6a1bb564ac',1,'NullSurf::Update_Micro_Vars()']]], + ['update_5fmicro_5fvars_5flev_2117',['Update_Micro_Vars_Lev',['../classLandSurface.html#afcb150f2d64cc46a8fbdc817d6fb9872',1,'LandSurface::Update_Micro_Vars_Lev()'],['../classEulerianMicrophysics.html#a0f8fc766c44f4331bfc86337eb43f6cc',1,'EulerianMicrophysics::Update_Micro_Vars_Lev()'],['../classMicrophysics.html#a6b8a14f003da6293f7a9ee118bc60149',1,'Microphysics::Update_Micro_Vars_Lev()']]], + ['update_5frhoqt_5fsources_2118',['update_rhoqt_sources',['../classProblemBase.html#a9ef723333579aac2295b535c79193088',1,'ProblemBase']]], + ['update_5frhotheta_5fsources_2119',['update_rhotheta_sources',['../classProblemBase.html#ad8f582edde4d124612f67d9d2a17f4a4',1,'ProblemBase']]], + ['update_5fsam_2ecpp_2120',['Update_SAM.cpp',['../Update__SAM_8cpp.html',1,'']]], + ['update_5fstate_5fvars_2121',['Update_State_Vars',['../classSAM.html#aea5fdd520cbb1bc936a0f11d55400029',1,'SAM::Update_State_Vars()'],['../classNullMoist.html#a24f0528f7d31b89f36a3c225c7e53010',1,'NullMoist::Update_State_Vars()'],['../classKessler.html#add7ed88ab0086ee53aa15e87cc8686ef',1,'Kessler::Update_State_Vars()'],['../classNullSurf.html#aec12d8aa3e358ea40f7d4371651eb73a',1,'NullSurf::Update_State_Vars()']]], + ['update_5fstate_5fvars_5flev_2122',['Update_State_Vars_Lev',['../classMicrophysics.html#a5d7ee0e4867e53e492b8179365e85bb4',1,'Microphysics::Update_State_Vars_Lev()'],['../classLandSurface.html#adc42b59dad9dc817ee882778a2b3d273',1,'LandSurface::Update_State_Vars_Lev()'],['../classEulerianMicrophysics.html#a6f0dc90119a228e56c5616267eba6009',1,'EulerianMicrophysics::Update_State_Vars_Lev()']]], + ['update_5fsurf_5ftemp_2123',['update_surf_temp',['../classABLMost.html#ad878840b1c998160ba79c1e9714adc70',1,'ABLMost']]], + ['update_5fterrain_5farrays_2124',['update_terrain_arrays',['../classERF.html#a900a0119c110486650f2759287e22cba',1,'ERF']]], + ['update_5fw_5fsubsidence_2125',['update_w_subsidence',['../classProblemBase.html#aeea63567f941d0ee6f5a653bd8404268',1,'ProblemBase']]], + ['upwind3_2126',['UPWIND3',['../structUPWIND3.html',1,'UPWIND3'],['../structUPWIND3.html#a8292861e993880bb65b24308d62d52a8',1,'UPWIND3::UPWIND3()']]], + ['upwind5_2127',['UPWIND5',['../structUPWIND5.html',1,'UPWIND5'],['../structUPWIND5.html#ac13bbcdad8180ebd3e15168365299f40',1,'UPWIND5::UPWIND5()']]], + ['upwind_5f3rd_2128',['Upwind_3rd',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70a40adf6565c1a31b2c72d8072412d0b9f',1,'IndexDefines.H']]], + ['upwind_5f5th_2129',['Upwind_5th',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70a83aec89012c35752597047c6ebdd983a',1,'IndexDefines.H']]], + ['upwindall_2130',['UPWINDALL',['../structUPWINDALL.html#a0201b903572d5e51aa42bbc43cd94242',1,'UPWINDALL::UPWINDALL()'],['../structUPWINDALL.html',1,'UPWINDALL']]], + ['use_5fcoriolis_2131',['use_coriolis',['../structSolverChoice.html#a9e86533aa6df5bf6408d91f0dfd23606',1,'SolverChoice']]], + ['use_5fefficient_5fadvection_2132',['use_efficient_advection',['../structAdvChoice.html#a50c43113d4bd0ccaf9f1878134f00bb8',1,'AdvChoice']]], + ['use_5fexplicit_5fmost_2133',['use_explicit_most',['../structSolverChoice.html#a15db794855101421e20ba970dcd634e9',1,'SolverChoice']]], + ['use_5fgravity_2134',['use_gravity',['../structSolverChoice.html#a3ab48411073a3c1f75435292d7b407e5',1,'SolverChoice']]], + ['use_5flagged_5fdelta_5frt_2135',['use_lagged_delta_rt',['../structSolverChoice.html#a0e2a9a1ec68a94b24dc8f3f6d8bb7af0',1,'SolverChoice']]], + ['use_5fmoist_5fbackground_2136',['use_moist_background',['../structSolverChoice.html#aab88dd74d39b1ad369ae6324e05d7a35',1,'SolverChoice']]], + ['use_5fmoisture_2137',['use_moisture',['../classABLMost.html#ab55a547b6b74a177128af6c6a107930c',1,'ABLMost']]], + ['use_5fmono_5fadv_2138',['use_mono_adv',['../structSolverChoice.html#a3660145ad90d59b2a6693fd88bb01381',1,'SolverChoice']]], + ['use_5fnumdiff_2139',['use_NumDiff',['../structSolverChoice.html#aa2de671156cccf1f3a34b9f250fb0e28',1,'SolverChoice']]], + ['use_5fqke_2140',['use_QKE',['../structTurbChoice.html#a81d6903354abbc64e7dc12b7da91070b',1,'TurbChoice']]], + ['use_5frad_5fdt_5fcosz_2141',['use_rad_dt_cosz',['../classRadiation.html#a18cd8ea8ce343768fc2f630bcda8629d',1,'Radiation']]], + ['use_5freal_5fbcs_2142',['use_real_bcs',['../classERF.html#a86208285bf705f360a3c318a75097f61',1,'ERF']]], + ['use_5fterrain_2143',['use_terrain',['../structSolverChoice.html#a063a88594452100497651e8aaf1f68d7',1,'SolverChoice']]], + ['use_5fvolume_5faverage_2144',['USE_VOLUME_AVERAGE',['../TurbPertStruct_8H.html#a1cd6e2210df20afb1fdec3183cbef7ba',1,'TurbPertStruct.H']]], + ['use_5fxhi_5fsponge_5fdamping_2145',['use_xhi_sponge_damping',['../structSpongeChoice.html#a980e2c4485a0769eb0405a77445e3db1',1,'SpongeChoice']]], + ['use_5fxlo_5fsponge_5fdamping_2146',['use_xlo_sponge_damping',['../structSpongeChoice.html#a0d60faef2ee2597c1df7807fc25204e2',1,'SpongeChoice']]], + ['use_5fyhi_5fsponge_5fdamping_2147',['use_yhi_sponge_damping',['../structSpongeChoice.html#ae2907fb8c5755c951b765b7d835013f6',1,'SpongeChoice']]], + ['use_5fylo_5fsponge_5fdamping_2148',['use_ylo_sponge_damping',['../structSpongeChoice.html#a5e3fe59ec39bd6ed95b33bd568dd711b',1,'SpongeChoice']]], + ['use_5fzhi_5fsponge_5fdamping_2149',['use_zhi_sponge_damping',['../structSpongeChoice.html#ac335f4f1640ad959aadb8e9054c3fda2',1,'SpongeChoice']]], + ['use_5fzlo_5fsponge_5fdamping_2150',['use_zlo_sponge_damping',['../structSpongeChoice.html#a2ac1def940f7e6666a1076be69b3cc33',1,'SpongeChoice']]], + ['utils_2eh_2151',['Utils.H',['../Utils_8H.html',1,'']]] ]; diff --git a/search/all_15.js b/search/all_15.js index e8f045d3f2..f3d652cecc 100644 --- a/search/all_15.js +++ b/search/all_15.js @@ -1,24 +1,24 @@ var searchData= [ - ['v_2148',['V',['../namespaceMetGridBdyVars.html#a22bd27d0288d22c74bd7c0bb57b2b89fa648d295dcce3682ff094adbee4f946bf',1,'MetGridBdyVars::V()'],['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a4d00543cd0d6f68475152e954f5dfa43',1,'WRFBdyVars::V()'],['../namespaceRealBdyVars.html#aa4743649b85ade11df23692d7c3947bdaeb7c7786202be202372af9778caaa59a',1,'RealBdyVars::V()']]], - ['v_5finp_5fsound_2149',['V_inp_sound',['../structInputSoundingData.html#a97a1970935e36fc0ba9a69fa0032883d',1,'InputSoundingData']]], - ['v_5finp_5fsound_5fd_2150',['V_inp_sound_d',['../structInputSoundingData.html#a22697746622cd5f3239120eaaa71abdc',1,'InputSoundingData']]], - ['v_5finp_5fsponge_2151',['V_inp_sponge',['../structInputSpongeData.html#a8cc25a2bbb25e676dadc57cf3e8f6db1',1,'InputSpongeData']]], - ['var_2152',['var',['../classncutils_1_1NCGroup.html#a79bef315da5cff7bcf8bbcfbdd122115',1,'ncutils::NCGroup']]], - ['varid_2153',['varid',['../structncutils_1_1NCVar.html#a2dce982c1ddb8f3b89b071bc3bf15532',1,'ncutils::NCVar']]], - ['varname_2154',['varname',['../classNullSurf.html#ae096eaa2ce9385fabf5692c6a7ac6c26',1,'NullSurf']]], - ['vars_2155',['Vars',['../namespaceVars.html',1,'']]], - ['vars_5fnew_2156',['vars_new',['../classERF.html#a1204ca4dc5d79f5da191ffbe09dfab9b',1,'ERF']]], - ['vars_5fold_2157',['vars_old',['../classERF.html#af31e928baa970a1507dfb0233b352542',1,'ERF']]], - ['vbar_2158',['vbar',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239acb08c6a1b8bca5e9e4ef6162aef2cfa4',1,'DataStruct.H']]], - ['vbar_5fsponge_2159',['vbar_sponge',['../DataStruct_8H.html#a5bebd9ff4e2455172deca3b399214fcbaad1bdec1c0213a18483e81bcb4926964',1,'DataStruct.H']]], - ['vel_5ft_5favg_2160',['vel_t_avg',['../classERF.html#a3e146164ca6929ec6d4984b6a3f43c81',1,'ERF']]], - ['velocitytomomentum_2161',['VelocityToMomentum',['../Utils_8H.html#a5e2e36af19c0192915a2ca721c0cded4',1,'VelocityToMomentum(const amrex::MultiFab &xvel_in, const amrex::IntVect &xvel_ngrow, const amrex::MultiFab &yvel_in, const amrex::IntVect &yvel_ngrow, const amrex::MultiFab &zvel_in, const amrex::IntVect &zvel_ngrow, const amrex::MultiFab &cons_in, amrex::MultiFab &xmom_out, amrex::MultiFab &ymom_out, amrex::MultiFab &zmom_out, const amrex::Box &domain, const amrex::Vector< amrex::BCRec > &domain_bcs_type_h): Utils.H'],['../VelocityToMomentum_8cpp.html#abd0f6df06c5a596317146e0b9ee81780',1,'VelocityToMomentum(const MultiFab &xvel_in, const IntVect &xvel_ngrow, const MultiFab &yvel_in, const IntVect &yvel_ngrow, const MultiFab &zvel_in, const IntVect &zvel_ngrow, const MultiFab &density, MultiFab &xmom, MultiFab &ymom, MultiFab &zmom, const Box &domain, const Vector< BCRec > &domain_bcs_type_h): VelocityToMomentum.cpp']]], - ['velocitytomomentum_2ecpp_2162',['VelocityToMomentum.cpp',['../VelocityToMomentum_8cpp.html',1,'']]], - ['verbose_2163',['verbose',['../classERF.html#a43d0b17f6e155691a1e9474526df3af5',1,'ERF']]], - ['void_5fbc_2164',['void_bc',['../InteriorGhostCells_8cpp.html#ab53ca744a656082f128b68f819aacbf5',1,'InteriorGhostCells.cpp']]], - ['volcanic_5fcmip_5fsw_2165',['volcanic_cmip_sw',['../classAerRadProps.html#aa4241f4adcf62ef3c537a91bdfce66db',1,'AerRadProps']]], - ['volcanic_5foptics_5finit_2166',['volcanic_optics_init',['../classPhysProp.html#a0ad3529b5187f2cfbc7f502655910f32',1,'PhysProp']]], - ['volcanic_5fradius_5foptics_5finit_2167',['volcanic_radius_optics_init',['../classPhysProp.html#adf9483b1971e6a0e2d7e14bcfd2779c1',1,'PhysProp']]], - ['volwgtsummf_2168',['volWgtSumMF',['../classERF.html#ae959fa22a0c888a6da28d385054edf82',1,'ERF']]] + ['v_2152',['V',['../namespaceMetGridBdyVars.html#a22bd27d0288d22c74bd7c0bb57b2b89fa648d295dcce3682ff094adbee4f946bf',1,'MetGridBdyVars::V()'],['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a4d00543cd0d6f68475152e954f5dfa43',1,'WRFBdyVars::V()'],['../namespaceRealBdyVars.html#aa4743649b85ade11df23692d7c3947bdaeb7c7786202be202372af9778caaa59a',1,'RealBdyVars::V()']]], + ['v_5finp_5fsound_2153',['V_inp_sound',['../structInputSoundingData.html#a97a1970935e36fc0ba9a69fa0032883d',1,'InputSoundingData']]], + ['v_5finp_5fsound_5fd_2154',['V_inp_sound_d',['../structInputSoundingData.html#a22697746622cd5f3239120eaaa71abdc',1,'InputSoundingData']]], + ['v_5finp_5fsponge_2155',['V_inp_sponge',['../structInputSpongeData.html#a8cc25a2bbb25e676dadc57cf3e8f6db1',1,'InputSpongeData']]], + ['var_2156',['var',['../classncutils_1_1NCGroup.html#a79bef315da5cff7bcf8bbcfbdd122115',1,'ncutils::NCGroup']]], + ['varid_2157',['varid',['../structncutils_1_1NCVar.html#a2dce982c1ddb8f3b89b071bc3bf15532',1,'ncutils::NCVar']]], + ['varname_2158',['varname',['../classNullSurf.html#ae096eaa2ce9385fabf5692c6a7ac6c26',1,'NullSurf']]], + ['vars_2159',['Vars',['../namespaceVars.html',1,'']]], + ['vars_5fnew_2160',['vars_new',['../classERF.html#a1204ca4dc5d79f5da191ffbe09dfab9b',1,'ERF']]], + ['vars_5fold_2161',['vars_old',['../classERF.html#af31e928baa970a1507dfb0233b352542',1,'ERF']]], + ['vbar_2162',['vbar',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239acb08c6a1b8bca5e9e4ef6162aef2cfa4',1,'DataStruct.H']]], + ['vbar_5fsponge_2163',['vbar_sponge',['../DataStruct_8H.html#a5bebd9ff4e2455172deca3b399214fcbaad1bdec1c0213a18483e81bcb4926964',1,'DataStruct.H']]], + ['vel_5ft_5favg_2164',['vel_t_avg',['../classERF.html#a3e146164ca6929ec6d4984b6a3f43c81',1,'ERF']]], + ['velocitytomomentum_2165',['VelocityToMomentum',['../Utils_8H.html#a5e2e36af19c0192915a2ca721c0cded4',1,'VelocityToMomentum(const amrex::MultiFab &xvel_in, const amrex::IntVect &xvel_ngrow, const amrex::MultiFab &yvel_in, const amrex::IntVect &yvel_ngrow, const amrex::MultiFab &zvel_in, const amrex::IntVect &zvel_ngrow, const amrex::MultiFab &cons_in, amrex::MultiFab &xmom_out, amrex::MultiFab &ymom_out, amrex::MultiFab &zmom_out, const amrex::Box &domain, const amrex::Vector< amrex::BCRec > &domain_bcs_type_h): Utils.H'],['../VelocityToMomentum_8cpp.html#abd0f6df06c5a596317146e0b9ee81780',1,'VelocityToMomentum(const MultiFab &xvel_in, const IntVect &xvel_ngrow, const MultiFab &yvel_in, const IntVect &yvel_ngrow, const MultiFab &zvel_in, const IntVect &zvel_ngrow, const MultiFab &density, MultiFab &xmom, MultiFab &ymom, MultiFab &zmom, const Box &domain, const Vector< BCRec > &domain_bcs_type_h): VelocityToMomentum.cpp']]], + ['velocitytomomentum_2ecpp_2166',['VelocityToMomentum.cpp',['../VelocityToMomentum_8cpp.html',1,'']]], + ['verbose_2167',['verbose',['../classERF.html#a43d0b17f6e155691a1e9474526df3af5',1,'ERF']]], + ['void_5fbc_2168',['void_bc',['../InteriorGhostCells_8cpp.html#ab53ca744a656082f128b68f819aacbf5',1,'InteriorGhostCells.cpp']]], + ['volcanic_5fcmip_5fsw_2169',['volcanic_cmip_sw',['../classAerRadProps.html#aa4241f4adcf62ef3c537a91bdfce66db',1,'AerRadProps']]], + ['volcanic_5foptics_5finit_2170',['volcanic_optics_init',['../classPhysProp.html#a0ad3529b5187f2cfbc7f502655910f32',1,'PhysProp']]], + ['volcanic_5fradius_5foptics_5finit_2171',['volcanic_radius_optics_init',['../classPhysProp.html#adf9483b1971e6a0e2d7e14bcfd2779c1',1,'PhysProp']]], + ['volwgtsummf_2172',['volWgtSumMF',['../classERF.html#ae959fa22a0c888a6da28d385054edf82',1,'ERF']]] ]; diff --git a/search/all_16.js b/search/all_16.js index 12694f9b39..8af713f87b 100644 --- a/search/all_16.js +++ b/search/all_16.js @@ -1,64 +1,64 @@ var searchData= [ - ['water_5frefindex_5ffile_2169',['water_refindex_file',['../classMam4__aer.html#a57f3e715abe0988dd7179e11ce4bdcff',1,'Mam4_aer']]], - ['water_5fvapor_5fsaturation_2eh_2170',['Water_vapor_saturation.H',['../Water__vapor__saturation_8H.html',1,'']]], - ['watervaporsat_2171',['WaterVaporSat',['../classWaterVaporSat.html',1,'']]], - ['wave_5fcoupled_2172',['WAVE_COUPLED',['../classABLMost.html#ae825f96c2d098b3e070642a74e6a3f13a3e1545d84d0cc7da6edf47adda8a80f9',1,'ABLMost']]], - ['wavenum_5fhigh_2173',['wavenum_high',['../classRadConstants.html#a06d010a733e82bb2e8a6651c6e92cf51',1,'RadConstants']]], - ['wavenum_5flow_2174',['wavenum_low',['../classRadConstants.html#ab658087eff73ea76e37a41701497b79d',1,'RadConstants']]], - ['wavenumber1_5flongwave_2175',['wavenumber1_longwave',['../classRadConstants.html#add60bb42895c11810559d8bb753c1e63',1,'RadConstants']]], - ['wavenumber2_5flongwave_2176',['wavenumber2_longwave',['../classRadConstants.html#a86731ed9c7d8c8f4b269f79606c89ba1',1,'RadConstants']]], - ['wbar_2177',['wbar',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239a3d8bd6001a2421b06c3ec4e9f2dcdffd',1,'DataStruct.H']]], - ['weno3_2178',['WENO3',['../structWENO3.html',1,'WENO3'],['../structWENO3.html#aa02f985763b5a70539e23704c5eb63f5',1,'WENO3::WENO3()']]], - ['weno5_2179',['WENO5',['../structWENO5.html',1,'WENO5'],['../structWENO5.html#a912e48be65b9a2c9f3b774fe4188b611',1,'WENO5::WENO5()']]], - ['weno_5f3_2180',['Weno_3',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70ada35597e5f00fa867fe6e39d651a2195',1,'IndexDefines.H']]], - ['weno_5f3mzq_2181',['Weno_3MZQ',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70af8b942d20ed08b25df71ea1c87244210',1,'IndexDefines.H']]], - ['weno_5f3z_2182',['Weno_3Z',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70a9c29b64a7627155706a1cd93682b4351',1,'IndexDefines.H']]], - ['weno_5f5_2183',['Weno_5',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70af2429e8de544f3ebd7c9668e3dbebaa8',1,'IndexDefines.H']]], - ['weno_5f5z_2184',['Weno_5Z',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70aeb75f5943c7837da80e2048f2b344efc',1,'IndexDefines.H']]], - ['weno_5fmzq3_2185',['WENO_MZQ3',['../structWENO__MZQ3.html',1,'WENO_MZQ3'],['../structWENO__MZQ3.html#a9d80ce41fb8ce4487f97fe4448fcb131',1,'WENO_MZQ3::WENO_MZQ3()']]], - ['weno_5fz3_2186',['WENO_Z3',['../structWENO__Z3.html',1,'WENO_Z3'],['../structWENO__Z3.html#a810a42fb5036957a15fd24569248f814',1,'WENO_Z3::WENO_Z3()']]], - ['weno_5fz5_2187',['WENO_Z5',['../structWENO__Z5.html#ab1358af1406351c440ca130640812f6d',1,'WENO_Z5::WENO_Z5()'],['../structWENO__Z5.html',1,'WENO_Z5']]], - ['wetdens_5fm_2188',['wetdens_m',['../classMam4__aer.html#aba67cb233002e4fd50c766e73ec3d022',1,'Mam4_aer']]], - ['wfromomega_2189',['WFromOmega',['../TerrainMetrics_8H.html#a53ec395d493c2308315f7512c5438087',1,'WFromOmega(int i, int j, int k, amrex::Real omega, amrex::Real u, amrex::Real v, const amrex::Array4< const amrex::Real > &z_nd, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxInv): TerrainMetrics.H'],['../TerrainMetrics_8H.html#afcf8f856b0f93b149c115ca1ff240039',1,'WFromOmega(int i, int j, int k, amrex::Real omega, const amrex::Array4< const amrex::Real > &u_arr, const amrex::Array4< const amrex::Real > &v_arr, const amrex::Array4< const amrex::Real > &z_nd, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxInv): TerrainMetrics.H']]], - ['wgtn_2190',['wgtn',['../structLinInterp_1_1InterpType.html#aa3befaac92860602bab896110eeb65da',1,'LinInterp::InterpType']]], - ['wgts_2191',['wgts',['../structLinInterp_1_1InterpType.html#a445ddb0a782f40cab78521e5fdc3bd8b',1,'LinInterp::InterpType']]], - ['wind_5fspeed_2192',['wind_speed',['../classEWP.html#a30275b7045b523cfe7afb5683f66d87a',1,'EWP::wind_speed()'],['../classWindFarm.html#a5d1dbc2f5df3a2ee2b239f04b82a2c6b',1,'WindFarm::wind_speed()'],['../classSimpleAD.html#a171f86e19e21f7c5632ca2c459d489f5',1,'SimpleAD::wind_speed()'],['../classFitch.html#aed06c922f243b8a80c17d17770430af5',1,'Fitch::wind_speed()']]], - ['windfarm_2193',['WindFarm',['../classWindFarm.html#a3248ba59be840e23843bebe9b2c82f36',1,'WindFarm::WindFarm()'],['../classWindFarm.html#aa029a9a7efa768d39849b4fb27ab5eeb',1,'WindFarm::WindFarm(int nlev, const WindFarmType &a_windfarm_type)'],['../classWindFarm.html',1,'WindFarm']]], - ['windfarm_2eh_2194',['WindFarm.H',['../WindFarm_8H.html',1,'']]], - ['windfarm_5floc_5ftable_2195',['windfarm_loc_table',['../structSolverChoice.html#a44bc0227f088664e4e2c1090ebb1381d',1,'SolverChoice']]], - ['windfarm_5floc_5ftype_2196',['windfarm_loc_type',['../structSolverChoice.html#a54214b71edb43f251f04b79281c39375',1,'SolverChoice']]], - ['windfarm_5fspec_5ftable_2197',['windfarm_spec_table',['../structSolverChoice.html#a34c427126677860aa8acad633e6fb2be',1,'SolverChoice']]], - ['windfarm_5ftype_2198',['windfarm_type',['../structSolverChoice.html#ac0a723e8797cdc0fe06b3fc781fca645',1,'SolverChoice']]], - ['windfarmloctype_2199',['WindFarmLocType',['../DataStruct_8H.html#acc2aa74379de57a98956ae09f0a11c9b',1,'DataStruct.H']]], - ['windfarmtype_2200',['WindFarmType',['../DataStruct_8H.html#a5930188cdc2dd4def9ce58fdf5f46847',1,'DataStruct.H']]], - ['wrfbdy_5fcompute_5flaplacian_5frelaxation_2201',['wrfbdy_compute_laplacian_relaxation',['../Utils_8H.html#af0d5ce71ebff8b1ef263dbaccfaf7758',1,'Utils.H']]], - ['wrfbdy_5fset_5frhs_5fin_5fspec_5fregion_2202',['wrfbdy_set_rhs_in_spec_region',['../Utils_8H.html#a07e79832d9bdb9c05a939bee38a06b9c',1,'Utils.H']]], - ['wrfbdyvars_2203',['WRFBdyVars',['../namespaceWRFBdyVars.html',1,'']]], - ['write_5f1d_5fprofiles_2204',['write_1D_profiles',['../classERF.html#a55eae94c5363e227b571739738bb26b7',1,'ERF']]], - ['write_5f1d_5fprofiles_5fstag_2205',['write_1D_profiles_stag',['../classERF.html#a39efa3a0f3ae3deb7a43f4ce110ee49a',1,'ERF']]], - ['write_5factuator_5fdisks_5fvtk_2206',['write_actuator_disks_vtk',['../classWindFarm.html#a0228aae26b6b0737cfba12ab47bbe619',1,'WindFarm']]], - ['write_5faverages_2207',['write_averages',['../classMOSTAverage.html#ac37b71ce655ea973ad6fc4c564b040c1',1,'MOSTAverage']]], - ['write_5fk_5findices_2208',['write_k_indices',['../classMOSTAverage.html#a612fdb06ff433e33c717198c7e3e4b0b',1,'MOSTAverage']]], - ['write_5fnorm_5findices_2209',['write_norm_indices',['../classMOSTAverage.html#ab886a0b96314880c4769318c81b23fbb',1,'MOSTAverage']]], - ['write_5fplanes_2210',['write_planes',['../classWriteBndryPlanes.html#a1010dd3e951cad55702ae47607f8dd1e',1,'WriteBndryPlanes']]], - ['write_5fturbine_5flocations_5fvtk_2211',['write_turbine_locations_vtk',['../classWindFarm.html#ad777d1138832963ea3158ec66c86e0c7',1,'WindFarm']]], - ['write_5fxz_5fpositions_2212',['write_xz_positions',['../classMOSTAverage.html#a221a026c642af21a051b05b2b4ea763a',1,'MOSTAverage']]], - ['writebndryplanes_2213',['WriteBndryPlanes',['../classWriteBndryPlanes.html#a460f7f20cb59e7f2f8546ebf423585d5',1,'WriteBndryPlanes::WriteBndryPlanes()'],['../classWriteBndryPlanes.html',1,'WriteBndryPlanes']]], - ['writebuildinfo_2214',['writeBuildInfo',['../classERF.html#ae6afed5b3a72ca80ccf0d791b08516aa',1,'ERF']]], - ['writecheckpointfile_2215',['WriteCheckpointFile',['../classERF.html#ad101fd46096db2d6b21544bfede6551f',1,'ERF']]], - ['writeebsurface_2ecpp_2216',['writeEBsurface.cpp',['../writeEBsurface_8cpp.html',1,'']]], - ['writegenericplotfileheaderwithterrain_2217',['WriteGenericPlotfileHeaderWithTerrain',['../classERF.html#a16e49fd65c68e2afc2140bd9e97bcbe9',1,'ERF']]], - ['writejobinfo_2218',['writeJobInfo',['../classERF.html#aa2d8099655a8779836e63e3e98ea4372',1,'ERF']]], - ['writejobinfo_2ecpp_2219',['writeJobInfo.cpp',['../writeJobInfo_8cpp.html',1,'']]], - ['writemultilevelplotfilewithterrain_2220',['WriteMultiLevelPlotfileWithTerrain',['../classERF.html#a898410553492b2add00a72374dcec6ba',1,'ERF']]], - ['writenow_2221',['writeNow',['../classERF.html#af2e4de4eaa0f93149c1aefd58dc7068a',1,'ERF']]], - ['writeplotfile_2222',['WritePlotFile',['../classERF.html#a0b0b4140e117163895e5e2c89a68d12a',1,'ERF']]], - ['wv_5fsat_5fqsat_5fice_2223',['wv_sat_qsat_ice',['../classSatMethods.html#a9a256423ef50446cfdf6d4dcc1c1f73b',1,'SatMethods']]], - ['wv_5fsat_5fqsat_5ftrans_2224',['wv_sat_qsat_trans',['../classSatMethods.html#a8668cfc2892409c9aaeb26762486ac50',1,'SatMethods']]], - ['wv_5fsat_5fqsat_5fwater_2225',['wv_sat_qsat_water',['../classSatMethods.html#a97d1392753f7f866850e99c89c815bcf',1,'SatMethods']]], - ['wv_5fsat_5fsvp_5fice_2226',['wv_sat_svp_ice',['../classSatMethods.html#add2fde8076c60c19ed9f4f78c9891e0e',1,'SatMethods']]], - ['wv_5fsat_5fsvp_5fto_5fqsat_2227',['wv_sat_svp_to_qsat',['../classSatMethods.html#a25e9dd28dcfcfd4e060472815e8389fa',1,'SatMethods']]], - ['wv_5fsat_5fsvp_5ftrans_2228',['wv_sat_svp_trans',['../classSatMethods.html#ac2fa5e55257c6021e9e7fd897f4950b7',1,'SatMethods']]], - ['wv_5fsat_5fsvp_5fwater_2229',['wv_sat_svp_water',['../classSatMethods.html#a1c4bb9729c75dd1160d45ae638635766',1,'SatMethods']]] + ['water_5frefindex_5ffile_2173',['water_refindex_file',['../classMam4__aer.html#a57f3e715abe0988dd7179e11ce4bdcff',1,'Mam4_aer']]], + ['water_5fvapor_5fsaturation_2eh_2174',['Water_vapor_saturation.H',['../Water__vapor__saturation_8H.html',1,'']]], + ['watervaporsat_2175',['WaterVaporSat',['../classWaterVaporSat.html',1,'']]], + ['wave_5fcoupled_2176',['WAVE_COUPLED',['../classABLMost.html#ae825f96c2d098b3e070642a74e6a3f13a3e1545d84d0cc7da6edf47adda8a80f9',1,'ABLMost']]], + ['wavenum_5fhigh_2177',['wavenum_high',['../classRadConstants.html#a06d010a733e82bb2e8a6651c6e92cf51',1,'RadConstants']]], + ['wavenum_5flow_2178',['wavenum_low',['../classRadConstants.html#ab658087eff73ea76e37a41701497b79d',1,'RadConstants']]], + ['wavenumber1_5flongwave_2179',['wavenumber1_longwave',['../classRadConstants.html#add60bb42895c11810559d8bb753c1e63',1,'RadConstants']]], + ['wavenumber2_5flongwave_2180',['wavenumber2_longwave',['../classRadConstants.html#a86731ed9c7d8c8f4b269f79606c89ba1',1,'RadConstants']]], + ['wbar_2181',['wbar',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239a3d8bd6001a2421b06c3ec4e9f2dcdffd',1,'DataStruct.H']]], + ['weno3_2182',['WENO3',['../structWENO3.html',1,'WENO3'],['../structWENO3.html#aa02f985763b5a70539e23704c5eb63f5',1,'WENO3::WENO3()']]], + ['weno5_2183',['WENO5',['../structWENO5.html',1,'WENO5'],['../structWENO5.html#a912e48be65b9a2c9f3b774fe4188b611',1,'WENO5::WENO5()']]], + ['weno_5f3_2184',['Weno_3',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70ada35597e5f00fa867fe6e39d651a2195',1,'IndexDefines.H']]], + ['weno_5f3mzq_2185',['Weno_3MZQ',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70af8b942d20ed08b25df71ea1c87244210',1,'IndexDefines.H']]], + ['weno_5f3z_2186',['Weno_3Z',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70a9c29b64a7627155706a1cd93682b4351',1,'IndexDefines.H']]], + ['weno_5f5_2187',['Weno_5',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70af2429e8de544f3ebd7c9668e3dbebaa8',1,'IndexDefines.H']]], + ['weno_5f5z_2188',['Weno_5Z',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70aeb75f5943c7837da80e2048f2b344efc',1,'IndexDefines.H']]], + ['weno_5fmzq3_2189',['WENO_MZQ3',['../structWENO__MZQ3.html',1,'WENO_MZQ3'],['../structWENO__MZQ3.html#a9d80ce41fb8ce4487f97fe4448fcb131',1,'WENO_MZQ3::WENO_MZQ3()']]], + ['weno_5fz3_2190',['WENO_Z3',['../structWENO__Z3.html',1,'WENO_Z3'],['../structWENO__Z3.html#a810a42fb5036957a15fd24569248f814',1,'WENO_Z3::WENO_Z3()']]], + ['weno_5fz5_2191',['WENO_Z5',['../structWENO__Z5.html#ab1358af1406351c440ca130640812f6d',1,'WENO_Z5::WENO_Z5()'],['../structWENO__Z5.html',1,'WENO_Z5']]], + ['wetdens_5fm_2192',['wetdens_m',['../classMam4__aer.html#aba67cb233002e4fd50c766e73ec3d022',1,'Mam4_aer']]], + ['wfromomega_2193',['WFromOmega',['../TerrainMetrics_8H.html#a53ec395d493c2308315f7512c5438087',1,'WFromOmega(int i, int j, int k, amrex::Real omega, amrex::Real u, amrex::Real v, const amrex::Array4< const amrex::Real > &z_nd, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxInv): TerrainMetrics.H'],['../TerrainMetrics_8H.html#afcf8f856b0f93b149c115ca1ff240039',1,'WFromOmega(int i, int j, int k, amrex::Real omega, const amrex::Array4< const amrex::Real > &u_arr, const amrex::Array4< const amrex::Real > &v_arr, const amrex::Array4< const amrex::Real > &z_nd, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxInv): TerrainMetrics.H']]], + ['wgtn_2194',['wgtn',['../structLinInterp_1_1InterpType.html#aa3befaac92860602bab896110eeb65da',1,'LinInterp::InterpType']]], + ['wgts_2195',['wgts',['../structLinInterp_1_1InterpType.html#a445ddb0a782f40cab78521e5fdc3bd8b',1,'LinInterp::InterpType']]], + ['wind_5fspeed_2196',['wind_speed',['../classEWP.html#a30275b7045b523cfe7afb5683f66d87a',1,'EWP::wind_speed()'],['../classWindFarm.html#a5d1dbc2f5df3a2ee2b239f04b82a2c6b',1,'WindFarm::wind_speed()'],['../classSimpleAD.html#a171f86e19e21f7c5632ca2c459d489f5',1,'SimpleAD::wind_speed()'],['../classFitch.html#aed06c922f243b8a80c17d17770430af5',1,'Fitch::wind_speed()']]], + ['windfarm_2197',['WindFarm',['../classWindFarm.html#a3248ba59be840e23843bebe9b2c82f36',1,'WindFarm::WindFarm()'],['../classWindFarm.html#aa029a9a7efa768d39849b4fb27ab5eeb',1,'WindFarm::WindFarm(int nlev, const WindFarmType &a_windfarm_type)'],['../classWindFarm.html',1,'WindFarm']]], + ['windfarm_2eh_2198',['WindFarm.H',['../WindFarm_8H.html',1,'']]], + ['windfarm_5floc_5ftable_2199',['windfarm_loc_table',['../structSolverChoice.html#a44bc0227f088664e4e2c1090ebb1381d',1,'SolverChoice']]], + ['windfarm_5floc_5ftype_2200',['windfarm_loc_type',['../structSolverChoice.html#a54214b71edb43f251f04b79281c39375',1,'SolverChoice']]], + ['windfarm_5fspec_5ftable_2201',['windfarm_spec_table',['../structSolverChoice.html#a34c427126677860aa8acad633e6fb2be',1,'SolverChoice']]], + ['windfarm_5ftype_2202',['windfarm_type',['../structSolverChoice.html#ac0a723e8797cdc0fe06b3fc781fca645',1,'SolverChoice']]], + ['windfarmloctype_2203',['WindFarmLocType',['../DataStruct_8H.html#acc2aa74379de57a98956ae09f0a11c9b',1,'DataStruct.H']]], + ['windfarmtype_2204',['WindFarmType',['../DataStruct_8H.html#a5930188cdc2dd4def9ce58fdf5f46847',1,'DataStruct.H']]], + ['wrfbdy_5fcompute_5flaplacian_5frelaxation_2205',['wrfbdy_compute_laplacian_relaxation',['../Utils_8H.html#af0d5ce71ebff8b1ef263dbaccfaf7758',1,'Utils.H']]], + ['wrfbdy_5fset_5frhs_5fin_5fspec_5fregion_2206',['wrfbdy_set_rhs_in_spec_region',['../Utils_8H.html#a07e79832d9bdb9c05a939bee38a06b9c',1,'Utils.H']]], + ['wrfbdyvars_2207',['WRFBdyVars',['../namespaceWRFBdyVars.html',1,'']]], + ['write_5f1d_5fprofiles_2208',['write_1D_profiles',['../classERF.html#a55eae94c5363e227b571739738bb26b7',1,'ERF']]], + ['write_5f1d_5fprofiles_5fstag_2209',['write_1D_profiles_stag',['../classERF.html#a39efa3a0f3ae3deb7a43f4ce110ee49a',1,'ERF']]], + ['write_5factuator_5fdisks_5fvtk_2210',['write_actuator_disks_vtk',['../classWindFarm.html#a0228aae26b6b0737cfba12ab47bbe619',1,'WindFarm']]], + ['write_5faverages_2211',['write_averages',['../classMOSTAverage.html#ac37b71ce655ea973ad6fc4c564b040c1',1,'MOSTAverage']]], + ['write_5fk_5findices_2212',['write_k_indices',['../classMOSTAverage.html#a612fdb06ff433e33c717198c7e3e4b0b',1,'MOSTAverage']]], + ['write_5fnorm_5findices_2213',['write_norm_indices',['../classMOSTAverage.html#ab886a0b96314880c4769318c81b23fbb',1,'MOSTAverage']]], + ['write_5fplanes_2214',['write_planes',['../classWriteBndryPlanes.html#a1010dd3e951cad55702ae47607f8dd1e',1,'WriteBndryPlanes']]], + ['write_5fturbine_5flocations_5fvtk_2215',['write_turbine_locations_vtk',['../classWindFarm.html#ad777d1138832963ea3158ec66c86e0c7',1,'WindFarm']]], + ['write_5fxz_5fpositions_2216',['write_xz_positions',['../classMOSTAverage.html#a221a026c642af21a051b05b2b4ea763a',1,'MOSTAverage']]], + ['writebndryplanes_2217',['WriteBndryPlanes',['../classWriteBndryPlanes.html#a460f7f20cb59e7f2f8546ebf423585d5',1,'WriteBndryPlanes::WriteBndryPlanes()'],['../classWriteBndryPlanes.html',1,'WriteBndryPlanes']]], + ['writebuildinfo_2218',['writeBuildInfo',['../classERF.html#ae6afed5b3a72ca80ccf0d791b08516aa',1,'ERF']]], + ['writecheckpointfile_2219',['WriteCheckpointFile',['../classERF.html#ad101fd46096db2d6b21544bfede6551f',1,'ERF']]], + ['writeebsurface_2ecpp_2220',['writeEBsurface.cpp',['../writeEBsurface_8cpp.html',1,'']]], + ['writegenericplotfileheaderwithterrain_2221',['WriteGenericPlotfileHeaderWithTerrain',['../classERF.html#a16e49fd65c68e2afc2140bd9e97bcbe9',1,'ERF']]], + ['writejobinfo_2222',['writeJobInfo',['../classERF.html#aa2d8099655a8779836e63e3e98ea4372',1,'ERF']]], + ['writejobinfo_2ecpp_2223',['writeJobInfo.cpp',['../writeJobInfo_8cpp.html',1,'']]], + ['writemultilevelplotfilewithterrain_2224',['WriteMultiLevelPlotfileWithTerrain',['../classERF.html#a898410553492b2add00a72374dcec6ba',1,'ERF']]], + ['writenow_2225',['writeNow',['../classERF.html#af2e4de4eaa0f93149c1aefd58dc7068a',1,'ERF']]], + ['writeplotfile_2226',['WritePlotFile',['../classERF.html#a0b0b4140e117163895e5e2c89a68d12a',1,'ERF']]], + ['wv_5fsat_5fqsat_5fice_2227',['wv_sat_qsat_ice',['../classSatMethods.html#a9a256423ef50446cfdf6d4dcc1c1f73b',1,'SatMethods']]], + ['wv_5fsat_5fqsat_5ftrans_2228',['wv_sat_qsat_trans',['../classSatMethods.html#a8668cfc2892409c9aaeb26762486ac50',1,'SatMethods']]], + ['wv_5fsat_5fqsat_5fwater_2229',['wv_sat_qsat_water',['../classSatMethods.html#a97d1392753f7f866850e99c89c815bcf',1,'SatMethods']]], + ['wv_5fsat_5fsvp_5fice_2230',['wv_sat_svp_ice',['../classSatMethods.html#add2fde8076c60c19ed9f4f78c9891e0e',1,'SatMethods']]], + ['wv_5fsat_5fsvp_5fto_5fqsat_2231',['wv_sat_svp_to_qsat',['../classSatMethods.html#a25e9dd28dcfcfd4e060472815e8389fa',1,'SatMethods']]], + ['wv_5fsat_5fsvp_5ftrans_2232',['wv_sat_svp_trans',['../classSatMethods.html#ac2fa5e55257c6021e9e7fd897f4950b7',1,'SatMethods']]], + ['wv_5fsat_5fsvp_5fwater_2233',['wv_sat_svp_water',['../classSatMethods.html#a1c4bb9729c75dd1160d45ae638635766',1,'SatMethods']]] ]; diff --git a/search/all_17.js b/search/all_17.js index 3551535de8..dd20660577 100644 --- a/search/all_17.js +++ b/search/all_17.js @@ -1,17 +1,17 @@ var searchData= [ - ['x_2230',['x',['../DataStruct_8H.html#a627f1f843904477f763577ad1460de01a9dd4e461268c8034f5c8564e155c67a6',1,'DataStruct.H']]], - ['x_5fy_2231',['x_y',['../DataStruct_8H.html#acc2aa74379de57a98956ae09f0a11c9ba52102d8e853322150c95bd20cec93d2a',1,'DataStruct.H']]], - ['xdir_2232',['XDir',['../DirectionSelector_8H.html#a68edfbe7326d0d1476e796beb668072f',1,'DirectionSelector.H']]], - ['xflux_5fimask_2233',['xflux_imask',['../classERF.html#af044f075df34caa2a530aa13e1801a5b',1,'ERF']]], - ['xhi_5fsponge_5fstart_2234',['xhi_sponge_start',['../structSpongeChoice.html#aec7c88a5686affc9c0ff6f9bb53fbd9f',1,'SpongeChoice']]], - ['xlo_2235',['xlo',['../classPlaneAverage.html#a9ed43e3c2cfd2ef0f3fb23d2097a1b6d',1,'PlaneAverage']]], - ['xlo_5fsponge_5fend_2236',['xlo_sponge_end',['../structSpongeChoice.html#a18f392fd75ac69b62674b70ee67b9c61',1,'SpongeChoice']]], - ['xloc_2237',['xloc',['../classEWP.html#a71d81573a989603580abd5dc33d85619',1,'EWP::xloc()'],['../classFitch.html#a6ee3e00c1e1678e194aa6e6e27e8b7b5',1,'Fitch::xloc()'],['../classSimpleAD.html#a6ea1373509429d435aa5fd40807586b7',1,'SimpleAD::xloc()'],['../classWindFarm.html#ac1bd117bca25527ede4ea107ad22b07c',1,'WindFarm::xloc()']]], - ['xmom_2238',['xmom',['../namespaceIntVars.html#afdaa1b64a98a711870ca86f30e7963daaf661293a5a71ca532c214929b98c0bad',1,'IntVars']]], - ['xrmax_2239',['xrmax',['../classMam4__aer.html#afe9a0c7a84cd95438887533485fcc382',1,'Mam4_aer']]], - ['xrmin_2240',['xrmin',['../classMam4__aer.html#aa8d09180d0858fe4465698618a2a7391',1,'Mam4_aer']]], - ['xvel_2241',['xvel',['../namespaceVars.html#a161eed9b529c2108b15a09099729c3b9a2a10a6e726515894b07621908abd4c0c',1,'Vars']]], - ['xvel_5fbc_2242',['xvel_bc',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aab1782753c68aaad8632b0a7d575e57f4',1,'BCVars']]], - ['xvel_5fbc_5fdata_2243',['xvel_bc_data',['../classERF.html#a81a98263940c84b971e52fe555a7b98d',1,'ERF']]] + ['x_2234',['x',['../DataStruct_8H.html#a627f1f843904477f763577ad1460de01a9dd4e461268c8034f5c8564e155c67a6',1,'DataStruct.H']]], + ['x_5fy_2235',['x_y',['../DataStruct_8H.html#acc2aa74379de57a98956ae09f0a11c9ba52102d8e853322150c95bd20cec93d2a',1,'DataStruct.H']]], + ['xdir_2236',['XDir',['../DirectionSelector_8H.html#a68edfbe7326d0d1476e796beb668072f',1,'DirectionSelector.H']]], + ['xflux_5fimask_2237',['xflux_imask',['../classERF.html#af044f075df34caa2a530aa13e1801a5b',1,'ERF']]], + ['xhi_5fsponge_5fstart_2238',['xhi_sponge_start',['../structSpongeChoice.html#aec7c88a5686affc9c0ff6f9bb53fbd9f',1,'SpongeChoice']]], + ['xlo_2239',['xlo',['../classPlaneAverage.html#a9ed43e3c2cfd2ef0f3fb23d2097a1b6d',1,'PlaneAverage']]], + ['xlo_5fsponge_5fend_2240',['xlo_sponge_end',['../structSpongeChoice.html#a18f392fd75ac69b62674b70ee67b9c61',1,'SpongeChoice']]], + ['xloc_2241',['xloc',['../classEWP.html#a71d81573a989603580abd5dc33d85619',1,'EWP::xloc()'],['../classFitch.html#a6ee3e00c1e1678e194aa6e6e27e8b7b5',1,'Fitch::xloc()'],['../classSimpleAD.html#a6ea1373509429d435aa5fd40807586b7',1,'SimpleAD::xloc()'],['../classWindFarm.html#ac1bd117bca25527ede4ea107ad22b07c',1,'WindFarm::xloc()']]], + ['xmom_2242',['xmom',['../namespaceIntVars.html#afdaa1b64a98a711870ca86f30e7963daaf661293a5a71ca532c214929b98c0bad',1,'IntVars']]], + ['xrmax_2243',['xrmax',['../classMam4__aer.html#afe9a0c7a84cd95438887533485fcc382',1,'Mam4_aer']]], + ['xrmin_2244',['xrmin',['../classMam4__aer.html#aa8d09180d0858fe4465698618a2a7391',1,'Mam4_aer']]], + ['xvel_2245',['xvel',['../namespaceVars.html#a161eed9b529c2108b15a09099729c3b9a2a10a6e726515894b07621908abd4c0c',1,'Vars']]], + ['xvel_5fbc_2246',['xvel_bc',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aab1782753c68aaad8632b0a7d575e57f4',1,'BCVars']]], + ['xvel_5fbc_5fdata_2247',['xvel_bc_data',['../classERF.html#a81a98263940c84b971e52fe555a7b98d',1,'ERF']]] ]; diff --git a/search/all_18.js b/search/all_18.js index 31564087d8..6a88cbc892 100644 --- a/search/all_18.js +++ b/search/all_18.js @@ -1,14 +1,14 @@ var searchData= [ - ['y_2244',['y',['../DataStruct_8H.html#a627f1f843904477f763577ad1460de01a415290769594460e2e485922904f345d',1,'DataStruct.H']]], - ['ydir_2245',['YDir',['../DirectionSelector_8H.html#a92990a19f43dc3cbbbd630362d1ece71',1,'DirectionSelector.H']]], - ['yflux_5fimask_2246',['yflux_imask',['../classERF.html#aa4448d06a3e4fe9740927a636030939d',1,'ERF']]], - ['yhi_5fsponge_5fstart_2247',['yhi_sponge_start',['../structSpongeChoice.html#adacf43edb29544376743fa98ce7d8cb6',1,'SpongeChoice']]], - ['ylo_5fsponge_5fend_2248',['ylo_sponge_end',['../structSpongeChoice.html#afc444169c9f347bb2e3dd4eb99bc4158',1,'SpongeChoice']]], - ['yloc_2249',['yloc',['../classEWP.html#ad5aa60df138d71a40225791390e169e7',1,'EWP::yloc()'],['../classFitch.html#a2626dfdc3df0f209b2bcf6a265575228',1,'Fitch::yloc()'],['../classSimpleAD.html#a83857d42fc25895b88b10b52af871b3d',1,'SimpleAD::yloc()'],['../classWindFarm.html#a18280646bd55077f0a59ea45506a630b',1,'WindFarm::yloc()']]], - ['ymom_2250',['ymom',['../namespaceIntVars.html#afdaa1b64a98a711870ca86f30e7963daa2e60798bc45154a8f905b1aa228a24e5',1,'IntVars']]], - ['ysu_2251',['YSU',['../TurbStruct_8H.html#a4a079f2650ca30c787a8375ec5f17ca5ad032bccff1ff2e272cc68da5a0de09fe',1,'TurbStruct.H']]], - ['yvel_2252',['yvel',['../namespaceVars.html#a161eed9b529c2108b15a09099729c3b9a81793b83204cfa56d4683bc676fbbfb6',1,'Vars']]], - ['yvel_5fbc_2253',['yvel_bc',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa98ad22810fdfe9e585bc6481fc12454e',1,'BCVars']]], - ['yvel_5fbc_5fdata_2254',['yvel_bc_data',['../classERF.html#af1921b4091015ef81ef6531d676a6b48',1,'ERF']]] + ['y_2248',['y',['../DataStruct_8H.html#a627f1f843904477f763577ad1460de01a415290769594460e2e485922904f345d',1,'DataStruct.H']]], + ['ydir_2249',['YDir',['../DirectionSelector_8H.html#a92990a19f43dc3cbbbd630362d1ece71',1,'DirectionSelector.H']]], + ['yflux_5fimask_2250',['yflux_imask',['../classERF.html#aa4448d06a3e4fe9740927a636030939d',1,'ERF']]], + ['yhi_5fsponge_5fstart_2251',['yhi_sponge_start',['../structSpongeChoice.html#adacf43edb29544376743fa98ce7d8cb6',1,'SpongeChoice']]], + ['ylo_5fsponge_5fend_2252',['ylo_sponge_end',['../structSpongeChoice.html#afc444169c9f347bb2e3dd4eb99bc4158',1,'SpongeChoice']]], + ['yloc_2253',['yloc',['../classEWP.html#ad5aa60df138d71a40225791390e169e7',1,'EWP::yloc()'],['../classFitch.html#a2626dfdc3df0f209b2bcf6a265575228',1,'Fitch::yloc()'],['../classSimpleAD.html#a83857d42fc25895b88b10b52af871b3d',1,'SimpleAD::yloc()'],['../classWindFarm.html#a18280646bd55077f0a59ea45506a630b',1,'WindFarm::yloc()']]], + ['ymom_2254',['ymom',['../namespaceIntVars.html#afdaa1b64a98a711870ca86f30e7963daa2e60798bc45154a8f905b1aa228a24e5',1,'IntVars']]], + ['ysu_2255',['YSU',['../TurbStruct_8H.html#a4a079f2650ca30c787a8375ec5f17ca5ad032bccff1ff2e272cc68da5a0de09fe',1,'TurbStruct.H']]], + ['yvel_2256',['yvel',['../namespaceVars.html#a161eed9b529c2108b15a09099729c3b9a81793b83204cfa56d4683bc676fbbfb6',1,'Vars']]], + ['yvel_5fbc_2257',['yvel_bc',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa98ad22810fdfe9e585bc6481fc12454e',1,'BCVars']]], + ['yvel_5fbc_5fdata_2258',['yvel_bc_data',['../classERF.html#af1921b4091015ef81ef6531d676a6b48',1,'ERF']]] ]; diff --git a/search/all_19.js b/search/all_19.js index c2f7cbe339..ef86259a01 100644 --- a/search/all_19.js +++ b/search/all_19.js @@ -1,37 +1,37 @@ var searchData= [ - ['z_2255',['z',['../DataStruct_8H.html#a627f1f843904477f763577ad1460de01afbade9e36a3f36d3d676c1b808451dd7',1,'DataStruct.H']]], - ['z0_5fconst_2256',['z0_const',['../structmost__data.html#ad18b8055b6887e821efe0c37c4076d08',1,'most_data::z0_const()'],['../classABLMost.html#acfc9a08ed0d029602e2e8e99232d0149',1,'ABLMost::z0_const()']]], - ['z0_5feps_2257',['z0_eps',['../structsurface__temp__wave__coupled.html#abd39570dca269dda79fbb946df0a02ca',1,'surface_temp_wave_coupled::z0_eps()'],['../structsurface__flux__wave__coupled.html#a6cf8c26b09960af5adea37c6e7ccbb0b',1,'surface_flux_wave_coupled::z0_eps()'],['../structadiabatic__wave__coupled.html#a7cbf5ad24a59a72131bae5b57038ff72',1,'adiabatic_wave_coupled::z0_eps()']]], - ['z0_5fest_2258',['z0_est',['../Microphysics__Utils_8H.html#a5e22e7c025af17b4983d25a5b81bfd4b',1,'Microphysics_Utils.H']]], - ['z0_5fmax_2259',['z0_max',['../structadiabatic__wave__coupled.html#afb0e6712baaff337c761988f6ec42b9b',1,'adiabatic_wave_coupled::z0_max()'],['../structsurface__flux__wave__coupled.html#a4f273873e2304563f10674c497cfad30',1,'surface_flux_wave_coupled::z0_max()'],['../structsurface__temp__wave__coupled.html#aedbd53ee9bf7b4c98f5a2b88207cbb01',1,'surface_temp_wave_coupled::z0_max()']]], - ['z_5f0_2260',['z_0',['../classABLMost.html#a1301dd4cb6875c7bdf5d69126b972f91',1,'ABLMost']]], - ['z_5finp_5fsound_2261',['z_inp_sound',['../structInputSoundingData.html#a0a3d15e3959ce900c213a09230e6646c',1,'InputSoundingData']]], - ['z_5finp_5fsound_5fd_2262',['z_inp_sound_d',['../structInputSoundingData.html#aba43c1b1c5b71ca118d6967f1e4a32bb',1,'InputSoundingData']]], - ['z_5finp_5fsponge_2263',['z_inp_sponge',['../structInputSpongeData.html#ae430ab35b7ded846911bd26b0d984155',1,'InputSpongeData']]], - ['z_5fphys_5fcc_2264',['z_phys_cc',['../classERF.html#a31be0f1ae705c52c8ccc520369013284',1,'ERF']]], - ['z_5fphys_5fnd_2265',['z_phys_nd',['../classERF.html#a93e63e5af35efa564fd4195e8703f84c',1,'ERF']]], - ['z_5fphys_5fnd_5fnew_2266',['z_phys_nd_new',['../classERF.html#a4ef635c22e72c715f5703a6b95a7abe5',1,'ERF']]], - ['z_5fphys_5fnd_5fsrc_2267',['z_phys_nd_src',['../classERF.html#a30dcf40e8f104fb6b6132805d2eff47c',1,'ERF']]], - ['z_5ft_5frk_2268',['z_t_rk',['../classERF.html#a72a59614c6d5ab840b924c84d5682270',1,'ERF']]], - ['zdir_2269',['ZDir',['../DirectionSelector_8H.html#aca321ed7fddfe43ff7549b4632a3c0d1',1,'DirectionSelector.H']]], - ['zenith_2270',['zenith',['../Orbit_8H.html#a86ab981fdb3b32de3c39df4cc028fb42',1,'zenith(int &calday, amrex::MultiFab *clat, amrex::MultiFab *clon, real1d &coszrs, int &ncol, const amrex::Real &eccen, const amrex::Real &mvelpp, const amrex::Real &lambm0, const amrex::Real &obliqr, amrex::Real uniform_angle=-1.0): Orbit.H'],['../Orbit_8cpp.html#aaee034023d5a18e9dd77ea2c0dd01273',1,'zenith(int &calday, amrex::MultiFab *clat, amrex::MultiFab *clon, real1d &coszrs, int &ncol, const Real &eccen, const Real &mvelpp, const Real &lambm0, const Real &obliqr, amrex::Real uniform_angle): Orbit.cpp']]], - ['zero_5foptics_5finit_2271',['zero_optics_init',['../classPhysProp.html#af0ccfb22c5689ec73789babb1b7c448d',1,'PhysProp']]], - ['zero_5fxflux_2272',['zero_xflux',['../structAdvChoice.html#a7a086b9e2aabb65d2e5e9053e7bd6018',1,'AdvChoice']]], - ['zero_5fyflux_2273',['zero_yflux',['../structAdvChoice.html#a118575fe302e72fcd231e77be6d117a9',1,'AdvChoice']]], - ['zero_5fzflux_2274',['zero_zflux',['../structAdvChoice.html#a7da4e5242e05aeba4822b71fab596954',1,'AdvChoice']]], - ['zflux_5fimask_2275',['zflux_imask',['../classERF.html#ada098767690d194f89717b0deb3adeac',1,'ERF']]], - ['zhi_2276',['zhi',['../classRadiation.html#ac182d77504c899dee3ff639c2a8e93c6',1,'Radiation::zhi()'],['../classKessler.html#a8f1c8af54c49e78271d077456c3aa454',1,'Kessler::zhi()'],['../classSAM.html#aaf2fc082e80f1c5cc9de339ff25ca27b',1,'SAM::zhi()']]], - ['zhi_5fsponge_5fstart_2277',['zhi_sponge_start',['../structSpongeChoice.html#a5e70ccbf1d7de42a4d938416635eee36',1,'SpongeChoice']]], - ['zi_2278',['zi',['../classAerRadProps.html#ac82b4bf91bb3a23e33074e00381388e3',1,'AerRadProps::zi()'],['../classRadiation.html#a7fd0d1f49797bc9d2c248cd334b44e36',1,'Radiation::zi()']]], - ['zlevels_5fstag_2279',['zlevels_stag',['../classERF.html#a7a4d6e7887fa8f30c33a0b8899035ddb',1,'ERF']]], - ['zlo_2280',['zlo',['../structmoeng__flux.html#a32dd97697698052a006613da3a0b7e67',1,'moeng_flux::zlo()'],['../classRadiation.html#add5e5480ecd2c337c1e52e47d62ebaa0',1,'Radiation::zlo()'],['../classSAM.html#a0473906305a6eaea0bad212893b9c911',1,'SAM::zlo()'],['../classKessler.html#a02b5caebac4d5986947655feca7f0db5',1,'Kessler::zlo()'],['../structcustom__flux.html#a3b40812bce1c4be2d850abe1bbc2d208',1,'custom_flux::zlo()'],['../structdonelan__flux.html#af7428f0272064ef770035521c9c9a98b',1,'donelan_flux::zlo()']]], - ['zlo_5fsponge_5fend_2281',['zlo_sponge_end',['../structSpongeChoice.html#a1a79f8e32354ec98857597ddabfe884e',1,'SpongeChoice']]], - ['zmid_2282',['zmid',['../classSAM.html#a5a5228929f2e9032152efe0a5cb9476b',1,'SAM']]], - ['zmom_2283',['zmom',['../namespaceIntVars.html#afdaa1b64a98a711870ca86f30e7963daaaab25f707cae69bfadac2abcd17a2188',1,'IntVars']]], - ['zref_2284',['zref',['../structmost__data.html#a1acd5276639042ca0834c56656302ea6',1,'most_data']]], - ['zsurf_2285',['zsurf',['../structSolverChoice.html#aa4659e9babdc5d7327266f967d9a80ff',1,'SolverChoice']]], - ['zvel_2286',['zvel',['../namespaceVars.html#a161eed9b529c2108b15a09099729c3b9a48ee63b17bc216e9661511c33c68bd8b',1,'Vars']]], - ['zvel_5fbc_2287',['zvel_bc',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa03b35ec9e83f34bb1349a86965d34e34',1,'BCVars']]], - ['zvel_5fbc_5fdata_2288',['zvel_bc_data',['../classERF.html#a7eaa274e3e2193a19bfbe3e684bf692b',1,'ERF']]] + ['z_2259',['z',['../DataStruct_8H.html#a627f1f843904477f763577ad1460de01afbade9e36a3f36d3d676c1b808451dd7',1,'DataStruct.H']]], + ['z0_5fconst_2260',['z0_const',['../structmost__data.html#ad18b8055b6887e821efe0c37c4076d08',1,'most_data::z0_const()'],['../classABLMost.html#acfc9a08ed0d029602e2e8e99232d0149',1,'ABLMost::z0_const()']]], + ['z0_5feps_2261',['z0_eps',['../structsurface__temp__wave__coupled.html#abd39570dca269dda79fbb946df0a02ca',1,'surface_temp_wave_coupled::z0_eps()'],['../structsurface__flux__wave__coupled.html#a6cf8c26b09960af5adea37c6e7ccbb0b',1,'surface_flux_wave_coupled::z0_eps()'],['../structadiabatic__wave__coupled.html#a7cbf5ad24a59a72131bae5b57038ff72',1,'adiabatic_wave_coupled::z0_eps()']]], + ['z0_5fest_2262',['z0_est',['../Microphysics__Utils_8H.html#a5e22e7c025af17b4983d25a5b81bfd4b',1,'Microphysics_Utils.H']]], + ['z0_5fmax_2263',['z0_max',['../structadiabatic__wave__coupled.html#afb0e6712baaff337c761988f6ec42b9b',1,'adiabatic_wave_coupled::z0_max()'],['../structsurface__flux__wave__coupled.html#a4f273873e2304563f10674c497cfad30',1,'surface_flux_wave_coupled::z0_max()'],['../structsurface__temp__wave__coupled.html#aedbd53ee9bf7b4c98f5a2b88207cbb01',1,'surface_temp_wave_coupled::z0_max()']]], + ['z_5f0_2264',['z_0',['../classABLMost.html#a1301dd4cb6875c7bdf5d69126b972f91',1,'ABLMost']]], + ['z_5finp_5fsound_2265',['z_inp_sound',['../structInputSoundingData.html#a0a3d15e3959ce900c213a09230e6646c',1,'InputSoundingData']]], + ['z_5finp_5fsound_5fd_2266',['z_inp_sound_d',['../structInputSoundingData.html#aba43c1b1c5b71ca118d6967f1e4a32bb',1,'InputSoundingData']]], + ['z_5finp_5fsponge_2267',['z_inp_sponge',['../structInputSpongeData.html#ae430ab35b7ded846911bd26b0d984155',1,'InputSpongeData']]], + ['z_5fphys_5fcc_2268',['z_phys_cc',['../classERF.html#a31be0f1ae705c52c8ccc520369013284',1,'ERF']]], + ['z_5fphys_5fnd_2269',['z_phys_nd',['../classERF.html#a93e63e5af35efa564fd4195e8703f84c',1,'ERF']]], + ['z_5fphys_5fnd_5fnew_2270',['z_phys_nd_new',['../classERF.html#a4ef635c22e72c715f5703a6b95a7abe5',1,'ERF']]], + ['z_5fphys_5fnd_5fsrc_2271',['z_phys_nd_src',['../classERF.html#a30dcf40e8f104fb6b6132805d2eff47c',1,'ERF']]], + ['z_5ft_5frk_2272',['z_t_rk',['../classERF.html#a72a59614c6d5ab840b924c84d5682270',1,'ERF']]], + ['zdir_2273',['ZDir',['../DirectionSelector_8H.html#aca321ed7fddfe43ff7549b4632a3c0d1',1,'DirectionSelector.H']]], + ['zenith_2274',['zenith',['../Orbit_8H.html#a86ab981fdb3b32de3c39df4cc028fb42',1,'zenith(int &calday, amrex::MultiFab *clat, amrex::MultiFab *clon, real1d &coszrs, int &ncol, const amrex::Real &eccen, const amrex::Real &mvelpp, const amrex::Real &lambm0, const amrex::Real &obliqr, amrex::Real uniform_angle=-1.0): Orbit.H'],['../Orbit_8cpp.html#aaee034023d5a18e9dd77ea2c0dd01273',1,'zenith(int &calday, amrex::MultiFab *clat, amrex::MultiFab *clon, real1d &coszrs, int &ncol, const Real &eccen, const Real &mvelpp, const Real &lambm0, const Real &obliqr, amrex::Real uniform_angle): Orbit.cpp']]], + ['zero_5foptics_5finit_2275',['zero_optics_init',['../classPhysProp.html#af0ccfb22c5689ec73789babb1b7c448d',1,'PhysProp']]], + ['zero_5fxflux_2276',['zero_xflux',['../structAdvChoice.html#a7a086b9e2aabb65d2e5e9053e7bd6018',1,'AdvChoice']]], + ['zero_5fyflux_2277',['zero_yflux',['../structAdvChoice.html#a118575fe302e72fcd231e77be6d117a9',1,'AdvChoice']]], + ['zero_5fzflux_2278',['zero_zflux',['../structAdvChoice.html#a7da4e5242e05aeba4822b71fab596954',1,'AdvChoice']]], + ['zflux_5fimask_2279',['zflux_imask',['../classERF.html#ada098767690d194f89717b0deb3adeac',1,'ERF']]], + ['zhi_2280',['zhi',['../classRadiation.html#ac182d77504c899dee3ff639c2a8e93c6',1,'Radiation::zhi()'],['../classKessler.html#a8f1c8af54c49e78271d077456c3aa454',1,'Kessler::zhi()'],['../classSAM.html#aaf2fc082e80f1c5cc9de339ff25ca27b',1,'SAM::zhi()']]], + ['zhi_5fsponge_5fstart_2281',['zhi_sponge_start',['../structSpongeChoice.html#a5e70ccbf1d7de42a4d938416635eee36',1,'SpongeChoice']]], + ['zi_2282',['zi',['../classAerRadProps.html#ac82b4bf91bb3a23e33074e00381388e3',1,'AerRadProps::zi()'],['../classRadiation.html#a7fd0d1f49797bc9d2c248cd334b44e36',1,'Radiation::zi()']]], + ['zlevels_5fstag_2283',['zlevels_stag',['../classERF.html#a7a4d6e7887fa8f30c33a0b8899035ddb',1,'ERF']]], + ['zlo_2284',['zlo',['../structmoeng__flux.html#a32dd97697698052a006613da3a0b7e67',1,'moeng_flux::zlo()'],['../classRadiation.html#add5e5480ecd2c337c1e52e47d62ebaa0',1,'Radiation::zlo()'],['../classSAM.html#a0473906305a6eaea0bad212893b9c911',1,'SAM::zlo()'],['../classKessler.html#a02b5caebac4d5986947655feca7f0db5',1,'Kessler::zlo()'],['../structcustom__flux.html#a3b40812bce1c4be2d850abe1bbc2d208',1,'custom_flux::zlo()'],['../structdonelan__flux.html#af7428f0272064ef770035521c9c9a98b',1,'donelan_flux::zlo()']]], + ['zlo_5fsponge_5fend_2285',['zlo_sponge_end',['../structSpongeChoice.html#a1a79f8e32354ec98857597ddabfe884e',1,'SpongeChoice']]], + ['zmid_2286',['zmid',['../classSAM.html#a5a5228929f2e9032152efe0a5cb9476b',1,'SAM']]], + ['zmom_2287',['zmom',['../namespaceIntVars.html#afdaa1b64a98a711870ca86f30e7963daaaab25f707cae69bfadac2abcd17a2188',1,'IntVars']]], + ['zref_2288',['zref',['../structmost__data.html#a1acd5276639042ca0834c56656302ea6',1,'most_data']]], + ['zsurf_2289',['zsurf',['../structSolverChoice.html#aa4659e9babdc5d7327266f967d9a80ff',1,'SolverChoice']]], + ['zvel_2290',['zvel',['../namespaceVars.html#a161eed9b529c2108b15a09099729c3b9a48ee63b17bc216e9661511c33c68bd8b',1,'Vars']]], + ['zvel_5fbc_2291',['zvel_bc',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa03b35ec9e83f34bb1349a86965d34e34',1,'BCVars']]], + ['zvel_5fbc_5fdata_2292',['zvel_bc_data',['../classERF.html#a7eaa274e3e2193a19bfbe3e684bf692b',1,'ERF']]] ]; diff --git a/search/all_1a.js b/search/all_1a.js index 855162ff0b..af712df3e4 100644 --- a/search/all_1a.js +++ b/search/all_1a.js @@ -1,40 +1,40 @@ var searchData= [ - ['_7eaerradprops_2289',['~AerRadProps',['../classAerRadProps.html#aeb46a505acde8e7bd4a4b4d15e8e1792',1,'AerRadProps']]], - ['_7ecif_2290',['~CIF',['../classCIF.html#ad0e927942bcf9a2db3b073c979f1ef19',1,'CIF']]], - ['_7ecloudradprops_2291',['~CloudRadProps',['../classCloudRadProps.html#a35a276009636e1ac17beeb5343656e29',1,'CloudRadProps']]], - ['_7eerf_2292',['~ERF',['../classERF.html#a30901583bd41e7bf4dddb3c1ea329dfe',1,'ERF']]], - ['_7eerfphysbcfunct_5fcons_2293',['~ERFPhysBCFunct_cons',['../classERFPhysBCFunct__cons.html#ab1f895ffdda9477b380a088bdf48a6de',1,'ERFPhysBCFunct_cons']]], - ['_7eerfphysbcfunct_5fu_2294',['~ERFPhysBCFunct_u',['../classERFPhysBCFunct__u.html#aab6427322211c297482f81b39a03ea03',1,'ERFPhysBCFunct_u']]], - ['_7eerfphysbcfunct_5fv_2295',['~ERFPhysBCFunct_v',['../classERFPhysBCFunct__v.html#a684936c8b176bfd48a383ae1de421777',1,'ERFPhysBCFunct_v']]], - ['_7eerfphysbcfunct_5fw_2296',['~ERFPhysBCFunct_w',['../classERFPhysBCFunct__w.html#ae949a3df422d9d5082146a46c9eca565',1,'ERFPhysBCFunct_w']]], - ['_7eerfphysbcfunct_5fw_5fno_5fterrain_2297',['~ERFPhysBCFunct_w_no_terrain',['../classERFPhysBCFunct__w__no__terrain.html#ac503f5e78b39c513480007824709c573',1,'ERFPhysBCFunct_w_no_terrain']]], - ['_7eeulerianmicrophysics_2298',['~EulerianMicrophysics',['../classEulerianMicrophysics.html#a2eb29d168749af2ea18fc7d67dc5259c',1,'EulerianMicrophysics']]], - ['_7eewp_2299',['~EWP',['../classEWP.html#ad500c0f4245245d407e31633ec7cecff',1,'EWP']]], - ['_7efitch_2300',['~Fitch',['../classFitch.html#af9bc97ca62d0611ab2a300992ca8304d',1,'Fitch']]], - ['_7eintersectioncif_2301',['~IntersectionCIF',['../classIntersectionCIF.html#ad4d1305542a68ced637b6e53e2f70102',1,'IntersectionCIF']]], - ['_7ekessler_2302',['~Kessler',['../classKessler.html#a46902fef513cf7298643ee5cc12594bb',1,'Kessler']]], - ['_7elandsurface_2303',['~LandSurface',['../classLandSurface.html#a39ae5ba26a0bd728afd9cf80a4a5fbd6',1,'LandSurface']]], - ['_7emicrophysics_2304',['~Microphysics',['../classMicrophysics.html#a09486c3bc292538d5a26683fb1e19451',1,'Microphysics']]], - ['_7emm5_2305',['~MM5',['../classMM5.html#aa1428d274d51e6db03618151c2fd91cb',1,'MM5']]], - ['_7emostaverage_2306',['~MOSTAverage',['../classMOSTAverage.html#ac755f71a35f1231c8add20993364832a',1,'MOSTAverage']]], - ['_7emrisplitintegrator_2307',['~MRISplitIntegrator',['../classMRISplitIntegrator.html#acdfcd0a0bca3c145e2305248f0da36a0',1,'MRISplitIntegrator']]], - ['_7emultiblockcontainer_2308',['~MultiBlockContainer',['../classMultiBlockContainer.html#abbe61ab484b52aaf83b1bc8e986aee84',1,'MultiBlockContainer']]], - ['_7encfile_2309',['~NCFile',['../classncutils_1_1NCFile.html#a4c1663f24f84dbc74152d7f040910a22',1,'ncutils::NCFile']]], - ['_7endarray_2310',['~NDArray',['../structNDArray.html#afb8008f414c4404e3a6b425c12401d9d',1,'NDArray']]], - ['_7enullmoist_2311',['~NullMoist',['../classNullMoist.html#a75e2d77cb28efa62759818d066b53bb9',1,'NullMoist']]], - ['_7enullsurf_2312',['~NullSurf',['../classNullSurf.html#afc622f13e248dbe6bc5843241c4afb0f',1,'NullSurf']]], - ['_7enullwindfarm_2313',['~NullWindFarm',['../classNullWindFarm.html#a0dbf7ce260bc3c29e53b3650a0a4c40f',1,'NullWindFarm']]], - ['_7eoptics_2314',['~Optics',['../classOptics.html#ae33a3d262417ad9bb96adc3a32519e5f',1,'Optics']]], - ['_7eplaneaverage_2315',['~PlaneAverage',['../classPlaneAverage.html#a961decb14c2137f36e17ceeaf560b452',1,'PlaneAverage']]], - ['_7eproblembase_2316',['~ProblemBase',['../classProblemBase.html#ac7201619fcd9464f851b0cae82dfbcd1',1,'ProblemBase']]], - ['_7eradiation_2317',['~Radiation',['../classRadiation.html#acde23acb9e9f7061d40634fbc24f330d',1,'Radiation']]], - ['_7errtmgp_2318',['~Rrtmgp',['../classRrtmgp.html#aa5d1fac989fde988d4f192d3f64395ee',1,'Rrtmgp']]], - ['_7esam_2319',['~SAM',['../classSAM.html#a301ce0c7f6cff77d6388c2d706e73a42',1,'SAM']]], - ['_7esimplead_2320',['~SimpleAD',['../classSimpleAD.html#affe2efa65acb68bd027a69ad1410253a',1,'SimpleAD']]], - ['_7eslm_2321',['~SLM',['../classSLM.html#a2db94368b4de4bf176393a628fdbd6a3',1,'SLM']]], - ['_7etimeinterpolateddata_2322',['~TimeInterpolatedData',['../structTimeInterpolatedData.html#af14b2d5c5d55331a4dbc9cec9288af53',1,'TimeInterpolatedData']]], - ['_7eturbulentperturbation_2323',['~TurbulentPerturbation',['../structTurbulentPerturbation.html#ad1464c6ce0bc3a576f9df395f39839ce',1,'TurbulentPerturbation']]], - ['_7eunioncif_2324',['~UnionCIF',['../classUnionCIF.html#afddc15ff44e8e7505b919b16616873cd',1,'UnionCIF']]], - ['_7ewindfarm_2325',['~WindFarm',['../classWindFarm.html#a1be0e27ac213ad5faaf2fb2e114eab48',1,'WindFarm']]] + ['_7eaerradprops_2293',['~AerRadProps',['../classAerRadProps.html#aeb46a505acde8e7bd4a4b4d15e8e1792',1,'AerRadProps']]], + ['_7ecif_2294',['~CIF',['../classCIF.html#ad0e927942bcf9a2db3b073c979f1ef19',1,'CIF']]], + ['_7ecloudradprops_2295',['~CloudRadProps',['../classCloudRadProps.html#a35a276009636e1ac17beeb5343656e29',1,'CloudRadProps']]], + ['_7eerf_2296',['~ERF',['../classERF.html#a30901583bd41e7bf4dddb3c1ea329dfe',1,'ERF']]], + ['_7eerfphysbcfunct_5fcons_2297',['~ERFPhysBCFunct_cons',['../classERFPhysBCFunct__cons.html#ab1f895ffdda9477b380a088bdf48a6de',1,'ERFPhysBCFunct_cons']]], + ['_7eerfphysbcfunct_5fu_2298',['~ERFPhysBCFunct_u',['../classERFPhysBCFunct__u.html#aab6427322211c297482f81b39a03ea03',1,'ERFPhysBCFunct_u']]], + ['_7eerfphysbcfunct_5fv_2299',['~ERFPhysBCFunct_v',['../classERFPhysBCFunct__v.html#a684936c8b176bfd48a383ae1de421777',1,'ERFPhysBCFunct_v']]], + ['_7eerfphysbcfunct_5fw_2300',['~ERFPhysBCFunct_w',['../classERFPhysBCFunct__w.html#ae949a3df422d9d5082146a46c9eca565',1,'ERFPhysBCFunct_w']]], + ['_7eerfphysbcfunct_5fw_5fno_5fterrain_2301',['~ERFPhysBCFunct_w_no_terrain',['../classERFPhysBCFunct__w__no__terrain.html#ac503f5e78b39c513480007824709c573',1,'ERFPhysBCFunct_w_no_terrain']]], + ['_7eeulerianmicrophysics_2302',['~EulerianMicrophysics',['../classEulerianMicrophysics.html#a2eb29d168749af2ea18fc7d67dc5259c',1,'EulerianMicrophysics']]], + ['_7eewp_2303',['~EWP',['../classEWP.html#ad500c0f4245245d407e31633ec7cecff',1,'EWP']]], + ['_7efitch_2304',['~Fitch',['../classFitch.html#af9bc97ca62d0611ab2a300992ca8304d',1,'Fitch']]], + ['_7eintersectioncif_2305',['~IntersectionCIF',['../classIntersectionCIF.html#ad4d1305542a68ced637b6e53e2f70102',1,'IntersectionCIF']]], + ['_7ekessler_2306',['~Kessler',['../classKessler.html#a46902fef513cf7298643ee5cc12594bb',1,'Kessler']]], + ['_7elandsurface_2307',['~LandSurface',['../classLandSurface.html#a39ae5ba26a0bd728afd9cf80a4a5fbd6',1,'LandSurface']]], + ['_7emicrophysics_2308',['~Microphysics',['../classMicrophysics.html#a09486c3bc292538d5a26683fb1e19451',1,'Microphysics']]], + ['_7emm5_2309',['~MM5',['../classMM5.html#aa1428d274d51e6db03618151c2fd91cb',1,'MM5']]], + ['_7emostaverage_2310',['~MOSTAverage',['../classMOSTAverage.html#ac755f71a35f1231c8add20993364832a',1,'MOSTAverage']]], + ['_7emrisplitintegrator_2311',['~MRISplitIntegrator',['../classMRISplitIntegrator.html#acdfcd0a0bca3c145e2305248f0da36a0',1,'MRISplitIntegrator']]], + ['_7emultiblockcontainer_2312',['~MultiBlockContainer',['../classMultiBlockContainer.html#abbe61ab484b52aaf83b1bc8e986aee84',1,'MultiBlockContainer']]], + ['_7encfile_2313',['~NCFile',['../classncutils_1_1NCFile.html#a4c1663f24f84dbc74152d7f040910a22',1,'ncutils::NCFile']]], + ['_7endarray_2314',['~NDArray',['../structNDArray.html#afb8008f414c4404e3a6b425c12401d9d',1,'NDArray']]], + ['_7enullmoist_2315',['~NullMoist',['../classNullMoist.html#a75e2d77cb28efa62759818d066b53bb9',1,'NullMoist']]], + ['_7enullsurf_2316',['~NullSurf',['../classNullSurf.html#afc622f13e248dbe6bc5843241c4afb0f',1,'NullSurf']]], + ['_7enullwindfarm_2317',['~NullWindFarm',['../classNullWindFarm.html#a0dbf7ce260bc3c29e53b3650a0a4c40f',1,'NullWindFarm']]], + ['_7eoptics_2318',['~Optics',['../classOptics.html#ae33a3d262417ad9bb96adc3a32519e5f',1,'Optics']]], + ['_7eplaneaverage_2319',['~PlaneAverage',['../classPlaneAverage.html#a961decb14c2137f36e17ceeaf560b452',1,'PlaneAverage']]], + ['_7eproblembase_2320',['~ProblemBase',['../classProblemBase.html#ac7201619fcd9464f851b0cae82dfbcd1',1,'ProblemBase']]], + ['_7eradiation_2321',['~Radiation',['../classRadiation.html#acde23acb9e9f7061d40634fbc24f330d',1,'Radiation']]], + ['_7errtmgp_2322',['~Rrtmgp',['../classRrtmgp.html#aa5d1fac989fde988d4f192d3f64395ee',1,'Rrtmgp']]], + ['_7esam_2323',['~SAM',['../classSAM.html#a301ce0c7f6cff77d6388c2d706e73a42',1,'SAM']]], + ['_7esimplead_2324',['~SimpleAD',['../classSimpleAD.html#affe2efa65acb68bd027a69ad1410253a',1,'SimpleAD']]], + ['_7eslm_2325',['~SLM',['../classSLM.html#a2db94368b4de4bf176393a628fdbd6a3',1,'SLM']]], + ['_7etimeinterpolateddata_2326',['~TimeInterpolatedData',['../structTimeInterpolatedData.html#af14b2d5c5d55331a4dbc9cec9288af53',1,'TimeInterpolatedData']]], + ['_7eturbulentperturbation_2327',['~TurbulentPerturbation',['../structTurbulentPerturbation.html#ad1464c6ce0bc3a576f9df395f39839ce',1,'TurbulentPerturbation']]], + ['_7eunioncif_2328',['~UnionCIF',['../classUnionCIF.html#afddc15ff44e8e7505b919b16616873cd',1,'UnionCIF']]], + ['_7ewindfarm_2329',['~WindFarm',['../classWindFarm.html#a1be0e27ac213ad5faaf2fb2e114eab48',1,'WindFarm']]] ]; diff --git a/search/all_2.js b/search/all_2.js index a9f49bc30d..df28b44412 100644 --- a/search/all_2.js +++ b/search/all_2.js @@ -55,8 +55,8 @@ var searchData= ['cloud_5fsam_2ecpp_229',['Cloud_SAM.cpp',['../Cloud__SAM_8cpp.html',1,'']]], ['cloudradprops_230',['CloudRadProps',['../classCloudRadProps.html#aade37d67dde6092189402829442285d4',1,'CloudRadProps::CloudRadProps()'],['../classCloudRadProps.html',1,'CloudRadProps']]], ['cmd_231',['cmd',['../classMultiBlockContainer.html#ac2e558406e28ee31351eb60c7465d0ad',1,'MultiBlockContainer']]], - ['cnk_5fa_232',['cnk_a',['../classABLMost.html#a75310e9079ee238a932900feaad85ac5',1,'ABLMost']]], - ['cnk_5fa_233',['Cnk_a',['../structmost__data.html#a83c3a7004441c335b630dd2d6973f518',1,'most_data']]], + ['cnk_5fa_232',['Cnk_a',['../structmost__data.html#a83c3a7004441c335b630dd2d6973f518',1,'most_data']]], + ['cnk_5fa_233',['cnk_a',['../classABLMost.html#a75310e9079ee238a932900feaad85ac5',1,'ABLMost']]], ['cnk_5fb_234',['Cnk_b',['../structmost__data.html#a51b78fb4a4b8fb6aa512d4bd4fcd3cd7',1,'most_data']]], ['cnk_5fb1_235',['Cnk_b1',['../structmost__data.html#acfac0135facabddbdd699609bac908e4',1,'most_data']]], ['cnk_5fb2_236',['Cnk_b2',['../structmost__data.html#a4488059550159398fd2cddaf4d37f31b',1,'most_data']]], @@ -98,9 +98,9 @@ var searchData= ['compute_5fh_5fzeta_5fatjface_272',['Compute_h_zeta_AtJface',['../TerrainMetrics_8H.html#ada12bcb6beb3fa0d00dbdacb37f3c60f',1,'TerrainMetrics.H']]], ['compute_5fh_5fzeta_5fatkface_273',['Compute_h_zeta_AtKface',['../TerrainMetrics_8H.html#a48f57e72ac183fdf1a984f58f3d24ee0',1,'TerrainMetrics.H']]], ['compute_5finterior_5fghost_5fbxs_5fxy_274',['compute_interior_ghost_bxs_xy',['../InteriorGhostCells_8cpp.html#a58aa7f6d6812d4dea186477114d1a47c',1,'compute_interior_ghost_bxs_xy(const Box &bx, const Box &domain, const int &width, const int &set_width, Box &bx_xlo, Box &bx_xhi, Box &bx_ylo, Box &bx_yhi, const IntVect &ng_vect, const bool get_int_ng): InteriorGhostCells.cpp'],['../Utils_8H.html#aaa3f051b9681a4e20d0d88b3715d8897',1,'compute_interior_ghost_bxs_xy(const amrex::Box &bx, const amrex::Box &domain, const int &width, const int &set_width, amrex::Box &bx_xlo, amrex::Box &bx_xhi, amrex::Box &bx_ylo, amrex::Box &bx_yhi, const amrex::IntVect &ng_vect=amrex::IntVect(0, 0, 0), const bool get_int_ng=false): Utils.H']]], - ['compute_5fmost_5fbcs_275',['compute_most_bcs',['../classABLMost.html#a67df60526193cba93df934a540f7a258',1,'ABLMost::compute_most_bcs(const int &lev, const amrex::Vector< amrex::MultiFab * > &mfs, amrex::MultiFab *xzmom_flux, amrex::MultiFab *zxmom_flux, amrex::MultiFab *yzmom_flux, amrex::MultiFab *zymom_flux, amrex::MultiFab *heat_flux, amrex::MultiFab *z_phys, const amrex::Real &dz_no_terrain, const FluxCalc &flux_comp)'],['../classABLMost.html#a0c33b98848bdb3beb8249d5b60ec1a83',1,'ABLMost::compute_most_bcs(const int &lev, const Vector< MultiFab * > &mfs, MultiFab *xzmom_flux, MultiFab *zxmom_flux, MultiFab *yzmom_flux, MultiFab *zymom_flux, MultiFab *heat_flux, MultiFab *z_phys, const Real &dz_no_terrain, const FluxCalc &flux_comp)']]], + ['compute_5fmost_5fbcs_275',['compute_most_bcs',['../classABLMost.html#afb930118bc66bba7376f0fe2abd85be3',1,'ABLMost::compute_most_bcs(const int &lev, const amrex::Vector< amrex::MultiFab * > &mfs, amrex::MultiFab *xzmom_flux, amrex::MultiFab *zxmom_flux, amrex::MultiFab *yzmom_flux, amrex::MultiFab *zymom_flux, amrex::MultiFab *heat_flux, amrex::MultiFab *qv_flux, amrex::MultiFab *z_phys, const amrex::Real &dz_no_terrain, const FluxCalc &flux_comp)'],['../classABLMost.html#a64b906be4c2e1328177633f682fab5dd',1,'ABLMost::compute_most_bcs(const int &lev, const Vector< MultiFab * > &mfs, MultiFab *xzmom_flux, MultiFab *zxmom_flux, MultiFab *yzmom_flux, MultiFab *zymom_flux, MultiFab *heat_flux, MultiFab *qv_flux, MultiFab *z_phys, const Real &dz_no_terrain, const FluxCalc &flux_comp)']]], ['compute_5fplane_5faverages_276',['compute_plane_averages',['../classMOSTAverage.html#ab85828af24cd22d737931c51862389e4',1,'MOSTAverage']]], - ['compute_5fq_5fflux_277',['compute_q_flux',['../structdonelan__flux.html#a8d0fc02fd064b22206380d593b628efa',1,'donelan_flux::compute_q_flux()'],['../structmoeng__flux.html#aee217bd58d625b3fb9e80a9fc4e9189f',1,'moeng_flux::compute_q_flux()'],['../structcustom__flux.html#aca20f274a2d45502698a74ed9b839b02',1,'custom_flux::compute_q_flux()']]], + ['compute_5fq_5fflux_277',['compute_q_flux',['../structdonelan__flux.html#adb397919f3dc33f33d8bdc7b99c52efc',1,'donelan_flux::compute_q_flux()'],['../structmoeng__flux.html#a5d40e64bd085af2f4c63cfa1e9e20aa6',1,'moeng_flux::compute_q_flux()'],['../structcustom__flux.html#ae9e13bc10b4594df556671d9a042b48b',1,'custom_flux::compute_q_flux()']]], ['compute_5fregion_5faverages_278',['compute_region_averages',['../classMOSTAverage.html#aaea0b00766b3cdeefd2b54bade8a86bd',1,'MOSTAverage']]], ['compute_5ft_5fflux_279',['compute_t_flux',['../structmoeng__flux.html#a946d89f0b1c8287c83bea9ff628bdb1e',1,'moeng_flux::compute_t_flux()'],['../structdonelan__flux.html#a999e3bdb322d29fcdfbd51047fb32ee0',1,'donelan_flux::compute_t_flux()'],['../structcustom__flux.html#abb193ac77724a6452a6068c3b5954081',1,'custom_flux::compute_t_flux()']]], ['compute_5fu_5fflux_280',['compute_u_flux',['../structdonelan__flux.html#a44a032acc6bd6f42ff90f5a0ac14f4cf',1,'donelan_flux::compute_u_flux()'],['../structcustom__flux.html#a6ab8b167f190f9b0c4c6adb05acfff40',1,'custom_flux::compute_u_flux()'],['../structmoeng__flux.html#a2451f21fea8f87cec2e5f626c36489cb',1,'moeng_flux::compute_u_flux(const int &i, const int &j, const int &k, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &velx_arr, const amrex::Array4< const amrex::Real > &vely_arr, const amrex::Array4< const amrex::Real > &umm_arr, const amrex::Array4< const amrex::Real > &um_arr, const amrex::Array4< const amrex::Real > &u_star_arr, const amrex::Array4< amrex::Real > &dest_arr) const']]], diff --git a/search/all_3.js b/search/all_3.js index e82639a251..14df61a0ac 100644 --- a/search/all_3.js +++ b/search/all_3.js @@ -13,8 +13,8 @@ var searchData= ['d_5fv_5fgeos_356',['d_v_geos',['../classERF.html#a7d245afb7b3236b5967902f50bf9000b',1,'ERF']]], ['d_5fw_5fsubsid_357',['d_w_subsid',['../classERF.html#ac94ddee2f501dbcea2a516284b7119b5',1,'ERF']]], ['data_358',['data',['../structNDArray.html#a9d3679c95b5bf1813a7edaedf221837e',1,'NDArray']]], - ['datalog_359',['datalog',['../classERF.html#a1cade630b005dbcc0f644987ef3db287',1,'ERF']]], - ['datalog_360',['DataLog',['../classERF.html#aa2c3ee1910008b828b9da79ccdfe3871',1,'ERF']]], + ['datalog_359',['DataLog',['../classERF.html#aa2c3ee1910008b828b9da79ccdfe3871',1,'ERF']]], + ['datalog_360',['datalog',['../classERF.html#a1cade630b005dbcc0f644987ef3db287',1,'ERF']]], ['datalogname_361',['DataLogName',['../classERF.html#a16e1f6b8bbb05ae738daf2abe626c159',1,'ERF']]], ['datalogname_362',['datalogname',['../classERF.html#a9248a4eb025c2647e003f838cba52a21',1,'ERF']]], ['datastruct_2eh_363',['DataStruct.H',['../DataStruct_8H.html',1,'']]], diff --git a/search/all_8.js b/search/all_8.js index 70194a601e..2a3fda5a23 100644 --- a/search/all_8.js +++ b/search/all_8.js @@ -24,7 +24,7 @@ var searchData= ['impose_5flateral_5fxvel_5fbcs_888',['impose_lateral_xvel_bcs',['../classERFPhysBCFunct__u.html#a9b203cbd4f9a1fd40961067424ae5f81',1,'ERFPhysBCFunct_u']]], ['impose_5flateral_5fyvel_5fbcs_889',['impose_lateral_yvel_bcs',['../classERFPhysBCFunct__v.html#adee10e9098b1261837e642a76632c141',1,'ERFPhysBCFunct_v']]], ['impose_5flateral_5fzvel_5fbcs_890',['impose_lateral_zvel_bcs',['../classERFPhysBCFunct__w.html#a9cd6e53c9598fe025c3c78945c2b1b83',1,'ERFPhysBCFunct_w::impose_lateral_zvel_bcs()'],['../classERFPhysBCFunct__w__no__terrain.html#a25d10d63224b2acd259cc6309e5bce7e',1,'ERFPhysBCFunct_w_no_terrain::impose_lateral_zvel_bcs()']]], - ['impose_5fmost_5fbcs_891',['impose_most_bcs',['../classABLMost.html#a8e0510d69090549d147c9ebf31f24e5a',1,'ABLMost']]], + ['impose_5fmost_5fbcs_891',['impose_most_bcs',['../classABLMost.html#ab3ac1c161450930085ef74208b7f3dcb',1,'ABLMost']]], ['impose_5fvertical_5fcons_5fbcs_892',['impose_vertical_cons_bcs',['../classERFPhysBCFunct__cons.html#ad56fdfadfae102cf4e7419eaf756cb80',1,'ERFPhysBCFunct_cons']]], ['impose_5fvertical_5fxvel_5fbcs_893',['impose_vertical_xvel_bcs',['../classERFPhysBCFunct__u.html#afdf8afb39002a2daac0fc16a5db76d17',1,'ERFPhysBCFunct_u']]], ['impose_5fvertical_5fyvel_5fbcs_894',['impose_vertical_yvel_bcs',['../classERFPhysBCFunct__v.html#a9e295ac17321f4d577f1d103f6b665a2',1,'ERFPhysBCFunct_v']]], @@ -58,7 +58,7 @@ var searchData= ['init_5fdirichlet_5fbc_5fdata_922',['init_Dirichlet_bc_data',['../classERF.html#a3079a30cce7e1a01d5c9705f393b5a63',1,'ERF']]], ['init_5ffrom_5fhse_923',['init_from_hse',['../classERF.html#a857a8f76768ec4451b995cbf4f4ac176',1,'ERF']]], ['init_5ffrom_5finput_5fsounding_924',['init_from_input_sounding',['../classERF.html#a2908bcd920ab5e3fef171a37302853ec',1,'ERF']]], - ['init_5fgeo_5fwind_5fprofile_925',['init_geo_wind_profile',['../classERF.html#aacc932516cb277301951a8258545873c',1,'ERF']]], + ['init_5fgeo_5fwind_5fprofile_925',['init_geo_wind_profile',['../classERF.html#aab564dd3009ef83466b50db6d997b563',1,'ERF']]], ['init_5fisentropic_5fhse_926',['init_isentropic_hse',['../namespaceHSEutils.html#a531678cdabf38cca3d47317e33a82fa5',1,'HSEutils']]], ['init_5fisentropic_5fhse_5fterrain_927',['init_isentropic_hse_terrain',['../namespaceHSEutils.html#ab38b424f8934564898ddc0e0ee852b07',1,'HSEutils']]], ['init_5fkessler_2ecpp_928',['Init_Kessler.cpp',['../Init__Kessler_8cpp.html',1,'']]], diff --git a/search/all_c.js b/search/all_c.js index 9459f07037..97f7704145 100644 --- a/search/all_c.js +++ b/search/all_c.js @@ -5,7 +5,7 @@ var searchData= ['m_5factive_1093',['m_active',['../classCIF.html#a1e3b931483e96527c09af4016a29d101',1,'CIF']]], ['m_5faverages_1094',['m_averages',['../classMOSTAverage.html#a158b82286f1bed8b02da2c8b2ac7f4c0',1,'MOSTAverage']]], ['m_5faxis_1095',['m_axis',['../classPlaneAverage.html#ab1c325b8a1241cb446bad96fa558e770',1,'PlaneAverage::m_axis()'],['../classSAM.html#a37854ec84283a4229cf86b54cfcfc72b',1,'SAM::m_axis()'],['../classKessler.html#afea161a2b985d4c0eb4aa9390a808ab4',1,'Kessler::m_axis()']]], - ['m_5fbc_5fextdir_5fvals_1096',['m_bc_extdir_vals',['../classERFPhysBCFunct__w__no__terrain.html#af10baf7824fa75f859317b7b0c8cc3f4',1,'ERFPhysBCFunct_w_no_terrain::m_bc_extdir_vals()'],['../classERF.html#a199add69cee34c6611a5dc9ee965971c',1,'ERF::m_bc_extdir_vals()'],['../classERFPhysBCFunct__w.html#afd4eed563a59fae4744eaac6ced6bb6b',1,'ERFPhysBCFunct_w::m_bc_extdir_vals()'],['../classERFPhysBCFunct__v.html#a7e67556be338a97384abe278d98f02e7',1,'ERFPhysBCFunct_v::m_bc_extdir_vals()'],['../classERFPhysBCFunct__u.html#a1d7949c78cfb3041588995139f0a9218',1,'ERFPhysBCFunct_u::m_bc_extdir_vals()'],['../classERFPhysBCFunct__cons.html#a75abbe15fe3c056e3ee6c5b250bdac44',1,'ERFPhysBCFunct_cons::m_bc_extdir_vals()']]], + ['m_5fbc_5fextdir_5fvals_1096',['m_bc_extdir_vals',['../classERFPhysBCFunct__v.html#a7e67556be338a97384abe278d98f02e7',1,'ERFPhysBCFunct_v::m_bc_extdir_vals()'],['../classERF.html#a199add69cee34c6611a5dc9ee965971c',1,'ERF::m_bc_extdir_vals()'],['../classERFPhysBCFunct__w__no__terrain.html#af10baf7824fa75f859317b7b0c8cc3f4',1,'ERFPhysBCFunct_w_no_terrain::m_bc_extdir_vals()'],['../classERFPhysBCFunct__w.html#afd4eed563a59fae4744eaac6ced6bb6b',1,'ERFPhysBCFunct_w::m_bc_extdir_vals()'],['../classERFPhysBCFunct__cons.html#a75abbe15fe3c056e3ee6c5b250bdac44',1,'ERFPhysBCFunct_cons::m_bc_extdir_vals()'],['../classERFPhysBCFunct__u.html#a1d7949c78cfb3041588995139f0a9218',1,'ERFPhysBCFunct_u::m_bc_extdir_vals()']]], ['m_5fbc_5fneumann_5fvals_1097',['m_bc_neumann_vals',['../classERFPhysBCFunct__cons.html#a4ddeefc7be1abe021ebcdb272fc9db45',1,'ERFPhysBCFunct_cons::m_bc_neumann_vals()'],['../classERFPhysBCFunct__u.html#a33fd3c8b07c1376a6e433637010dd509',1,'ERFPhysBCFunct_u::m_bc_neumann_vals()'],['../classERFPhysBCFunct__v.html#ad9053e6fef29f1cb09b0f90e497f03b0',1,'ERFPhysBCFunct_v::m_bc_neumann_vals()'],['../classERFPhysBCFunct__w.html#a618a6fa84ef741a75172135ce8481b05',1,'ERFPhysBCFunct_w::m_bc_neumann_vals()'],['../classERFPhysBCFunct__w__no__terrain.html#a5f98e8e83a78de87e1b5c720f3b2ea64',1,'ERFPhysBCFunct_w_no_terrain::m_bc_neumann_vals()'],['../classERF.html#a69ea003766c97b1a667b002b3661f0f2',1,'ERF::m_bc_neumann_vals()']]], ['m_5fbdy_5ftime_5finterval_1098',['m_bdy_time_interval',['../classABLMost.html#a049bc06685178431599f3bfaa57d63bd',1,'ABLMost']]], ['m_5fbox_1099',['m_box',['../classRadiation.html#a37098b6502fef13732ed996200b7f64c',1,'Radiation']]], @@ -40,7 +40,7 @@ var searchData= ['m_5ff1_1128',['m_f1',['../classUnionCIF.html#a48c696814009301ff056340a2ebb601c',1,'UnionCIF::m_f1()'],['../classIntersectionCIF.html#a0b24d2c5c189c43b259c173c162aa1f1',1,'IntersectionCIF::m_f1()']]], ['m_5ff2_1129',['m_f2',['../classUnionCIF.html#a150413e8d9e4bbd2b44e924c839f296a',1,'UnionCIF::m_f2()'],['../classIntersectionCIF.html#af11428d551013bf6318ef89873537a4e',1,'IntersectionCIF::m_f2()']]], ['m_5ffac_5fcond_1130',['m_fac_cond',['../classKessler.html#a74746cef2381fd949a06be46f99a05c7',1,'Kessler::m_fac_cond()'],['../classSAM.html#a66b0ffc2f98c96c5a3b3c760a854be95',1,'SAM::m_fac_cond()']]], - ['m_5ffac_5ffus_1131',['m_fac_fus',['../classSAM.html#a53d38219476c32ba2dd751c02bcae53c',1,'SAM::m_fac_fus()'],['../classKessler.html#acaf08727482ff116185a6dbdf2bd54f9',1,'Kessler::m_fac_fus()']]], + ['m_5ffac_5ffus_1131',['m_fac_fus',['../classKessler.html#acaf08727482ff116185a6dbdf2bd54f9',1,'Kessler::m_fac_fus()'],['../classSAM.html#a53d38219476c32ba2dd751c02bcae53c',1,'SAM::m_fac_fus()']]], ['m_5ffac_5fsub_1132',['m_fac_sub',['../classKessler.html#a2feda15429da3d8227d75cc3f6da71ba',1,'Kessler::m_fac_sub()'],['../classSAM.html#a8653cbf2c13ac3595f5f8710a3f1beec',1,'SAM::m_fac_sub()']]], ['m_5ffact_5fnew_1133',['m_fact_new',['../classMOSTAverage.html#a960bae1d528aef6d0e7034dbea65a2c3',1,'MOSTAverage']]], ['m_5ffact_5fold_1134',['m_fact_old',['../classMOSTAverage.html#ae1d62c88d62bbef8458d0084200f65f2',1,'MOSTAverage']]], @@ -51,7 +51,7 @@ var searchData= ['m_5ffield_1139',['m_field',['../classPlaneAverage.html#a6c29e3eafbbb7028e801c513b29a1c09',1,'PlaneAverage']]], ['m_5ffields_1140',['m_fields',['../classMOSTAverage.html#ad301df8e1ee46557a4d277c3f87fae69',1,'MOSTAverage']]], ['m_5ffilename_1141',['m_filename',['../classReadBndryPlanes.html#a3a130c25c6b3c327e58d3e4687a051b9',1,'ReadBndryPlanes::m_filename()'],['../classWriteBndryPlanes.html#abbc94048dfd43b653b7754d785c11d2f',1,'WriteBndryPlanes::m_filename()']]], - ['m_5fgeom_1142',['m_geom',['../classPlaneAverage.html#ae359b042dfa8a0b951a3d34706c3c385',1,'PlaneAverage::m_geom()'],['../classERFPhysBCFunct__cons.html#a1a3121bc392962a3c3149a6e2db2791b',1,'ERFPhysBCFunct_cons::m_geom()'],['../classRadiation.html#ae5477e7b80b52cebf89ec3b8bdce0f3c',1,'Radiation::m_geom()'],['../classSAM.html#a8242fff43eb2cf417036eb36f5e4a3d8',1,'SAM::m_geom()'],['../classKessler.html#a48f29ab8e5d1232ee83851fd904e9354',1,'Kessler::m_geom()'],['../classSLM.html#a870bfd56a5fe10dc6b7b8f0347a9b218',1,'SLM::m_geom()'],['../classMM5.html#a7edc95309bb52864bba5341f19262063',1,'MM5::m_geom()'],['../classWriteBndryPlanes.html#a007dc2174ebcc2e2d79e8f31f41255cb',1,'WriteBndryPlanes::m_geom()'],['../classReadBndryPlanes.html#af4c91eeb64f4e49767e97c1e72de06fc',1,'ReadBndryPlanes::m_geom()'],['../classTerrainIF.html#aeb902107efd92150abad59ec0a8cf088',1,'TerrainIF::m_geom()'],['../classMOSTAverage.html#aed9b6c726189d8858abba0a2a66feca1',1,'MOSTAverage::m_geom()'],['../classERFPhysBCFunct__w__no__terrain.html#a7f695c3d80d3c166dce59565c4d8dffc',1,'ERFPhysBCFunct_w_no_terrain::m_geom()'],['../classERFPhysBCFunct__w.html#a1e9f9a0981a60be4e8e3a2b906444878',1,'ERFPhysBCFunct_w::m_geom()'],['../classERFPhysBCFunct__v.html#a01f7c56f64ac414f4ec69ff8c45a2f2a',1,'ERFPhysBCFunct_v::m_geom()'],['../classERFPhysBCFunct__u.html#a12a1e078b61a3e00958bf0f3f69bfe5f',1,'ERFPhysBCFunct_u::m_geom()'],['../classABLMost.html#a1795a510d08fbd88e6599e014f97b6c5',1,'ABLMost::m_geom()']]], + ['m_5fgeom_1142',['m_geom',['../classPlaneAverage.html#ae359b042dfa8a0b951a3d34706c3c385',1,'PlaneAverage::m_geom()'],['../classRadiation.html#ae5477e7b80b52cebf89ec3b8bdce0f3c',1,'Radiation::m_geom()'],['../classSAM.html#a8242fff43eb2cf417036eb36f5e4a3d8',1,'SAM::m_geom()'],['../classKessler.html#a48f29ab8e5d1232ee83851fd904e9354',1,'Kessler::m_geom()'],['../classERFPhysBCFunct__w.html#a1e9f9a0981a60be4e8e3a2b906444878',1,'ERFPhysBCFunct_w::m_geom()'],['../classSLM.html#a870bfd56a5fe10dc6b7b8f0347a9b218',1,'SLM::m_geom()'],['../classMM5.html#a7edc95309bb52864bba5341f19262063',1,'MM5::m_geom()'],['../classWriteBndryPlanes.html#a007dc2174ebcc2e2d79e8f31f41255cb',1,'WriteBndryPlanes::m_geom()'],['../classReadBndryPlanes.html#af4c91eeb64f4e49767e97c1e72de06fc',1,'ReadBndryPlanes::m_geom()'],['../classTerrainIF.html#aeb902107efd92150abad59ec0a8cf088',1,'TerrainIF::m_geom()'],['../classMOSTAverage.html#aed9b6c726189d8858abba0a2a66feca1',1,'MOSTAverage::m_geom()'],['../classERFPhysBCFunct__w__no__terrain.html#a7f695c3d80d3c166dce59565c4d8dffc',1,'ERFPhysBCFunct_w_no_terrain::m_geom()'],['../classERFPhysBCFunct__v.html#a01f7c56f64ac414f4ec69ff8c45a2f2a',1,'ERFPhysBCFunct_v::m_geom()'],['../classERFPhysBCFunct__u.html#a12a1e078b61a3e00958bf0f3f69bfe5f',1,'ERFPhysBCFunct_u::m_geom()'],['../classERFPhysBCFunct__cons.html#a1a3121bc392962a3c3149a6e2db2791b',1,'ERFPhysBCFunct_cons::m_geom()'],['../classABLMost.html#a1795a510d08fbd88e6599e014f97b6c5',1,'ABLMost::m_geom()']]], ['m_5fgocp_1143',['m_gOcp',['../classKessler.html#aac004df387a7f0725724f017ca3d4a99',1,'Kessler::m_gOcp()'],['../classSAM.html#a3a76b3fc76d33c147dcaab81a738f41c',1,'SAM::m_gOcp()']]], ['m_5fgtoe_1144',['m_gtoe',['../classKessler.html#ae8749011028be638e3fb8051e22f83f1',1,'Kessler::m_gtoe()'],['../classSAM.html#a579b5a1e16d7b9d8d317e475a6a43705',1,'SAM::m_gtoe()']]], ['m_5fhub_5fheight_1145',['m_hub_height',['../classNullWindFarm.html#ad403f4133b2292495e5dd949fcc59207',1,'NullWindFarm']]], @@ -76,7 +76,7 @@ var searchData= ['m_5fline_5fxcentroid_1164',['m_line_xcentroid',['../classPlaneAverage.html#a560dbd7059fb6cbb0421635c5d405d2b',1,'PlaneAverage']]], ['m_5flmask_5flev_1165',['m_lmask_lev',['../classABLMost.html#aaa5bbc610662825ddd8a184b43f3541b',1,'ABLMost']]], ['m_5flon_1166',['m_lon',['../classRadiation.html#a0069d200496f037a5bffa96e4bf9bce0',1,'Radiation']]], - ['m_5flsm_5fdata_5flev_1167',['m_lsm_data_lev',['../classABLMost.html#a958aaaf9e040462197c88c6c77f2aaf6',1,'ABLMost::m_lsm_data_lev()'],['../classLandSurface.html#a5a134e93d42328bfaa9611a9e625e1bb',1,'LandSurface::m_lsm_data_lev()']]], + ['m_5flsm_5fdata_5flev_1167',['m_lsm_data_lev',['../classLandSurface.html#a5a134e93d42328bfaa9611a9e625e1bb',1,'LandSurface::m_lsm_data_lev()'],['../classABLMost.html#a958aaaf9e040462197c88c6c77f2aaf6',1,'ABLMost::m_lsm_data_lev()']]], ['m_5flsm_5fflux_5flev_1168',['m_lsm_flux_lev',['../classABLMost.html#a422336bc908d29f98dafb3b745b4f060',1,'ABLMost']]], ['m_5flsm_5ffluxes_1169',['m_lsm_fluxes',['../classRadiation.html#a628ab4164c223bc55241535374a780cb',1,'Radiation']]], ['m_5flsm_5fgeom_1170',['m_lsm_geom',['../classMM5.html#a5bb965e19ba475c78c8c9c8528fbf871',1,'MM5::m_lsm_geom()'],['../classNullSurf.html#ac722d317f14ff1793ce7a38362987513',1,'NullSurf::m_lsm_geom()'],['../classSLM.html#ac41680d479e44b54678787b662c55fef',1,'SLM::m_lsm_geom()']]], @@ -105,7 +105,7 @@ var searchData= ['m_5fnz_5flsm_1193',['m_nz_lsm',['../classMM5.html#a9e2b3186622686e5aae850eb1dc93d28',1,'MM5::m_nz_lsm()'],['../classSLM.html#ac5eb0f0fb3b7c78777a95bad4b5370ee',1,'SLM::m_nz_lsm()']]], ['m_5fout_5frad_1194',['m_out_rad',['../classReadBndryPlanes.html#acb820b3ebc4c07d210831e6081c47aa9',1,'ReadBndryPlanes::m_out_rad()'],['../classWriteBndryPlanes.html#a2ce490f5166966b52112f126c9dc4dd8',1,'WriteBndryPlanes::m_out_rad()']]], ['m_5fowns_5fdata_1195',['m_owns_data',['../structTimeInterpolatedData.html#a6eeb9167e2d8051c16fdbb1e7fee54ed',1,'TimeInterpolatedData']]], - ['m_5fphi_1196',['m_phi',['../structUPWINDALL.html#a36acc81d9046b2b80cf3755aa46bc10c',1,'UPWINDALL::m_phi()'],['../structWENO__Z5.html#a962862416f273b267eb55802eff59edf',1,'WENO_Z5::m_phi()'],['../structWENO__MZQ3.html#a106585bb6e78f7027658c9c56f3ae892',1,'WENO_MZQ3::m_phi()'],['../structWENO__Z3.html#a8269a48070f989c0183112ccd8e57489',1,'WENO_Z3::m_phi()'],['../structWENO5.html#a28727bda47dc47677cf20c4d4bbda9a8',1,'WENO5::m_phi()'],['../structWENO3.html#a13120486db8a71a2059a9c7c1928b416',1,'WENO3::m_phi()'],['../structCENTERED6.html#a732a4a686c30a3233c939f453b74f0b9',1,'CENTERED6::m_phi()'],['../structUPWIND5.html#a26ff7f987df2f61ab60c121c02dd4295',1,'UPWIND5::m_phi()'],['../structCENTERED4.html#a2a0e8c62c2eb7e34a73c94f212a21cb3',1,'CENTERED4::m_phi()'],['../structUPWIND3.html#a4f184417f94f60775a46357fbafe1cca',1,'UPWIND3::m_phi()'],['../structCENTERED2.html#ac162099524c29536f1d08dcbb7c6c67a',1,'CENTERED2::m_phi()']]], + ['m_5fphi_1196',['m_phi',['../structWENO__Z3.html#a8269a48070f989c0183112ccd8e57489',1,'WENO_Z3::m_phi()'],['../structWENO__Z5.html#a962862416f273b267eb55802eff59edf',1,'WENO_Z5::m_phi()'],['../structWENO__MZQ3.html#a106585bb6e78f7027658c9c56f3ae892',1,'WENO_MZQ3::m_phi()'],['../structWENO5.html#a28727bda47dc47677cf20c4d4bbda9a8',1,'WENO5::m_phi()'],['../structWENO3.html#a13120486db8a71a2059a9c7c1928b416',1,'WENO3::m_phi()'],['../structCENTERED6.html#a732a4a686c30a3233c939f453b74f0b9',1,'CENTERED6::m_phi()'],['../structUPWIND5.html#a26ff7f987df2f61ab60c121c02dd4295',1,'UPWIND5::m_phi()'],['../structCENTERED4.html#a2a0e8c62c2eb7e34a73c94f212a21cb3',1,'CENTERED4::m_phi()'],['../structUPWIND3.html#a4f184417f94f60775a46357fbafe1cca',1,'UPWIND3::m_phi()'],['../structCENTERED2.html#ac162099524c29536f1d08dcbb7c6c67a',1,'CENTERED2::m_phi()'],['../structUPWINDALL.html#a36acc81d9046b2b80cf3755aa46bc10c',1,'UPWINDALL::m_phi()']]], ['m_5fplane_5faverage_1197',['m_plane_average',['../classMOSTAverage.html#a81ad3bc2787e30025f8bee91bc5c9dc2',1,'MOSTAverage']]], ['m_5fplot_5fint_5f1_1198',['m_plot_int_1',['../classERF.html#a57cfb4bfead8525174646964992c7e69',1,'ERF']]], ['m_5fplot_5fint_5f2_1199',['m_plot_int_2',['../classERF.html#ad3311c9ceacd17f34bdb5e03cefa33b3',1,'ERF']]], @@ -115,154 +115,156 @@ var searchData= ['m_5fpower_1203',['m_power',['../classNullWindFarm.html#a61554384fc601d7ae2fb758a8bc7f4f4',1,'NullWindFarm']]], ['m_5fpp_5fprefix_1204',['m_pp_prefix',['../classMOSTAverage.html#a8e48f835a742b02f039aeb6bc520aef8',1,'MOSTAverage']]], ['m_5fprecision_1205',['m_precision',['../classPlaneAverage.html#a1f08f5f76700c51c42243410ffce6e66',1,'PlaneAverage']]], - ['m_5fqmoist_5fsize_1206',['m_qmoist_size',['../classKessler.html#ae94091e97ccba54c040030c98e52aa7c',1,'Kessler::m_qmoist_size()'],['../classSAM.html#a4bf36ad050daafdcfea1aa83ad75f9cf',1,'SAM::m_qmoist_size()'],['../classNullMoist.html#a645f66b91b08d84aa7451a9da0c11a72',1,'NullMoist::m_qmoist_size()']]], - ['m_5fqstate_5fsize_1207',['m_qstate_size',['../classKessler.html#ad5167b56417db2cd78415b4654d6f7ca',1,'Kessler::m_qstate_size()'],['../classNullMoist.html#a3cb016aa9c0f1ee7534ad678723d1c59',1,'NullMoist::m_qstate_size()'],['../classSAM.html#a81c775ecb78f3f228a98a9c39d1d098d',1,'SAM::m_qstate_size()']]], + ['m_5fqmoist_5fsize_1206',['m_qmoist_size',['../classKessler.html#ae94091e97ccba54c040030c98e52aa7c',1,'Kessler::m_qmoist_size()'],['../classNullMoist.html#a645f66b91b08d84aa7451a9da0c11a72',1,'NullMoist::m_qmoist_size()'],['../classSAM.html#a4bf36ad050daafdcfea1aa83ad75f9cf',1,'SAM::m_qmoist_size()']]], + ['m_5fqstate_5fsize_1207',['m_qstate_size',['../classKessler.html#ad5167b56417db2cd78415b4654d6f7ca',1,'Kessler::m_qstate_size()'],['../classSAM.html#a81c775ecb78f3f228a98a9c39d1d098d',1,'SAM::m_qstate_size()'],['../classNullMoist.html#a3cb016aa9c0f1ee7534ad678723d1c59',1,'NullMoist::m_qstate_size()']]], ['m_5fr_1208',['m_r',['../classFlowerIF.html#a09721c1438c00c21d1babb121dc3d447',1,'FlowerIF']]], ['m_5fr2d_1209',['m_r2d',['../classERF.html#addf62bfc534515447b94e928ac0b7135',1,'ERF']]], ['m_5fradius_1210',['m_radius',['../classMOSTAverage.html#a2c167351f6655ef3276f8e5b39439e91',1,'MOSTAverage']]], ['m_5fratio_1211',['m_ratio',['../classERFFillPatcher.html#ab5ab5fa9bd525d2673c433633e0b3fba',1,'ERFFillPatcher']]], ['m_5frdocp_1212',['m_rdOcp',['../classReadBndryPlanes.html#a7e0bbe82df8b302172937d7dbb981a2c',1,'ReadBndryPlanes::m_rdOcp()'],['../classSAM.html#a3b461d5620f6b9a08a1e62b60a463af7',1,'SAM::m_rdOcp()']]], ['m_5frelax_5fmask_1213',['m_relax_mask',['../classERFFillPatcher.html#abad97ea0363653435fd9f922e10a53b2',1,'ERFFillPatcher']]], - ['m_5frotor_5frad_1214',['m_rotor_rad',['../classNullWindFarm.html#a06d46ff7212efd7893e94b99fa981b9d',1,'NullWindFarm']]], - ['m_5fset_5fmask_1215',['m_set_mask',['../classERFFillPatcher.html#a9d188e7b7e85221b257799a5a9c5098e',1,'ERFFillPatcher']]], - ['m_5fsign_1216',['m_sign',['../classFlowerIF.html#a1841ecb4de32a4763c2864784f0c22c4',1,'FlowerIF']]], - ['m_5fsst_5flev_1217',['m_sst_lev',['../classABLMost.html#ad8f1957bba407e17edb0a84ace515cde',1,'ABLMost']]], - ['m_5fstart_5fbdy_5ftime_1218',['m_start_bdy_time',['../classABLMost.html#a4fb97b28e44e9ff6930f18083923343a',1,'ABLMost']]], - ['m_5ft_5favg_1219',['m_t_avg',['../classMOSTAverage.html#a05905a4754c7eb39b766b96889b1bd47',1,'MOSTAverage']]], - ['m_5ft_5finit_1220',['m_t_init',['../classMOSTAverage.html#a3fe20fc4a4eb0b283f1d658b6237004c',1,'MOSTAverage']]], - ['m_5fterr_1221',['m_terr',['../classTerrainIF.html#a3e1f2814d20da7b5dd6d1d620b04784c',1,'TerrainIF']]], - ['m_5fterrain_5ftype_1222',['m_terrain_type',['../classERFPhysBCFunct__w.html#a96add99b86d3a03a872af7af85ad8e96',1,'ERFPhysBCFunct_w']]], - ['m_5ftheta_5fdir_1223',['m_theta_dir',['../classMM5.html#ab8187a0b9206d9c1d6632d494a149d1a',1,'MM5::m_theta_dir()'],['../classSLM.html#aec067697af550a8122138e57c4e0666d',1,'SLM::m_theta_dir()']]], - ['m_5fthrust_5fcoeff_1224',['m_thrust_coeff',['../classNullWindFarm.html#a7fe11fbaf6a246c60156e40aec3835f7',1,'NullWindFarm']]], - ['m_5fthrust_5fcoeff_5fstanding_1225',['m_thrust_coeff_standing',['../classNullWindFarm.html#a5a95464f19af9063228d23981f3a75cd',1,'NullWindFarm']]], - ['m_5ftime_1226',['m_time',['../structTimeInterpolatedData.html#a9b0102facc1d00011f48f95132955e27',1,'TimeInterpolatedData']]], - ['m_5ftime_5ffile_1227',['m_time_file',['../classReadBndryPlanes.html#a8027f415fce9acdc5ad53745016f67bf',1,'ReadBndryPlanes::m_time_file()'],['../classWriteBndryPlanes.html#a91c8abe5b1a15f5fe630db40230f08c1',1,'WriteBndryPlanes::m_time_file()']]], - ['m_5ftime_5fwindow_1228',['m_time_window',['../classMOSTAverage.html#ac95147c0d7961323ca8b079f63cd4be9',1,'MOSTAverage']]], - ['m_5ftinterp_1229',['m_tinterp',['../classReadBndryPlanes.html#a3f5e28f23e03b5c32f23ac953987728a',1,'ReadBndryPlanes']]], - ['m_5ftn_1230',['m_tn',['../classReadBndryPlanes.html#ade779c58aa5ea62cf1e03cbfaf98bb61',1,'ReadBndryPlanes']]], - ['m_5ftnp1_1231',['m_tnp1',['../classReadBndryPlanes.html#a4343c3c0761df0f96c58f8d268a43017',1,'ReadBndryPlanes']]], - ['m_5ftnp2_1232',['m_tnp2',['../classReadBndryPlanes.html#aca1dcdc531215bfd5a12fb286d064c8c',1,'ReadBndryPlanes']]], - ['m_5fu_5fbc_5fdata_1233',['m_u_bc_data',['../classERFPhysBCFunct__u.html#a603a1822cba514966ad201cfc676cdf6',1,'ERFPhysBCFunct_u']]], - ['m_5fuse_5freal_5fbcs_1234',['m_use_real_bcs',['../classERFPhysBCFunct__cons.html#a0e54453355d6a7c96044113c8827a008',1,'ERFPhysBCFunct_cons::m_use_real_bcs()'],['../classERFPhysBCFunct__u.html#a4a1ce4ec8f730cb61568aee6eceefe1f',1,'ERFPhysBCFunct_u::m_use_real_bcs()'],['../classERFPhysBCFunct__v.html#aa17ac5983f98d1b13f952fa7f2c39b54',1,'ERFPhysBCFunct_v::m_use_real_bcs()'],['../classERFPhysBCFunct__w.html#a6e6cdc32da147f7bc00d8c408b5df9a1',1,'ERFPhysBCFunct_w::m_use_real_bcs()'],['../classERFPhysBCFunct__w__no__terrain.html#a6ec9592d34b537392cbcb34ffb63f99a',1,'ERFPhysBCFunct_w_no_terrain::m_use_real_bcs()']]], - ['m_5fv_5fbc_5fdata_1235',['m_v_bc_data',['../classERFPhysBCFunct__v.html#a1abc171e8cfcd542f4d9e312e0f586c1',1,'ERFPhysBCFunct_v']]], - ['m_5fvar_5fnames_1236',['m_var_names',['../classReadBndryPlanes.html#aa5f533fb198d42785bfebe5cd8ae7131',1,'ReadBndryPlanes::m_var_names()'],['../classWriteBndryPlanes.html#a85703bf41a6ba0382f13a90f64ba417b',1,'WriteBndryPlanes::m_var_names()']]], - ['m_5fw2d_1237',['m_w2d',['../classERF.html#aa53035f34ba133b86172e180abda4209',1,'ERF']]], - ['m_5fw_5fbc_5fdata_1238',['m_w_bc_data',['../classERFPhysBCFunct__w.html#a4c66456080eb954ef8c80fc3dcfc4c3a',1,'ERFPhysBCFunct_w::m_w_bc_data()'],['../classERFPhysBCFunct__w__no__terrain.html#a061d0fb277d977056e7485d4ab4abc3c',1,'ERFPhysBCFunct_w_no_terrain::m_w_bc_data()']]], - ['m_5fwind_5fspeed_1239',['m_wind_speed',['../classNullWindFarm.html#a9beae3f8f39bb7bde432530da926d6ef',1,'NullWindFarm']]], - ['m_5fwindfarm_5fmodel_1240',['m_windfarm_model',['../classWindFarm.html#af3953694e6a246585c20f50436a65123',1,'WindFarm']]], - ['m_5fx_5fpos_1241',['m_x_pos',['../classMOSTAverage.html#a58c320eb48f9b8a1b0983d2770e9f3ea',1,'MOSTAverage']]], - ['m_5fxlo_1242',['m_xlo',['../classPlaneAverage.html#a42c7dfa900a0b69ba1d294455ca8ba51',1,'PlaneAverage']]], - ['m_5fxloc_1243',['m_xloc',['../classNullWindFarm.html#ac8ff132b0d2d52032ec19344ec6a74c6',1,'NullWindFarm']]], - ['m_5fy_5fpos_1244',['m_y_pos',['../classMOSTAverage.html#a1beb0dad926be2f2d9cb1de69a1a3374',1,'MOSTAverage']]], - ['m_5fyloc_1245',['m_yloc',['../classNullWindFarm.html#a86792dc0d8fb3dfc9b9646c38a2926da',1,'NullWindFarm']]], - ['m_5fz_5fphys_5fnd_1246',['m_z_phys_nd',['../classERFPhysBCFunct__cons.html#ad33ab704eb9b5d62a4db9317f40255dd',1,'ERFPhysBCFunct_cons::m_z_phys_nd()'],['../classERFPhysBCFunct__u.html#aefe9bc994735627162154bc289a0de3c',1,'ERFPhysBCFunct_u::m_z_phys_nd()'],['../classERFPhysBCFunct__v.html#afffa0e227916c179928f9a3eb7a07c3c',1,'ERFPhysBCFunct_v::m_z_phys_nd()'],['../classERFPhysBCFunct__w.html#aa37508122179536336aa8dba19d34c1b',1,'ERFPhysBCFunct_w::m_z_phys_nd()'],['../classMOSTAverage.html#a3a49018467b69573ef84df9cdfd86da4',1,'MOSTAverage::m_z_phys_nd()'],['../classKessler.html#aaead0b1bbb0693e5ef480fd15bcbe559',1,'Kessler::m_z_phys_nd()'],['../classSAM.html#a51af1452ad89711f8ddaa554cdc49ee6',1,'SAM::m_z_phys_nd()']]], - ['m_5fz_5fpos_1247',['m_z_pos',['../classMOSTAverage.html#a81ff1b7e8d026f0cd74147cbcc016d15',1,'MOSTAverage']]], - ['m_5fzref_1248',['m_zref',['../classMOSTAverage.html#af2f1477f6bc5e4b2f2ddee27d17dab9f',1,'MOSTAverage']]], - ['ma_5flist_1249',['ma_list',['../classMamConstituents.html#ab9703f219ce7a084e170017035dc269b',1,'MamConstituents']]], - ['main_1250',['main',['../main_8cpp.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main.cpp']]], - ['main_2ecpp_1251',['main.cpp',['../main_8cpp.html',1,'']]], - ['main_2edox_1252',['main.dox',['../main_8dox.html',1,'']]], - ['make_5fareas_1253',['make_areas',['../Utils_8H.html#afd5f5cf174d096726815e6d7dc325c41',1,'make_areas(const amrex::Geometry &geom, amrex::MultiFab &z_phys_nd, amrex::MultiFab &ax, amrex::MultiFab &ay, amrex::MultiFab &az): Utils.H'],['../TerrainMetrics_8cpp.html#a920c175414adfaaa26687bfb8e7585bb',1,'make_areas(const Geometry &geom, MultiFab &z_phys_nd, MultiFab &ax, MultiFab &ay, MultiFab &az): TerrainMetrics.cpp']]], - ['make_5fbuoyancy_1254',['make_buoyancy',['../Src__headers_8H.html#ab8d1e0300960f8aeabc92f0ffa82aefe',1,'make_buoyancy(amrex::Vector< amrex::MultiFab > &S_data, const amrex::MultiFab &S_prim, amrex::MultiFab &buoyancy, const amrex::Geometry geom, const SolverChoice &solverChoice, const amrex::MultiFab *r0, const int &qstate_size): Src_headers.H'],['../ERF__make__buoyancy_8cpp.html#a3906c740c767c111dc3f0adec0215e78',1,'make_buoyancy(Vector< MultiFab > &S_data, const MultiFab &S_prim, MultiFab &buoyancy, const amrex::Geometry geom, const SolverChoice &solverChoice, const MultiFab *r0, const int &qstate_size): ERF_make_buoyancy.cpp']]], - ['make_5ffast_5fcoeffs_1255',['make_fast_coeffs',['../ERF__make__fast__coeffs_8cpp.html#a76dfae5a4d6b6037b1261e5c42936616',1,'make_fast_coeffs(int, MultiFab &fast_coeffs, Vector< MultiFab > &S_stage_data, const MultiFab &S_stage_prim, const MultiFab &pi_stage, const amrex::Geometry geom, bool l_use_moisture, bool l_use_terrain, Real gravity, Real c_p, std::unique_ptr< MultiFab > &detJ_cc, const MultiFab *r0, const MultiFab *pi0, Real dtau, Real beta_s, amrex::GpuArray< ERF_BC, AMREX_SPACEDIM *2 > &phys_bc_type): ERF_make_fast_coeffs.cpp'],['../TI__fast__headers_8H.html#adfda58e818c53254b1fa053669e911e8',1,'make_fast_coeffs(int level, amrex::MultiFab &fast_coeffs, amrex::Vector< amrex::MultiFab > &S_stage_data, const amrex::MultiFab &S_stage_prim, const amrex::MultiFab &pi_stage, const amrex::Geometry geom, const bool use_moisture, const bool use_terrain, const amrex::Real gravity, const amrex::Real c_p, std::unique_ptr< amrex::MultiFab > &detJ_cc, const amrex::MultiFab *r0, const amrex::MultiFab *pi0, const amrex::Real dtau, const amrex::Real beta_s, amrex::GpuArray< ERF_BC, AMREX_SPACEDIM *2 > &phys_bc_type): TI_fast_headers.H']]], - ['make_5fj_1256',['make_J',['../Utils_8H.html#accb87d367dfa749571761aa789fd3fea',1,'make_J(const amrex::Geometry &geom, amrex::MultiFab &z_phys_nd, amrex::MultiFab &detJ_cc): Utils.H'],['../TerrainMetrics_8cpp.html#a9c1ecbedddfe464d9db02960e5422564',1,'make_J(const Geometry &geom, MultiFab &z_phys_nd, MultiFab &detJ_cc): TerrainMetrics.cpp']]], - ['make_5fmom_5fsources_1257',['make_mom_sources',['../ERF__make__mom__sources_8cpp.html#a027a2c40019232ded6ad99a99e448eb7',1,'make_mom_sources(int, int, Real dt, Vector< MultiFab > &S_data, const MultiFab &S_prim, const MultiFab &, const MultiFab &, MultiFab &xmom_src, MultiFab &ymom_src, MultiFab &zmom_src, MultiFab *r0, const Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< MultiFab > &mapfac_m, std::unique_ptr< MultiFab > &mapfac_u, std::unique_ptr< MultiFab > &mapfac_v, const Real *dptr_u_geos, const Real *dptr_v_geos, const Real *dptr_wbar_sub, const Vector< Real * > d_rayleigh_ptrs_at_lev, const Vector< Real * > d_sponge_ptrs_at_lev, int n_qstate): ERF_make_mom_sources.cpp'],['../Src__headers_8H.html#a752957bae3f28998131ff3d42becf41d',1,'make_mom_sources(int level, int nrk, amrex::Real dt, amrex::Vector< amrex::MultiFab > &S_data, const amrex::MultiFab &S_prim, const amrex::MultiFab &xvel, const amrex::MultiFab &yvel, amrex::MultiFab &xmom_source, amrex::MultiFab &ymom_source, amrex::MultiFab &zmom_source, amrex::MultiFab *r0, const amrex::Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< amrex::MultiFab > &mapfac_m, std::unique_ptr< amrex::MultiFab > &mapfac_u, std::unique_ptr< amrex::MultiFab > &mapfac_v, const amrex::Real *dptr_rhotheta_src, const amrex::Real *dptr_rhoqt_src, const amrex::Real *dptr_wbar_sub, const amrex::Vector< amrex::Real * > d_rayleigh_ptrs_at_lev, const amrex::Vector< amrex::Real * > d_sponge_ptrs_at_lev, const int n_qstate): Src_headers.H']]], - ['make_5fsources_1258',['make_sources',['../ERF__make__sources_8cpp.html#ae5ce4675f35ecdefeb8d33f181d7504c',1,'make_sources(int level, int, Real dt, Vector< MultiFab > &S_data, const MultiFab &S_prim, MultiFab &source, const Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< MultiFab > &mapfac_u, std::unique_ptr< MultiFab > &mapfac_v, const Real *dptr_rhotheta_src, const Real *dptr_rhoqt_src, const Real *dptr_wbar_sub, const Vector< Real * > d_rayleigh_ptrs_at_lev, TurbulentPerturbation &turbPert): ERF_make_sources.cpp'],['../Src__headers_8H.html#a162bf8f8a720e76a5fa7f8babaa7bd41',1,'make_sources(int level, int nrk, amrex::Real dt, amrex::Vector< amrex::MultiFab > &S_data, const amrex::MultiFab &S_prim, amrex::MultiFab &cc_source, const amrex::Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< amrex::MultiFab > &mapfac_u, std::unique_ptr< amrex::MultiFab > &mapfac_v, const amrex::Real *dptr_rhotheta_src, const amrex::Real *dptr_rhoqt_src, const amrex::Real *dptr_wbar_sub, const amrex::Vector< amrex::Real * > d_rayleigh_ptrs_at_lev, TurbulentPerturbation &turbPert): Src_headers.H']]], - ['make_5fzcc_1259',['make_zcc',['../TerrainMetrics_8cpp.html#acc28d890df44cf0082a848c057042178',1,'make_zcc(const Geometry &geom, MultiFab &z_phys_nd, MultiFab &z_phys_cc): TerrainMetrics.cpp'],['../Utils_8H.html#ab405f3b5732dda49ad076fab09bfbfc8',1,'make_zcc(const amrex::Geometry &geom, amrex::MultiFab &z_phys_nd, amrex::MultiFab &z_phys_cc): Utils.H']]], - ['makediagnosticaverage_1260',['MakeDiagnosticAverage',['../classERF.html#a93ed2dd2c2441da6853d6f48b6467324',1,'ERF']]], - ['makehorizontalaverages_1261',['MakeHorizontalAverages',['../classERF.html#a01987b2556834788694f2f3741a2afe4',1,'ERF']]], - ['makenewlevelfromcoarse_1262',['MakeNewLevelFromCoarse',['../classERF.html#abb6175c28b36d23f5dda2994ca4a85e7',1,'ERF']]], - ['makenewlevelfromscratch_1263',['MakeNewLevelFromScratch',['../classERF.html#aaf10bbf8c9a5dbc257a88c4c1b650fee',1,'ERF']]], - ['makoh_5fcubic_1264',['makoh_cubic',['../classModalAeroWateruptake.html#a134cf0f1fd68266a37a7683e362553c4',1,'ModalAeroWateruptake']]], - ['makoh_5fquartic_1265',['makoh_quartic',['../classModalAeroWateruptake.html#a63dc4418d21ddbc2f88a86e6b5e05640',1,'ModalAeroWateruptake']]], - ['mam4_5faer_1266',['Mam4_aer',['../classMam4__aer.html',1,'']]], - ['mam4_5faero_2eh_1267',['Mam4_aero.H',['../Mam4__aero_8H.html',1,'']]], - ['mam4_5fconstituents_2eh_1268',['Mam4_constituents.H',['../Mam4__constituents_8H.html',1,'']]], - ['mam_5faer_1269',['mam_aer',['../classAerRadProps.html#afb607ae14bfc3e46dd66c9e04627a57d',1,'AerRadProps']]], - ['mam_5fconsti_1270',['mam_consti',['../classMam4__aer.html#a2dcd6d3b6a38a2f0e8bc389c80fb4ae9',1,'Mam4_aer::mam_consti()'],['../classAerRadProps.html#a66f750181cccc82c03268b0a4a245ecc',1,'AerRadProps::mam_consti()']]], - ['mamconstituents_1271',['MamConstituents',['../classMamConstituents.html#a6839b6299dcdd8acf1cc859d929e0026',1,'MamConstituents::MamConstituents()'],['../classMamConstituents.html',1,'MamConstituents']]], - ['map_5fdata_1272',['map_data',['../classMRISplitIntegrator.html#a14fd551d7a7ff5bf6c58500740a64547',1,'MRISplitIntegrator']]], - ['mapfac_5fm_1273',['mapfac_m',['../classERF.html#a23aacdb72e9d2dfed8e2ebd2c2526497',1,'ERF']]], - ['mapfac_5fu_1274',['mapfac_u',['../classERF.html#a1e8afee1508b720dab56f5d044deb301',1,'ERF']]], - ['mapfac_5fv_1275',['mapfac_v',['../classERF.html#ae49b5055f9a7117fa15918a5daa775b7',1,'ERF']]], - ['mass_5fname_1276',['mass_name',['../structMamConstituents_1_1aerosol__t.html#a300418f68393143be3f4852641ac465b',1,'MamConstituents::aerosol_t::mass_name()'],['../structMamConstituents_1_1gas__t.html#ad63e38b410aa69ed3f76d6898b35b53a',1,'MamConstituents::gas_t::mass_name()']]], - ['mathematicalbndrytypes_1277',['mathematicalBndryTypes',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01c',1,'ERFBCType']]], - ['max_5fiter_1278',['MAX_ITER',['../namespaceHSEutils.html#a10de540cb8ad96aea8cd080f4d1e72fa',1,'HSEutils']]], - ['max_5fk_5fat_5flevel_1279',['max_k_at_level',['../classERF.html#a9108040a44e5e64853ac7d6529538315',1,'ERF']]], - ['max_5fstep_1280',['max_step',['../classERF.html#a0634154e8e58379c495c3e7fe7c5e4d6',1,'ERF']]], - ['mcica_5fsubcol_5fmask_1281',['mcica_subcol_mask',['../classOptics.html#a078568b5fcba367944981fe065623e0c',1,'Optics']]], - ['mdata_1282',['mdata',['../structadiabatic.html#afdc69c66b9c49f67d4f2409bc1f3ce29',1,'adiabatic::mdata()'],['../structadiabatic__charnock.html#a5c11064c35d6eefd22558180155d6ede',1,'adiabatic_charnock::mdata()'],['../structadiabatic__mod__charnock.html#ad33aa4fea2aa05dbb4057dcef251e0da',1,'adiabatic_mod_charnock::mdata()'],['../structadiabatic__wave__coupled.html#a812ea5ea7d6223e5512c372b3260d1bc',1,'adiabatic_wave_coupled::mdata()'],['../structsurface__flux.html#a960909fe387424192cf802afccdc7bed',1,'surface_flux::mdata()'],['../structsurface__flux__charnock.html#a60030c5104987d6287efd5d9b996014c',1,'surface_flux_charnock::mdata()'],['../structsurface__flux__mod__charnock.html#a6fa441221eb1f30d65437ce890adfd46',1,'surface_flux_mod_charnock::mdata()'],['../structsurface__flux__wave__coupled.html#a7c81c888df97ef0ff4dc54be9c4e163a',1,'surface_flux_wave_coupled::mdata()'],['../structsurface__temp.html#afec351f7cde260c6e96a27297cb4010f',1,'surface_temp::mdata()'],['../structsurface__temp__charnock.html#a073ad08e0d652e792b459878e10dc41b',1,'surface_temp_charnock::mdata()'],['../structsurface__temp__mod__charnock.html#a98f673e5030f4509a8874466337f50c4',1,'surface_temp_mod_charnock::mdata()'],['../structsurface__temp__wave__coupled.html#a44d84ddefc6dc5572f1b1e614996b288',1,'surface_temp_wave_coupled::mdata()']]], - ['meter_1283',['meter',['../classRadConstants.html#a2de1ff8cbc3cafe6a42e8f884002e4f1a3c6b87cb2d07bd40e9ed24c8729b20bd',1,'RadConstants']]], - ['metgrid_5futils_2eh_1284',['Metgrid_utils.H',['../Metgrid__utils_8H.html',1,'']]], - ['metgridbdyvars_1285',['MetGridBdyVars',['../namespaceMetGridBdyVars.html',1,'']]], - ['mic_5ffab_5fvars_1286',['mic_fab_vars',['../classKessler.html#aa11214a3e579cc9d6309359b1c05e5ab',1,'Kessler::mic_fab_vars()'],['../classSAM.html#a36ee9e1e1a94d22304f46e064f16e11e',1,'SAM::mic_fab_vars()']]], - ['micro_1287',['micro',['../classERF.html#a4b7277d54649219f31fe286eee9d415a',1,'ERF']]], - ['micrometer_1288',['micrometer',['../classRadConstants.html#a2de1ff8cbc3cafe6a42e8f884002e4f1aca44c575fbae0e89d6f7764169e03c46',1,'RadConstants']]], - ['microphysics_1289',['Microphysics',['../classMicrophysics.html#a79bf043906abc7e4d738318ec8e7aa2e',1,'Microphysics::Microphysics()'],['../classMicrophysics.html',1,'Microphysics']]], - ['microphysics_2eh_1290',['Microphysics.H',['../Microphysics_8H.html',1,'']]], - ['microphysics_5futils_2eh_1291',['Microphysics_Utils.H',['../Microphysics__Utils_8H.html',1,'']]], - ['micvar_1292',['MicVar',['../namespaceMicVar.html',1,'']]], - ['micvar_5fkess_1293',['MicVar_Kess',['../namespaceMicVar__Kess.html',1,'']]], - ['micvarmap_1294',['MicVarMap',['../classKessler.html#a18164f048f846cd122de43803b49c1cb',1,'Kessler::MicVarMap()'],['../classSAM.html#a6008487ad12ada77acdcb3ee41371c98',1,'SAM::MicVarMap()']]], - ['min_5fk_5fat_5flevel_1295',['min_k_at_level',['../classERF.html#a46a3587ddcfacba35dcf52189cc1be86',1,'ERF']]], - ['mitchell_5fice_5foptics_5flw_1296',['mitchell_ice_optics_lw',['../classCloudRadProps.html#a1ab01da075a2a82b9fb4c341ff85e373',1,'CloudRadProps']]], - ['mitchell_5fice_5foptics_5fsw_1297',['mitchell_ice_optics_sw',['../classCloudRadProps.html#a32483def8d0d82a6d1cb57834fe04b7d',1,'CloudRadProps']]], - ['mm5_1298',['MM5',['../DataStruct_8H.html#abeec366fd5381f3bb7ba39f6e5c1e7e4a4594809823de21e46cbf63b1bcd316b5',1,'MM5(): DataStruct.H'],['../classMM5.html#a1cb63322dbfcb32636b286d8043a2893',1,'MM5::MM5()'],['../classMM5.html',1,'MM5']]], - ['mm5_2ecpp_1299',['MM5.cpp',['../MM5_8cpp.html',1,'']]], - ['mm5_2eh_1300',['MM5.H',['../MM5_8H.html',1,'']]], - ['modal_5faero_5fcalcsize_5fdiag_1301',['modal_aero_calcsize_diag',['../classMam4__aer.html#adedd31f2c7c2a293e6f3dfc4818b175d',1,'Mam4_aer']]], - ['modal_5faero_5fkohler_1302',['modal_aero_kohler',['../classModalAeroWateruptake.html#abdedb99ff569dd300dd3046820da78e8',1,'ModalAeroWateruptake']]], - ['modal_5faero_5flw_1303',['modal_aero_lw',['../classMam4__aer.html#a893de418ed6818eeece9ed80b72cb685',1,'Mam4_aer']]], - ['modal_5faero_5fsw_1304',['modal_aero_sw',['../classMam4__aer.html#a2327a69b0d90bb5e4d77f8864a1196f8',1,'Mam4_aer']]], - ['modal_5faero_5fwateruptake_2eh_1305',['Modal_aero_wateruptake.H',['../Modal__aero__wateruptake_8H.html',1,'']]], - ['modal_5faero_5fwateruptake_5fdr_1306',['modal_aero_wateruptake_dr',['../classModalAeroWateruptake.html#aab174a0054ce6dfa80f15e391d9489c6',1,'ModalAeroWateruptake']]], - ['modal_5faero_5fwateruptake_5fsub_1307',['modal_aero_wateruptake_sub',['../classModalAeroWateruptake.html#a7c1e0109c368bd156beb85a2e98a8878',1,'ModalAeroWateruptake']]], - ['modal_5foptics_5ffile_1308',['modal_optics_file',['../classMam4__aer.html#a396c0ab69e47a8cbc27c346aa2fb489d',1,'Mam4_aer']]], - ['modal_5foptics_5finit_1309',['modal_optics_init',['../classPhysProp.html#a3e12605585c1b1a1c92dc34c9dfebc85',1,'PhysProp']]], - ['modal_5fsize_5fparameters_1310',['modal_size_parameters',['../classMam4__aer.html#a1097c2d484ccac94860e32f0bdf54915',1,'Mam4_aer']]], - ['modalaerowateruptake_1311',['ModalAeroWateruptake',['../classModalAeroWateruptake.html',1,'']]], - ['mode_5fcomponent_5ft_1312',['mode_component_t',['../structMamConstituents_1_1mode__component__t.html',1,'MamConstituents']]], - ['mode_5ftype_5fnames_1313',['mode_type_names',['../classMamConstituents.html#a5c94b10764d82b018270ebf012cd657b',1,'MamConstituents']]], - ['modelist_5ft_1314',['modelist_t',['../structMamConstituents_1_1modelist__t.html',1,'MamConstituents']]], - ['modeltype_1315',['modelType',['../classMicrophysics.html#ac10e6fce2e6cb49373d56ca0e1a5b366',1,'Microphysics']]], - ['modes_1316',['modes',['../classMamConstituents.html#a1692c29032818c08c3b1ac985a35d521',1,'MamConstituents']]], - ['modes_5ft_1317',['modes_t',['../structMamConstituents_1_1modes__t.html',1,'MamConstituents']]], - ['modified_5fcharnock_1318',['MODIFIED_CHARNOCK',['../classABLMost.html#ae825f96c2d098b3e070642a74e6a3f13a266bf3048d67b1b3187c0189bc232fde',1,'ABLMost']]], - ['moeng_1319',['MOENG',['../classABLMost.html#a92e41ba7a650b4768aa6bc006b2241e0a0525d4394471c332f3c0a497584923d5',1,'ABLMost']]], - ['moeng_5fflux_1320',['moeng_flux',['../structmoeng__flux.html',1,'moeng_flux'],['../structmoeng__flux.html#a2843a181e875e6599b04964c28117900',1,'moeng_flux::moeng_flux()']]], - ['moistscal_5fhoriz_5fadv_5ftype_1321',['moistscal_horiz_adv_type',['../structAdvChoice.html#a22f84c60e56d4b3bde6b7f9548c87af3',1,'AdvChoice']]], - ['moistscal_5fhoriz_5fupw_5ffrac_1322',['moistscal_horiz_upw_frac',['../structAdvChoice.html#a69b32bcee6cd30f3f88280d0ec49cd35',1,'AdvChoice']]], - ['moistscal_5fvert_5fadv_5ftype_1323',['moistscal_vert_adv_type',['../structAdvChoice.html#a2f888dfcb79cdb766ee04f21aada83ec',1,'AdvChoice']]], - ['moistscal_5fvert_5fupw_5ffrac_1324',['moistscal_vert_upw_frac',['../structAdvChoice.html#a334139583accdc5718a939b20b308bb9',1,'AdvChoice']]], - ['moisture_5ftype_1325',['moisture_type',['../structSolverChoice.html#aacbfbe6f4a3040db3efdc6dbf8fa291b',1,'SolverChoice']]], - ['moisturemodeltype_1326',['MoistureModelType',['../DataStruct_8H.html#a62a5a9bde82457a1611cde231a43bfe5',1,'DataStruct.H']]], - ['moisturetype_1327',['MoistureType',['../DataStruct_8H.html#ab34704153a585940411c26587cb82ad0',1,'DataStruct.H']]], - ['molec_5fdiff_5ftype_1328',['molec_diff_type',['../structDiffChoice.html#aed5c75ec58e358a735d97869147b2baf',1,'DiffChoice']]], - ['molecdifftype_1329',['MolecDiffType',['../DiffStruct_8H.html#a84e6bfbbb8e490790c506939b364f735',1,'DiffStruct.H']]], - ['mom_5fh_1330',['Mom_h',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea2e96e6d5e84e7d7b9857e73159dfbe2b',1,'EddyDiff']]], - ['mom_5fv_1331',['Mom_v',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea61ed124b350a1b26da1bd26aebfa5f82',1,'EddyDiff']]], - ['momentumtovelocity_1332',['MomentumToVelocity',['../MomentumToVelocity_8cpp.html#a4909cdce4c261c6dae5564fb714881ea',1,'MomentumToVelocity(MultiFab &xvel, MultiFab &yvel, MultiFab &zvel, const MultiFab &density, const MultiFab &xmom_in, const MultiFab &ymom_in, const MultiFab &zmom_in, const Box &domain, const Vector< BCRec > &domain_bcs_type_h): MomentumToVelocity.cpp'],['../Utils_8H.html#a26382a1781acfcd6b4740685db28d6b2',1,'MomentumToVelocity(amrex::MultiFab &xvel_out, amrex::MultiFab &yvel_out, amrex::MultiFab &zvel_out, const amrex::MultiFab &cons_in, const amrex::MultiFab &xmom_in, const amrex::MultiFab &ymom_in, const amrex::MultiFab &zmom_in, const amrex::Box &domain, const amrex::Vector< amrex::BCRec > &domain_bcs_type_h): Utils.H']]], - ['momentumtovelocity_2ecpp_1333',['MomentumToVelocity.cpp',['../MomentumToVelocity_8cpp.html',1,'']]], - ['most_1334',['MOST',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9a882dd232c0425bb9366544f84f0a7b6c',1,'MOST(): IndexDefines.H'],['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca42d0838b4e8d40ee76fbaf2d55c3402e',1,'ERFBCType::MOST()']]], - ['most_5fdata_1335',['most_data',['../structmost__data.html',1,'']]], - ['mostaverage_1336',['MOSTAverage',['../classMOSTAverage.html#add74667e947201bbb2ddf2785f02ee0c',1,'MOSTAverage::MOSTAverage()'],['../classMOSTAverage.html',1,'MOSTAverage'],['../classMOSTAverage.html#a63d4ee91f32fe95e61b0dfe8fa5fac22',1,'MOSTAverage::MOSTAverage(amrex::Vector< amrex::Geometry > geom, amrex::Vector< amrex::Vector< amrex::MultiFab >> &vars_old, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Theta_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Qv_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &z_phys_nd)'],['../classMOSTAverage.html#acfc77dc21a0821d4b446f7be289c64d6',1,'MOSTAverage::MOSTAverage(MOSTAverage &&) noexcept=default']]], - ['mostaverage_2ecpp_1337',['MOSTAverage.cpp',['../MOSTAverage_8cpp.html',1,'']]], - ['mostaverage_2eh_1338',['MOSTAverage.H',['../MOSTAverage_8H.html',1,'']]], - ['moststress_2eh_1339',['MOSTStress.H',['../MOSTStress_8H.html',1,'']]], - ['moving_1340',['Moving',['../DataStruct_8H.html#af82ff6f1edafee12190434b73fe91127adefe967ad0373b2274fc298f19125ca7',1,'DataStruct.H']]], - ['mri_5fintegrator_5fmem_1341',['mri_integrator_mem',['../classERF.html#a09d0fb2bd609c898a665d9530a744585',1,'ERF']]], - ['mrisplitintegrator_1342',['MRISplitIntegrator',['../classMRISplitIntegrator.html#a809aa55db013cd913fe3546ef8001fd4',1,'MRISplitIntegrator::MRISplitIntegrator(MRISplitIntegrator &&) noexcept=default'],['../classMRISplitIntegrator.html#a526041af494ee08e31efefc98aaa07ab',1,'MRISplitIntegrator::MRISplitIntegrator(const MRISplitIntegrator &other)=delete'],['../classMRISplitIntegrator.html#a9ea1c36a75e04596ffe0fa29e614b6e2',1,'MRISplitIntegrator::MRISplitIntegrator(const T &S_data)'],['../classMRISplitIntegrator.html#a42d755c9aea9203dfdcbbe4cb76f83e3',1,'MRISplitIntegrator::MRISplitIntegrator()=default'],['../classMRISplitIntegrator.html',1,'MRISplitIntegrator< T >']]], - ['mu_1343',['MU',['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a9d2d300be8f8f15441322fce35c9c92e',1,'WRFBdyVars']]], - ['mu_1344',['mu',['../structPhysProp_1_1physprop__t.html#aa23d4f11099641ffb9c395c327156980',1,'PhysProp::physprop_t']]], - ['muelq_1345',['muelq',['../ERF__Constants_8H.html#a0e5683feac33352111ce4445dbedbf45',1,'ERF_Constants.H']]], - ['multiblockcontainer_1346',['MultiBlockContainer',['../classMultiBlockContainer.html#a285674e081e90380c665398b91535794',1,'MultiBlockContainer::MultiBlockContainer()'],['../classMultiBlockContainer.html',1,'MultiBlockContainer']]], - ['multiblockcontainer_2ecpp_1347',['MultiBlockContainer.cpp',['../MultiBlockContainer_8cpp.html',1,'']]], - ['multiblockcontainer_2eh_1348',['MultiBlockContainer.H',['../MultiBlockContainer_8H.html',1,'']]], - ['murphykoop_1349',['MurphyKoop',['../classSatMethods.html#a62096d95f324cd2a3504554437067ef7a614be0679f050250e4d5494708d1136a',1,'SatMethods']]], - ['murphykoop_5fsvp_5fice_1350',['MurphyKoop_svp_ice',['../classSatMethods.html#a87786f42b9d0601dc1d22f635906a76f',1,'SatMethods']]], - ['murphykoop_5fsvp_5fwater_1351',['MurphyKoop_svp_water',['../classSatMethods.html#aac1daa9a38464e217df80a4f9613bcb3',1,'SatMethods']]], - ['mvelpp_1352',['mvelpp',['../classRadiation.html#ae4dacdbc7383b92511c2385bd59ed49a',1,'Radiation']]], - ['mwdair_1353',['mwdair',['../ERF__Constants_8H.html#a650da208ce885c0f6c9c742d26dc4b0e',1,'ERF_Constants.H']]], - ['mwwv_1354',['mwwv',['../ERF__Constants_8H.html#a75abd92a75952e8eefd06628c8c3487d',1,'ERF_Constants.H']]], - ['mynn25_1355',['MYNN25',['../TurbStruct_8H.html#a4a079f2650ca30c787a8375ec5f17ca5abdeb9a753db1d1f3fe0e944eab1d0601',1,'TurbStruct.H']]] + ['m_5frot_5ffields_1214',['m_rot_fields',['../classMOSTAverage.html#a733f1b5c94de8ee530f4f257510cb277',1,'MOSTAverage']]], + ['m_5frotate_1215',['m_rotate',['../classABLMost.html#ab107efa0b6bdf80ee44d232919f6a7ad',1,'ABLMost::m_rotate()'],['../classMOSTAverage.html#a7d43a66f7518f75e694e0582dd40ec44',1,'MOSTAverage::m_rotate()']]], + ['m_5frotor_5frad_1216',['m_rotor_rad',['../classNullWindFarm.html#a06d46ff7212efd7893e94b99fa981b9d',1,'NullWindFarm']]], + ['m_5fset_5fmask_1217',['m_set_mask',['../classERFFillPatcher.html#a9d188e7b7e85221b257799a5a9c5098e',1,'ERFFillPatcher']]], + ['m_5fsign_1218',['m_sign',['../classFlowerIF.html#a1841ecb4de32a4763c2864784f0c22c4',1,'FlowerIF']]], + ['m_5fsst_5flev_1219',['m_sst_lev',['../classABLMost.html#ad8f1957bba407e17edb0a84ace515cde',1,'ABLMost']]], + ['m_5fstart_5fbdy_5ftime_1220',['m_start_bdy_time',['../classABLMost.html#a4fb97b28e44e9ff6930f18083923343a',1,'ABLMost']]], + ['m_5ft_5favg_1221',['m_t_avg',['../classMOSTAverage.html#a05905a4754c7eb39b766b96889b1bd47',1,'MOSTAverage']]], + ['m_5ft_5finit_1222',['m_t_init',['../classMOSTAverage.html#a3fe20fc4a4eb0b283f1d658b6237004c',1,'MOSTAverage']]], + ['m_5fterr_1223',['m_terr',['../classTerrainIF.html#a3e1f2814d20da7b5dd6d1d620b04784c',1,'TerrainIF']]], + ['m_5fterrain_5ftype_1224',['m_terrain_type',['../classERFPhysBCFunct__w.html#a96add99b86d3a03a872af7af85ad8e96',1,'ERFPhysBCFunct_w']]], + ['m_5ftheta_5fdir_1225',['m_theta_dir',['../classMM5.html#ab8187a0b9206d9c1d6632d494a149d1a',1,'MM5::m_theta_dir()'],['../classSLM.html#aec067697af550a8122138e57c4e0666d',1,'SLM::m_theta_dir()']]], + ['m_5fthrust_5fcoeff_1226',['m_thrust_coeff',['../classNullWindFarm.html#a7fe11fbaf6a246c60156e40aec3835f7',1,'NullWindFarm']]], + ['m_5fthrust_5fcoeff_5fstanding_1227',['m_thrust_coeff_standing',['../classNullWindFarm.html#a5a95464f19af9063228d23981f3a75cd',1,'NullWindFarm']]], + ['m_5ftime_1228',['m_time',['../structTimeInterpolatedData.html#a9b0102facc1d00011f48f95132955e27',1,'TimeInterpolatedData']]], + ['m_5ftime_5ffile_1229',['m_time_file',['../classReadBndryPlanes.html#a8027f415fce9acdc5ad53745016f67bf',1,'ReadBndryPlanes::m_time_file()'],['../classWriteBndryPlanes.html#a91c8abe5b1a15f5fe630db40230f08c1',1,'WriteBndryPlanes::m_time_file()']]], + ['m_5ftime_5fwindow_1230',['m_time_window',['../classMOSTAverage.html#ac95147c0d7961323ca8b079f63cd4be9',1,'MOSTAverage']]], + ['m_5ftinterp_1231',['m_tinterp',['../classReadBndryPlanes.html#a3f5e28f23e03b5c32f23ac953987728a',1,'ReadBndryPlanes']]], + ['m_5ftn_1232',['m_tn',['../classReadBndryPlanes.html#ade779c58aa5ea62cf1e03cbfaf98bb61',1,'ReadBndryPlanes']]], + ['m_5ftnp1_1233',['m_tnp1',['../classReadBndryPlanes.html#a4343c3c0761df0f96c58f8d268a43017',1,'ReadBndryPlanes']]], + ['m_5ftnp2_1234',['m_tnp2',['../classReadBndryPlanes.html#aca1dcdc531215bfd5a12fb286d064c8c',1,'ReadBndryPlanes']]], + ['m_5fu_5fbc_5fdata_1235',['m_u_bc_data',['../classERFPhysBCFunct__u.html#a603a1822cba514966ad201cfc676cdf6',1,'ERFPhysBCFunct_u']]], + ['m_5fuse_5freal_5fbcs_1236',['m_use_real_bcs',['../classERFPhysBCFunct__cons.html#a0e54453355d6a7c96044113c8827a008',1,'ERFPhysBCFunct_cons::m_use_real_bcs()'],['../classERFPhysBCFunct__u.html#a4a1ce4ec8f730cb61568aee6eceefe1f',1,'ERFPhysBCFunct_u::m_use_real_bcs()'],['../classERFPhysBCFunct__v.html#aa17ac5983f98d1b13f952fa7f2c39b54',1,'ERFPhysBCFunct_v::m_use_real_bcs()'],['../classERFPhysBCFunct__w.html#a6e6cdc32da147f7bc00d8c408b5df9a1',1,'ERFPhysBCFunct_w::m_use_real_bcs()'],['../classERFPhysBCFunct__w__no__terrain.html#a6ec9592d34b537392cbcb34ffb63f99a',1,'ERFPhysBCFunct_w_no_terrain::m_use_real_bcs()']]], + ['m_5fv_5fbc_5fdata_1237',['m_v_bc_data',['../classERFPhysBCFunct__v.html#a1abc171e8cfcd542f4d9e312e0f586c1',1,'ERFPhysBCFunct_v']]], + ['m_5fvar_5fnames_1238',['m_var_names',['../classReadBndryPlanes.html#aa5f533fb198d42785bfebe5cd8ae7131',1,'ReadBndryPlanes::m_var_names()'],['../classWriteBndryPlanes.html#a85703bf41a6ba0382f13a90f64ba417b',1,'WriteBndryPlanes::m_var_names()']]], + ['m_5fw2d_1239',['m_w2d',['../classERF.html#aa53035f34ba133b86172e180abda4209',1,'ERF']]], + ['m_5fw_5fbc_5fdata_1240',['m_w_bc_data',['../classERFPhysBCFunct__w.html#a4c66456080eb954ef8c80fc3dcfc4c3a',1,'ERFPhysBCFunct_w::m_w_bc_data()'],['../classERFPhysBCFunct__w__no__terrain.html#a061d0fb277d977056e7485d4ab4abc3c',1,'ERFPhysBCFunct_w_no_terrain::m_w_bc_data()']]], + ['m_5fwind_5fspeed_1241',['m_wind_speed',['../classNullWindFarm.html#a9beae3f8f39bb7bde432530da926d6ef',1,'NullWindFarm']]], + ['m_5fwindfarm_5fmodel_1242',['m_windfarm_model',['../classWindFarm.html#af3953694e6a246585c20f50436a65123',1,'WindFarm']]], + ['m_5fx_5fpos_1243',['m_x_pos',['../classMOSTAverage.html#a58c320eb48f9b8a1b0983d2770e9f3ea',1,'MOSTAverage']]], + ['m_5fxlo_1244',['m_xlo',['../classPlaneAverage.html#a42c7dfa900a0b69ba1d294455ca8ba51',1,'PlaneAverage']]], + ['m_5fxloc_1245',['m_xloc',['../classNullWindFarm.html#ac8ff132b0d2d52032ec19344ec6a74c6',1,'NullWindFarm']]], + ['m_5fy_5fpos_1246',['m_y_pos',['../classMOSTAverage.html#a1beb0dad926be2f2d9cb1de69a1a3374',1,'MOSTAverage']]], + ['m_5fyloc_1247',['m_yloc',['../classNullWindFarm.html#a86792dc0d8fb3dfc9b9646c38a2926da',1,'NullWindFarm']]], + ['m_5fz_5fphys_5fnd_1248',['m_z_phys_nd',['../classERFPhysBCFunct__cons.html#ad33ab704eb9b5d62a4db9317f40255dd',1,'ERFPhysBCFunct_cons::m_z_phys_nd()'],['../classERFPhysBCFunct__u.html#aefe9bc994735627162154bc289a0de3c',1,'ERFPhysBCFunct_u::m_z_phys_nd()'],['../classERFPhysBCFunct__v.html#afffa0e227916c179928f9a3eb7a07c3c',1,'ERFPhysBCFunct_v::m_z_phys_nd()'],['../classERFPhysBCFunct__w.html#aa37508122179536336aa8dba19d34c1b',1,'ERFPhysBCFunct_w::m_z_phys_nd()'],['../classMOSTAverage.html#a3a49018467b69573ef84df9cdfd86da4',1,'MOSTAverage::m_z_phys_nd()'],['../classKessler.html#aaead0b1bbb0693e5ef480fd15bcbe559',1,'Kessler::m_z_phys_nd()'],['../classSAM.html#a51af1452ad89711f8ddaa554cdc49ee6',1,'SAM::m_z_phys_nd()']]], + ['m_5fz_5fpos_1249',['m_z_pos',['../classMOSTAverage.html#a81ff1b7e8d026f0cd74147cbcc016d15',1,'MOSTAverage']]], + ['m_5fzref_1250',['m_zref',['../classMOSTAverage.html#af2f1477f6bc5e4b2f2ddee27d17dab9f',1,'MOSTAverage']]], + ['ma_5flist_1251',['ma_list',['../classMamConstituents.html#ab9703f219ce7a084e170017035dc269b',1,'MamConstituents']]], + ['main_1252',['main',['../main_8cpp.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main.cpp']]], + ['main_2ecpp_1253',['main.cpp',['../main_8cpp.html',1,'']]], + ['main_2edox_1254',['main.dox',['../main_8dox.html',1,'']]], + ['make_5fareas_1255',['make_areas',['../Utils_8H.html#afd5f5cf174d096726815e6d7dc325c41',1,'make_areas(const amrex::Geometry &geom, amrex::MultiFab &z_phys_nd, amrex::MultiFab &ax, amrex::MultiFab &ay, amrex::MultiFab &az): Utils.H'],['../TerrainMetrics_8cpp.html#a920c175414adfaaa26687bfb8e7585bb',1,'make_areas(const Geometry &geom, MultiFab &z_phys_nd, MultiFab &ax, MultiFab &ay, MultiFab &az): TerrainMetrics.cpp']]], + ['make_5fbuoyancy_1256',['make_buoyancy',['../Src__headers_8H.html#ab8d1e0300960f8aeabc92f0ffa82aefe',1,'make_buoyancy(amrex::Vector< amrex::MultiFab > &S_data, const amrex::MultiFab &S_prim, amrex::MultiFab &buoyancy, const amrex::Geometry geom, const SolverChoice &solverChoice, const amrex::MultiFab *r0, const int &qstate_size): Src_headers.H'],['../ERF__make__buoyancy_8cpp.html#a3906c740c767c111dc3f0adec0215e78',1,'make_buoyancy(Vector< MultiFab > &S_data, const MultiFab &S_prim, MultiFab &buoyancy, const amrex::Geometry geom, const SolverChoice &solverChoice, const MultiFab *r0, const int &qstate_size): ERF_make_buoyancy.cpp']]], + ['make_5ffast_5fcoeffs_1257',['make_fast_coeffs',['../ERF__make__fast__coeffs_8cpp.html#a76dfae5a4d6b6037b1261e5c42936616',1,'make_fast_coeffs(int, MultiFab &fast_coeffs, Vector< MultiFab > &S_stage_data, const MultiFab &S_stage_prim, const MultiFab &pi_stage, const amrex::Geometry geom, bool l_use_moisture, bool l_use_terrain, Real gravity, Real c_p, std::unique_ptr< MultiFab > &detJ_cc, const MultiFab *r0, const MultiFab *pi0, Real dtau, Real beta_s, amrex::GpuArray< ERF_BC, AMREX_SPACEDIM *2 > &phys_bc_type): ERF_make_fast_coeffs.cpp'],['../TI__fast__headers_8H.html#adfda58e818c53254b1fa053669e911e8',1,'make_fast_coeffs(int level, amrex::MultiFab &fast_coeffs, amrex::Vector< amrex::MultiFab > &S_stage_data, const amrex::MultiFab &S_stage_prim, const amrex::MultiFab &pi_stage, const amrex::Geometry geom, const bool use_moisture, const bool use_terrain, const amrex::Real gravity, const amrex::Real c_p, std::unique_ptr< amrex::MultiFab > &detJ_cc, const amrex::MultiFab *r0, const amrex::MultiFab *pi0, const amrex::Real dtau, const amrex::Real beta_s, amrex::GpuArray< ERF_BC, AMREX_SPACEDIM *2 > &phys_bc_type): TI_fast_headers.H']]], + ['make_5fj_1258',['make_J',['../Utils_8H.html#accb87d367dfa749571761aa789fd3fea',1,'make_J(const amrex::Geometry &geom, amrex::MultiFab &z_phys_nd, amrex::MultiFab &detJ_cc): Utils.H'],['../TerrainMetrics_8cpp.html#a9c1ecbedddfe464d9db02960e5422564',1,'make_J(const Geometry &geom, MultiFab &z_phys_nd, MultiFab &detJ_cc): TerrainMetrics.cpp']]], + ['make_5fmom_5fsources_1259',['make_mom_sources',['../ERF__make__mom__sources_8cpp.html#a027a2c40019232ded6ad99a99e448eb7',1,'make_mom_sources(int, int, Real dt, Vector< MultiFab > &S_data, const MultiFab &S_prim, const MultiFab &, const MultiFab &, MultiFab &xmom_src, MultiFab &ymom_src, MultiFab &zmom_src, MultiFab *r0, const Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< MultiFab > &mapfac_m, std::unique_ptr< MultiFab > &mapfac_u, std::unique_ptr< MultiFab > &mapfac_v, const Real *dptr_u_geos, const Real *dptr_v_geos, const Real *dptr_wbar_sub, const Vector< Real * > d_rayleigh_ptrs_at_lev, const Vector< Real * > d_sponge_ptrs_at_lev, int n_qstate): ERF_make_mom_sources.cpp'],['../Src__headers_8H.html#a752957bae3f28998131ff3d42becf41d',1,'make_mom_sources(int level, int nrk, amrex::Real dt, amrex::Vector< amrex::MultiFab > &S_data, const amrex::MultiFab &S_prim, const amrex::MultiFab &xvel, const amrex::MultiFab &yvel, amrex::MultiFab &xmom_source, amrex::MultiFab &ymom_source, amrex::MultiFab &zmom_source, amrex::MultiFab *r0, const amrex::Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< amrex::MultiFab > &mapfac_m, std::unique_ptr< amrex::MultiFab > &mapfac_u, std::unique_ptr< amrex::MultiFab > &mapfac_v, const amrex::Real *dptr_rhotheta_src, const amrex::Real *dptr_rhoqt_src, const amrex::Real *dptr_wbar_sub, const amrex::Vector< amrex::Real * > d_rayleigh_ptrs_at_lev, const amrex::Vector< amrex::Real * > d_sponge_ptrs_at_lev, const int n_qstate): Src_headers.H']]], + ['make_5fsources_1260',['make_sources',['../ERF__make__sources_8cpp.html#ae5ce4675f35ecdefeb8d33f181d7504c',1,'make_sources(int level, int, Real dt, Vector< MultiFab > &S_data, const MultiFab &S_prim, MultiFab &source, const Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< MultiFab > &mapfac_u, std::unique_ptr< MultiFab > &mapfac_v, const Real *dptr_rhotheta_src, const Real *dptr_rhoqt_src, const Real *dptr_wbar_sub, const Vector< Real * > d_rayleigh_ptrs_at_lev, TurbulentPerturbation &turbPert): ERF_make_sources.cpp'],['../Src__headers_8H.html#a162bf8f8a720e76a5fa7f8babaa7bd41',1,'make_sources(int level, int nrk, amrex::Real dt, amrex::Vector< amrex::MultiFab > &S_data, const amrex::MultiFab &S_prim, amrex::MultiFab &cc_source, const amrex::Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< amrex::MultiFab > &mapfac_u, std::unique_ptr< amrex::MultiFab > &mapfac_v, const amrex::Real *dptr_rhotheta_src, const amrex::Real *dptr_rhoqt_src, const amrex::Real *dptr_wbar_sub, const amrex::Vector< amrex::Real * > d_rayleigh_ptrs_at_lev, TurbulentPerturbation &turbPert): Src_headers.H']]], + ['make_5fzcc_1261',['make_zcc',['../TerrainMetrics_8cpp.html#acc28d890df44cf0082a848c057042178',1,'make_zcc(const Geometry &geom, MultiFab &z_phys_nd, MultiFab &z_phys_cc): TerrainMetrics.cpp'],['../Utils_8H.html#ab405f3b5732dda49ad076fab09bfbfc8',1,'make_zcc(const amrex::Geometry &geom, amrex::MultiFab &z_phys_nd, amrex::MultiFab &z_phys_cc): Utils.H']]], + ['makediagnosticaverage_1262',['MakeDiagnosticAverage',['../classERF.html#a93ed2dd2c2441da6853d6f48b6467324',1,'ERF']]], + ['makehorizontalaverages_1263',['MakeHorizontalAverages',['../classERF.html#a01987b2556834788694f2f3741a2afe4',1,'ERF']]], + ['makenewlevelfromcoarse_1264',['MakeNewLevelFromCoarse',['../classERF.html#abb6175c28b36d23f5dda2994ca4a85e7',1,'ERF']]], + ['makenewlevelfromscratch_1265',['MakeNewLevelFromScratch',['../classERF.html#aaf10bbf8c9a5dbc257a88c4c1b650fee',1,'ERF']]], + ['makoh_5fcubic_1266',['makoh_cubic',['../classModalAeroWateruptake.html#a134cf0f1fd68266a37a7683e362553c4',1,'ModalAeroWateruptake']]], + ['makoh_5fquartic_1267',['makoh_quartic',['../classModalAeroWateruptake.html#a63dc4418d21ddbc2f88a86e6b5e05640',1,'ModalAeroWateruptake']]], + ['mam4_5faer_1268',['Mam4_aer',['../classMam4__aer.html',1,'']]], + ['mam4_5faero_2eh_1269',['Mam4_aero.H',['../Mam4__aero_8H.html',1,'']]], + ['mam4_5fconstituents_2eh_1270',['Mam4_constituents.H',['../Mam4__constituents_8H.html',1,'']]], + ['mam_5faer_1271',['mam_aer',['../classAerRadProps.html#afb607ae14bfc3e46dd66c9e04627a57d',1,'AerRadProps']]], + ['mam_5fconsti_1272',['mam_consti',['../classMam4__aer.html#a2dcd6d3b6a38a2f0e8bc389c80fb4ae9',1,'Mam4_aer::mam_consti()'],['../classAerRadProps.html#a66f750181cccc82c03268b0a4a245ecc',1,'AerRadProps::mam_consti()']]], + ['mamconstituents_1273',['MamConstituents',['../classMamConstituents.html#a6839b6299dcdd8acf1cc859d929e0026',1,'MamConstituents::MamConstituents()'],['../classMamConstituents.html',1,'MamConstituents']]], + ['map_5fdata_1274',['map_data',['../classMRISplitIntegrator.html#a14fd551d7a7ff5bf6c58500740a64547',1,'MRISplitIntegrator']]], + ['mapfac_5fm_1275',['mapfac_m',['../classERF.html#a23aacdb72e9d2dfed8e2ebd2c2526497',1,'ERF']]], + ['mapfac_5fu_1276',['mapfac_u',['../classERF.html#a1e8afee1508b720dab56f5d044deb301',1,'ERF']]], + ['mapfac_5fv_1277',['mapfac_v',['../classERF.html#ae49b5055f9a7117fa15918a5daa775b7',1,'ERF']]], + ['mass_5fname_1278',['mass_name',['../structMamConstituents_1_1aerosol__t.html#a300418f68393143be3f4852641ac465b',1,'MamConstituents::aerosol_t::mass_name()'],['../structMamConstituents_1_1gas__t.html#ad63e38b410aa69ed3f76d6898b35b53a',1,'MamConstituents::gas_t::mass_name()']]], + ['mathematicalbndrytypes_1279',['mathematicalBndryTypes',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01c',1,'ERFBCType']]], + ['max_5fiter_1280',['MAX_ITER',['../namespaceHSEutils.html#a10de540cb8ad96aea8cd080f4d1e72fa',1,'HSEutils']]], + ['max_5fk_5fat_5flevel_1281',['max_k_at_level',['../classERF.html#a9108040a44e5e64853ac7d6529538315',1,'ERF']]], + ['max_5fstep_1282',['max_step',['../classERF.html#a0634154e8e58379c495c3e7fe7c5e4d6',1,'ERF']]], + ['mcica_5fsubcol_5fmask_1283',['mcica_subcol_mask',['../classOptics.html#a078568b5fcba367944981fe065623e0c',1,'Optics']]], + ['mdata_1284',['mdata',['../structadiabatic.html#afdc69c66b9c49f67d4f2409bc1f3ce29',1,'adiabatic::mdata()'],['../structadiabatic__charnock.html#a5c11064c35d6eefd22558180155d6ede',1,'adiabatic_charnock::mdata()'],['../structadiabatic__mod__charnock.html#ad33aa4fea2aa05dbb4057dcef251e0da',1,'adiabatic_mod_charnock::mdata()'],['../structadiabatic__wave__coupled.html#a812ea5ea7d6223e5512c372b3260d1bc',1,'adiabatic_wave_coupled::mdata()'],['../structsurface__flux.html#a960909fe387424192cf802afccdc7bed',1,'surface_flux::mdata()'],['../structsurface__flux__charnock.html#a60030c5104987d6287efd5d9b996014c',1,'surface_flux_charnock::mdata()'],['../structsurface__flux__mod__charnock.html#a6fa441221eb1f30d65437ce890adfd46',1,'surface_flux_mod_charnock::mdata()'],['../structsurface__flux__wave__coupled.html#a7c81c888df97ef0ff4dc54be9c4e163a',1,'surface_flux_wave_coupled::mdata()'],['../structsurface__temp.html#afec351f7cde260c6e96a27297cb4010f',1,'surface_temp::mdata()'],['../structsurface__temp__charnock.html#a073ad08e0d652e792b459878e10dc41b',1,'surface_temp_charnock::mdata()'],['../structsurface__temp__mod__charnock.html#a98f673e5030f4509a8874466337f50c4',1,'surface_temp_mod_charnock::mdata()'],['../structsurface__temp__wave__coupled.html#a44d84ddefc6dc5572f1b1e614996b288',1,'surface_temp_wave_coupled::mdata()']]], + ['meter_1285',['meter',['../classRadConstants.html#a2de1ff8cbc3cafe6a42e8f884002e4f1a3c6b87cb2d07bd40e9ed24c8729b20bd',1,'RadConstants']]], + ['metgrid_5futils_2eh_1286',['Metgrid_utils.H',['../Metgrid__utils_8H.html',1,'']]], + ['metgridbdyvars_1287',['MetGridBdyVars',['../namespaceMetGridBdyVars.html',1,'']]], + ['mic_5ffab_5fvars_1288',['mic_fab_vars',['../classKessler.html#aa11214a3e579cc9d6309359b1c05e5ab',1,'Kessler::mic_fab_vars()'],['../classSAM.html#a36ee9e1e1a94d22304f46e064f16e11e',1,'SAM::mic_fab_vars()']]], + ['micro_1289',['micro',['../classERF.html#a4b7277d54649219f31fe286eee9d415a',1,'ERF']]], + ['micrometer_1290',['micrometer',['../classRadConstants.html#a2de1ff8cbc3cafe6a42e8f884002e4f1aca44c575fbae0e89d6f7764169e03c46',1,'RadConstants']]], + ['microphysics_1291',['Microphysics',['../classMicrophysics.html#a79bf043906abc7e4d738318ec8e7aa2e',1,'Microphysics::Microphysics()'],['../classMicrophysics.html',1,'Microphysics']]], + ['microphysics_2eh_1292',['Microphysics.H',['../Microphysics_8H.html',1,'']]], + ['microphysics_5futils_2eh_1293',['Microphysics_Utils.H',['../Microphysics__Utils_8H.html',1,'']]], + ['micvar_1294',['MicVar',['../namespaceMicVar.html',1,'']]], + ['micvar_5fkess_1295',['MicVar_Kess',['../namespaceMicVar__Kess.html',1,'']]], + ['micvarmap_1296',['MicVarMap',['../classKessler.html#a18164f048f846cd122de43803b49c1cb',1,'Kessler::MicVarMap()'],['../classSAM.html#a6008487ad12ada77acdcb3ee41371c98',1,'SAM::MicVarMap()']]], + ['min_5fk_5fat_5flevel_1297',['min_k_at_level',['../classERF.html#a46a3587ddcfacba35dcf52189cc1be86',1,'ERF']]], + ['mitchell_5fice_5foptics_5flw_1298',['mitchell_ice_optics_lw',['../classCloudRadProps.html#a1ab01da075a2a82b9fb4c341ff85e373',1,'CloudRadProps']]], + ['mitchell_5fice_5foptics_5fsw_1299',['mitchell_ice_optics_sw',['../classCloudRadProps.html#a32483def8d0d82a6d1cb57834fe04b7d',1,'CloudRadProps']]], + ['mm5_1300',['MM5',['../DataStruct_8H.html#abeec366fd5381f3bb7ba39f6e5c1e7e4a4594809823de21e46cbf63b1bcd316b5',1,'MM5(): DataStruct.H'],['../classMM5.html#a1cb63322dbfcb32636b286d8043a2893',1,'MM5::MM5()'],['../classMM5.html',1,'MM5']]], + ['mm5_2ecpp_1301',['MM5.cpp',['../MM5_8cpp.html',1,'']]], + ['mm5_2eh_1302',['MM5.H',['../MM5_8H.html',1,'']]], + ['modal_5faero_5fcalcsize_5fdiag_1303',['modal_aero_calcsize_diag',['../classMam4__aer.html#adedd31f2c7c2a293e6f3dfc4818b175d',1,'Mam4_aer']]], + ['modal_5faero_5fkohler_1304',['modal_aero_kohler',['../classModalAeroWateruptake.html#abdedb99ff569dd300dd3046820da78e8',1,'ModalAeroWateruptake']]], + ['modal_5faero_5flw_1305',['modal_aero_lw',['../classMam4__aer.html#a893de418ed6818eeece9ed80b72cb685',1,'Mam4_aer']]], + ['modal_5faero_5fsw_1306',['modal_aero_sw',['../classMam4__aer.html#a2327a69b0d90bb5e4d77f8864a1196f8',1,'Mam4_aer']]], + ['modal_5faero_5fwateruptake_2eh_1307',['Modal_aero_wateruptake.H',['../Modal__aero__wateruptake_8H.html',1,'']]], + ['modal_5faero_5fwateruptake_5fdr_1308',['modal_aero_wateruptake_dr',['../classModalAeroWateruptake.html#aab174a0054ce6dfa80f15e391d9489c6',1,'ModalAeroWateruptake']]], + ['modal_5faero_5fwateruptake_5fsub_1309',['modal_aero_wateruptake_sub',['../classModalAeroWateruptake.html#a7c1e0109c368bd156beb85a2e98a8878',1,'ModalAeroWateruptake']]], + ['modal_5foptics_5ffile_1310',['modal_optics_file',['../classMam4__aer.html#a396c0ab69e47a8cbc27c346aa2fb489d',1,'Mam4_aer']]], + ['modal_5foptics_5finit_1311',['modal_optics_init',['../classPhysProp.html#a3e12605585c1b1a1c92dc34c9dfebc85',1,'PhysProp']]], + ['modal_5fsize_5fparameters_1312',['modal_size_parameters',['../classMam4__aer.html#a1097c2d484ccac94860e32f0bdf54915',1,'Mam4_aer']]], + ['modalaerowateruptake_1313',['ModalAeroWateruptake',['../classModalAeroWateruptake.html',1,'']]], + ['mode_5fcomponent_5ft_1314',['mode_component_t',['../structMamConstituents_1_1mode__component__t.html',1,'MamConstituents']]], + ['mode_5ftype_5fnames_1315',['mode_type_names',['../classMamConstituents.html#a5c94b10764d82b018270ebf012cd657b',1,'MamConstituents']]], + ['modelist_5ft_1316',['modelist_t',['../structMamConstituents_1_1modelist__t.html',1,'MamConstituents']]], + ['modeltype_1317',['modelType',['../classMicrophysics.html#ac10e6fce2e6cb49373d56ca0e1a5b366',1,'Microphysics']]], + ['modes_1318',['modes',['../classMamConstituents.html#a1692c29032818c08c3b1ac985a35d521',1,'MamConstituents']]], + ['modes_5ft_1319',['modes_t',['../structMamConstituents_1_1modes__t.html',1,'MamConstituents']]], + ['modified_5fcharnock_1320',['MODIFIED_CHARNOCK',['../classABLMost.html#ae825f96c2d098b3e070642a74e6a3f13a266bf3048d67b1b3187c0189bc232fde',1,'ABLMost']]], + ['moeng_1321',['MOENG',['../classABLMost.html#a92e41ba7a650b4768aa6bc006b2241e0a0525d4394471c332f3c0a497584923d5',1,'ABLMost']]], + ['moeng_5fflux_1322',['moeng_flux',['../structmoeng__flux.html',1,'moeng_flux'],['../structmoeng__flux.html#a2843a181e875e6599b04964c28117900',1,'moeng_flux::moeng_flux()']]], + ['moistscal_5fhoriz_5fadv_5ftype_1323',['moistscal_horiz_adv_type',['../structAdvChoice.html#a22f84c60e56d4b3bde6b7f9548c87af3',1,'AdvChoice']]], + ['moistscal_5fhoriz_5fupw_5ffrac_1324',['moistscal_horiz_upw_frac',['../structAdvChoice.html#a69b32bcee6cd30f3f88280d0ec49cd35',1,'AdvChoice']]], + ['moistscal_5fvert_5fadv_5ftype_1325',['moistscal_vert_adv_type',['../structAdvChoice.html#a2f888dfcb79cdb766ee04f21aada83ec',1,'AdvChoice']]], + ['moistscal_5fvert_5fupw_5ffrac_1326',['moistscal_vert_upw_frac',['../structAdvChoice.html#a334139583accdc5718a939b20b308bb9',1,'AdvChoice']]], + ['moisture_5ftype_1327',['moisture_type',['../structSolverChoice.html#aacbfbe6f4a3040db3efdc6dbf8fa291b',1,'SolverChoice']]], + ['moisturemodeltype_1328',['MoistureModelType',['../DataStruct_8H.html#a62a5a9bde82457a1611cde231a43bfe5',1,'DataStruct.H']]], + ['moisturetype_1329',['MoistureType',['../DataStruct_8H.html#ab34704153a585940411c26587cb82ad0',1,'DataStruct.H']]], + ['molec_5fdiff_5ftype_1330',['molec_diff_type',['../structDiffChoice.html#aed5c75ec58e358a735d97869147b2baf',1,'DiffChoice']]], + ['molecdifftype_1331',['MolecDiffType',['../DiffStruct_8H.html#a84e6bfbbb8e490790c506939b364f735',1,'DiffStruct.H']]], + ['mom_5fh_1332',['Mom_h',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea2e96e6d5e84e7d7b9857e73159dfbe2b',1,'EddyDiff']]], + ['mom_5fv_1333',['Mom_v',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea61ed124b350a1b26da1bd26aebfa5f82',1,'EddyDiff']]], + ['momentumtovelocity_1334',['MomentumToVelocity',['../MomentumToVelocity_8cpp.html#a4909cdce4c261c6dae5564fb714881ea',1,'MomentumToVelocity(MultiFab &xvel, MultiFab &yvel, MultiFab &zvel, const MultiFab &density, const MultiFab &xmom_in, const MultiFab &ymom_in, const MultiFab &zmom_in, const Box &domain, const Vector< BCRec > &domain_bcs_type_h): MomentumToVelocity.cpp'],['../Utils_8H.html#a26382a1781acfcd6b4740685db28d6b2',1,'MomentumToVelocity(amrex::MultiFab &xvel_out, amrex::MultiFab &yvel_out, amrex::MultiFab &zvel_out, const amrex::MultiFab &cons_in, const amrex::MultiFab &xmom_in, const amrex::MultiFab &ymom_in, const amrex::MultiFab &zmom_in, const amrex::Box &domain, const amrex::Vector< amrex::BCRec > &domain_bcs_type_h): Utils.H']]], + ['momentumtovelocity_2ecpp_1335',['MomentumToVelocity.cpp',['../MomentumToVelocity_8cpp.html',1,'']]], + ['most_1336',['MOST',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9a882dd232c0425bb9366544f84f0a7b6c',1,'MOST(): IndexDefines.H'],['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca42d0838b4e8d40ee76fbaf2d55c3402e',1,'ERFBCType::MOST()']]], + ['most_5fdata_1337',['most_data',['../structmost__data.html',1,'']]], + ['mostaverage_1338',['MOSTAverage',['../classMOSTAverage.html#add74667e947201bbb2ddf2785f02ee0c',1,'MOSTAverage::MOSTAverage()'],['../classMOSTAverage.html',1,'MOSTAverage'],['../classMOSTAverage.html#a63d4ee91f32fe95e61b0dfe8fa5fac22',1,'MOSTAverage::MOSTAverage(amrex::Vector< amrex::Geometry > geom, amrex::Vector< amrex::Vector< amrex::MultiFab >> &vars_old, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Theta_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Qv_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &z_phys_nd)'],['../classMOSTAverage.html#acfc77dc21a0821d4b446f7be289c64d6',1,'MOSTAverage::MOSTAverage(MOSTAverage &&) noexcept=default']]], + ['mostaverage_2ecpp_1339',['MOSTAverage.cpp',['../MOSTAverage_8cpp.html',1,'']]], + ['mostaverage_2eh_1340',['MOSTAverage.H',['../MOSTAverage_8H.html',1,'']]], + ['moststress_2eh_1341',['MOSTStress.H',['../MOSTStress_8H.html',1,'']]], + ['moving_1342',['Moving',['../DataStruct_8H.html#af82ff6f1edafee12190434b73fe91127adefe967ad0373b2274fc298f19125ca7',1,'DataStruct.H']]], + ['mri_5fintegrator_5fmem_1343',['mri_integrator_mem',['../classERF.html#a09d0fb2bd609c898a665d9530a744585',1,'ERF']]], + ['mrisplitintegrator_1344',['MRISplitIntegrator',['../classMRISplitIntegrator.html#a809aa55db013cd913fe3546ef8001fd4',1,'MRISplitIntegrator::MRISplitIntegrator(MRISplitIntegrator &&) noexcept=default'],['../classMRISplitIntegrator.html#a526041af494ee08e31efefc98aaa07ab',1,'MRISplitIntegrator::MRISplitIntegrator(const MRISplitIntegrator &other)=delete'],['../classMRISplitIntegrator.html#a9ea1c36a75e04596ffe0fa29e614b6e2',1,'MRISplitIntegrator::MRISplitIntegrator(const T &S_data)'],['../classMRISplitIntegrator.html#a42d755c9aea9203dfdcbbe4cb76f83e3',1,'MRISplitIntegrator::MRISplitIntegrator()=default'],['../classMRISplitIntegrator.html',1,'MRISplitIntegrator< T >']]], + ['mu_1345',['MU',['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a9d2d300be8f8f15441322fce35c9c92e',1,'WRFBdyVars']]], + ['mu_1346',['mu',['../structPhysProp_1_1physprop__t.html#aa23d4f11099641ffb9c395c327156980',1,'PhysProp::physprop_t']]], + ['muelq_1347',['muelq',['../ERF__Constants_8H.html#a0e5683feac33352111ce4445dbedbf45',1,'ERF_Constants.H']]], + ['multiblockcontainer_1348',['MultiBlockContainer',['../classMultiBlockContainer.html#a285674e081e90380c665398b91535794',1,'MultiBlockContainer::MultiBlockContainer()'],['../classMultiBlockContainer.html',1,'MultiBlockContainer']]], + ['multiblockcontainer_2ecpp_1349',['MultiBlockContainer.cpp',['../MultiBlockContainer_8cpp.html',1,'']]], + ['multiblockcontainer_2eh_1350',['MultiBlockContainer.H',['../MultiBlockContainer_8H.html',1,'']]], + ['murphykoop_1351',['MurphyKoop',['../classSatMethods.html#a62096d95f324cd2a3504554437067ef7a614be0679f050250e4d5494708d1136a',1,'SatMethods']]], + ['murphykoop_5fsvp_5fice_1352',['MurphyKoop_svp_ice',['../classSatMethods.html#a87786f42b9d0601dc1d22f635906a76f',1,'SatMethods']]], + ['murphykoop_5fsvp_5fwater_1353',['MurphyKoop_svp_water',['../classSatMethods.html#aac1daa9a38464e217df80a4f9613bcb3',1,'SatMethods']]], + ['mvelpp_1354',['mvelpp',['../classRadiation.html#ae4dacdbc7383b92511c2385bd59ed49a',1,'Radiation']]], + ['mwdair_1355',['mwdair',['../ERF__Constants_8H.html#a650da208ce885c0f6c9c742d26dc4b0e',1,'ERF_Constants.H']]], + ['mwwv_1356',['mwwv',['../ERF__Constants_8H.html#a75abd92a75952e8eefd06628c8c3487d',1,'ERF_Constants.H']]], + ['mynn25_1357',['MYNN25',['../TurbStruct_8H.html#a4a079f2650ca30c787a8375ec5f17ca5abdeb9a753db1d1f3fe0e944eab1d0601',1,'TurbStruct.H']]] ]; diff --git a/search/all_d.js b/search/all_d.js index 93ffea997c..fb8edd50d2 100644 --- a/search/all_d.js +++ b/search/all_d.js @@ -1,112 +1,112 @@ var searchData= [ - ['n_5fdiag_1356',['N_DIAG',['../classMamConstituents.html#a05b4d113513de18b2e7bbdc4e9cb4dbf',1,'MamConstituents']]], - ['n_5fdiag_1357',['n_diag',['../classMam4__aer.html#afe4495578dc4adefe7b2ab2780aee8ee',1,'Mam4_aer']]], - ['n_5fg_5fd_1358',['n_g_d',['../classCloudRadProps.html#a40e14de999dd323f0cc8db50f46031e8',1,'CloudRadProps']]], - ['n_5frad_5fcnst_1359',['n_rad_cnst',['../classMamConstituents.html#a75a27a90ef149368fc0a7676daeb4a84',1,'MamConstituents']]], - ['naer_1360',['naer',['../classRadiation.html#a59a37de7bc777e2ecac052a59d7a0aec',1,'Radiation']]], - ['name_1361',['name',['../classProblemBase.html#a3a8fb70110fb25623cdfa7b508dee9cf',1,'ProblemBase::name()'],['../classncutils_1_1NCGroup.html#a3d53c2f625cc6fc286e76c9137b5b1b0',1,'ncutils::NCGroup::name()'],['../structncutils_1_1NCVar.html#a4b34f3722befd10e92d1267bcbd49724',1,'ncutils::NCVar::name()'],['../structncutils_1_1NCDim.html#aaf6334138e9892f5403400e31f062fd6',1,'ncutils::NCDim::name()'],['../classCloudRadProps.html#a7c91a5b46f8d85666e0ca0d1de8d23aa',1,'CloudRadProps::name()'],['../structNDArray.html#a0d3be2b45f3fb008d12ec17dfd6abf09',1,'NDArray::name()']]], - ['names_1362',['names',['../structMamConstituents_1_1modes__t.html#aa0ef7c08a80971086ecc620e6d7a6d31',1,'MamConstituents::modes_t']]], - ['nanometer_1363',['nanometer',['../classRadConstants.html#a2de1ff8cbc3cafe6a42e8f884002e4f1a7a267da562dd711a27346968f67cadfe',1,'RadConstants']]], - ['nbndlw_1364',['nbndlw',['../classRadConstants.html#a960db6e337b49d1d4a714615a5fa4b7e',1,'RadConstants']]], - ['nbndsw_1365',['nbndsw',['../classRadConstants.html#a2d23948379a116a266cfd943b3275be4',1,'RadConstants']]], - ['nc_5fbdy_5ffile_1366',['nc_bdy_file',['../classERF.html#a7e9040f32464f1a6dee6e0384393451d',1,'ERF']]], - ['nc_5fdata_5fdims_5ftype_1367',['NC_Data_Dims_Type',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06',1,'NCWpsFile.H']]], - ['nc_5finit_5ffile_1368',['nc_init_file',['../classERF.html#a7ef14f6028b577eba70aef46b508be19',1,'ERF']]], - ['nccheckpoint_2ecpp_1369',['NCCheckpoint.cpp',['../NCCheckpoint_8cpp.html',1,'']]], - ['nccolumnfile_2ecpp_1370',['NCColumnFile.cpp',['../NCColumnFile_8cpp.html',1,'']]], - ['ncdim_1371',['NCDim',['../structncutils_1_1NCDim.html',1,'ncutils']]], - ['ncdtype_1372',['NCDType',['../structncutils_1_1NCDType.html',1,'ncutils']]], - ['ncell_5fline_1373',['ncell_line',['../classPlaneAverage.html#ab65036a99da90fb854f7dfd33cd700b1',1,'PlaneAverage']]], - ['ncell_5fplane_1374',['ncell_plane',['../classPlaneAverage.html#aaf4e5c9b73f65af3eb0ccdc6a82e76f2',1,'PlaneAverage']]], - ['ncfile_1375',['NCFile',['../classncutils_1_1NCFile.html#aec0e1a7f0f93f2f806c0a0abaae66423',1,'ncutils::NCFile::NCFile()'],['../classncutils_1_1NCFile.html',1,'ncutils::NCFile']]], - ['ncgroup_1376',['NCGroup',['../classncutils_1_1NCGroup.html#a6c43a3f92aaf1df239595cebdc8c9a16',1,'ncutils::NCGroup::NCGroup(const int id, const NCGroup *)'],['../classncutils_1_1NCGroup.html#a99e8b68dcdebf6a3df74c3575c3a3c65',1,'ncutils::NCGroup::NCGroup(const int id)'],['../classncutils_1_1NCGroup.html',1,'ncutils::NCGroup']]], - ['ncid_1377',['ncid',['../structncutils_1_1NCDim.html#a3272d1768518ba020b9bcd0d3699d544',1,'ncutils::NCDim::ncid()'],['../classncutils_1_1NCGroup.html#a860fe8aaf1cd7859541c67594fb8eabd',1,'ncutils::NCGroup::ncid()'],['../structncutils_1_1NCVar.html#a233d94aa3ccbef1cc12565340bcc7218',1,'ncutils::NCVar::ncid()']]], - ['ncinterface_2ecpp_1378',['NCInterface.cpp',['../NCInterface_8cpp.html',1,'']]], - ['ncinterface_2eh_1379',['NCInterface.H',['../NCInterface_8H.html',1,'']]], - ['ncmultifabfile_2ecpp_1380',['NCMultiFabFile.cpp',['../NCMultiFabFile_8cpp.html',1,'']]], - ['ncoef_1381',['ncoef',['../structPhysProp_1_1physprop__t.html#acc1135d01fd7ca5a6f0ba980e23e5a55',1,'PhysProp::physprop_t::ncoef()'],['../classMam4__aer.html#afcd94bccbfcc44e6a5d8262abc42a9ca',1,'Mam4_aer::ncoef()']]], - ['ncol_1382',['ncol',['../classMam4__aer.html#aaf29baf8a0903c3401e8577e811f5d18',1,'Mam4_aer::ncol()'],['../classRadiation.html#a8f47b85f948822c0e450beddb92373f4',1,'Radiation::ncol()'],['../classAerRadProps.html#a551936497e3a360746d6bfd53513d508',1,'AerRadProps::ncol()']]], - ['ncomp_1383',['ncomp',['../classPlaneAverage.html#a3860fd72df3e8dbb6b8decfdc360864f',1,'PlaneAverage']]], - ['ncomp_5fcons_1384',['ncomp_cons',['../classMRISplitIntegrator.html#a69e19ac4b8c02d71269e741e71b74c23',1,'MRISplitIntegrator']]], - ['ncorr_1385',['ncorr',['../structSolverChoice.html#a3b9fef36e4613507eef87379c2c9bf03',1,'SolverChoice']]], - ['ncplotfile_2ecpp_1386',['NCPlotFile.cpp',['../NCPlotFile_8cpp.html',1,'']]], - ['ncplotfile_2eh_1387',['NCPlotFile.H',['../NCPlotFile_8H.html',1,'']]], - ['ncutils_1388',['ncutils',['../namespacencutils.html',1,'']]], - ['ncvar_1389',['NCVar',['../structncutils_1_1NCVar.html',1,'ncutils']]], - ['ncwpsfile_2eh_1390',['NCWpsFile.H',['../NCWpsFile_8H.html',1,'']]], - ['ndarray_1391',['NDArray',['../structNDArray.html',1,'NDArray< DataType >'],['../structNDArray.html#a7bd19397e539424afc06e9fe12760434',1,'NDArray::NDArray(const std::string vname, const std::vector< size_t > &vshape)'],['../structNDArray.html#a1f33dbd861944bc1494f4790f4f8543d',1,'NDArray::NDArray()'],['../structNDArray.html#a54f69e355d97f10089f82fb1087fb0af',1,'NDArray::NDArray(const NDArray &array)']]], - ['ndim_1392',['ndim',['../structncutils_1_1NCVar.html#ae0ab15dc4c1033271878c3bf5102f911',1,'ncutils::NCVar::ndim()'],['../structNDArray.html#a1b3ece1ab109568fcb919d1af8f14eee',1,'NDArray::ndim()']]], - ['net_5fflux_1393',['net_flux',['../classRadiation.html#a12afbdd30cf76b0bc083324cf22cbb73',1,'Radiation']]], - ['netzerobuoyantadd_1394',['netZeroBuoyantAdd',['../structTurbulentPerturbation.html#acf1a844ac4076c4af8ef38963f3fcc60',1,'TurbulentPerturbation']]], - ['netzerobuoyantadjust_1395',['netZeroBuoyantAdjust',['../structTurbulentPerturbation.html#a573c68aeec901ddf7c3cfe102430e527',1,'TurbulentPerturbation']]], - ['neumann_1396',['neumann',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca0b217c3380adcde8f3cd9b58d949db60',1,'ERFBCType']]], - ['neumann_5fint_1397',['neumann_int',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01caa8e7f5249fea539bf14e97cfba9074d9',1,'ERFBCType']]], - ['newtonitersat_1398',['NewtonIterSat',['../classSAM.html#a0154097dd0c769a35dcc52c484dd0dc6',1,'SAM']]], - ['ng_5fdens_5fhse_1399',['ng_dens_hse',['../classERF.html#addf0fb2aae0efaa649c69685a4dcca83',1,'ERF']]], - ['ng_5fpres_5fhse_1400',['ng_pres_hse',['../classERF.html#a87dc6c0720462bfd088c909289cdca0b',1,'ERF']]], - ['ngas_1401',['ngas',['../classAerRadProps.html#ae41f31dfce03d5b3952114e12436bec9',1,'AerRadProps::ngas()'],['../structMamConstituents_1_1gaslist__t.html#a5fc9f5eeb290c5185e68bd2bf6f46618',1,'MamConstituents::gaslist_t::ngas()'],['../classOptics.html#abb94e5d9dc89e539796740c6f0b9a229',1,'Optics::ngas()'],['../classRadiation.html#aefc2fcddcd44a0c6d9ae06ec60e9ce37',1,'Radiation::ngas()'],['../classRrtmgp.html#a4b8b61c7a7fadac5b1cdd968144a5c01',1,'Rrtmgp::ngas()']]], - ['nlambda_1402',['nlambda',['../classCloudRadProps.html#a3ef54947677ddd898a7b6ded241db03c',1,'CloudRadProps']]], - ['nlev_1403',['nlev',['../classKessler.html#a8f9e3afdab979a19d8dfb0c4bdee471d',1,'Kessler::nlev()'],['../classSAM.html#a7da420869410dc959c2442962524259f',1,'SAM::nlev()'],['../classAerRadProps.html#a3854326c4b23eedef970611ab3a639dd',1,'AerRadProps::nlev()'],['../classMam4__aer.html#add9c70abae797f609d24a8ed47848030',1,'Mam4_aer::nlev()'],['../classRadiation.html#a65f94329afd4aad11489c87e5174c462',1,'Radiation::nlev()']]], - ['nlwbands_1404',['nlwbands',['../classAerRadProps.html#af2dc3b884340390993212e03e99112af',1,'AerRadProps::nlwbands()'],['../classCloudRadProps.html#ab7f6932c5559602939b8a32fa42ca1ca',1,'CloudRadProps::nlwbands()'],['../classMam4__aer.html#abc58cbc8ee25e23731610007e0f62fe4',1,'Mam4_aer::nlwbands()'],['../classRadiation.html#ab4451562115b24b40e0f04cae677c6e3',1,'Radiation::nlwbands()'],['../classRadConstants.html#a55471805ae99ef61cb9b0935bd1803f2',1,'RadConstants::nlwbands()']]], - ['nlwgpts_1405',['nlwgpts',['../classRadiation.html#a89625b089dbe4acbc85a7241fcbd3839',1,'Radiation']]], - ['nmodes_1406',['nmodes',['../classMam4__aer.html#adbd78e8ffa0bdd728b97ca66d08fb717',1,'Mam4_aer::nmodes()'],['../structMamConstituents_1_1modelist__t.html#aea57993996ab18dffe7ab00bc5e6c15e',1,'MamConstituents::modelist_t::nmodes()'],['../structMamConstituents_1_1modes__t.html#a9a549b30ee2d05c0bfe777b4625e7083',1,'MamConstituents::modes_t::nmodes()'],['../classAerRadProps.html#a3bd718612795e1c875ad70da941cc89a',1,'AerRadProps::nmodes()']]], - ['nmoist_5fmax_1407',['NMOIST_max',['../IndexDefines_8H.html#abe87e298e9d558e0659a67ad3b9be71f',1,'IndexDefines.H']]], - ['nmu_1408',['nmu',['../classCloudRadProps.html#ae7091519e3c4dfa0929e088c6234be73',1,'CloudRadProps']]], - ['no_5fip_5fhltalt_1409',['no_ip_hltalt',['../classWaterVaporSat.html#ad2bce1bf12d7f01fd354c36e17bfe635',1,'WaterVaporSat']]], - ['no_5fslip_5fwall_1410',['no_slip_wall',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9acb8c716b8d9b499d9bc323d8f8a410d3',1,'IndexDefines.H']]], - ['no_5fsubstep_1411',['no_substep',['../classMRISplitIntegrator.html#abb86ebaf6ca5a42e59670d2b15549658',1,'MRISplitIntegrator']]], - ['no_5fsubstep_5ffun_1412',['no_substep_fun',['../TI__no__substep__fun_8H.html#a4cad8180e91d2eabd5638651fc24bcc7',1,'TI_no_substep_fun.H']]], - ['no_5fsubstepping_1413',['no_substepping',['../classMRISplitIntegrator.html#afa0623b638cd29d3f307d34ef5a98d0f',1,'MRISplitIntegrator::no_substepping()'],['../structSolverChoice.html#a35e0c82996e345337368bc720bbd6070',1,'SolverChoice::no_substepping()']]], - ['nodebilinear_1414',['NodeBilinear',['../namespaceInterpType.html#ac65aa6d3ffa2549732d15f959cff81abaa8e5f7bd547098a67d20537514465dd9',1,'InterpType']]], - ['nominal_5fpower_1415',['nominal_power',['../classEWP.html#a00497b6ecc9493be40be6ce4f5ae02c5',1,'EWP::nominal_power()'],['../classFitch.html#afeb1ae13c307eeb71af9dfa8d97a3f7e',1,'Fitch::nominal_power()'],['../classSimpleAD.html#af9dae2d9db9de431b450e61c55a83ffe',1,'SimpleAD::nominal_power()'],['../classWindFarm.html#aa542d50137f25dcb568fafc483a83178',1,'WindFarm::nominal_power()']]], - ['none_1416',['None',['../DataStruct_8H.html#abeec366fd5381f3bb7ba39f6e5c1e7e4a6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DataStruct.H'],['../DataStruct_8H.html#acc2aa74379de57a98956ae09f0a11c9ba6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DataStruct.H'],['../DataStruct_8H.html#a335364b39450e23bfefded6b7af8908ca6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DataStruct.H'],['../DiffStruct_8H.html#a84e6bfbbb8e490790c506939b364f735a6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DiffStruct.H'],['../TurbStruct_8H.html#aa346fa9f5c0cb101a7766563fb76c500a6adf97f83acf6453d4a6a4b1070f3754',1,'None(): TurbStruct.H'],['../DataStruct_8H.html#a5930188cdc2dd4def9ce58fdf5f46847a6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DataStruct.H'],['../DataStruct_8H.html#ab34704153a585940411c26587cb82ad0a6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DataStruct.H'],['../DataStruct_8H.html#a90da675b718151491fd0c934a0ad3ceba6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DataStruct.H'],['../TurbStruct_8H.html#a4a079f2650ca30c787a8375ec5f17ca5a6adf97f83acf6453d4a6a4b1070f3754',1,'None(): TurbStruct.H']]], - ['nonhygro_5foptics_5finit_1417',['nonhygro_optics_init',['../classPhysProp.html#adce35521cf33d13c6345ac5a9586c829',1,'PhysProp']]], - ['npcf_1418',['npcf',['../classWaterVaporSat.html#abd48ae5df93e45c8d4bab8e1e985838b',1,'WaterVaporSat']]], - ['nradgas_1419',['nradgas',['../classRadConstants.html#acc3330716cd598dc36881b44c70687c5',1,'RadConstants']]], - ['nrh_1420',['nrh',['../classRadConstants.html#aaa19beec8cd86a9e09db7a2b34a7d883',1,'RadConstants::nrh()'],['../classAerRadProps.html#aa21297bb80600126531f2d324f6d9c2f',1,'AerRadProps::nrh()']]], - ['nspec_1421',['nspec',['../structMamConstituents_1_1mode__component__t.html#aa35e198644fe29379bc9d3830f2423c8',1,'MamConstituents::mode_component_t::nspec()'],['../classMam4__aer.html#a5167f5c7a13a42532cf945dcaa687c77',1,'Mam4_aer::nspec()']]], - ['nsubsteps_1422',['nsubsteps',['../classERF.html#aa3db2dd1b65310c66c4038650c22aaee',1,'ERF']]], - ['nswbands_1423',['nswbands',['../classAerRadProps.html#aded12109795a3f22556faecdd3fb3d03',1,'AerRadProps::nswbands()'],['../classCloudRadProps.html#aeee4ab1a6887ab34c966028c45079199',1,'CloudRadProps::nswbands()'],['../classMam4__aer.html#a72698fc4a4a0c54752ec0e76f161184f',1,'Mam4_aer::nswbands()'],['../classRadConstants.html#abf9d73367a1b46631bd2fae4516732c2',1,'RadConstants::nswbands()'],['../classRadiation.html#a2df876dcb21da075dc834af545a2c0ed',1,'Radiation::nswbands()']]], - ['nswgpts_1424',['nswgpts',['../classRadiation.html#a6569e23160036eb2186d6142e2387d9f',1,'Radiation']]], - ['null_5fbc_1425',['null_bc',['../ERF__FillPatch_8cpp.html#a85a7293fad1a59ed566bcea306373abc',1,'ERF_FillPatch.cpp']]], - ['null_5fbc_5ffor_5ffill_1426',['null_bc_for_fill',['../Plotfile_8cpp.html#aeb56b4bca6dfa0e3b81d3f983926e8a2',1,'Plotfile.cpp']]], - ['nullmoist_1427',['NullMoist',['../classNullMoist.html#a987746c147545a1a7d0efd21e5e34a12',1,'NullMoist::NullMoist()'],['../classNullMoist.html',1,'NullMoist']]], - ['nullmoist_2eh_1428',['NullMoist.H',['../NullMoist_8H.html',1,'']]], - ['nullmoistlagrangian_2eh_1429',['NullMoistLagrangian.H',['../NullMoistLagrangian_8H.html',1,'']]], - ['nullsurf_1430',['NullSurf',['../classNullSurf.html#ab6d3582e156056b1b230809fe499a0cf',1,'NullSurf::NullSurf()'],['../classNullSurf.html',1,'NullSurf']]], - ['nullsurf_2eh_1431',['NullSurf.H',['../NullSurf_8H.html',1,'']]], - ['nullwindfarm_1432',['NullWindFarm',['../classNullWindFarm.html#ae4797e5a94227d10ed3b39dfd7bf4444',1,'NullWindFarm::NullWindFarm()'],['../classNullWindFarm.html',1,'NullWindFarm']]], - ['nullwindfarm_2eh_1433',['NullWindFarm.H',['../NullWindFarm_8H.html',1,'']]], - ['num_5faeroes_1434',['num_aeroes',['../classAerRadProps.html#af174fea4281252e1cf87c621ab532aeb',1,'AerRadProps']]], - ['num_5fattributes_1435',['num_attributes',['../classncutils_1_1NCGroup.html#af7847ff27ccb8499814b7f21559e2e84',1,'ncutils::NCGroup']]], - ['num_5fboxes_5fat_5flevel_1436',['num_boxes_at_level',['../classERF.html#adcd9f23975ffa605247b41d391c2a2f0',1,'ERF']]], - ['num_5fdimensions_1437',['num_dimensions',['../classncutils_1_1NCGroup.html#a44b1b3b0a86df383ffa6ab4e68a7dea6',1,'ncutils::NCGroup']]], - ['num_5ffiles_5fat_5flevel_1438',['num_files_at_level',['../classERF.html#a610a988f46e0496e6dbd0471ae817f75',1,'ERF']]], - ['num_5fgroups_1439',['num_groups',['../classncutils_1_1NCGroup.html#a4efddc44f72cc32a58849982bb7e8bce',1,'ncutils::NCGroup']]], - ['num_5fmode_5ftypes_1440',['num_mode_types',['../classMamConstituents.html#a484fb8cc2efd161663df96136f6397a8',1,'MamConstituents']]], - ['num_5fspec_5ftypes_1441',['num_spec_types',['../classMamConstituents.html#a17b5c0080c2027fd08a2f3fcd7818333',1,'MamConstituents']]], - ['num_5fto_5fmass_5faer_1442',['num_to_mass_aer',['../structPhysProp_1_1physprop__t.html#aacc68f3bfaf1bcb4d76c0e49aa3d81fb',1,'PhysProp::physprop_t']]], - ['num_5fvariables_1443',['num_variables',['../classncutils_1_1NCGroup.html#a4721cc36bd0f188be0250112329d3ba1',1,'ncutils::NCGroup']]], - ['num_5fvars_1444',['num_vars',['../structTimeInterpolatedData.html#a69fdc01eabf8ded65ff6cac13e59c0c0',1,'TimeInterpolatedData']]], - ['numaerosols_1445',['numaerosols',['../structMamConstituents_1_1aerlist__t.html#afae9af8c61b9fee3afdd374fffaab123',1,'MamConstituents::aerlist_t']]], - ['numdatalogs_1446',['NumDataLogs',['../classERF.html#ac1238c1616826c66df1dfd9076e6a3da',1,'ERF']]], - ['numdiffcoeff_1447',['NumDiffCoeff',['../structSolverChoice.html#a6dba64151e2e2f958e7c0e55db477bf2',1,'SolverChoice']]], - ['numdiffs_1448',['NumDiffs',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149eaa3900ab375460932d825b615bb532446',1,'EddyDiff']]], - ['numericaldiffusion_1449',['NumericalDiffusion',['../NumericalDiffusion_8cpp.html#ae451ae3f674c2317abcabb5ccc2c8854',1,'NumericalDiffusion(const Box &bx, const int start_comp, const int num_comp, const Real dt, const Real num_diff_coeff, const Array4< const Real > &data, const Array4< Real > &rhs, const Array4< const Real > &mf_x, const Array4< const Real > &mf_y, const bool avg_mf_x_y, const bool avg_mf_y_x): NumericalDiffusion.cpp'],['../NumericalDiffusion_8H.html#aac5237931765783ba1e8aba39e37b4e1',1,'NumericalDiffusion(const amrex::Box &bx, const int start_comp, const int num_comp, const amrex::Real dt, const amrex::Real num_diff_coeff, const amrex::Array4< const amrex::Real > &data, const amrex::Array4< amrex::Real > &rhs, const amrex::Array4< const amrex::Real > &mf_x, const amrex::Array4< const amrex::Real > &mf_y, const bool avg_mf_x_y, const bool avg_mf_y_x): NumericalDiffusion.H']]], - ['numericaldiffusion_2ecpp_1450',['NumericalDiffusion.cpp',['../NumericalDiffusion_8cpp.html',1,'']]], - ['numericaldiffusion_2eh_1451',['NumericalDiffusion.H',['../NumericalDiffusion_8H.html',1,'']]], - ['numericaldiffusionvert_1452',['NumericalDiffusionVert',['../NumericalDiffusion_8cpp.html#a8952e6a1f264de82be2054dfec9fe5d9',1,'NumericalDiffusionVert(const Box &bx, const int start_comp, const int num_comp, const Real dt, const Real num_diff_coeff, const Array4< const Real > &data, const Array4< Real > &rhs): NumericalDiffusion.cpp'],['../NumericalDiffusion_8H.html#a6e0d8ff49fd56c19488385130631c161',1,'NumericalDiffusionVert(const amrex::Box &bx, const int start_comp, const int num_comp, const amrex::Real dt, const amrex::Real num_diff_coeff, const amrex::Array4< const amrex::Real > &data, const amrex::Array4< amrex::Real > &rhs): NumericalDiffusion.H']]], - ['numsamplelinelogs_1453',['NumSampleLineLogs',['../classERF.html#a14f922bdc3a0f23c087afa32c67ac119',1,'ERF']]], - ['numsamplelines_1454',['NumSampleLines',['../classERF.html#a70d78ca624acf09d8faab9a2d51264d9',1,'ERF']]], - ['numsamplepointlogs_1455',['NumSamplePointLogs',['../classERF.html#a41324a4b5610fde725fe721550b23c85',1,'ERF']]], - ['numsamplepoints_1456',['NumSamplePoints',['../classERF.html#a5bc7dd2c7e1ebf65b7dc1d9bf0dfb36f',1,'ERF']]], - ['numtypes_1457',['NumTypes',['../namespaceIntVars.html#afdaa1b64a98a711870ca86f30e7963daa0468f4146b966163a1fe9f4f32a038c8',1,'IntVars::NumTypes()'],['../namespaceVars.html#a161eed9b529c2108b15a09099729c3b9a5deccaa24d5e74279425d7749f7d1494',1,'Vars::NumTypes()'],['../namespaceMetGridBdyVars.html#a22bd27d0288d22c74bd7c0bb57b2b89fa4f8e93d238957b496990de56dff45193',1,'MetGridBdyVars::NumTypes()'],['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a6d1cade25038e11a813d4b72b651b04c',1,'WRFBdyVars::NumTypes()'],['../namespaceRealBdyVars.html#aa4743649b85ade11df23692d7c3947bda642348f19beb023be6cb81f253b41e7e',1,'RealBdyVars::NumTypes()'],['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa0b88b0a3a03a3e787a7b27717ec64de7',1,'BCVars::NumTypes()']]], - ['numvars_1458',['NumVars',['../namespaceLsmVar__MM5.html#a0c17a1ae9d9db120b8947e6da767cd3ba9295a4d95dbd36001a7b1beaa15e14b9',1,'LsmVar_MM5::NumVars()'],['../namespaceLsmVar__SLM.html#a9927bc85abdc2fa6040b222a6c1ddd91a46379e2639967ccb36fdea0aa7fbda61',1,'LsmVar_SLM::NumVars()'],['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476beacc0e3f4d1137cce9139f79959ac8542b',1,'MicVar_Kess::NumVars()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a0a8da919c111613d4806217dce5cd1e3',1,'MicVar::NumVars()']]], - ['nvar_5fmax_1459',['NVAR_max',['../IndexDefines_8H.html#a46e292b965f80d15acfbdc11ffe1e0f0',1,'IndexDefines.H']]], - ['nvars_1460',['nvars',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239a7c3c83d6fcec1f134956c3160adf6e39',1,'DataStruct.H']]], - ['nvars_5fsponge_1461',['nvars_sponge',['../DataStruct_8H.html#a5bebd9ff4e2455172deca3b399214fcba7f0566bdfe36c67d532a7e2aca33d9a4',1,'DataStruct.H']]], - ['nzerog_1462',['nzerog',['../ERF__Constants_8H.html#a1d5b108314147320a74eaccbfa0d09b0',1,'ERF_Constants.H']]], - ['nzeror_1463',['nzeror',['../ERF__Constants_8H.html#aaa2fd2941341ea7699a9acfb434b2ee1',1,'ERF_Constants.H']]], - ['nzeros_1464',['nzeros',['../ERF__Constants_8H.html#ae56996ced8497f129d813e2f9c94786e',1,'ERF_Constants.H']]] + ['n_5fdiag_1358',['N_DIAG',['../classMamConstituents.html#a05b4d113513de18b2e7bbdc4e9cb4dbf',1,'MamConstituents']]], + ['n_5fdiag_1359',['n_diag',['../classMam4__aer.html#afe4495578dc4adefe7b2ab2780aee8ee',1,'Mam4_aer']]], + ['n_5fg_5fd_1360',['n_g_d',['../classCloudRadProps.html#a40e14de999dd323f0cc8db50f46031e8',1,'CloudRadProps']]], + ['n_5frad_5fcnst_1361',['n_rad_cnst',['../classMamConstituents.html#a75a27a90ef149368fc0a7676daeb4a84',1,'MamConstituents']]], + ['naer_1362',['naer',['../classRadiation.html#a59a37de7bc777e2ecac052a59d7a0aec',1,'Radiation']]], + ['name_1363',['name',['../classProblemBase.html#a3a8fb70110fb25623cdfa7b508dee9cf',1,'ProblemBase::name()'],['../classncutils_1_1NCGroup.html#a3d53c2f625cc6fc286e76c9137b5b1b0',1,'ncutils::NCGroup::name()'],['../structncutils_1_1NCVar.html#a4b34f3722befd10e92d1267bcbd49724',1,'ncutils::NCVar::name()'],['../structncutils_1_1NCDim.html#aaf6334138e9892f5403400e31f062fd6',1,'ncutils::NCDim::name()'],['../classCloudRadProps.html#a7c91a5b46f8d85666e0ca0d1de8d23aa',1,'CloudRadProps::name()'],['../structNDArray.html#a0d3be2b45f3fb008d12ec17dfd6abf09',1,'NDArray::name()']]], + ['names_1364',['names',['../structMamConstituents_1_1modes__t.html#aa0ef7c08a80971086ecc620e6d7a6d31',1,'MamConstituents::modes_t']]], + ['nanometer_1365',['nanometer',['../classRadConstants.html#a2de1ff8cbc3cafe6a42e8f884002e4f1a7a267da562dd711a27346968f67cadfe',1,'RadConstants']]], + ['nbndlw_1366',['nbndlw',['../classRadConstants.html#a960db6e337b49d1d4a714615a5fa4b7e',1,'RadConstants']]], + ['nbndsw_1367',['nbndsw',['../classRadConstants.html#a2d23948379a116a266cfd943b3275be4',1,'RadConstants']]], + ['nc_5fbdy_5ffile_1368',['nc_bdy_file',['../classERF.html#a7e9040f32464f1a6dee6e0384393451d',1,'ERF']]], + ['nc_5fdata_5fdims_5ftype_1369',['NC_Data_Dims_Type',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06',1,'NCWpsFile.H']]], + ['nc_5finit_5ffile_1370',['nc_init_file',['../classERF.html#a7ef14f6028b577eba70aef46b508be19',1,'ERF']]], + ['nccheckpoint_2ecpp_1371',['NCCheckpoint.cpp',['../NCCheckpoint_8cpp.html',1,'']]], + ['nccolumnfile_2ecpp_1372',['NCColumnFile.cpp',['../NCColumnFile_8cpp.html',1,'']]], + ['ncdim_1373',['NCDim',['../structncutils_1_1NCDim.html',1,'ncutils']]], + ['ncdtype_1374',['NCDType',['../structncutils_1_1NCDType.html',1,'ncutils']]], + ['ncell_5fline_1375',['ncell_line',['../classPlaneAverage.html#ab65036a99da90fb854f7dfd33cd700b1',1,'PlaneAverage']]], + ['ncell_5fplane_1376',['ncell_plane',['../classPlaneAverage.html#aaf4e5c9b73f65af3eb0ccdc6a82e76f2',1,'PlaneAverage']]], + ['ncfile_1377',['NCFile',['../classncutils_1_1NCFile.html#aec0e1a7f0f93f2f806c0a0abaae66423',1,'ncutils::NCFile::NCFile()'],['../classncutils_1_1NCFile.html',1,'ncutils::NCFile']]], + ['ncgroup_1378',['NCGroup',['../classncutils_1_1NCGroup.html#a6c43a3f92aaf1df239595cebdc8c9a16',1,'ncutils::NCGroup::NCGroup(const int id, const NCGroup *)'],['../classncutils_1_1NCGroup.html#a99e8b68dcdebf6a3df74c3575c3a3c65',1,'ncutils::NCGroup::NCGroup(const int id)'],['../classncutils_1_1NCGroup.html',1,'ncutils::NCGroup']]], + ['ncid_1379',['ncid',['../structncutils_1_1NCDim.html#a3272d1768518ba020b9bcd0d3699d544',1,'ncutils::NCDim::ncid()'],['../classncutils_1_1NCGroup.html#a860fe8aaf1cd7859541c67594fb8eabd',1,'ncutils::NCGroup::ncid()'],['../structncutils_1_1NCVar.html#a233d94aa3ccbef1cc12565340bcc7218',1,'ncutils::NCVar::ncid()']]], + ['ncinterface_2ecpp_1380',['NCInterface.cpp',['../NCInterface_8cpp.html',1,'']]], + ['ncinterface_2eh_1381',['NCInterface.H',['../NCInterface_8H.html',1,'']]], + ['ncmultifabfile_2ecpp_1382',['NCMultiFabFile.cpp',['../NCMultiFabFile_8cpp.html',1,'']]], + ['ncoef_1383',['ncoef',['../structPhysProp_1_1physprop__t.html#acc1135d01fd7ca5a6f0ba980e23e5a55',1,'PhysProp::physprop_t::ncoef()'],['../classMam4__aer.html#afcd94bccbfcc44e6a5d8262abc42a9ca',1,'Mam4_aer::ncoef()']]], + ['ncol_1384',['ncol',['../classMam4__aer.html#aaf29baf8a0903c3401e8577e811f5d18',1,'Mam4_aer::ncol()'],['../classRadiation.html#a8f47b85f948822c0e450beddb92373f4',1,'Radiation::ncol()'],['../classAerRadProps.html#a551936497e3a360746d6bfd53513d508',1,'AerRadProps::ncol()']]], + ['ncomp_1385',['ncomp',['../classPlaneAverage.html#a3860fd72df3e8dbb6b8decfdc360864f',1,'PlaneAverage']]], + ['ncomp_5fcons_1386',['ncomp_cons',['../classMRISplitIntegrator.html#a69e19ac4b8c02d71269e741e71b74c23',1,'MRISplitIntegrator']]], + ['ncorr_1387',['ncorr',['../structSolverChoice.html#a3b9fef36e4613507eef87379c2c9bf03',1,'SolverChoice']]], + ['ncplotfile_2ecpp_1388',['NCPlotFile.cpp',['../NCPlotFile_8cpp.html',1,'']]], + ['ncplotfile_2eh_1389',['NCPlotFile.H',['../NCPlotFile_8H.html',1,'']]], + ['ncutils_1390',['ncutils',['../namespacencutils.html',1,'']]], + ['ncvar_1391',['NCVar',['../structncutils_1_1NCVar.html',1,'ncutils']]], + ['ncwpsfile_2eh_1392',['NCWpsFile.H',['../NCWpsFile_8H.html',1,'']]], + ['ndarray_1393',['NDArray',['../structNDArray.html',1,'NDArray< DataType >'],['../structNDArray.html#a7bd19397e539424afc06e9fe12760434',1,'NDArray::NDArray(const std::string vname, const std::vector< size_t > &vshape)'],['../structNDArray.html#a1f33dbd861944bc1494f4790f4f8543d',1,'NDArray::NDArray()'],['../structNDArray.html#a54f69e355d97f10089f82fb1087fb0af',1,'NDArray::NDArray(const NDArray &array)']]], + ['ndim_1394',['ndim',['../structncutils_1_1NCVar.html#ae0ab15dc4c1033271878c3bf5102f911',1,'ncutils::NCVar::ndim()'],['../structNDArray.html#a1b3ece1ab109568fcb919d1af8f14eee',1,'NDArray::ndim()']]], + ['net_5fflux_1395',['net_flux',['../classRadiation.html#a12afbdd30cf76b0bc083324cf22cbb73',1,'Radiation']]], + ['netzerobuoyantadd_1396',['netZeroBuoyantAdd',['../structTurbulentPerturbation.html#acf1a844ac4076c4af8ef38963f3fcc60',1,'TurbulentPerturbation']]], + ['netzerobuoyantadjust_1397',['netZeroBuoyantAdjust',['../structTurbulentPerturbation.html#a573c68aeec901ddf7c3cfe102430e527',1,'TurbulentPerturbation']]], + ['neumann_1398',['neumann',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca0b217c3380adcde8f3cd9b58d949db60',1,'ERFBCType']]], + ['neumann_5fint_1399',['neumann_int',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01caa8e7f5249fea539bf14e97cfba9074d9',1,'ERFBCType']]], + ['newtonitersat_1400',['NewtonIterSat',['../classSAM.html#a0154097dd0c769a35dcc52c484dd0dc6',1,'SAM']]], + ['ng_5fdens_5fhse_1401',['ng_dens_hse',['../classERF.html#addf0fb2aae0efaa649c69685a4dcca83',1,'ERF']]], + ['ng_5fpres_5fhse_1402',['ng_pres_hse',['../classERF.html#a87dc6c0720462bfd088c909289cdca0b',1,'ERF']]], + ['ngas_1403',['ngas',['../classAerRadProps.html#ae41f31dfce03d5b3952114e12436bec9',1,'AerRadProps::ngas()'],['../structMamConstituents_1_1gaslist__t.html#a5fc9f5eeb290c5185e68bd2bf6f46618',1,'MamConstituents::gaslist_t::ngas()'],['../classOptics.html#abb94e5d9dc89e539796740c6f0b9a229',1,'Optics::ngas()'],['../classRadiation.html#aefc2fcddcd44a0c6d9ae06ec60e9ce37',1,'Radiation::ngas()'],['../classRrtmgp.html#a4b8b61c7a7fadac5b1cdd968144a5c01',1,'Rrtmgp::ngas()']]], + ['nlambda_1404',['nlambda',['../classCloudRadProps.html#a3ef54947677ddd898a7b6ded241db03c',1,'CloudRadProps']]], + ['nlev_1405',['nlev',['../classKessler.html#a8f9e3afdab979a19d8dfb0c4bdee471d',1,'Kessler::nlev()'],['../classSAM.html#a7da420869410dc959c2442962524259f',1,'SAM::nlev()'],['../classAerRadProps.html#a3854326c4b23eedef970611ab3a639dd',1,'AerRadProps::nlev()'],['../classMam4__aer.html#add9c70abae797f609d24a8ed47848030',1,'Mam4_aer::nlev()'],['../classRadiation.html#a65f94329afd4aad11489c87e5174c462',1,'Radiation::nlev()']]], + ['nlwbands_1406',['nlwbands',['../classAerRadProps.html#af2dc3b884340390993212e03e99112af',1,'AerRadProps::nlwbands()'],['../classCloudRadProps.html#ab7f6932c5559602939b8a32fa42ca1ca',1,'CloudRadProps::nlwbands()'],['../classMam4__aer.html#abc58cbc8ee25e23731610007e0f62fe4',1,'Mam4_aer::nlwbands()'],['../classRadiation.html#ab4451562115b24b40e0f04cae677c6e3',1,'Radiation::nlwbands()'],['../classRadConstants.html#a55471805ae99ef61cb9b0935bd1803f2',1,'RadConstants::nlwbands()']]], + ['nlwgpts_1407',['nlwgpts',['../classRadiation.html#a89625b089dbe4acbc85a7241fcbd3839',1,'Radiation']]], + ['nmodes_1408',['nmodes',['../classMam4__aer.html#adbd78e8ffa0bdd728b97ca66d08fb717',1,'Mam4_aer::nmodes()'],['../structMamConstituents_1_1modelist__t.html#aea57993996ab18dffe7ab00bc5e6c15e',1,'MamConstituents::modelist_t::nmodes()'],['../structMamConstituents_1_1modes__t.html#a9a549b30ee2d05c0bfe777b4625e7083',1,'MamConstituents::modes_t::nmodes()'],['../classAerRadProps.html#a3bd718612795e1c875ad70da941cc89a',1,'AerRadProps::nmodes()']]], + ['nmoist_5fmax_1409',['NMOIST_max',['../IndexDefines_8H.html#abe87e298e9d558e0659a67ad3b9be71f',1,'IndexDefines.H']]], + ['nmu_1410',['nmu',['../classCloudRadProps.html#ae7091519e3c4dfa0929e088c6234be73',1,'CloudRadProps']]], + ['no_5fip_5fhltalt_1411',['no_ip_hltalt',['../classWaterVaporSat.html#ad2bce1bf12d7f01fd354c36e17bfe635',1,'WaterVaporSat']]], + ['no_5fslip_5fwall_1412',['no_slip_wall',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9acb8c716b8d9b499d9bc323d8f8a410d3',1,'IndexDefines.H']]], + ['no_5fsubstep_1413',['no_substep',['../classMRISplitIntegrator.html#abb86ebaf6ca5a42e59670d2b15549658',1,'MRISplitIntegrator']]], + ['no_5fsubstep_5ffun_1414',['no_substep_fun',['../TI__no__substep__fun_8H.html#a4cad8180e91d2eabd5638651fc24bcc7',1,'TI_no_substep_fun.H']]], + ['no_5fsubstepping_1415',['no_substepping',['../classMRISplitIntegrator.html#afa0623b638cd29d3f307d34ef5a98d0f',1,'MRISplitIntegrator::no_substepping()'],['../structSolverChoice.html#a35e0c82996e345337368bc720bbd6070',1,'SolverChoice::no_substepping()']]], + ['nodebilinear_1416',['NodeBilinear',['../namespaceInterpType.html#ac65aa6d3ffa2549732d15f959cff81abaa8e5f7bd547098a67d20537514465dd9',1,'InterpType']]], + ['nominal_5fpower_1417',['nominal_power',['../classEWP.html#a00497b6ecc9493be40be6ce4f5ae02c5',1,'EWP::nominal_power()'],['../classFitch.html#afeb1ae13c307eeb71af9dfa8d97a3f7e',1,'Fitch::nominal_power()'],['../classSimpleAD.html#af9dae2d9db9de431b450e61c55a83ffe',1,'SimpleAD::nominal_power()'],['../classWindFarm.html#aa542d50137f25dcb568fafc483a83178',1,'WindFarm::nominal_power()']]], + ['none_1418',['None',['../DataStruct_8H.html#abeec366fd5381f3bb7ba39f6e5c1e7e4a6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DataStruct.H'],['../DataStruct_8H.html#acc2aa74379de57a98956ae09f0a11c9ba6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DataStruct.H'],['../DataStruct_8H.html#a335364b39450e23bfefded6b7af8908ca6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DataStruct.H'],['../DiffStruct_8H.html#a84e6bfbbb8e490790c506939b364f735a6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DiffStruct.H'],['../TurbStruct_8H.html#aa346fa9f5c0cb101a7766563fb76c500a6adf97f83acf6453d4a6a4b1070f3754',1,'None(): TurbStruct.H'],['../DataStruct_8H.html#a5930188cdc2dd4def9ce58fdf5f46847a6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DataStruct.H'],['../DataStruct_8H.html#ab34704153a585940411c26587cb82ad0a6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DataStruct.H'],['../DataStruct_8H.html#a90da675b718151491fd0c934a0ad3ceba6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DataStruct.H'],['../TurbStruct_8H.html#a4a079f2650ca30c787a8375ec5f17ca5a6adf97f83acf6453d4a6a4b1070f3754',1,'None(): TurbStruct.H']]], + ['nonhygro_5foptics_5finit_1419',['nonhygro_optics_init',['../classPhysProp.html#adce35521cf33d13c6345ac5a9586c829',1,'PhysProp']]], + ['npcf_1420',['npcf',['../classWaterVaporSat.html#abd48ae5df93e45c8d4bab8e1e985838b',1,'WaterVaporSat']]], + ['nradgas_1421',['nradgas',['../classRadConstants.html#acc3330716cd598dc36881b44c70687c5',1,'RadConstants']]], + ['nrh_1422',['nrh',['../classRadConstants.html#aaa19beec8cd86a9e09db7a2b34a7d883',1,'RadConstants::nrh()'],['../classAerRadProps.html#aa21297bb80600126531f2d324f6d9c2f',1,'AerRadProps::nrh()']]], + ['nspec_1423',['nspec',['../structMamConstituents_1_1mode__component__t.html#aa35e198644fe29379bc9d3830f2423c8',1,'MamConstituents::mode_component_t::nspec()'],['../classMam4__aer.html#a5167f5c7a13a42532cf945dcaa687c77',1,'Mam4_aer::nspec()']]], + ['nsubsteps_1424',['nsubsteps',['../classERF.html#aa3db2dd1b65310c66c4038650c22aaee',1,'ERF']]], + ['nswbands_1425',['nswbands',['../classAerRadProps.html#aded12109795a3f22556faecdd3fb3d03',1,'AerRadProps::nswbands()'],['../classCloudRadProps.html#aeee4ab1a6887ab34c966028c45079199',1,'CloudRadProps::nswbands()'],['../classMam4__aer.html#a72698fc4a4a0c54752ec0e76f161184f',1,'Mam4_aer::nswbands()'],['../classRadConstants.html#abf9d73367a1b46631bd2fae4516732c2',1,'RadConstants::nswbands()'],['../classRadiation.html#a2df876dcb21da075dc834af545a2c0ed',1,'Radiation::nswbands()']]], + ['nswgpts_1426',['nswgpts',['../classRadiation.html#a6569e23160036eb2186d6142e2387d9f',1,'Radiation']]], + ['null_5fbc_1427',['null_bc',['../ERF__FillPatch_8cpp.html#a85a7293fad1a59ed566bcea306373abc',1,'ERF_FillPatch.cpp']]], + ['null_5fbc_5ffor_5ffill_1428',['null_bc_for_fill',['../Plotfile_8cpp.html#aeb56b4bca6dfa0e3b81d3f983926e8a2',1,'Plotfile.cpp']]], + ['nullmoist_1429',['NullMoist',['../classNullMoist.html#a987746c147545a1a7d0efd21e5e34a12',1,'NullMoist::NullMoist()'],['../classNullMoist.html',1,'NullMoist']]], + ['nullmoist_2eh_1430',['NullMoist.H',['../NullMoist_8H.html',1,'']]], + ['nullmoistlagrangian_2eh_1431',['NullMoistLagrangian.H',['../NullMoistLagrangian_8H.html',1,'']]], + ['nullsurf_1432',['NullSurf',['../classNullSurf.html#ab6d3582e156056b1b230809fe499a0cf',1,'NullSurf::NullSurf()'],['../classNullSurf.html',1,'NullSurf']]], + ['nullsurf_2eh_1433',['NullSurf.H',['../NullSurf_8H.html',1,'']]], + ['nullwindfarm_1434',['NullWindFarm',['../classNullWindFarm.html#ae4797e5a94227d10ed3b39dfd7bf4444',1,'NullWindFarm::NullWindFarm()'],['../classNullWindFarm.html',1,'NullWindFarm']]], + ['nullwindfarm_2eh_1435',['NullWindFarm.H',['../NullWindFarm_8H.html',1,'']]], + ['num_5faeroes_1436',['num_aeroes',['../classAerRadProps.html#af174fea4281252e1cf87c621ab532aeb',1,'AerRadProps']]], + ['num_5fattributes_1437',['num_attributes',['../classncutils_1_1NCGroup.html#af7847ff27ccb8499814b7f21559e2e84',1,'ncutils::NCGroup']]], + ['num_5fboxes_5fat_5flevel_1438',['num_boxes_at_level',['../classERF.html#adcd9f23975ffa605247b41d391c2a2f0',1,'ERF']]], + ['num_5fdimensions_1439',['num_dimensions',['../classncutils_1_1NCGroup.html#a44b1b3b0a86df383ffa6ab4e68a7dea6',1,'ncutils::NCGroup']]], + ['num_5ffiles_5fat_5flevel_1440',['num_files_at_level',['../classERF.html#a610a988f46e0496e6dbd0471ae817f75',1,'ERF']]], + ['num_5fgroups_1441',['num_groups',['../classncutils_1_1NCGroup.html#a4efddc44f72cc32a58849982bb7e8bce',1,'ncutils::NCGroup']]], + ['num_5fmode_5ftypes_1442',['num_mode_types',['../classMamConstituents.html#a484fb8cc2efd161663df96136f6397a8',1,'MamConstituents']]], + ['num_5fspec_5ftypes_1443',['num_spec_types',['../classMamConstituents.html#a17b5c0080c2027fd08a2f3fcd7818333',1,'MamConstituents']]], + ['num_5fto_5fmass_5faer_1444',['num_to_mass_aer',['../structPhysProp_1_1physprop__t.html#aacc68f3bfaf1bcb4d76c0e49aa3d81fb',1,'PhysProp::physprop_t']]], + ['num_5fvariables_1445',['num_variables',['../classncutils_1_1NCGroup.html#a4721cc36bd0f188be0250112329d3ba1',1,'ncutils::NCGroup']]], + ['num_5fvars_1446',['num_vars',['../structTimeInterpolatedData.html#a69fdc01eabf8ded65ff6cac13e59c0c0',1,'TimeInterpolatedData']]], + ['numaerosols_1447',['numaerosols',['../structMamConstituents_1_1aerlist__t.html#afae9af8c61b9fee3afdd374fffaab123',1,'MamConstituents::aerlist_t']]], + ['numdatalogs_1448',['NumDataLogs',['../classERF.html#ac1238c1616826c66df1dfd9076e6a3da',1,'ERF']]], + ['numdiffcoeff_1449',['NumDiffCoeff',['../structSolverChoice.html#a6dba64151e2e2f958e7c0e55db477bf2',1,'SolverChoice']]], + ['numdiffs_1450',['NumDiffs',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149eaa3900ab375460932d825b615bb532446',1,'EddyDiff']]], + ['numericaldiffusion_1451',['NumericalDiffusion',['../NumericalDiffusion_8cpp.html#ae451ae3f674c2317abcabb5ccc2c8854',1,'NumericalDiffusion(const Box &bx, const int start_comp, const int num_comp, const Real dt, const Real num_diff_coeff, const Array4< const Real > &data, const Array4< Real > &rhs, const Array4< const Real > &mf_x, const Array4< const Real > &mf_y, const bool avg_mf_x_y, const bool avg_mf_y_x): NumericalDiffusion.cpp'],['../NumericalDiffusion_8H.html#aac5237931765783ba1e8aba39e37b4e1',1,'NumericalDiffusion(const amrex::Box &bx, const int start_comp, const int num_comp, const amrex::Real dt, const amrex::Real num_diff_coeff, const amrex::Array4< const amrex::Real > &data, const amrex::Array4< amrex::Real > &rhs, const amrex::Array4< const amrex::Real > &mf_x, const amrex::Array4< const amrex::Real > &mf_y, const bool avg_mf_x_y, const bool avg_mf_y_x): NumericalDiffusion.H']]], + ['numericaldiffusion_2ecpp_1452',['NumericalDiffusion.cpp',['../NumericalDiffusion_8cpp.html',1,'']]], + ['numericaldiffusion_2eh_1453',['NumericalDiffusion.H',['../NumericalDiffusion_8H.html',1,'']]], + ['numericaldiffusionvert_1454',['NumericalDiffusionVert',['../NumericalDiffusion_8cpp.html#a8952e6a1f264de82be2054dfec9fe5d9',1,'NumericalDiffusionVert(const Box &bx, const int start_comp, const int num_comp, const Real dt, const Real num_diff_coeff, const Array4< const Real > &data, const Array4< Real > &rhs): NumericalDiffusion.cpp'],['../NumericalDiffusion_8H.html#a6e0d8ff49fd56c19488385130631c161',1,'NumericalDiffusionVert(const amrex::Box &bx, const int start_comp, const int num_comp, const amrex::Real dt, const amrex::Real num_diff_coeff, const amrex::Array4< const amrex::Real > &data, const amrex::Array4< amrex::Real > &rhs): NumericalDiffusion.H']]], + ['numsamplelinelogs_1455',['NumSampleLineLogs',['../classERF.html#a14f922bdc3a0f23c087afa32c67ac119',1,'ERF']]], + ['numsamplelines_1456',['NumSampleLines',['../classERF.html#a70d78ca624acf09d8faab9a2d51264d9',1,'ERF']]], + ['numsamplepointlogs_1457',['NumSamplePointLogs',['../classERF.html#a41324a4b5610fde725fe721550b23c85',1,'ERF']]], + ['numsamplepoints_1458',['NumSamplePoints',['../classERF.html#a5bc7dd2c7e1ebf65b7dc1d9bf0dfb36f',1,'ERF']]], + ['numtypes_1459',['NumTypes',['../namespaceIntVars.html#afdaa1b64a98a711870ca86f30e7963daa0468f4146b966163a1fe9f4f32a038c8',1,'IntVars::NumTypes()'],['../namespaceVars.html#a161eed9b529c2108b15a09099729c3b9a5deccaa24d5e74279425d7749f7d1494',1,'Vars::NumTypes()'],['../namespaceMetGridBdyVars.html#a22bd27d0288d22c74bd7c0bb57b2b89fa4f8e93d238957b496990de56dff45193',1,'MetGridBdyVars::NumTypes()'],['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a6d1cade25038e11a813d4b72b651b04c',1,'WRFBdyVars::NumTypes()'],['../namespaceRealBdyVars.html#aa4743649b85ade11df23692d7c3947bda642348f19beb023be6cb81f253b41e7e',1,'RealBdyVars::NumTypes()'],['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa0b88b0a3a03a3e787a7b27717ec64de7',1,'BCVars::NumTypes()']]], + ['numvars_1460',['NumVars',['../namespaceLsmVar__MM5.html#a0c17a1ae9d9db120b8947e6da767cd3ba9295a4d95dbd36001a7b1beaa15e14b9',1,'LsmVar_MM5::NumVars()'],['../namespaceLsmVar__SLM.html#a9927bc85abdc2fa6040b222a6c1ddd91a46379e2639967ccb36fdea0aa7fbda61',1,'LsmVar_SLM::NumVars()'],['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476beacc0e3f4d1137cce9139f79959ac8542b',1,'MicVar_Kess::NumVars()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a0a8da919c111613d4806217dce5cd1e3',1,'MicVar::NumVars()']]], + ['nvar_5fmax_1461',['NVAR_max',['../IndexDefines_8H.html#a46e292b965f80d15acfbdc11ffe1e0f0',1,'IndexDefines.H']]], + ['nvars_1462',['nvars',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239a7c3c83d6fcec1f134956c3160adf6e39',1,'DataStruct.H']]], + ['nvars_5fsponge_1463',['nvars_sponge',['../DataStruct_8H.html#a5bebd9ff4e2455172deca3b399214fcba7f0566bdfe36c67d532a7e2aca33d9a4',1,'DataStruct.H']]], + ['nzerog_1464',['nzerog',['../ERF__Constants_8H.html#a1d5b108314147320a74eaccbfa0d09b0',1,'ERF_Constants.H']]], + ['nzeror_1465',['nzeror',['../ERF__Constants_8H.html#aaa2fd2941341ea7699a9acfb434b2ee1',1,'ERF_Constants.H']]], + ['nzeros_1466',['nzeros',['../ERF__Constants_8H.html#ae56996ced8497f129d813e2f9c94786e',1,'ERF_Constants.H']]] ]; diff --git a/search/all_e.js b/search/all_e.js index 67d0b96c1e..9bc21c6f09 100644 --- a/search/all_e.js +++ b/search/all_e.js @@ -1,30 +1,31 @@ var searchData= [ - ['obliqr_1465',['obliqr',['../classRadiation.html#a4c1a53e6acb0412aab13695bb9b0aa1d',1,'Radiation']]], - ['offset_1466',['offset',['../ERF__ReadBndryPlanes_8cpp.html#a63d3125f6fd361f61d697799f46da817',1,'ERF_ReadBndryPlanes.cpp']]], - ['oldcldoptics_1467',['oldcldoptics',['../classMamConstituents.html#adb5b880a08c3d173d929ba90d43a8344',1,'MamConstituents']]], - ['oldgoffgratch_1468',['OldGoffGratch',['../classSatMethods.html#a62096d95f324cd2a3504554437067ef7aebef486906cc4e78c948e4b43f6680db',1,'SatMethods']]], - ['oldgoffgratch_5fsvp_5fice_1469',['OldGoffGratch_svp_ice',['../classSatMethods.html#a185a448ec1db160bc61f23cbda63f4bd',1,'SatMethods']]], - ['oldgoffgratch_5fsvp_5fwater_1470',['OldGoffGratch_svp_water',['../classSatMethods.html#a8458bd6a233082c463c070ddc692080f',1,'SatMethods']]], - ['olen_1471',['olen',['../classABLMost.html#a0d6aa5a113a45ae1e56c0284241cfd01',1,'ABLMost']]], - ['omega_1472',['omega',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a40820295afd4707e596461de893e54ae',1,'MicVar']]], - ['omegafromw_1473',['OmegaFromW',['../TerrainMetrics_8H.html#a6a4bf1524412edfd6efcbb867256db18',1,'TerrainMetrics.H']]], - ['omeps_1474',['omeps',['../ERF__Constants_8H.html#af04ee89db2f653c028681f044bd16222',1,'ERF_Constants.H']]], - ['on_5fcomplete_1475',['on_complete',['../classRadiation.html#a00d9d9b6ca18b854c515cc19ca93116a',1,'Radiation']]], - ['oneway_1476',['OneWay',['../DataStruct_8H.html#ad285be248c0803917aaf5cf8ce62139ba8d892b915adb5e7c957f4425253ee1d6',1,'DataStruct.H']]], - ['open_1477',['open',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca2b4e1a73027449d9af83a25ed67ae914',1,'ERFBCType::open()'],['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9a7cef8a734855777c2a9d0caf42666e69',1,'open(): IndexDefines.H'],['../classncutils_1_1NCFile.html#a2881b70e450e11f01b474c538b8d6885',1,'ncutils::NCFile::open(const std::string &name, const int cmode=NC_NOWRITE)']]], - ['open_5fpar_1478',['open_par',['../classncutils_1_1NCFile.html#a4ebf9e1dc5ce07255330478f050e9f1f',1,'ncutils::NCFile']]], - ['operator_28_29_1479',['operator()',['../classTerrainIF.html#ad7eb62071230ad12fbaa91ec2a13f110',1,'TerrainIF::operator()()'],['../classPlaneAverage.html#aa58d4a708d46cd0d12120e9bf90d5de2',1,'PlaneAverage::operator()()'],['../classTerrainIF.html#ad0a9adc95fd3d0b5903d5ef7f5b74176',1,'TerrainIF::operator()()'],['../classFlowerIF.html#a69a4544022e024b4b1f43173bdc2acfa',1,'FlowerIF::operator()(const amrex::RealArray &p) const noexcept'],['../classFlowerIF.html#a951672447af5497b0c6892b0c3b2a486',1,'FlowerIF::operator()(AMREX_D_DECL(amrex::Real x, amrex::Real y, amrex::Real)) const noexcept'],['../classUnionCIF.html#ae667fc60d687ed9cec3c0744123565ca',1,'UnionCIF::operator()()'],['../classUnionListIF.html#a0d787c823ae784fa6e3303f561afe3ec',1,'UnionListIF::operator()()'],['../classERFPhysBCFunct__cons.html#a117a7e4d21a16df5748a801f530b22c7',1,'ERFPhysBCFunct_cons::operator()()'],['../classERFPhysBCFunct__w__no__terrain.html#a735e6027f98a8b4dda67c67301cb6a20',1,'ERFPhysBCFunct_w_no_terrain::operator()()'],['../classERFPhysBCFunct__w.html#a6f8e28817bb9dafdbc4d3fa94736d389',1,'ERFPhysBCFunct_w::operator()()'],['../classERFPhysBCFunct__u.html#a7c9c47c22a7b4106912ef540492b86c5',1,'ERFPhysBCFunct_u::operator()()'],['../classERFPhysBCFunct__v.html#a38aa6be225edb8597ddc2828ee7bd6d7',1,'ERFPhysBCFunct_v::operator()()'],['../classIntersectionCIF.html#a335f81a1bad5ad2693b59b62ba19ed6b',1,'IntersectionCIF::operator()(const amrex::RealArray &p) const']]], - ['operator_3d_1480',['operator=',['../classIntersectionCIF.html#ae7bfcaf3ef685b2ba23765f184c81539',1,'IntersectionCIF::operator=()'],['../classMRISplitIntegrator.html#a9ee3b26ea1daf4ec058552c40b13e13b',1,'MRISplitIntegrator::operator=(const MRISplitIntegrator &other)=delete'],['../classMRISplitIntegrator.html#ad698d348d3e7fa695077134839254738',1,'MRISplitIntegrator::operator=(MRISplitIntegrator &&other) noexcept=default'],['../structNDArray.html#a63dda01f8d55fd1fc75437b125eb27b3',1,'NDArray::operator=()'],['../classERF.html#a72fcc41d6f5225e9ca3b8c9111ff37e7',1,'ERF::operator=(const ERF &other)=delete'],['../classERF.html#abbc40e6fe700b80e3666dd3723624f05',1,'ERF::operator=(ERF &&other) noexcept=delete'],['../classIntersectionCIF.html#a8f38679674ad3b05ce6ebea9d3d03e44',1,'IntersectionCIF::operator=()'],['../classUnionCIF.html#a0bbd9d187f7efd622fb063c08d06151c',1,'UnionCIF::operator=(UnionCIF &&rhs) noexcept=default'],['../classUnionCIF.html#a80348b91b25ded6d92276a198493d906',1,'UnionCIF::operator=(const UnionCIF &rhs)=default'],['../classCIF.html#a037374536662a8e2ed2fe272c8166526',1,'CIF::operator=(CIF &&rhs) noexcept=default'],['../classCIF.html#aa92ae7f8c7e1e3b05913912c14cd563b',1,'CIF::operator=(const CIF &rhs)=default'],['../structTimeInterpolatedData.html#a8c70a753ce4ff647874b276dd0bec89f',1,'TimeInterpolatedData::operator=(const TimeInterpolatedData &other)=delete'],['../structTimeInterpolatedData.html#a14b102dca6a63a5def503e3704b8ff5c',1,'TimeInterpolatedData::operator=(TimeInterpolatedData &&other) noexcept=default'],['../classMOSTAverage.html#a56f533937767a348d7c1dff755989531',1,'MOSTAverage::operator=(const MOSTAverage &other)=delete'],['../classMOSTAverage.html#a584b986a317b2c4d799163574c43b3b3',1,'MOSTAverage::operator=(MOSTAverage &&other) noexcept=delete']]], - ['optics_1481',['optics',['../classRadiation.html#ab0464f3862987a09a9f4713937a984c3',1,'Radiation']]], - ['optics_1482',['Optics',['../classOptics.html#a3ec67cc89ceb33196552b89616728040',1,'Optics::Optics()=default'],['../classOptics.html#aadaf34955cffcf141d182624b38f7898',1,'Optics::Optics(int ngases, char *gas_names[])'],['../classOptics.html',1,'Optics']]], - ['optics_2ecpp_1483',['Optics.cpp',['../Optics_8cpp.html',1,'']]], - ['optics_2eh_1484',['Optics.H',['../Optics_8H.html',1,'']]], - ['opticsmethod_1485',['opticsmethod',['../structPhysProp_1_1physprop__t.html#aa4cb3b830849d849a08227041fff62cd',1,'PhysProp::physprop_t']]], - ['orbit_2ecpp_1486',['Orbit.cpp',['../Orbit_8cpp.html',1,'']]], - ['orbit_2eh_1487',['Orbit.H',['../Orbit_8H.html',1,'']]], - ['outflow_1488',['outflow',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9acac0c32caf84a889ec9b2b4cb2d56972',1,'IndexDefines.H']]], - ['output_5f1d_5fcolumn_1489',['output_1d_column',['../classERF.html#ad17ff2753e754ff3eb1330612b820b5f',1,'ERF']]], - ['output_5fbndry_5fplanes_1490',['output_bndry_planes',['../classERF.html#a7c448670f7a5cadd6fe56f7e615c9eb6',1,'ERF']]], - ['owned_1491',['owned',['../structNDArray.html#a0a1c90304eddb4d078132a1c1f45bef9',1,'NDArray']]] + ['obliqr_1467',['obliqr',['../classRadiation.html#a4c1a53e6acb0412aab13695bb9b0aa1d',1,'Radiation']]], + ['offset_1468',['offset',['../ERF__ReadBndryPlanes_8cpp.html#a63d3125f6fd361f61d697799f46da817',1,'ERF_ReadBndryPlanes.cpp']]], + ['oldcldoptics_1469',['oldcldoptics',['../classMamConstituents.html#adb5b880a08c3d173d929ba90d43a8344',1,'MamConstituents']]], + ['oldgoffgratch_1470',['OldGoffGratch',['../classSatMethods.html#a62096d95f324cd2a3504554437067ef7aebef486906cc4e78c948e4b43f6680db',1,'SatMethods']]], + ['oldgoffgratch_5fsvp_5fice_1471',['OldGoffGratch_svp_ice',['../classSatMethods.html#a185a448ec1db160bc61f23cbda63f4bd',1,'SatMethods']]], + ['oldgoffgratch_5fsvp_5fwater_1472',['OldGoffGratch_svp_water',['../classSatMethods.html#a8458bd6a233082c463c070ddc692080f',1,'SatMethods']]], + ['olen_1473',['olen',['../classABLMost.html#a0d6aa5a113a45ae1e56c0284241cfd01',1,'ABLMost']]], + ['omega_1474',['omega',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a40820295afd4707e596461de893e54ae',1,'MicVar']]], + ['omegafromw_1475',['OmegaFromW',['../TerrainMetrics_8H.html#a6a4bf1524412edfd6efcbb867256db18',1,'TerrainMetrics.H']]], + ['omeps_1476',['omeps',['../ERF__Constants_8H.html#af04ee89db2f653c028681f044bd16222',1,'ERF_Constants.H']]], + ['on_5fcomplete_1477',['on_complete',['../classRadiation.html#a00d9d9b6ca18b854c515cc19ca93116a',1,'Radiation']]], + ['oneway_1478',['OneWay',['../DataStruct_8H.html#ad285be248c0803917aaf5cf8ce62139ba8d892b915adb5e7c957f4425253ee1d6',1,'DataStruct.H']]], + ['open_1479',['open',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca2b4e1a73027449d9af83a25ed67ae914',1,'ERFBCType::open()'],['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9a7cef8a734855777c2a9d0caf42666e69',1,'open(): IndexDefines.H'],['../classncutils_1_1NCFile.html#a2881b70e450e11f01b474c538b8d6885',1,'ncutils::NCFile::open(const std::string &name, const int cmode=NC_NOWRITE)']]], + ['open_5fpar_1480',['open_par',['../classncutils_1_1NCFile.html#a4ebf9e1dc5ce07255330478f050e9f1f',1,'ncutils::NCFile']]], + ['operator_28_29_1481',['operator()',['../classTerrainIF.html#ad7eb62071230ad12fbaa91ec2a13f110',1,'TerrainIF::operator()()'],['../classPlaneAverage.html#aa58d4a708d46cd0d12120e9bf90d5de2',1,'PlaneAverage::operator()()'],['../classTerrainIF.html#ad0a9adc95fd3d0b5903d5ef7f5b74176',1,'TerrainIF::operator()()'],['../classFlowerIF.html#a69a4544022e024b4b1f43173bdc2acfa',1,'FlowerIF::operator()(const amrex::RealArray &p) const noexcept'],['../classFlowerIF.html#a951672447af5497b0c6892b0c3b2a486',1,'FlowerIF::operator()(AMREX_D_DECL(amrex::Real x, amrex::Real y, amrex::Real)) const noexcept'],['../classUnionCIF.html#ae667fc60d687ed9cec3c0744123565ca',1,'UnionCIF::operator()()'],['../classUnionListIF.html#a0d787c823ae784fa6e3303f561afe3ec',1,'UnionListIF::operator()()'],['../classERFPhysBCFunct__cons.html#a117a7e4d21a16df5748a801f530b22c7',1,'ERFPhysBCFunct_cons::operator()()'],['../classERFPhysBCFunct__w__no__terrain.html#a735e6027f98a8b4dda67c67301cb6a20',1,'ERFPhysBCFunct_w_no_terrain::operator()()'],['../classERFPhysBCFunct__w.html#a6f8e28817bb9dafdbc4d3fa94736d389',1,'ERFPhysBCFunct_w::operator()()'],['../classERFPhysBCFunct__u.html#a7c9c47c22a7b4106912ef540492b86c5',1,'ERFPhysBCFunct_u::operator()()'],['../classERFPhysBCFunct__v.html#a38aa6be225edb8597ddc2828ee7bd6d7',1,'ERFPhysBCFunct_v::operator()()'],['../classIntersectionCIF.html#a335f81a1bad5ad2693b59b62ba19ed6b',1,'IntersectionCIF::operator()(const amrex::RealArray &p) const']]], + ['operator_3d_1482',['operator=',['../classIntersectionCIF.html#ae7bfcaf3ef685b2ba23765f184c81539',1,'IntersectionCIF::operator=()'],['../classMRISplitIntegrator.html#a9ee3b26ea1daf4ec058552c40b13e13b',1,'MRISplitIntegrator::operator=(const MRISplitIntegrator &other)=delete'],['../classMRISplitIntegrator.html#ad698d348d3e7fa695077134839254738',1,'MRISplitIntegrator::operator=(MRISplitIntegrator &&other) noexcept=default'],['../structNDArray.html#a63dda01f8d55fd1fc75437b125eb27b3',1,'NDArray::operator=()'],['../classERF.html#a72fcc41d6f5225e9ca3b8c9111ff37e7',1,'ERF::operator=(const ERF &other)=delete'],['../classERF.html#abbc40e6fe700b80e3666dd3723624f05',1,'ERF::operator=(ERF &&other) noexcept=delete'],['../classIntersectionCIF.html#a8f38679674ad3b05ce6ebea9d3d03e44',1,'IntersectionCIF::operator=()'],['../classUnionCIF.html#a0bbd9d187f7efd622fb063c08d06151c',1,'UnionCIF::operator=(UnionCIF &&rhs) noexcept=default'],['../classUnionCIF.html#a80348b91b25ded6d92276a198493d906',1,'UnionCIF::operator=(const UnionCIF &rhs)=default'],['../classCIF.html#a037374536662a8e2ed2fe272c8166526',1,'CIF::operator=(CIF &&rhs) noexcept=default'],['../classCIF.html#aa92ae7f8c7e1e3b05913912c14cd563b',1,'CIF::operator=(const CIF &rhs)=default'],['../structTimeInterpolatedData.html#a8c70a753ce4ff647874b276dd0bec89f',1,'TimeInterpolatedData::operator=(const TimeInterpolatedData &other)=delete'],['../structTimeInterpolatedData.html#a14b102dca6a63a5def503e3704b8ff5c',1,'TimeInterpolatedData::operator=(TimeInterpolatedData &&other) noexcept=default'],['../classMOSTAverage.html#a56f533937767a348d7c1dff755989531',1,'MOSTAverage::operator=(const MOSTAverage &other)=delete'],['../classMOSTAverage.html#a584b986a317b2c4d799163574c43b3b3',1,'MOSTAverage::operator=(MOSTAverage &&other) noexcept=delete']]], + ['optics_1483',['Optics',['../classOptics.html#a3ec67cc89ceb33196552b89616728040',1,'Optics::Optics()=default'],['../classOptics.html#aadaf34955cffcf141d182624b38f7898',1,'Optics::Optics(int ngases, char *gas_names[])']]], + ['optics_1484',['optics',['../classRadiation.html#ab0464f3862987a09a9f4713937a984c3',1,'Radiation']]], + ['optics_1485',['Optics',['../classOptics.html',1,'']]], + ['optics_2ecpp_1486',['Optics.cpp',['../Optics_8cpp.html',1,'']]], + ['optics_2eh_1487',['Optics.H',['../Optics_8H.html',1,'']]], + ['opticsmethod_1488',['opticsmethod',['../structPhysProp_1_1physprop__t.html#aa4cb3b830849d849a08227041fff62cd',1,'PhysProp::physprop_t']]], + ['orbit_2ecpp_1489',['Orbit.cpp',['../Orbit_8cpp.html',1,'']]], + ['orbit_2eh_1490',['Orbit.H',['../Orbit_8H.html',1,'']]], + ['outflow_1491',['outflow',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9acac0c32caf84a889ec9b2b4cb2d56972',1,'IndexDefines.H']]], + ['output_5f1d_5fcolumn_1492',['output_1d_column',['../classERF.html#ad17ff2753e754ff3eb1330612b820b5f',1,'ERF']]], + ['output_5fbndry_5fplanes_1493',['output_bndry_planes',['../classERF.html#a7c448670f7a5cadd6fe56f7e615c9eb6',1,'ERF']]], + ['owned_1494',['owned',['../structNDArray.html#a0a1c90304eddb4d078132a1c1f45bef9',1,'NDArray']]] ]; diff --git a/search/all_f.js b/search/all_f.js index 7222411224..70a019a7e5 100644 --- a/search/all_f.js +++ b/search/all_f.js @@ -1,135 +1,135 @@ var searchData= [ - ['p_5f0_1492',['p_0',['../ERF__Constants_8H.html#a994fea25f28c33c2e8f1e9c63d5b8b56',1,'ERF_Constants.H']]], - ['p_5finp_5fsound_5fd_1493',['p_inp_sound_d',['../structInputSoundingData.html#a0db7861e0fee3f8f0760c6685df3176f',1,'InputSoundingData']]], - ['par_5faccess_1494',['par_access',['../structncutils_1_1NCVar.html#a62b3d88feb5305a1c7efbb0ddf8002fc',1,'ncutils::NCVar']]], - ['parallelbox_1495',['ParallelBox',['../DirectionSelector_8H.html#aa828f1c2424107e1a454fee49cd04ad5',1,'DirectionSelector.H']]], - ['parameterizations_2eh_1496',['Parameterizations.H',['../Parameterizations_8H.html',1,'']]], - ['parfunctions_2eh_1497',['ParFunctions.H',['../ParFunctions_8H.html',1,'']]], - ['particledata_2eh_1498',['ParticleData.H',['../ParticleData_8H.html',1,'']]], - ['pb_5famp_1499',['pb_amp',['../structTurbulentPerturbation.html#a4b075473cfeaf70617e053cf77db0168',1,'TurbulentPerturbation']]], - ['pb_5fba_1500',['pb_ba',['../structTurbulentPerturbation.html#a37cd2d582d2102a94d25a3fa6631e8dc',1,'TurbulentPerturbation']]], - ['pb_5fcell_1501',['pb_cell',['../structTurbulentPerturbation.html#a6c1c35c60d8c8a7e66c770d78fb314ef',1,'TurbulentPerturbation']]], - ['pb_5finterval_1502',['pb_interval',['../structTurbulentPerturbation.html#aa6a26d1d85a580dd957ae567d2ceaa7d',1,'TurbulentPerturbation']]], - ['pb_5flocal_5fetime_1503',['pb_local_etime',['../structTurbulentPerturbation.html#a287ae1e88114174731f07a5dceaefc19',1,'TurbulentPerturbation']]], - ['pb_5fmag_1504',['pb_mag',['../structTurbulentPerturbation.html#aabd79eb1dab7153b890242e036b32f2a',1,'TurbulentPerturbation']]], - ['pb_5fnetzero_1505',['pb_netZero',['../structTurbulentPerturbation.html#a6f4fb5bdc199eb01791ef8dbc2040961',1,'TurbulentPerturbation']]], - ['pbl_5flengthscale_1506',['PBL_lengthscale',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea6a553b28d62930bdda7b473e28464b73',1,'EddyDiff']]], - ['pbl_5fmynn_5fa1_1507',['pbl_mynn_A1',['../structTurbChoice.html#a1d65cf1a08660a3d7464755da8c70a38',1,'TurbChoice']]], - ['pbl_5fmynn_5fa2_1508',['pbl_mynn_A2',['../structTurbChoice.html#a03e64a895e160cddef42f93bb6fed6e3',1,'TurbChoice']]], - ['pbl_5fmynn_5fb1_1509',['pbl_mynn_B1',['../structTurbChoice.html#ac8533193bb1789d8713f156443ac6801',1,'TurbChoice']]], - ['pbl_5fmynn_5fb2_1510',['pbl_mynn_B2',['../structTurbChoice.html#a6b61f96e8842316dd867ab6523967ff1',1,'TurbChoice']]], - ['pbl_5fmynn_5fc1_1511',['pbl_mynn_C1',['../structTurbChoice.html#a81257c2f6df7923e67b95b20150439b4',1,'TurbChoice']]], - ['pbl_5fmynn_5fc2_1512',['pbl_mynn_C2',['../structTurbChoice.html#a0696e8178c638da6cf94c4a1d8e4358b',1,'TurbChoice']]], - ['pbl_5fmynn_5fc3_1513',['pbl_mynn_C3',['../structTurbChoice.html#a5129ba60955a0990ef80166638acaa07',1,'TurbChoice']]], - ['pbl_5fmynn_5fc4_1514',['pbl_mynn_C4',['../structTurbChoice.html#afa27861e0ffa1f4c9373d465d1db378f',1,'TurbChoice']]], - ['pbl_5fmynn_5fc5_1515',['pbl_mynn_C5',['../structTurbChoice.html#a86360cd9caf3bf7a97e09a9118c5d2b5',1,'TurbChoice']]], - ['pbl_5ftype_1516',['pbl_type',['../structTurbChoice.html#a15b9bb58cde72bab3f5714934125f3f9',1,'TurbChoice']]], - ['pbl_5fysu_5fcoriolis_5ffreq_1517',['pbl_ysu_coriolis_freq',['../structTurbChoice.html#ac20bc5ed8f1482a520b623dc9cc1ef52',1,'TurbChoice']]], - ['pbl_5fysu_5fland_5fribcr_1518',['pbl_ysu_land_Ribcr',['../structTurbChoice.html#a96c1a42307db82ece270acdac75da9a3',1,'TurbChoice']]], - ['pbl_5fysu_5fover_5fland_1519',['pbl_ysu_over_land',['../structTurbChoice.html#a788407e8223bc8e19ee41f8107a92491',1,'TurbChoice']]], - ['pbl_5fysu_5funst_5fribcr_1520',['pbl_ysu_unst_Ribcr',['../structTurbChoice.html#af274e04335b259bb7b35f7c836f8310f',1,'TurbChoice']]], - ['pblmodels_2ecpp_1521',['PBLModels.cpp',['../PBLModels_8cpp.html',1,'']]], - ['pblmodels_2eh_1522',['PBLModels.H',['../PBLModels_8H.html',1,'']]], - ['pbltype_1523',['PBLType',['../TurbStruct_8H.html#a4a079f2650ca30c787a8375ec5f17ca5',1,'TurbStruct.H']]], - ['pc_1524',['PC',['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a56079d34fee7d4d15412dfffaa370ad9',1,'WRFBdyVars']]], - ['pcf_1525',['pcf',['../classWaterVaporSat.html#ac945aefc06aef842e140df159ec62c05',1,'WaterVaporSat']]], - ['pcinterp_1526',['PCInterp',['../namespaceInterpType.html#ac65aa6d3ffa2549732d15f959cff81aba6ece140c8e1d325d1a2b3615064284c3',1,'InterpType']]], - ['pdel_1527',['pdel',['../classRadiation.html#ad1aed51aea035b6dfefcbe571a2d7b34',1,'Radiation']]], - ['pdeldry_1528',['pdeldry',['../classAerRadProps.html#a1bf28a8f87d617095d3cf88cf7ef738e',1,'AerRadProps']]], - ['periodic_1529',['periodic',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9ae6ffdec5e14fce371eb7ae99edebbbee',1,'IndexDefines.H']]], - ['perpendicularbox_1530',['PerpendicularBox',['../DirectionSelector_8H.html#aef11f5662c1574638970c58b8421afa9',1,'DirectionSelector.H']]], - ['pert_5finterval_1531',['pert_interval',['../classERF.html#a52761522e295887435c10853d8c7dc37',1,'ERF']]], - ['pert_5ftype_1532',['pert_type',['../structSolverChoice.html#abfd94767b3721755632c45a5ef290544',1,'SolverChoice']]], - ['perturbationtype_1533',['PerturbationType',['../DataStruct_8H.html#a335364b39450e23bfefded6b7af8908c',1,'DataStruct.H']]], - ['perturbdirect_1534',['perturbDirect',['../DataStruct_8H.html#a335364b39450e23bfefded6b7af8908ca22ff088526a64c994976d9a158972c69',1,'DataStruct.H']]], - ['perturbsource_1535',['perturbSource',['../DataStruct_8H.html#a335364b39450e23bfefded6b7af8908ca97033369409e3c8abdcb8026cf1bdcc8',1,'DataStruct.H']]], - ['phys_5fbc_5ftype_1536',['phys_bc_type',['../classERF.html#ae6df94c25ac21bf6a2e856a9901e3a15',1,'ERF']]], - ['phys_5fprop_2eh_1537',['Phys_prop.H',['../Phys__prop_8H.html',1,'']]], - ['physbcs_5fcons_1538',['physbcs_cons',['../classERF.html#a2e9b04043853d25f2d76edbc0bed2e72',1,'ERF']]], - ['physbcs_5fu_1539',['physbcs_u',['../classERF.html#a64e55e5ae9df06433146db657eb9e72e',1,'ERF']]], - ['physbcs_5fv_1540',['physbcs_v',['../classERF.html#a79231b5cfd4576a742e46ae0082b5121',1,'ERF']]], - ['physbcs_5fw_1541',['physbcs_w',['../classERF.html#a45c8ecd777f47732993777a0afb8e140',1,'ERF']]], - ['physbcs_5fw_5fno_5fterrain_1542',['physbcs_w_no_terrain',['../classERF.html#a4d717bb9fe936fd1a124d0d3e720f9d1',1,'ERF']]], - ['physprop_1543',['physprop',['../classPhysProp.html#ae519d9ff501f4705b2b2f336c8f38e47',1,'PhysProp']]], - ['physprop_1544',['PhysProp',['../classPhysProp.html',1,'']]], - ['physprop_5faccum_5funique_5ffiles_1545',['physprop_accum_unique_files',['../classPhysProp.html#a864a1fe5f0d1797950a913c9f4927911',1,'PhysProp']]], - ['physprop_5ffile_1546',['physprop_file',['../structMamConstituents_1_1aerosol__t.html#a171adbde051fa00b94b7e0bfbd22d348',1,'MamConstituents::aerosol_t']]], - ['physprop_5ffiles_1547',['physprop_files',['../structMamConstituents_1_1modelist__t.html#ae4724929e731b1a00e0212d4c73495b4',1,'MamConstituents::modelist_t']]], - ['physprop_5fget_5fid_1548',['physprop_get_id',['../classPhysProp.html#ae7d874302e60031d6e08240f0a04c6ef',1,'PhysProp']]], - ['physprop_5fid_1549',['physprop_id',['../structMamConstituents_1_1aerosol__t.html#a6f7c83043cfbdc552c9ef9bcad6f24ed',1,'MamConstituents::aerosol_t']]], - ['physprop_5finit_1550',['physprop_init',['../classPhysProp.html#a01e533ca883ebcbdecb7262c38d3da89',1,'PhysProp']]], - ['physprop_5ft_1551',['physprop_t',['../structPhysProp_1_1physprop__t.html',1,'PhysProp']]], - ['pi_1552',['PI',['../ERF__Constants_8H.html#a988c4efd6fd0d855e241e77a73191428',1,'ERF_Constants.H']]], - ['pi43_1553',['pi43',['../classModalAeroWateruptake.html#a4a9705a6205eb9fad502289968668b77',1,'ModalAeroWateruptake']]], - ['pint_1554',['pint',['../classRadiation.html#a2f96bdaa65b73119271e1592fac6c569',1,'Radiation']]], - ['piotwo_1555',['PIoTwo',['../ERF__Constants_8H.html#ad51e17db99d11b190b2b57a23a518f7e',1,'ERF_Constants.H']]], - ['planeaverage_1556',['PlaneAverage',['../classPlaneAverage.html#ae021681bed8e81747b36dd6bcbd1a257',1,'PlaneAverage::PlaneAverage()'],['../classPlaneAverage.html',1,'PlaneAverage'],['../classPlaneAverage.html#ae9fb25948e525a6d7e2db872e97a4b4e',1,'PlaneAverage::PlaneAverage()']]], - ['planeaverage_2eh_1557',['PlaneAverage.H',['../PlaneAverage_8H.html',1,'']]], - ['planevector_1558',['PlaneVector',['../NCWpsFile_8H.html#a60014a8d74bed0d5ae984e600c68dc85',1,'PlaneVector(): NCWpsFile.H'],['../ERF__ReadBndryPlanes_8H.html#a60014a8d74bed0d5ae984e600c68dc85',1,'PlaneVector(): ERF_ReadBndryPlanes.H']]], - ['plot_5ffile_5f1_1559',['plot_file_1',['../classERF.html#aa54aaa938a18d34caa4d86e977647899',1,'ERF']]], - ['plot_5ffile_5f2_1560',['plot_file_2',['../classERF.html#a18fa84b06132715757d97ec38678aa2c',1,'ERF']]], - ['plot_5ffile_5flsm_1561',['plot_file_lsm',['../classLandSurface.html#af9c26970ce04b58725b9529fcc2fc62f',1,'LandSurface']]], - ['plot_5ffile_5fon_5frestart_1562',['plot_file_on_restart',['../classERF.html#adc00038dfe4c332e5d15f621184c69e8',1,'ERF']]], - ['plot_5flsm_1563',['plot_lsm',['../classERF.html#afc653b103aa26c56acafed85cdd95f52',1,'ERF']]], - ['plot_5flsm_5fdata_1564',['Plot_Lsm_Data',['../classLandSurface.html#a61290767bd3f0bc65db7a0a344b10899',1,'LandSurface']]], - ['plot_5fvar_5fnames_5f1_1565',['plot_var_names_1',['../classERF.html#a6865cf87abbb5aab0db00ff3b1ce94ac',1,'ERF']]], - ['plot_5fvar_5fnames_5f2_1566',['plot_var_names_2',['../classERF.html#a79705c02d6f25fbdcec14ca2432e5da1',1,'ERF']]], - ['plotfile_2ecpp_1567',['Plotfile.cpp',['../Plotfile_8cpp.html',1,'']]], - ['plotfile_5ftype_1568',['plotfile_type',['../classERF.html#ae7b9991150042eb38e2abc89399c0c7c',1,'ERF']]], - ['plotfilename_1569',['PlotFileName',['../classERF.html#a54f6c5d799e51521ad10bb57d29d0c44',1,'ERF']]], - ['plotfilevarnames_1570',['PlotFileVarNames',['../classERF.html#a2dcd22cb915d923c687f60267f44542b',1,'ERF']]], - ['pm_5finteg_1571',['pm_integ',['../structInputSoundingData.html#a30ed369fe55e1a25d9f1e871c70506d0',1,'InputSoundingData']]], - ['pmid_1572',['pmid',['../classRadiation.html#a32121d70e2b9720750b3a72fdc2a6ef9',1,'Radiation::pmid()'],['../classAerRadProps.html#ab56e110ccf8deaa71d452a64e69b8647',1,'AerRadProps::pmid()']]], - ['pn_1573',['pn',['../Microphysics__Utils_8H.html#a50486020eb1ed680a1ea0b0e82b81f2d',1,'Microphysics_Utils.H']]], - ['poisson_5fabstol_1574',['poisson_abstol',['../structSolverChoice.html#ad7f586d62fb0872ba0340fb03d462c64',1,'SolverChoice']]], - ['poisson_5freltol_1575',['poisson_reltol',['../structSolverChoice.html#a238b0871f38f8b134ff3fe5af0d05479',1,'SolverChoice']]], - ['post_5ftimestep_1576',['post_timestep',['../classERF.html#a58f6683aff0fbe6949bfe8b49275a8b3',1,'ERF']]], - ['post_5fupdate_1577',['post_update',['../classERF.html#adca0cddd75f33ecb5fb8e0ef9601dae4',1,'ERF::post_update()'],['../classMRISplitIntegrator.html#a02e299d44fcd24c67717267dd15a7895',1,'MRISplitIntegrator::post_update()']]], - ['post_5fupdate_5ffun_1578',['post_update_fun',['../TI__slow__rhs__fun_8H.html#afd90eac481ef47af3b095c56653098e8',1,'TI_slow_rhs_fun.H']]], - ['power_1579',['power',['../classWindFarm.html#aea801fd8c22bf9d4bdcec847f4e7f50a',1,'WindFarm::power()'],['../classSimpleAD.html#a4beb1f1734f5ba3b037cd6c89d79b351',1,'SimpleAD::power()'],['../classFitch.html#a88af1c4430e37f4950396b5a92e9ba03',1,'Fitch::power()'],['../classEWP.html#ab9a34e54d36268a3f7a0b376543bbff5',1,'EWP::power()']]], - ['pp_1580',['pp',['../Microphysics__Utils_8H.html#ac54f1d17d8842acb42b2312cd353e469',1,'Microphysics_Utils.H']]], - ['pp_5fprefix_1581',['pp_prefix',['../classERF.html#a59df30e7a5537c8543bb00772bd98b58',1,'ERF::pp_prefix()'],['../structTurbChoice.html#a6b8e56e5ace640df7834c013c6788020',1,'TurbChoice::pp_prefix()'],['../structTurbulentPerturbation.html#a40f3307cf523b625489b8591869bbb47',1,'TurbulentPerturbation::pp_prefix()'],['../structSpongeChoice.html#af06b59184315514abdadd3b54c073909',1,'SpongeChoice::pp_prefix()'],['../structDiffChoice.html#a9e8b6878f4d18ee6fe61a220612d70df',1,'DiffChoice::pp_prefix()'],['../structSolverChoice.html#a4b0edf29a032ff18b10a42825fa9e4b6',1,'SolverChoice::pp_prefix()'],['../structAdvChoice.html#a667cbedb89514e330b6ca144298857da',1,'AdvChoice::pp_prefix()']]], - ['pr_5ft_1582',['Pr_t',['../structTurbChoice.html#ae1bec6cf14226b68f692f86daa1c5566',1,'TurbChoice']]], - ['pr_5ft_5finv_1583',['Pr_t_inv',['../structTurbChoice.html#aa90aa6c577f632a8c4582a3538d98ad5',1,'TurbChoice']]], - ['pre_5fupdate_1584',['pre_update',['../classMRISplitIntegrator.html#a5c76e162725bceaa3f6c0dac2928bcd6',1,'MRISplitIntegrator']]], - ['pre_5fupdate_5ffun_1585',['pre_update_fun',['../TI__slow__rhs__fun_8H.html#aadc7f4c039b08417963410e7f76bb2dd',1,'TI_slow_rhs_fun.H']]], - ['precip_1586',['Precip',['../classSAM.html#a05218bdc2187b79e456ade5b6f5bdb3c',1,'SAM']]], - ['precip_2ecpp_1587',['Precip.cpp',['../Precip_8cpp.html',1,'']]], - ['precipfall_1588',['PrecipFall',['../classSAM.html#ae870dc821f7cd01ffc3bfd7925b1d18b',1,'SAM']]], - ['precipfall_2ecpp_1589',['PrecipFall.cpp',['../PrecipFall_8cpp.html',1,'']]], - ['prefi_1590',['prefi',['../structPhysProp_1_1physprop__t.html#ad1a2b4cadbb2d65df2caff3232e1ab63',1,'PhysProp::physprop_t::prefi()'],['../classMam4__aer.html#adffbde9f294834c29b86c8d74f4155b8',1,'Mam4_aer::prefi()']]], - ['prefr_1591',['prefr',['../structPhysProp_1_1physprop__t.html#adfa6696c636955b4f5388f5c83795afb',1,'PhysProp::physprop_t::prefr()'],['../classMam4__aer.html#a7211d56f004f39cd34118af3c380a71e',1,'Mam4_aer::prefr()']]], - ['pres_1592',['pres',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a147204d9af51dec01fb0d95c5cde8d37',1,'MicVar::pres()'],['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea82dd7c202e6cce14520ac01cfaa4f4ad',1,'MicVar_Kess::pres()']]], - ['pres1d_1593',['pres1d',['../classSAM.html#a77e43f5c8a68a43f8109aa18b71fa64e',1,'SAM']]], - ['press_5fref_5finp_5fsound_1594',['press_ref_inp_sound',['../structInputSoundingData.html#a09ac90305ea3a4559d83ca589678a5aa',1,'InputSoundingData']]], - ['pressuregradient_1595',['PressureGradient',['../DataStruct_8H.html#a90da675b718151491fd0c934a0ad3ceba527d74300afe17c5171b0e5e015918e6',1,'DataStruct.H']]], - ['previouscputimeused_1596',['previousCPUTimeUsed',['../classERF.html#a1f412097e565c23acb4c17c67db10e22',1,'ERF']]], - ['primke_5fcomp_1597',['PrimKE_comp',['../IndexDefines_8H.html#a9ab6bf01b348d4b7cef99f3655c9dbb2',1,'IndexDefines.H']]], - ['primq1_5fcomp_1598',['PrimQ1_comp',['../IndexDefines_8H.html#a046484d86c968f85c3b8e574c1fe3e29',1,'IndexDefines.H']]], - ['primq2_5fcomp_1599',['PrimQ2_comp',['../IndexDefines_8H.html#a2564ef35937a97a2a6c90ca51ae7cdf3',1,'IndexDefines.H']]], - ['primq3_5fcomp_1600',['PrimQ3_comp',['../IndexDefines_8H.html#ac6f3d51b14f04acc045d644f32375c6d',1,'IndexDefines.H']]], - ['primq4_5fcomp_1601',['PrimQ4_comp',['../IndexDefines_8H.html#a2e038955a3c380beab1941e422ef83ea',1,'IndexDefines.H']]], - ['primq5_5fcomp_1602',['PrimQ5_comp',['../IndexDefines_8H.html#a7f9c844ee8a2e1930ade0911e8692667',1,'IndexDefines.H']]], - ['primq6_5fcomp_1603',['PrimQ6_comp',['../IndexDefines_8H.html#a4d0a4735b7019c88a28b42c3d4787154',1,'IndexDefines.H']]], - ['primqke_5fcomp_1604',['PrimQKE_comp',['../IndexDefines_8H.html#ad6174e899597e766afde82f9c11def75',1,'IndexDefines.H']]], - ['primscalar_5fcomp_1605',['PrimScalar_comp',['../IndexDefines_8H.html#aa9d1308b0d214f7bfbe9b8c11c4176b7',1,'IndexDefines.H']]], - ['primtheta_5fcomp_1606',['PrimTheta_comp',['../IndexDefines_8H.html#a8b9c5b827b61f426a3879bc5d2883040',1,'IndexDefines.H']]], - ['print_5fbanner_1607',['print_banner',['../classERF.html#a1a8eb6bc00080cdbd8df28f6a321ac72',1,'ERF']]], - ['print_5ferror_1608',['print_error',['../classERF.html#addc510dbf758a33cc095d64a9b17076c',1,'ERF']]], - ['print_5fsummary_1609',['print_summary',['../classERF.html#afa432756254529fb37b921088f0960d2',1,'ERF']]], - ['print_5ftpls_1610',['print_tpls',['../classERF.html#a15af18ae136cf3a11bb63fe0cf3924c8',1,'ERF']]], - ['print_5fusage_1611',['print_usage',['../classERF.html#aeaeb11001478b0635ef0fe3baa396df1',1,'ERF']]], - ['prob_1612',['prob',['../classERF.html#a60e8cb933f237903e3fbcd6376c26db0',1,'ERF']]], - ['prob_5fcommon_2eh_1613',['prob_common.H',['../prob__common_8H.html',1,'']]], - ['problembase_1614',['ProblemBase',['../classProblemBase.html',1,'']]], - ['probparmdefaults_1615',['ProbParmDefaults',['../structProbParmDefaults.html',1,'']]], - ['profile_5fint_1616',['profile_int',['../classERF.html#a633cd0b44d2e38f02c23e953aecd69eb',1,'ERF']]], - ['project_5fevery_5fstage_1617',['project_every_stage',['../structSolverChoice.html#afa4e734fc983ec9e6a0382fc369c309e',1,'SolverChoice']]], - ['prop_1618',['prop',['../classMamConstituents.html#af4a85a7b8e8e4a677c8d34970487f14e',1,'MamConstituents']]], - ['props_1619',['props',['../structMamConstituents_1_1mode__component__t.html#a3f9b94d6f306e89f1be96830e442fb10',1,'MamConstituents::mode_component_t']]], - ['pseudorandompert_1620',['pseudoRandomPert',['../structTurbulentPerturbation.html#a1dfc591297a8af23c941b06ed5fabba1',1,'TurbulentPerturbation']]], - ['pt_5ftype_1621',['pt_type',['../structTurbulentPerturbation.html#ad0d78e0adbb21ae36f4483dd30e15d58',1,'TurbulentPerturbation']]], - ['put_1622',['put',['../structncutils_1_1NCVar.html#a5f4dc3a5bf52f9574bffc89c29f4335c',1,'ncutils::NCVar::put(const int *, const std::vector< size_t > &, const std::vector< size_t > &, const std::vector< ptrdiff_t > &) const'],['../structncutils_1_1NCVar.html#a7e026621e99a5df32de407384d929791',1,'ncutils::NCVar::put(const double *) const'],['../structncutils_1_1NCVar.html#aa61e7a28b6bff1df2ef10b4856c34af7',1,'ncutils::NCVar::put(const float *) const'],['../structncutils_1_1NCVar.html#a16984e6a3ad571e12401321b749f44ea',1,'ncutils::NCVar::put(const int *) const'],['../structncutils_1_1NCVar.html#a2d41b9484dd6453e36be2d54fe824962',1,'ncutils::NCVar::put(const double *, const std::vector< size_t > &, const std::vector< size_t > &) const'],['../structncutils_1_1NCVar.html#a8a96107d02633e5a53aef296052716d1',1,'ncutils::NCVar::put(const double *, const std::vector< size_t > &, const std::vector< size_t > &, const std::vector< ptrdiff_t > &) const'],['../structncutils_1_1NCVar.html#a1cdbbfc072d285144de7f9b6e0fbac42',1,'ncutils::NCVar::put(const char **dptr, const std::vector< size_t > &start, const std::vector< size_t > &count, const std::vector< ptrdiff_t > &stride) const'],['../structncutils_1_1NCVar.html#a2520db8c1541561c274be5c372fa5597',1,'ncutils::NCVar::put(const float *, const std::vector< size_t > &, const std::vector< size_t > &) const'],['../structncutils_1_1NCVar.html#ad8b9aedc67e38c49522bd98459a26290',1,'ncutils::NCVar::put(const float *, const std::vector< size_t > &, const std::vector< size_t > &, const std::vector< ptrdiff_t > &) const'],['../structncutils_1_1NCVar.html#ae4d3aaba3b410438132b65bb8ab47512',1,'ncutils::NCVar::put(const int *, const std::vector< size_t > &, const std::vector< size_t > &) const'],['../structncutils_1_1NCVar.html#a7d575f25e77d2a5e2dbac86047ca318c',1,'ncutils::NCVar::put(const char **, const std::vector< size_t > &, const std::vector< size_t > &) const']]], - ['put_5fattr_1623',['put_attr',['../structncutils_1_1NCVar.html#a9f60ebf70762d1d8e0962afb01118a31',1,'ncutils::NCVar::put_attr()'],['../classncutils_1_1NCGroup.html#a39472c18d4e16cf47ba54bd1246220b6',1,'ncutils::NCGroup::put_attr()'],['../structncutils_1_1NCVar.html#ac1572a791861a2d297f8f29ba0df8d55',1,'ncutils::NCVar::put_attr(const std::string &name, const std::vector< double > &value) const'],['../structncutils_1_1NCVar.html#a69c358988ebdd589d7e465ca6a5f07e9',1,'ncutils::NCVar::put_attr(const std::string &name, const std::vector< float > &value) const'],['../structncutils_1_1NCVar.html#a72558ae45f30bed210d68c26ec57cb13',1,'ncutils::NCVar::put_attr(const std::string &name, const std::vector< int > &value) const'],['../classncutils_1_1NCGroup.html#acf73ea254afaf7d74596fa07523b322f',1,'ncutils::NCGroup::put_attr(const std::string &name, const std::string &value) const'],['../classncutils_1_1NCGroup.html#a91efbd2b8ef280b7eb3b426bbbf16cca',1,'ncutils::NCGroup::put_attr(const std::string &name, const std::vector< double > &value) const'],['../classncutils_1_1NCGroup.html#acf2801c26458fb99bd82733b1302285a',1,'ncutils::NCGroup::put_attr(const std::string &name, const std::vector< int > &value) const']]] + ['p_5f0_1495',['p_0',['../ERF__Constants_8H.html#a994fea25f28c33c2e8f1e9c63d5b8b56',1,'ERF_Constants.H']]], + ['p_5finp_5fsound_5fd_1496',['p_inp_sound_d',['../structInputSoundingData.html#a0db7861e0fee3f8f0760c6685df3176f',1,'InputSoundingData']]], + ['par_5faccess_1497',['par_access',['../structncutils_1_1NCVar.html#a62b3d88feb5305a1c7efbb0ddf8002fc',1,'ncutils::NCVar']]], + ['parallelbox_1498',['ParallelBox',['../DirectionSelector_8H.html#aa828f1c2424107e1a454fee49cd04ad5',1,'DirectionSelector.H']]], + ['parameterizations_2eh_1499',['Parameterizations.H',['../Parameterizations_8H.html',1,'']]], + ['parfunctions_2eh_1500',['ParFunctions.H',['../ParFunctions_8H.html',1,'']]], + ['particledata_2eh_1501',['ParticleData.H',['../ParticleData_8H.html',1,'']]], + ['pb_5famp_1502',['pb_amp',['../structTurbulentPerturbation.html#a4b075473cfeaf70617e053cf77db0168',1,'TurbulentPerturbation']]], + ['pb_5fba_1503',['pb_ba',['../structTurbulentPerturbation.html#a37cd2d582d2102a94d25a3fa6631e8dc',1,'TurbulentPerturbation']]], + ['pb_5fcell_1504',['pb_cell',['../structTurbulentPerturbation.html#a6c1c35c60d8c8a7e66c770d78fb314ef',1,'TurbulentPerturbation']]], + ['pb_5finterval_1505',['pb_interval',['../structTurbulentPerturbation.html#aa6a26d1d85a580dd957ae567d2ceaa7d',1,'TurbulentPerturbation']]], + ['pb_5flocal_5fetime_1506',['pb_local_etime',['../structTurbulentPerturbation.html#a287ae1e88114174731f07a5dceaefc19',1,'TurbulentPerturbation']]], + ['pb_5fmag_1507',['pb_mag',['../structTurbulentPerturbation.html#aabd79eb1dab7153b890242e036b32f2a',1,'TurbulentPerturbation']]], + ['pb_5fnetzero_1508',['pb_netZero',['../structTurbulentPerturbation.html#a6f4fb5bdc199eb01791ef8dbc2040961',1,'TurbulentPerturbation']]], + ['pbl_5flengthscale_1509',['PBL_lengthscale',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea6a553b28d62930bdda7b473e28464b73',1,'EddyDiff']]], + ['pbl_5fmynn_5fa1_1510',['pbl_mynn_A1',['../structTurbChoice.html#a1d65cf1a08660a3d7464755da8c70a38',1,'TurbChoice']]], + ['pbl_5fmynn_5fa2_1511',['pbl_mynn_A2',['../structTurbChoice.html#a03e64a895e160cddef42f93bb6fed6e3',1,'TurbChoice']]], + ['pbl_5fmynn_5fb1_1512',['pbl_mynn_B1',['../structTurbChoice.html#ac8533193bb1789d8713f156443ac6801',1,'TurbChoice']]], + ['pbl_5fmynn_5fb2_1513',['pbl_mynn_B2',['../structTurbChoice.html#a6b61f96e8842316dd867ab6523967ff1',1,'TurbChoice']]], + ['pbl_5fmynn_5fc1_1514',['pbl_mynn_C1',['../structTurbChoice.html#a81257c2f6df7923e67b95b20150439b4',1,'TurbChoice']]], + ['pbl_5fmynn_5fc2_1515',['pbl_mynn_C2',['../structTurbChoice.html#a0696e8178c638da6cf94c4a1d8e4358b',1,'TurbChoice']]], + ['pbl_5fmynn_5fc3_1516',['pbl_mynn_C3',['../structTurbChoice.html#a5129ba60955a0990ef80166638acaa07',1,'TurbChoice']]], + ['pbl_5fmynn_5fc4_1517',['pbl_mynn_C4',['../structTurbChoice.html#afa27861e0ffa1f4c9373d465d1db378f',1,'TurbChoice']]], + ['pbl_5fmynn_5fc5_1518',['pbl_mynn_C5',['../structTurbChoice.html#a86360cd9caf3bf7a97e09a9118c5d2b5',1,'TurbChoice']]], + ['pbl_5ftype_1519',['pbl_type',['../structTurbChoice.html#a15b9bb58cde72bab3f5714934125f3f9',1,'TurbChoice']]], + ['pbl_5fysu_5fcoriolis_5ffreq_1520',['pbl_ysu_coriolis_freq',['../structTurbChoice.html#ac20bc5ed8f1482a520b623dc9cc1ef52',1,'TurbChoice']]], + ['pbl_5fysu_5fland_5fribcr_1521',['pbl_ysu_land_Ribcr',['../structTurbChoice.html#a96c1a42307db82ece270acdac75da9a3',1,'TurbChoice']]], + ['pbl_5fysu_5fover_5fland_1522',['pbl_ysu_over_land',['../structTurbChoice.html#a788407e8223bc8e19ee41f8107a92491',1,'TurbChoice']]], + ['pbl_5fysu_5funst_5fribcr_1523',['pbl_ysu_unst_Ribcr',['../structTurbChoice.html#af274e04335b259bb7b35f7c836f8310f',1,'TurbChoice']]], + ['pblmodels_2ecpp_1524',['PBLModels.cpp',['../PBLModels_8cpp.html',1,'']]], + ['pblmodels_2eh_1525',['PBLModels.H',['../PBLModels_8H.html',1,'']]], + ['pbltype_1526',['PBLType',['../TurbStruct_8H.html#a4a079f2650ca30c787a8375ec5f17ca5',1,'TurbStruct.H']]], + ['pc_1527',['PC',['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a56079d34fee7d4d15412dfffaa370ad9',1,'WRFBdyVars']]], + ['pcf_1528',['pcf',['../classWaterVaporSat.html#ac945aefc06aef842e140df159ec62c05',1,'WaterVaporSat']]], + ['pcinterp_1529',['PCInterp',['../namespaceInterpType.html#ac65aa6d3ffa2549732d15f959cff81aba6ece140c8e1d325d1a2b3615064284c3',1,'InterpType']]], + ['pdel_1530',['pdel',['../classRadiation.html#ad1aed51aea035b6dfefcbe571a2d7b34',1,'Radiation']]], + ['pdeldry_1531',['pdeldry',['../classAerRadProps.html#a1bf28a8f87d617095d3cf88cf7ef738e',1,'AerRadProps']]], + ['periodic_1532',['periodic',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9ae6ffdec5e14fce371eb7ae99edebbbee',1,'IndexDefines.H']]], + ['perpendicularbox_1533',['PerpendicularBox',['../DirectionSelector_8H.html#aef11f5662c1574638970c58b8421afa9',1,'DirectionSelector.H']]], + ['pert_5finterval_1534',['pert_interval',['../classERF.html#a52761522e295887435c10853d8c7dc37',1,'ERF']]], + ['pert_5ftype_1535',['pert_type',['../structSolverChoice.html#abfd94767b3721755632c45a5ef290544',1,'SolverChoice']]], + ['perturbationtype_1536',['PerturbationType',['../DataStruct_8H.html#a335364b39450e23bfefded6b7af8908c',1,'DataStruct.H']]], + ['perturbdirect_1537',['perturbDirect',['../DataStruct_8H.html#a335364b39450e23bfefded6b7af8908ca22ff088526a64c994976d9a158972c69',1,'DataStruct.H']]], + ['perturbsource_1538',['perturbSource',['../DataStruct_8H.html#a335364b39450e23bfefded6b7af8908ca97033369409e3c8abdcb8026cf1bdcc8',1,'DataStruct.H']]], + ['phys_5fbc_5ftype_1539',['phys_bc_type',['../classERF.html#ae6df94c25ac21bf6a2e856a9901e3a15',1,'ERF']]], + ['phys_5fprop_2eh_1540',['Phys_prop.H',['../Phys__prop_8H.html',1,'']]], + ['physbcs_5fcons_1541',['physbcs_cons',['../classERF.html#a2e9b04043853d25f2d76edbc0bed2e72',1,'ERF']]], + ['physbcs_5fu_1542',['physbcs_u',['../classERF.html#a64e55e5ae9df06433146db657eb9e72e',1,'ERF']]], + ['physbcs_5fv_1543',['physbcs_v',['../classERF.html#a79231b5cfd4576a742e46ae0082b5121',1,'ERF']]], + ['physbcs_5fw_1544',['physbcs_w',['../classERF.html#a45c8ecd777f47732993777a0afb8e140',1,'ERF']]], + ['physbcs_5fw_5fno_5fterrain_1545',['physbcs_w_no_terrain',['../classERF.html#a4d717bb9fe936fd1a124d0d3e720f9d1',1,'ERF']]], + ['physprop_1546',['physprop',['../classPhysProp.html#ae519d9ff501f4705b2b2f336c8f38e47',1,'PhysProp']]], + ['physprop_1547',['PhysProp',['../classPhysProp.html',1,'']]], + ['physprop_5faccum_5funique_5ffiles_1548',['physprop_accum_unique_files',['../classPhysProp.html#a864a1fe5f0d1797950a913c9f4927911',1,'PhysProp']]], + ['physprop_5ffile_1549',['physprop_file',['../structMamConstituents_1_1aerosol__t.html#a171adbde051fa00b94b7e0bfbd22d348',1,'MamConstituents::aerosol_t']]], + ['physprop_5ffiles_1550',['physprop_files',['../structMamConstituents_1_1modelist__t.html#ae4724929e731b1a00e0212d4c73495b4',1,'MamConstituents::modelist_t']]], + ['physprop_5fget_5fid_1551',['physprop_get_id',['../classPhysProp.html#ae7d874302e60031d6e08240f0a04c6ef',1,'PhysProp']]], + ['physprop_5fid_1552',['physprop_id',['../structMamConstituents_1_1aerosol__t.html#a6f7c83043cfbdc552c9ef9bcad6f24ed',1,'MamConstituents::aerosol_t']]], + ['physprop_5finit_1553',['physprop_init',['../classPhysProp.html#a01e533ca883ebcbdecb7262c38d3da89',1,'PhysProp']]], + ['physprop_5ft_1554',['physprop_t',['../structPhysProp_1_1physprop__t.html',1,'PhysProp']]], + ['pi_1555',['PI',['../ERF__Constants_8H.html#a988c4efd6fd0d855e241e77a73191428',1,'ERF_Constants.H']]], + ['pi43_1556',['pi43',['../classModalAeroWateruptake.html#a4a9705a6205eb9fad502289968668b77',1,'ModalAeroWateruptake']]], + ['pint_1557',['pint',['../classRadiation.html#a2f96bdaa65b73119271e1592fac6c569',1,'Radiation']]], + ['piotwo_1558',['PIoTwo',['../ERF__Constants_8H.html#ad51e17db99d11b190b2b57a23a518f7e',1,'ERF_Constants.H']]], + ['planeaverage_1559',['PlaneAverage',['../classPlaneAverage.html#ae021681bed8e81747b36dd6bcbd1a257',1,'PlaneAverage::PlaneAverage()'],['../classPlaneAverage.html',1,'PlaneAverage'],['../classPlaneAverage.html#ae9fb25948e525a6d7e2db872e97a4b4e',1,'PlaneAverage::PlaneAverage()']]], + ['planeaverage_2eh_1560',['PlaneAverage.H',['../PlaneAverage_8H.html',1,'']]], + ['planevector_1561',['PlaneVector',['../NCWpsFile_8H.html#a60014a8d74bed0d5ae984e600c68dc85',1,'PlaneVector(): NCWpsFile.H'],['../ERF__ReadBndryPlanes_8H.html#a60014a8d74bed0d5ae984e600c68dc85',1,'PlaneVector(): ERF_ReadBndryPlanes.H']]], + ['plot_5ffile_5f1_1562',['plot_file_1',['../classERF.html#aa54aaa938a18d34caa4d86e977647899',1,'ERF']]], + ['plot_5ffile_5f2_1563',['plot_file_2',['../classERF.html#a18fa84b06132715757d97ec38678aa2c',1,'ERF']]], + ['plot_5ffile_5flsm_1564',['plot_file_lsm',['../classLandSurface.html#af9c26970ce04b58725b9529fcc2fc62f',1,'LandSurface']]], + ['plot_5ffile_5fon_5frestart_1565',['plot_file_on_restart',['../classERF.html#adc00038dfe4c332e5d15f621184c69e8',1,'ERF']]], + ['plot_5flsm_1566',['plot_lsm',['../classERF.html#afc653b103aa26c56acafed85cdd95f52',1,'ERF']]], + ['plot_5flsm_5fdata_1567',['Plot_Lsm_Data',['../classLandSurface.html#a61290767bd3f0bc65db7a0a344b10899',1,'LandSurface']]], + ['plot_5fvar_5fnames_5f1_1568',['plot_var_names_1',['../classERF.html#a6865cf87abbb5aab0db00ff3b1ce94ac',1,'ERF']]], + ['plot_5fvar_5fnames_5f2_1569',['plot_var_names_2',['../classERF.html#a79705c02d6f25fbdcec14ca2432e5da1',1,'ERF']]], + ['plotfile_2ecpp_1570',['Plotfile.cpp',['../Plotfile_8cpp.html',1,'']]], + ['plotfile_5ftype_1571',['plotfile_type',['../classERF.html#ae7b9991150042eb38e2abc89399c0c7c',1,'ERF']]], + ['plotfilename_1572',['PlotFileName',['../classERF.html#a54f6c5d799e51521ad10bb57d29d0c44',1,'ERF']]], + ['plotfilevarnames_1573',['PlotFileVarNames',['../classERF.html#a2dcd22cb915d923c687f60267f44542b',1,'ERF']]], + ['pm_5finteg_1574',['pm_integ',['../structInputSoundingData.html#a30ed369fe55e1a25d9f1e871c70506d0',1,'InputSoundingData']]], + ['pmid_1575',['pmid',['../classRadiation.html#a32121d70e2b9720750b3a72fdc2a6ef9',1,'Radiation::pmid()'],['../classAerRadProps.html#ab56e110ccf8deaa71d452a64e69b8647',1,'AerRadProps::pmid()']]], + ['pn_1576',['pn',['../Microphysics__Utils_8H.html#a50486020eb1ed680a1ea0b0e82b81f2d',1,'Microphysics_Utils.H']]], + ['poisson_5fabstol_1577',['poisson_abstol',['../structSolverChoice.html#ad7f586d62fb0872ba0340fb03d462c64',1,'SolverChoice']]], + ['poisson_5freltol_1578',['poisson_reltol',['../structSolverChoice.html#a238b0871f38f8b134ff3fe5af0d05479',1,'SolverChoice']]], + ['post_5ftimestep_1579',['post_timestep',['../classERF.html#a58f6683aff0fbe6949bfe8b49275a8b3',1,'ERF']]], + ['post_5fupdate_1580',['post_update',['../classERF.html#adca0cddd75f33ecb5fb8e0ef9601dae4',1,'ERF::post_update()'],['../classMRISplitIntegrator.html#a02e299d44fcd24c67717267dd15a7895',1,'MRISplitIntegrator::post_update()']]], + ['post_5fupdate_5ffun_1581',['post_update_fun',['../TI__slow__rhs__fun_8H.html#afd90eac481ef47af3b095c56653098e8',1,'TI_slow_rhs_fun.H']]], + ['power_1582',['power',['../classWindFarm.html#aea801fd8c22bf9d4bdcec847f4e7f50a',1,'WindFarm::power()'],['../classSimpleAD.html#a4beb1f1734f5ba3b037cd6c89d79b351',1,'SimpleAD::power()'],['../classFitch.html#a88af1c4430e37f4950396b5a92e9ba03',1,'Fitch::power()'],['../classEWP.html#ab9a34e54d36268a3f7a0b376543bbff5',1,'EWP::power()']]], + ['pp_1583',['pp',['../Microphysics__Utils_8H.html#ac54f1d17d8842acb42b2312cd353e469',1,'Microphysics_Utils.H']]], + ['pp_5fprefix_1584',['pp_prefix',['../classERF.html#a59df30e7a5537c8543bb00772bd98b58',1,'ERF::pp_prefix()'],['../structTurbChoice.html#a6b8e56e5ace640df7834c013c6788020',1,'TurbChoice::pp_prefix()'],['../structTurbulentPerturbation.html#a40f3307cf523b625489b8591869bbb47',1,'TurbulentPerturbation::pp_prefix()'],['../structSpongeChoice.html#af06b59184315514abdadd3b54c073909',1,'SpongeChoice::pp_prefix()'],['../structDiffChoice.html#a9e8b6878f4d18ee6fe61a220612d70df',1,'DiffChoice::pp_prefix()'],['../structSolverChoice.html#a4b0edf29a032ff18b10a42825fa9e4b6',1,'SolverChoice::pp_prefix()'],['../structAdvChoice.html#a667cbedb89514e330b6ca144298857da',1,'AdvChoice::pp_prefix()']]], + ['pr_5ft_1585',['Pr_t',['../structTurbChoice.html#ae1bec6cf14226b68f692f86daa1c5566',1,'TurbChoice']]], + ['pr_5ft_5finv_1586',['Pr_t_inv',['../structTurbChoice.html#aa90aa6c577f632a8c4582a3538d98ad5',1,'TurbChoice']]], + ['pre_5fupdate_1587',['pre_update',['../classMRISplitIntegrator.html#a5c76e162725bceaa3f6c0dac2928bcd6',1,'MRISplitIntegrator']]], + ['pre_5fupdate_5ffun_1588',['pre_update_fun',['../TI__slow__rhs__fun_8H.html#aadc7f4c039b08417963410e7f76bb2dd',1,'TI_slow_rhs_fun.H']]], + ['precip_1589',['Precip',['../classSAM.html#a05218bdc2187b79e456ade5b6f5bdb3c',1,'SAM']]], + ['precip_2ecpp_1590',['Precip.cpp',['../Precip_8cpp.html',1,'']]], + ['precipfall_1591',['PrecipFall',['../classSAM.html#ae870dc821f7cd01ffc3bfd7925b1d18b',1,'SAM']]], + ['precipfall_2ecpp_1592',['PrecipFall.cpp',['../PrecipFall_8cpp.html',1,'']]], + ['prefi_1593',['prefi',['../structPhysProp_1_1physprop__t.html#ad1a2b4cadbb2d65df2caff3232e1ab63',1,'PhysProp::physprop_t::prefi()'],['../classMam4__aer.html#adffbde9f294834c29b86c8d74f4155b8',1,'Mam4_aer::prefi()']]], + ['prefr_1594',['prefr',['../structPhysProp_1_1physprop__t.html#adfa6696c636955b4f5388f5c83795afb',1,'PhysProp::physprop_t::prefr()'],['../classMam4__aer.html#a7211d56f004f39cd34118af3c380a71e',1,'Mam4_aer::prefr()']]], + ['pres_1595',['pres',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a147204d9af51dec01fb0d95c5cde8d37',1,'MicVar::pres()'],['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea82dd7c202e6cce14520ac01cfaa4f4ad',1,'MicVar_Kess::pres()']]], + ['pres1d_1596',['pres1d',['../classSAM.html#a77e43f5c8a68a43f8109aa18b71fa64e',1,'SAM']]], + ['press_5fref_5finp_5fsound_1597',['press_ref_inp_sound',['../structInputSoundingData.html#a09ac90305ea3a4559d83ca589678a5aa',1,'InputSoundingData']]], + ['pressuregradient_1598',['PressureGradient',['../DataStruct_8H.html#a90da675b718151491fd0c934a0ad3ceba527d74300afe17c5171b0e5e015918e6',1,'DataStruct.H']]], + ['previouscputimeused_1599',['previousCPUTimeUsed',['../classERF.html#a1f412097e565c23acb4c17c67db10e22',1,'ERF']]], + ['primke_5fcomp_1600',['PrimKE_comp',['../IndexDefines_8H.html#a9ab6bf01b348d4b7cef99f3655c9dbb2',1,'IndexDefines.H']]], + ['primq1_5fcomp_1601',['PrimQ1_comp',['../IndexDefines_8H.html#a046484d86c968f85c3b8e574c1fe3e29',1,'IndexDefines.H']]], + ['primq2_5fcomp_1602',['PrimQ2_comp',['../IndexDefines_8H.html#a2564ef35937a97a2a6c90ca51ae7cdf3',1,'IndexDefines.H']]], + ['primq3_5fcomp_1603',['PrimQ3_comp',['../IndexDefines_8H.html#ac6f3d51b14f04acc045d644f32375c6d',1,'IndexDefines.H']]], + ['primq4_5fcomp_1604',['PrimQ4_comp',['../IndexDefines_8H.html#a2e038955a3c380beab1941e422ef83ea',1,'IndexDefines.H']]], + ['primq5_5fcomp_1605',['PrimQ5_comp',['../IndexDefines_8H.html#a7f9c844ee8a2e1930ade0911e8692667',1,'IndexDefines.H']]], + ['primq6_5fcomp_1606',['PrimQ6_comp',['../IndexDefines_8H.html#a4d0a4735b7019c88a28b42c3d4787154',1,'IndexDefines.H']]], + ['primqke_5fcomp_1607',['PrimQKE_comp',['../IndexDefines_8H.html#ad6174e899597e766afde82f9c11def75',1,'IndexDefines.H']]], + ['primscalar_5fcomp_1608',['PrimScalar_comp',['../IndexDefines_8H.html#aa9d1308b0d214f7bfbe9b8c11c4176b7',1,'IndexDefines.H']]], + ['primtheta_5fcomp_1609',['PrimTheta_comp',['../IndexDefines_8H.html#a8b9c5b827b61f426a3879bc5d2883040',1,'IndexDefines.H']]], + ['print_5fbanner_1610',['print_banner',['../classERF.html#a1a8eb6bc00080cdbd8df28f6a321ac72',1,'ERF']]], + ['print_5ferror_1611',['print_error',['../classERF.html#addc510dbf758a33cc095d64a9b17076c',1,'ERF']]], + ['print_5fsummary_1612',['print_summary',['../classERF.html#afa432756254529fb37b921088f0960d2',1,'ERF']]], + ['print_5ftpls_1613',['print_tpls',['../classERF.html#a15af18ae136cf3a11bb63fe0cf3924c8',1,'ERF']]], + ['print_5fusage_1614',['print_usage',['../classERF.html#aeaeb11001478b0635ef0fe3baa396df1',1,'ERF']]], + ['prob_1615',['prob',['../classERF.html#a60e8cb933f237903e3fbcd6376c26db0',1,'ERF']]], + ['prob_5fcommon_2eh_1616',['prob_common.H',['../prob__common_8H.html',1,'']]], + ['problembase_1617',['ProblemBase',['../classProblemBase.html',1,'']]], + ['probparmdefaults_1618',['ProbParmDefaults',['../structProbParmDefaults.html',1,'']]], + ['profile_5fint_1619',['profile_int',['../classERF.html#a633cd0b44d2e38f02c23e953aecd69eb',1,'ERF']]], + ['project_5fevery_5fstage_1620',['project_every_stage',['../structSolverChoice.html#afa4e734fc983ec9e6a0382fc369c309e',1,'SolverChoice']]], + ['prop_1621',['prop',['../classMamConstituents.html#af4a85a7b8e8e4a677c8d34970487f14e',1,'MamConstituents']]], + ['props_1622',['props',['../structMamConstituents_1_1mode__component__t.html#a3f9b94d6f306e89f1be96830e442fb10',1,'MamConstituents::mode_component_t']]], + ['pseudorandompert_1623',['pseudoRandomPert',['../structTurbulentPerturbation.html#a1dfc591297a8af23c941b06ed5fabba1',1,'TurbulentPerturbation']]], + ['pt_5ftype_1624',['pt_type',['../structTurbulentPerturbation.html#ad0d78e0adbb21ae36f4483dd30e15d58',1,'TurbulentPerturbation']]], + ['put_1625',['put',['../structncutils_1_1NCVar.html#a5f4dc3a5bf52f9574bffc89c29f4335c',1,'ncutils::NCVar::put(const int *, const std::vector< size_t > &, const std::vector< size_t > &, const std::vector< ptrdiff_t > &) const'],['../structncutils_1_1NCVar.html#a7e026621e99a5df32de407384d929791',1,'ncutils::NCVar::put(const double *) const'],['../structncutils_1_1NCVar.html#aa61e7a28b6bff1df2ef10b4856c34af7',1,'ncutils::NCVar::put(const float *) const'],['../structncutils_1_1NCVar.html#a16984e6a3ad571e12401321b749f44ea',1,'ncutils::NCVar::put(const int *) const'],['../structncutils_1_1NCVar.html#a2d41b9484dd6453e36be2d54fe824962',1,'ncutils::NCVar::put(const double *, const std::vector< size_t > &, const std::vector< size_t > &) const'],['../structncutils_1_1NCVar.html#a8a96107d02633e5a53aef296052716d1',1,'ncutils::NCVar::put(const double *, const std::vector< size_t > &, const std::vector< size_t > &, const std::vector< ptrdiff_t > &) const'],['../structncutils_1_1NCVar.html#a1cdbbfc072d285144de7f9b6e0fbac42',1,'ncutils::NCVar::put(const char **dptr, const std::vector< size_t > &start, const std::vector< size_t > &count, const std::vector< ptrdiff_t > &stride) const'],['../structncutils_1_1NCVar.html#a2520db8c1541561c274be5c372fa5597',1,'ncutils::NCVar::put(const float *, const std::vector< size_t > &, const std::vector< size_t > &) const'],['../structncutils_1_1NCVar.html#ad8b9aedc67e38c49522bd98459a26290',1,'ncutils::NCVar::put(const float *, const std::vector< size_t > &, const std::vector< size_t > &, const std::vector< ptrdiff_t > &) const'],['../structncutils_1_1NCVar.html#ae4d3aaba3b410438132b65bb8ab47512',1,'ncutils::NCVar::put(const int *, const std::vector< size_t > &, const std::vector< size_t > &) const'],['../structncutils_1_1NCVar.html#a7d575f25e77d2a5e2dbac86047ca318c',1,'ncutils::NCVar::put(const char **, const std::vector< size_t > &, const std::vector< size_t > &) const']]], + ['put_5fattr_1626',['put_attr',['../structncutils_1_1NCVar.html#a9f60ebf70762d1d8e0962afb01118a31',1,'ncutils::NCVar::put_attr()'],['../classncutils_1_1NCGroup.html#a39472c18d4e16cf47ba54bd1246220b6',1,'ncutils::NCGroup::put_attr()'],['../structncutils_1_1NCVar.html#ac1572a791861a2d297f8f29ba0df8d55',1,'ncutils::NCVar::put_attr(const std::string &name, const std::vector< double > &value) const'],['../structncutils_1_1NCVar.html#a69c358988ebdd589d7e465ca6a5f07e9',1,'ncutils::NCVar::put_attr(const std::string &name, const std::vector< float > &value) const'],['../structncutils_1_1NCVar.html#a72558ae45f30bed210d68c26ec57cb13',1,'ncutils::NCVar::put_attr(const std::string &name, const std::vector< int > &value) const'],['../classncutils_1_1NCGroup.html#acf73ea254afaf7d74596fa07523b322f',1,'ncutils::NCGroup::put_attr(const std::string &name, const std::string &value) const'],['../classncutils_1_1NCGroup.html#a91efbd2b8ef280b7eb3b426bbbf16cca',1,'ncutils::NCGroup::put_attr(const std::string &name, const std::vector< double > &value) const'],['../classncutils_1_1NCGroup.html#acf2801c26458fb99bd82733b1302285a',1,'ncutils::NCGroup::put_attr(const std::string &name, const std::vector< int > &value) const']]] ]; diff --git a/search/classes_0.js b/search/classes_0.js index cd919ced04..0721027b3f 100644 --- a/search/classes_0.js +++ b/search/classes_0.js @@ -1,12 +1,12 @@ var searchData= [ - ['ablmost_2326',['ABLMost',['../classABLMost.html',1,'']]], - ['adiabatic_2327',['adiabatic',['../structadiabatic.html',1,'']]], - ['adiabatic_5fcharnock_2328',['adiabatic_charnock',['../structadiabatic__charnock.html',1,'']]], - ['adiabatic_5fmod_5fcharnock_2329',['adiabatic_mod_charnock',['../structadiabatic__mod__charnock.html',1,'']]], - ['adiabatic_5fwave_5fcoupled_2330',['adiabatic_wave_coupled',['../structadiabatic__wave__coupled.html',1,'']]], - ['advchoice_2331',['AdvChoice',['../structAdvChoice.html',1,'']]], - ['aerlist_5ft_2332',['aerlist_t',['../structMamConstituents_1_1aerlist__t.html',1,'MamConstituents']]], - ['aerosol_5ft_2333',['aerosol_t',['../structMamConstituents_1_1aerosol__t.html',1,'MamConstituents']]], - ['aerradprops_2334',['AerRadProps',['../classAerRadProps.html',1,'']]] + ['ablmost_2330',['ABLMost',['../classABLMost.html',1,'']]], + ['adiabatic_2331',['adiabatic',['../structadiabatic.html',1,'']]], + ['adiabatic_5fcharnock_2332',['adiabatic_charnock',['../structadiabatic__charnock.html',1,'']]], + ['adiabatic_5fmod_5fcharnock_2333',['adiabatic_mod_charnock',['../structadiabatic__mod__charnock.html',1,'']]], + ['adiabatic_5fwave_5fcoupled_2334',['adiabatic_wave_coupled',['../structadiabatic__wave__coupled.html',1,'']]], + ['advchoice_2335',['AdvChoice',['../structAdvChoice.html',1,'']]], + ['aerlist_5ft_2336',['aerlist_t',['../structMamConstituents_1_1aerlist__t.html',1,'MamConstituents']]], + ['aerosol_5ft_2337',['aerosol_t',['../structMamConstituents_1_1aerosol__t.html',1,'MamConstituents']]], + ['aerradprops_2338',['AerRadProps',['../classAerRadProps.html',1,'']]] ]; diff --git a/search/classes_1.js b/search/classes_1.js index 1dc71a14f5..955847ea04 100644 --- a/search/classes_1.js +++ b/search/classes_1.js @@ -1,9 +1,9 @@ var searchData= [ - ['centered2_2335',['CENTERED2',['../structCENTERED2.html',1,'']]], - ['centered4_2336',['CENTERED4',['../structCENTERED4.html',1,'']]], - ['centered6_2337',['CENTERED6',['../structCENTERED6.html',1,'']]], - ['cif_2338',['CIF',['../classCIF.html',1,'']]], - ['cloudradprops_2339',['CloudRadProps',['../classCloudRadProps.html',1,'']]], - ['custom_5fflux_2340',['custom_flux',['../structcustom__flux.html',1,'']]] + ['centered2_2339',['CENTERED2',['../structCENTERED2.html',1,'']]], + ['centered4_2340',['CENTERED4',['../structCENTERED4.html',1,'']]], + ['centered6_2341',['CENTERED6',['../structCENTERED6.html',1,'']]], + ['cif_2342',['CIF',['../classCIF.html',1,'']]], + ['cloudradprops_2343',['CloudRadProps',['../classCloudRadProps.html',1,'']]], + ['custom_5fflux_2344',['custom_flux',['../structcustom__flux.html',1,'']]] ]; diff --git a/search/classes_10.js b/search/classes_10.js index a204e12052..68b9f1a51f 100644 --- a/search/classes_10.js +++ b/search/classes_10.js @@ -1,8 +1,8 @@ var searchData= [ - ['unioncif_2421',['UnionCIF',['../classUnionCIF.html',1,'']]], - ['unionlistif_2422',['UnionListIF',['../classUnionListIF.html',1,'']]], - ['upwind3_2423',['UPWIND3',['../structUPWIND3.html',1,'']]], - ['upwind5_2424',['UPWIND5',['../structUPWIND5.html',1,'']]], - ['upwindall_2425',['UPWINDALL',['../structUPWINDALL.html',1,'']]] + ['unioncif_2425',['UnionCIF',['../classUnionCIF.html',1,'']]], + ['unionlistif_2426',['UnionListIF',['../classUnionListIF.html',1,'']]], + ['upwind3_2427',['UPWIND3',['../structUPWIND3.html',1,'']]], + ['upwind5_2428',['UPWIND5',['../structUPWIND5.html',1,'']]], + ['upwindall_2429',['UPWINDALL',['../structUPWINDALL.html',1,'']]] ]; diff --git a/search/classes_11.js b/search/classes_11.js index 9c529f350e..a2cc87ad9c 100644 --- a/search/classes_11.js +++ b/search/classes_11.js @@ -1,11 +1,11 @@ var searchData= [ - ['watervaporsat_2426',['WaterVaporSat',['../classWaterVaporSat.html',1,'']]], - ['weno3_2427',['WENO3',['../structWENO3.html',1,'']]], - ['weno5_2428',['WENO5',['../structWENO5.html',1,'']]], - ['weno_5fmzq3_2429',['WENO_MZQ3',['../structWENO__MZQ3.html',1,'']]], - ['weno_5fz3_2430',['WENO_Z3',['../structWENO__Z3.html',1,'']]], - ['weno_5fz5_2431',['WENO_Z5',['../structWENO__Z5.html',1,'']]], - ['windfarm_2432',['WindFarm',['../classWindFarm.html',1,'']]], - ['writebndryplanes_2433',['WriteBndryPlanes',['../classWriteBndryPlanes.html',1,'']]] + ['watervaporsat_2430',['WaterVaporSat',['../classWaterVaporSat.html',1,'']]], + ['weno3_2431',['WENO3',['../structWENO3.html',1,'']]], + ['weno5_2432',['WENO5',['../structWENO5.html',1,'']]], + ['weno_5fmzq3_2433',['WENO_MZQ3',['../structWENO__MZQ3.html',1,'']]], + ['weno_5fz3_2434',['WENO_Z3',['../structWENO__Z3.html',1,'']]], + ['weno_5fz5_2435',['WENO_Z5',['../structWENO__Z5.html',1,'']]], + ['windfarm_2436',['WindFarm',['../classWindFarm.html',1,'']]], + ['writebndryplanes_2437',['WriteBndryPlanes',['../classWriteBndryPlanes.html',1,'']]] ]; diff --git a/search/classes_2.js b/search/classes_2.js index 1221fcdd9c..3809640735 100644 --- a/search/classes_2.js +++ b/search/classes_2.js @@ -1,9 +1,9 @@ var searchData= [ - ['diffchoice_2341',['DiffChoice',['../structDiffChoice.html',1,'']]], - ['directionselector_2342',['DirectionSelector',['../structDirectionSelector.html',1,'']]], - ['directionselector_3c_200_20_3e_2343',['DirectionSelector< 0 >',['../structDirectionSelector_3_010_01_4.html',1,'']]], - ['directionselector_3c_201_20_3e_2344',['DirectionSelector< 1 >',['../structDirectionSelector_3_011_01_4.html',1,'']]], - ['directionselector_3c_202_20_3e_2345',['DirectionSelector< 2 >',['../structDirectionSelector_3_012_01_4.html',1,'']]], - ['donelan_5fflux_2346',['donelan_flux',['../structdonelan__flux.html',1,'']]] + ['diffchoice_2345',['DiffChoice',['../structDiffChoice.html',1,'']]], + ['directionselector_2346',['DirectionSelector',['../structDirectionSelector.html',1,'']]], + ['directionselector_3c_200_20_3e_2347',['DirectionSelector< 0 >',['../structDirectionSelector_3_010_01_4.html',1,'']]], + ['directionselector_3c_201_20_3e_2348',['DirectionSelector< 1 >',['../structDirectionSelector_3_011_01_4.html',1,'']]], + ['directionselector_3c_202_20_3e_2349',['DirectionSelector< 2 >',['../structDirectionSelector_3_012_01_4.html',1,'']]], + ['donelan_5fflux_2350',['donelan_flux',['../structdonelan__flux.html',1,'']]] ]; diff --git a/search/classes_3.js b/search/classes_3.js index 4acac8b668..40c5980f5e 100644 --- a/search/classes_3.js +++ b/search/classes_3.js @@ -1,13 +1,13 @@ var searchData= [ - ['ebertcurry_2347',['EbertCurry',['../classEbertCurry.html',1,'']]], - ['erf_2348',['ERF',['../classERF.html',1,'']]], - ['erffillpatcher_2349',['ERFFillPatcher',['../classERFFillPatcher.html',1,'']]], - ['erfphysbcfunct_5fcons_2350',['ERFPhysBCFunct_cons',['../classERFPhysBCFunct__cons.html',1,'']]], - ['erfphysbcfunct_5fu_2351',['ERFPhysBCFunct_u',['../classERFPhysBCFunct__u.html',1,'']]], - ['erfphysbcfunct_5fv_2352',['ERFPhysBCFunct_v',['../classERFPhysBCFunct__v.html',1,'']]], - ['erfphysbcfunct_5fw_2353',['ERFPhysBCFunct_w',['../classERFPhysBCFunct__w.html',1,'']]], - ['erfphysbcfunct_5fw_5fno_5fterrain_2354',['ERFPhysBCFunct_w_no_terrain',['../classERFPhysBCFunct__w__no__terrain.html',1,'']]], - ['eulerianmicrophysics_2355',['EulerianMicrophysics',['../classEulerianMicrophysics.html',1,'']]], - ['ewp_2356',['EWP',['../classEWP.html',1,'']]] + ['ebertcurry_2351',['EbertCurry',['../classEbertCurry.html',1,'']]], + ['erf_2352',['ERF',['../classERF.html',1,'']]], + ['erffillpatcher_2353',['ERFFillPatcher',['../classERFFillPatcher.html',1,'']]], + ['erfphysbcfunct_5fcons_2354',['ERFPhysBCFunct_cons',['../classERFPhysBCFunct__cons.html',1,'']]], + ['erfphysbcfunct_5fu_2355',['ERFPhysBCFunct_u',['../classERFPhysBCFunct__u.html',1,'']]], + ['erfphysbcfunct_5fv_2356',['ERFPhysBCFunct_v',['../classERFPhysBCFunct__v.html',1,'']]], + ['erfphysbcfunct_5fw_2357',['ERFPhysBCFunct_w',['../classERFPhysBCFunct__w.html',1,'']]], + ['erfphysbcfunct_5fw_5fno_5fterrain_2358',['ERFPhysBCFunct_w_no_terrain',['../classERFPhysBCFunct__w__no__terrain.html',1,'']]], + ['eulerianmicrophysics_2359',['EulerianMicrophysics',['../classEulerianMicrophysics.html',1,'']]], + ['ewp_2360',['EWP',['../classEWP.html',1,'']]] ]; diff --git a/search/classes_4.js b/search/classes_4.js index 32e0322e32..d302462c24 100644 --- a/search/classes_4.js +++ b/search/classes_4.js @@ -1,6 +1,6 @@ var searchData= [ - ['f_2357',['F',['../classF.html',1,'']]], - ['fitch_2358',['Fitch',['../classFitch.html',1,'']]], - ['flowerif_2359',['FlowerIF',['../classFlowerIF.html',1,'']]] + ['f_2361',['F',['../classF.html',1,'']]], + ['fitch_2362',['Fitch',['../classFitch.html',1,'']]], + ['flowerif_2363',['FlowerIF',['../classFlowerIF.html',1,'']]] ]; diff --git a/search/classes_5.js b/search/classes_5.js index 73b1a0352a..23ac57868c 100644 --- a/search/classes_5.js +++ b/search/classes_5.js @@ -1,5 +1,5 @@ var searchData= [ - ['gas_5ft_2360',['gas_t',['../structMamConstituents_1_1gas__t.html',1,'MamConstituents']]], - ['gaslist_5ft_2361',['gaslist_t',['../structMamConstituents_1_1gaslist__t.html',1,'MamConstituents']]] + ['gas_5ft_2364',['gas_t',['../structMamConstituents_1_1gas__t.html',1,'MamConstituents']]], + ['gaslist_5ft_2365',['gaslist_t',['../structMamConstituents_1_1gaslist__t.html',1,'MamConstituents']]] ]; diff --git a/search/classes_6.js b/search/classes_6.js index 6dabf3a3ea..1461ecb64a 100644 --- a/search/classes_6.js +++ b/search/classes_6.js @@ -1,7 +1,7 @@ var searchData= [ - ['inputsoundingdata_2362',['InputSoundingData',['../structInputSoundingData.html',1,'']]], - ['inputspongedata_2363',['InputSpongeData',['../structInputSpongeData.html',1,'']]], - ['interptype_2364',['InterpType',['../structLinInterp_1_1InterpType.html',1,'LinInterp']]], - ['intersectioncif_2365',['IntersectionCIF',['../classIntersectionCIF.html',1,'']]] + ['inputsoundingdata_2366',['InputSoundingData',['../structInputSoundingData.html',1,'']]], + ['inputspongedata_2367',['InputSpongeData',['../structInputSpongeData.html',1,'']]], + ['interptype_2368',['InterpType',['../structLinInterp_1_1InterpType.html',1,'LinInterp']]], + ['intersectioncif_2369',['IntersectionCIF',['../classIntersectionCIF.html',1,'']]] ]; diff --git a/search/classes_7.js b/search/classes_7.js index 9201e56a0a..a4e3297d42 100644 --- a/search/classes_7.js +++ b/search/classes_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['kessler_2366',['Kessler',['../classKessler.html',1,'']]] + ['kessler_2370',['Kessler',['../classKessler.html',1,'']]] ]; diff --git a/search/classes_8.js b/search/classes_8.js index 6d13753e0a..48d45862da 100644 --- a/search/classes_8.js +++ b/search/classes_8.js @@ -1,5 +1,5 @@ var searchData= [ - ['landsurface_2367',['LandSurface',['../classLandSurface.html',1,'']]], - ['lininterp_2368',['LinInterp',['../classLinInterp.html',1,'']]] + ['landsurface_2371',['LandSurface',['../classLandSurface.html',1,'']]], + ['lininterp_2372',['LinInterp',['../classLinInterp.html',1,'']]] ]; diff --git a/search/classes_9.js b/search/classes_9.js index e3e8dbc8f9..2714205fa4 100644 --- a/search/classes_9.js +++ b/search/classes_9.js @@ -1,16 +1,16 @@ var searchData= [ - ['mam4_5faer_2369',['Mam4_aer',['../classMam4__aer.html',1,'']]], - ['mamconstituents_2370',['MamConstituents',['../classMamConstituents.html',1,'']]], - ['microphysics_2371',['Microphysics',['../classMicrophysics.html',1,'']]], - ['mm5_2372',['MM5',['../classMM5.html',1,'']]], - ['modalaerowateruptake_2373',['ModalAeroWateruptake',['../classModalAeroWateruptake.html',1,'']]], - ['mode_5fcomponent_5ft_2374',['mode_component_t',['../structMamConstituents_1_1mode__component__t.html',1,'MamConstituents']]], - ['modelist_5ft_2375',['modelist_t',['../structMamConstituents_1_1modelist__t.html',1,'MamConstituents']]], - ['modes_5ft_2376',['modes_t',['../structMamConstituents_1_1modes__t.html',1,'MamConstituents']]], - ['moeng_5fflux_2377',['moeng_flux',['../structmoeng__flux.html',1,'']]], - ['most_5fdata_2378',['most_data',['../structmost__data.html',1,'']]], - ['mostaverage_2379',['MOSTAverage',['../classMOSTAverage.html',1,'']]], - ['mrisplitintegrator_2380',['MRISplitIntegrator',['../classMRISplitIntegrator.html',1,'']]], - ['multiblockcontainer_2381',['MultiBlockContainer',['../classMultiBlockContainer.html',1,'']]] + ['mam4_5faer_2373',['Mam4_aer',['../classMam4__aer.html',1,'']]], + ['mamconstituents_2374',['MamConstituents',['../classMamConstituents.html',1,'']]], + ['microphysics_2375',['Microphysics',['../classMicrophysics.html',1,'']]], + ['mm5_2376',['MM5',['../classMM5.html',1,'']]], + ['modalaerowateruptake_2377',['ModalAeroWateruptake',['../classModalAeroWateruptake.html',1,'']]], + ['mode_5fcomponent_5ft_2378',['mode_component_t',['../structMamConstituents_1_1mode__component__t.html',1,'MamConstituents']]], + ['modelist_5ft_2379',['modelist_t',['../structMamConstituents_1_1modelist__t.html',1,'MamConstituents']]], + ['modes_5ft_2380',['modes_t',['../structMamConstituents_1_1modes__t.html',1,'MamConstituents']]], + ['moeng_5fflux_2381',['moeng_flux',['../structmoeng__flux.html',1,'']]], + ['most_5fdata_2382',['most_data',['../structmost__data.html',1,'']]], + ['mostaverage_2383',['MOSTAverage',['../classMOSTAverage.html',1,'']]], + ['mrisplitintegrator_2384',['MRISplitIntegrator',['../classMRISplitIntegrator.html',1,'']]], + ['multiblockcontainer_2385',['MultiBlockContainer',['../classMultiBlockContainer.html',1,'']]] ]; diff --git a/search/classes_a.js b/search/classes_a.js index a95f333af6..2bfc019073 100644 --- a/search/classes_a.js +++ b/search/classes_a.js @@ -1,12 +1,12 @@ var searchData= [ - ['ncdim_2382',['NCDim',['../structncutils_1_1NCDim.html',1,'ncutils']]], - ['ncdtype_2383',['NCDType',['../structncutils_1_1NCDType.html',1,'ncutils']]], - ['ncfile_2384',['NCFile',['../classncutils_1_1NCFile.html',1,'ncutils']]], - ['ncgroup_2385',['NCGroup',['../classncutils_1_1NCGroup.html',1,'ncutils']]], - ['ncvar_2386',['NCVar',['../structncutils_1_1NCVar.html',1,'ncutils']]], - ['ndarray_2387',['NDArray',['../structNDArray.html',1,'']]], - ['nullmoist_2388',['NullMoist',['../classNullMoist.html',1,'']]], - ['nullsurf_2389',['NullSurf',['../classNullSurf.html',1,'']]], - ['nullwindfarm_2390',['NullWindFarm',['../classNullWindFarm.html',1,'']]] + ['ncdim_2386',['NCDim',['../structncutils_1_1NCDim.html',1,'ncutils']]], + ['ncdtype_2387',['NCDType',['../structncutils_1_1NCDType.html',1,'ncutils']]], + ['ncfile_2388',['NCFile',['../classncutils_1_1NCFile.html',1,'ncutils']]], + ['ncgroup_2389',['NCGroup',['../classncutils_1_1NCGroup.html',1,'ncutils']]], + ['ncvar_2390',['NCVar',['../structncutils_1_1NCVar.html',1,'ncutils']]], + ['ndarray_2391',['NDArray',['../structNDArray.html',1,'']]], + ['nullmoist_2392',['NullMoist',['../classNullMoist.html',1,'']]], + ['nullsurf_2393',['NullSurf',['../classNullSurf.html',1,'']]], + ['nullwindfarm_2394',['NullWindFarm',['../classNullWindFarm.html',1,'']]] ]; diff --git a/search/classes_b.js b/search/classes_b.js index d02858aa05..f0fb3267e2 100644 --- a/search/classes_b.js +++ b/search/classes_b.js @@ -1,4 +1,4 @@ var searchData= [ - ['optics_2391',['Optics',['../classOptics.html',1,'']]] + ['optics_2395',['Optics',['../classOptics.html',1,'']]] ]; diff --git a/search/classes_c.js b/search/classes_c.js index ab11ae1c61..f0e370193c 100644 --- a/search/classes_c.js +++ b/search/classes_c.js @@ -1,8 +1,8 @@ var searchData= [ - ['physprop_2392',['PhysProp',['../classPhysProp.html',1,'']]], - ['physprop_5ft_2393',['physprop_t',['../structPhysProp_1_1physprop__t.html',1,'PhysProp']]], - ['planeaverage_2394',['PlaneAverage',['../classPlaneAverage.html',1,'']]], - ['problembase_2395',['ProblemBase',['../classProblemBase.html',1,'']]], - ['probparmdefaults_2396',['ProbParmDefaults',['../structProbParmDefaults.html',1,'']]] + ['physprop_2396',['PhysProp',['../classPhysProp.html',1,'']]], + ['physprop_5ft_2397',['physprop_t',['../structPhysProp_1_1physprop__t.html',1,'PhysProp']]], + ['planeaverage_2398',['PlaneAverage',['../classPlaneAverage.html',1,'']]], + ['problembase_2399',['ProblemBase',['../classProblemBase.html',1,'']]], + ['probparmdefaults_2400',['ProbParmDefaults',['../structProbParmDefaults.html',1,'']]] ]; diff --git a/search/classes_d.js b/search/classes_d.js index cfcda98e00..150ea6d180 100644 --- a/search/classes_d.js +++ b/search/classes_d.js @@ -1,7 +1,7 @@ var searchData= [ - ['radconstants_2397',['RadConstants',['../classRadConstants.html',1,'']]], - ['radiation_2398',['Radiation',['../classRadiation.html',1,'']]], - ['readbndryplanes_2399',['ReadBndryPlanes',['../classReadBndryPlanes.html',1,'']]], - ['rrtmgp_2400',['Rrtmgp',['../classRrtmgp.html',1,'']]] + ['radconstants_2401',['RadConstants',['../classRadConstants.html',1,'']]], + ['radiation_2402',['Radiation',['../classRadiation.html',1,'']]], + ['readbndryplanes_2403',['ReadBndryPlanes',['../classReadBndryPlanes.html',1,'']]], + ['rrtmgp_2404',['Rrtmgp',['../classRrtmgp.html',1,'']]] ]; diff --git a/search/classes_e.js b/search/classes_e.js index 27797bfd6c..c669864ba3 100644 --- a/search/classes_e.js +++ b/search/classes_e.js @@ -1,19 +1,19 @@ var searchData= [ - ['sam_2401',['SAM',['../classSAM.html',1,'']]], - ['satmethods_2402',['SatMethods',['../classSatMethods.html',1,'']]], - ['similarity_5ffuns_2403',['similarity_funs',['../structsimilarity__funs.html',1,'']]], - ['simplead_2404',['SimpleAD',['../classSimpleAD.html',1,'']]], - ['slingo_2405',['Slingo',['../classSlingo.html',1,'']]], - ['slm_2406',['SLM',['../classSLM.html',1,'']]], - ['solverchoice_2407',['SolverChoice',['../structSolverChoice.html',1,'']]], - ['spongechoice_2408',['SpongeChoice',['../structSpongeChoice.html',1,'']]], - ['surface_5fflux_2409',['surface_flux',['../structsurface__flux.html',1,'']]], - ['surface_5fflux_5fcharnock_2410',['surface_flux_charnock',['../structsurface__flux__charnock.html',1,'']]], - ['surface_5fflux_5fmod_5fcharnock_2411',['surface_flux_mod_charnock',['../structsurface__flux__mod__charnock.html',1,'']]], - ['surface_5fflux_5fwave_5fcoupled_2412',['surface_flux_wave_coupled',['../structsurface__flux__wave__coupled.html',1,'']]], - ['surface_5ftemp_2413',['surface_temp',['../structsurface__temp.html',1,'']]], - ['surface_5ftemp_5fcharnock_2414',['surface_temp_charnock',['../structsurface__temp__charnock.html',1,'']]], - ['surface_5ftemp_5fmod_5fcharnock_2415',['surface_temp_mod_charnock',['../structsurface__temp__mod__charnock.html',1,'']]], - ['surface_5ftemp_5fwave_5fcoupled_2416',['surface_temp_wave_coupled',['../structsurface__temp__wave__coupled.html',1,'']]] + ['sam_2405',['SAM',['../classSAM.html',1,'']]], + ['satmethods_2406',['SatMethods',['../classSatMethods.html',1,'']]], + ['similarity_5ffuns_2407',['similarity_funs',['../structsimilarity__funs.html',1,'']]], + ['simplead_2408',['SimpleAD',['../classSimpleAD.html',1,'']]], + ['slingo_2409',['Slingo',['../classSlingo.html',1,'']]], + ['slm_2410',['SLM',['../classSLM.html',1,'']]], + ['solverchoice_2411',['SolverChoice',['../structSolverChoice.html',1,'']]], + ['spongechoice_2412',['SpongeChoice',['../structSpongeChoice.html',1,'']]], + ['surface_5fflux_2413',['surface_flux',['../structsurface__flux.html',1,'']]], + ['surface_5fflux_5fcharnock_2414',['surface_flux_charnock',['../structsurface__flux__charnock.html',1,'']]], + ['surface_5fflux_5fmod_5fcharnock_2415',['surface_flux_mod_charnock',['../structsurface__flux__mod__charnock.html',1,'']]], + ['surface_5fflux_5fwave_5fcoupled_2416',['surface_flux_wave_coupled',['../structsurface__flux__wave__coupled.html',1,'']]], + ['surface_5ftemp_2417',['surface_temp',['../structsurface__temp.html',1,'']]], + ['surface_5ftemp_5fcharnock_2418',['surface_temp_charnock',['../structsurface__temp__charnock.html',1,'']]], + ['surface_5ftemp_5fmod_5fcharnock_2419',['surface_temp_mod_charnock',['../structsurface__temp__mod__charnock.html',1,'']]], + ['surface_5ftemp_5fwave_5fcoupled_2420',['surface_temp_wave_coupled',['../structsurface__temp__wave__coupled.html',1,'']]] ]; diff --git a/search/classes_f.js b/search/classes_f.js index 9dfdfaabde..48ec1d5f94 100644 --- a/search/classes_f.js +++ b/search/classes_f.js @@ -1,7 +1,7 @@ var searchData= [ - ['terrainif_2417',['TerrainIF',['../classTerrainIF.html',1,'']]], - ['timeinterpolateddata_2418',['TimeInterpolatedData',['../structTimeInterpolatedData.html',1,'']]], - ['turbchoice_2419',['TurbChoice',['../structTurbChoice.html',1,'']]], - ['turbulentperturbation_2420',['TurbulentPerturbation',['../structTurbulentPerturbation.html',1,'']]] + ['terrainif_2421',['TerrainIF',['../classTerrainIF.html',1,'']]], + ['timeinterpolateddata_2422',['TimeInterpolatedData',['../structTimeInterpolatedData.html',1,'']]], + ['turbchoice_2423',['TurbChoice',['../structTurbChoice.html',1,'']]], + ['turbulentperturbation_2424',['TurbulentPerturbation',['../structTurbulentPerturbation.html',1,'']]] ]; diff --git a/search/defines_0.js b/search/defines_0.js index d0c6f7b78c..dd2e390419 100644 --- a/search/defines_0.js +++ b/search/defines_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['abort_5ffunc_4711',['abort_func',['../NCInterface_8cpp.html#aa67f9bcab4a9da3e92f2e2f3b4ec5979',1,'NCInterface.cpp']]] + ['abort_5ffunc_4719',['abort_func',['../NCInterface_8cpp.html#aa67f9bcab4a9da3e92f2e2f3b4ec5979',1,'NCInterface.cpp']]] ]; diff --git a/search/defines_1.js b/search/defines_1.js index 628ad553a5..9ef7bd2bda 100644 --- a/search/defines_1.js +++ b/search/defines_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['erf_5fparameterizations_5fh_5f_4712',['ERF_PARAMETERIZATIONS_H_',['../Parameterizations_8H.html#aaaed1350d0f8e31d22b4a25c8c99245a',1,'Parameterizations.H']]] + ['erf_5fparameterizations_5fh_5f_4720',['ERF_PARAMETERIZATIONS_H_',['../Parameterizations_8H.html#aaaed1350d0f8e31d22b4a25c8c99245a',1,'Parameterizations.H']]] ]; diff --git a/search/defines_2.js b/search/defines_2.js index 5fc57d1e81..6eda747d4f 100644 --- a/search/defines_2.js +++ b/search/defines_2.js @@ -1,5 +1,5 @@ var searchData= [ - ['nmoist_5fmax_4713',['NMOIST_max',['../IndexDefines_8H.html#abe87e298e9d558e0659a67ad3b9be71f',1,'IndexDefines.H']]], - ['nvar_5fmax_4714',['NVAR_max',['../IndexDefines_8H.html#a46e292b965f80d15acfbdc11ffe1e0f0',1,'IndexDefines.H']]] + ['nmoist_5fmax_4721',['NMOIST_max',['../IndexDefines_8H.html#abe87e298e9d558e0659a67ad3b9be71f',1,'IndexDefines.H']]], + ['nvar_5fmax_4722',['NVAR_max',['../IndexDefines_8H.html#a46e292b965f80d15acfbdc11ffe1e0f0',1,'IndexDefines.H']]] ]; diff --git a/search/defines_3.js b/search/defines_3.js index 69e91228d9..02c0b68bc7 100644 --- a/search/defines_3.js +++ b/search/defines_3.js @@ -1,13 +1,13 @@ var searchData= [ - ['primke_5fcomp_4715',['PrimKE_comp',['../IndexDefines_8H.html#a9ab6bf01b348d4b7cef99f3655c9dbb2',1,'IndexDefines.H']]], - ['primq1_5fcomp_4716',['PrimQ1_comp',['../IndexDefines_8H.html#a046484d86c968f85c3b8e574c1fe3e29',1,'IndexDefines.H']]], - ['primq2_5fcomp_4717',['PrimQ2_comp',['../IndexDefines_8H.html#a2564ef35937a97a2a6c90ca51ae7cdf3',1,'IndexDefines.H']]], - ['primq3_5fcomp_4718',['PrimQ3_comp',['../IndexDefines_8H.html#ac6f3d51b14f04acc045d644f32375c6d',1,'IndexDefines.H']]], - ['primq4_5fcomp_4719',['PrimQ4_comp',['../IndexDefines_8H.html#a2e038955a3c380beab1941e422ef83ea',1,'IndexDefines.H']]], - ['primq5_5fcomp_4720',['PrimQ5_comp',['../IndexDefines_8H.html#a7f9c844ee8a2e1930ade0911e8692667',1,'IndexDefines.H']]], - ['primq6_5fcomp_4721',['PrimQ6_comp',['../IndexDefines_8H.html#a4d0a4735b7019c88a28b42c3d4787154',1,'IndexDefines.H']]], - ['primqke_5fcomp_4722',['PrimQKE_comp',['../IndexDefines_8H.html#ad6174e899597e766afde82f9c11def75',1,'IndexDefines.H']]], - ['primscalar_5fcomp_4723',['PrimScalar_comp',['../IndexDefines_8H.html#aa9d1308b0d214f7bfbe9b8c11c4176b7',1,'IndexDefines.H']]], - ['primtheta_5fcomp_4724',['PrimTheta_comp',['../IndexDefines_8H.html#a8b9c5b827b61f426a3879bc5d2883040',1,'IndexDefines.H']]] + ['primke_5fcomp_4723',['PrimKE_comp',['../IndexDefines_8H.html#a9ab6bf01b348d4b7cef99f3655c9dbb2',1,'IndexDefines.H']]], + ['primq1_5fcomp_4724',['PrimQ1_comp',['../IndexDefines_8H.html#a046484d86c968f85c3b8e574c1fe3e29',1,'IndexDefines.H']]], + ['primq2_5fcomp_4725',['PrimQ2_comp',['../IndexDefines_8H.html#a2564ef35937a97a2a6c90ca51ae7cdf3',1,'IndexDefines.H']]], + ['primq3_5fcomp_4726',['PrimQ3_comp',['../IndexDefines_8H.html#ac6f3d51b14f04acc045d644f32375c6d',1,'IndexDefines.H']]], + ['primq4_5fcomp_4727',['PrimQ4_comp',['../IndexDefines_8H.html#a2e038955a3c380beab1941e422ef83ea',1,'IndexDefines.H']]], + ['primq5_5fcomp_4728',['PrimQ5_comp',['../IndexDefines_8H.html#a7f9c844ee8a2e1930ade0911e8692667',1,'IndexDefines.H']]], + ['primq6_5fcomp_4729',['PrimQ6_comp',['../IndexDefines_8H.html#a4d0a4735b7019c88a28b42c3d4787154',1,'IndexDefines.H']]], + ['primqke_5fcomp_4730',['PrimQKE_comp',['../IndexDefines_8H.html#ad6174e899597e766afde82f9c11def75',1,'IndexDefines.H']]], + ['primscalar_5fcomp_4731',['PrimScalar_comp',['../IndexDefines_8H.html#aa9d1308b0d214f7bfbe9b8c11c4176b7',1,'IndexDefines.H']]], + ['primtheta_5fcomp_4732',['PrimTheta_comp',['../IndexDefines_8H.html#a8b9c5b827b61f426a3879bc5d2883040',1,'IndexDefines.H']]] ]; diff --git a/search/defines_4.js b/search/defines_4.js index 89a9693c91..218dab9e02 100644 --- a/search/defines_4.js +++ b/search/defines_4.js @@ -1,14 +1,14 @@ var searchData= [ - ['rho_5fcomp_4725',['Rho_comp',['../IndexDefines_8H.html#a27dcc910aeb002a0fd44727954dc0e49',1,'IndexDefines.H']]], - ['rhoke_5fcomp_4726',['RhoKE_comp',['../IndexDefines_8H.html#ae15721db2cb4c2ab4732afe226bbba64',1,'IndexDefines.H']]], - ['rhoq1_5fcomp_4727',['RhoQ1_comp',['../IndexDefines_8H.html#aa965e9988f14d5d2a5aef4a942168a15',1,'IndexDefines.H']]], - ['rhoq2_5fcomp_4728',['RhoQ2_comp',['../IndexDefines_8H.html#a3bf0a4783e82ba30db2b7c0a332c2f16',1,'IndexDefines.H']]], - ['rhoq3_5fcomp_4729',['RhoQ3_comp',['../IndexDefines_8H.html#a49fe20d81f4d923a4a6ec4eb1652072b',1,'IndexDefines.H']]], - ['rhoq4_5fcomp_4730',['RhoQ4_comp',['../IndexDefines_8H.html#a28c5deab9008c0999c26affeff2fa6da',1,'IndexDefines.H']]], - ['rhoq5_5fcomp_4731',['RhoQ5_comp',['../IndexDefines_8H.html#ac46d015fd5b1ee0060bbaf22e79113e7',1,'IndexDefines.H']]], - ['rhoq6_5fcomp_4732',['RhoQ6_comp',['../IndexDefines_8H.html#aae057dae5f599b944184a0ecf7801064',1,'IndexDefines.H']]], - ['rhoqke_5fcomp_4733',['RhoQKE_comp',['../IndexDefines_8H.html#ac190f1f4846f6e6e31628041150f3d93',1,'IndexDefines.H']]], - ['rhoscalar_5fcomp_4734',['RhoScalar_comp',['../IndexDefines_8H.html#a0296f21cd48e5d8236c62ae4ce319b2f',1,'IndexDefines.H']]], - ['rhotheta_5fcomp_4735',['RhoTheta_comp',['../IndexDefines_8H.html#a28f96fd04e1ff08fa7a8f53ccde0f877',1,'IndexDefines.H']]] + ['rho_5fcomp_4733',['Rho_comp',['../IndexDefines_8H.html#a27dcc910aeb002a0fd44727954dc0e49',1,'IndexDefines.H']]], + ['rhoke_5fcomp_4734',['RhoKE_comp',['../IndexDefines_8H.html#ae15721db2cb4c2ab4732afe226bbba64',1,'IndexDefines.H']]], + ['rhoq1_5fcomp_4735',['RhoQ1_comp',['../IndexDefines_8H.html#aa965e9988f14d5d2a5aef4a942168a15',1,'IndexDefines.H']]], + ['rhoq2_5fcomp_4736',['RhoQ2_comp',['../IndexDefines_8H.html#a3bf0a4783e82ba30db2b7c0a332c2f16',1,'IndexDefines.H']]], + ['rhoq3_5fcomp_4737',['RhoQ3_comp',['../IndexDefines_8H.html#a49fe20d81f4d923a4a6ec4eb1652072b',1,'IndexDefines.H']]], + ['rhoq4_5fcomp_4738',['RhoQ4_comp',['../IndexDefines_8H.html#a28c5deab9008c0999c26affeff2fa6da',1,'IndexDefines.H']]], + ['rhoq5_5fcomp_4739',['RhoQ5_comp',['../IndexDefines_8H.html#ac46d015fd5b1ee0060bbaf22e79113e7',1,'IndexDefines.H']]], + ['rhoq6_5fcomp_4740',['RhoQ6_comp',['../IndexDefines_8H.html#aae057dae5f599b944184a0ecf7801064',1,'IndexDefines.H']]], + ['rhoqke_5fcomp_4741',['RhoQKE_comp',['../IndexDefines_8H.html#ac190f1f4846f6e6e31628041150f3d93',1,'IndexDefines.H']]], + ['rhoscalar_5fcomp_4742',['RhoScalar_comp',['../IndexDefines_8H.html#a0296f21cd48e5d8236c62ae4ce319b2f',1,'IndexDefines.H']]], + ['rhotheta_5fcomp_4743',['RhoTheta_comp',['../IndexDefines_8H.html#a28f96fd04e1ff08fa7a8f53ccde0f877',1,'IndexDefines.H']]] ]; diff --git a/search/defines_5.js b/search/defines_5.js index 65a5ffad20..46317d3e13 100644 --- a/search/defines_5.js +++ b/search/defines_5.js @@ -1,4 +1,4 @@ var searchData= [ - ['use_5fvolume_5faverage_4736',['USE_VOLUME_AVERAGE',['../TurbPertStruct_8H.html#a1cd6e2210df20afb1fdec3183cbef7ba',1,'TurbPertStruct.H']]] + ['use_5fvolume_5faverage_4744',['USE_VOLUME_AVERAGE',['../TurbPertStruct_8H.html#a1cd6e2210df20afb1fdec3183cbef7ba',1,'TurbPertStruct.H']]] ]; diff --git a/search/enums_0.js b/search/enums_0.js index e64bd4b1ab..9b46648b14 100644 --- a/search/enums_0.js +++ b/search/enums_0.js @@ -1,5 +1,5 @@ var searchData= [ - ['abldrivertype_4514',['ABLDriverType',['../DataStruct_8H.html#a90da675b718151491fd0c934a0ad3ceb',1,'DataStruct.H']]], - ['advtype_4515',['AdvType',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70',1,'IndexDefines.H']]] + ['abldrivertype_4522',['ABLDriverType',['../DataStruct_8H.html#a90da675b718151491fd0c934a0ad3ceb',1,'DataStruct.H']]], + ['advtype_4523',['AdvType',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70',1,'IndexDefines.H']]] ]; diff --git a/search/enums_1.js b/search/enums_1.js index f4190ebeae..2245ad56ed 100644 --- a/search/enums_1.js +++ b/search/enums_1.js @@ -1,5 +1,5 @@ var searchData= [ - ['coord_4516',['Coord',['../DataStruct_8H.html#a627f1f843904477f763577ad1460de01',1,'DataStruct.H']]], - ['couplingtype_4517',['CouplingType',['../DataStruct_8H.html#ad285be248c0803917aaf5cf8ce62139b',1,'DataStruct.H']]] + ['coord_4524',['Coord',['../DataStruct_8H.html#a627f1f843904477f763577ad1460de01',1,'DataStruct.H']]], + ['couplingtype_4525',['CouplingType',['../DataStruct_8H.html#ad285be248c0803917aaf5cf8ce62139b',1,'DataStruct.H']]] ]; diff --git a/search/enums_2.js b/search/enums_2.js index b358be197a..aec8879c59 100644 --- a/search/enums_2.js +++ b/search/enums_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['erf_5fbc_4518',['ERF_BC',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9',1,'IndexDefines.H']]] + ['erf_5fbc_4526',['ERF_BC',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9',1,'IndexDefines.H']]] ]; diff --git a/search/enums_3.js b/search/enums_3.js index 7179aae429..fc3c91d0dd 100644 --- a/search/enums_3.js +++ b/search/enums_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['fluxcalctype_4519',['FluxCalcType',['../classABLMost.html#a92e41ba7a650b4768aa6bc006b2241e0',1,'ABLMost']]] + ['fluxcalctype_4527',['FluxCalcType',['../classABLMost.html#a92e41ba7a650b4768aa6bc006b2241e0',1,'ABLMost']]] ]; diff --git a/search/enums_4.js b/search/enums_4.js index 2c1e9ae787..51932c9cd1 100644 --- a/search/enums_4.js +++ b/search/enums_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['interpmethod_4520',['InterpMethod',['../classLinInterp.html#a1f3e9aabd558af36cbc7accfc6e523a2',1,'LinInterp']]] + ['interpmethod_4528',['InterpMethod',['../classLinInterp.html#a1f3e9aabd558af36cbc7accfc6e523a2',1,'LinInterp']]] ]; diff --git a/search/enums_5.js b/search/enums_5.js index e088995736..b0f35e4f47 100644 --- a/search/enums_5.js +++ b/search/enums_5.js @@ -1,5 +1,5 @@ var searchData= [ - ['landsurfacetype_4521',['LandSurfaceType',['../DataStruct_8H.html#abeec366fd5381f3bb7ba39f6e5c1e7e4',1,'DataStruct.H']]], - ['lestype_4522',['LESType',['../TurbStruct_8H.html#aa346fa9f5c0cb101a7766563fb76c500',1,'TurbStruct.H']]] + ['landsurfacetype_4529',['LandSurfaceType',['../DataStruct_8H.html#abeec366fd5381f3bb7ba39f6e5c1e7e4',1,'DataStruct.H']]], + ['lestype_4530',['LESType',['../TurbStruct_8H.html#aa346fa9f5c0cb101a7766563fb76c500',1,'TurbStruct.H']]] ]; diff --git a/search/enums_6.js b/search/enums_6.js index 8b0caa0e64..6e2aa3eae1 100644 --- a/search/enums_6.js +++ b/search/enums_6.js @@ -1,7 +1,7 @@ var searchData= [ - ['mathematicalbndrytypes_4523',['mathematicalBndryTypes',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01c',1,'ERFBCType']]], - ['moisturemodeltype_4524',['MoistureModelType',['../DataStruct_8H.html#a62a5a9bde82457a1611cde231a43bfe5',1,'DataStruct.H']]], - ['moisturetype_4525',['MoistureType',['../DataStruct_8H.html#ab34704153a585940411c26587cb82ad0',1,'DataStruct.H']]], - ['molecdifftype_4526',['MolecDiffType',['../DiffStruct_8H.html#a84e6bfbbb8e490790c506939b364f735',1,'DiffStruct.H']]] + ['mathematicalbndrytypes_4531',['mathematicalBndryTypes',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01c',1,'ERFBCType']]], + ['moisturemodeltype_4532',['MoistureModelType',['../DataStruct_8H.html#a62a5a9bde82457a1611cde231a43bfe5',1,'DataStruct.H']]], + ['moisturetype_4533',['MoistureType',['../DataStruct_8H.html#ab34704153a585940411c26587cb82ad0',1,'DataStruct.H']]], + ['molecdifftype_4534',['MolecDiffType',['../DiffStruct_8H.html#a84e6bfbbb8e490790c506939b364f735',1,'DiffStruct.H']]] ]; diff --git a/search/enums_7.js b/search/enums_7.js index e1d0c02393..02e58aafcf 100644 --- a/search/enums_7.js +++ b/search/enums_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['nc_5fdata_5fdims_5ftype_4527',['NC_Data_Dims_Type',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06',1,'NCWpsFile.H']]] + ['nc_5fdata_5fdims_5ftype_4535',['NC_Data_Dims_Type',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06',1,'NCWpsFile.H']]] ]; diff --git a/search/enums_8.js b/search/enums_8.js index dce54cba91..94e1cb8589 100644 --- a/search/enums_8.js +++ b/search/enums_8.js @@ -1,5 +1,5 @@ var searchData= [ - ['pbltype_4528',['PBLType',['../TurbStruct_8H.html#a4a079f2650ca30c787a8375ec5f17ca5',1,'TurbStruct.H']]], - ['perturbationtype_4529',['PerturbationType',['../DataStruct_8H.html#a335364b39450e23bfefded6b7af8908c',1,'DataStruct.H']]] + ['pbltype_4536',['PBLType',['../TurbStruct_8H.html#a4a079f2650ca30c787a8375ec5f17ca5',1,'TurbStruct.H']]], + ['perturbationtype_4537',['PerturbationType',['../DataStruct_8H.html#a335364b39450e23bfefded6b7af8908c',1,'DataStruct.H']]] ]; diff --git a/search/enums_9.js b/search/enums_9.js index 096d7b9bcc..206d26fed5 100644 --- a/search/enums_9.js +++ b/search/enums_9.js @@ -1,5 +1,5 @@ var searchData= [ - ['rayleigh_4530',['Rayleigh',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239',1,'DataStruct.H']]], - ['roughcalctype_4531',['RoughCalcType',['../classABLMost.html#ae825f96c2d098b3e070642a74e6a3f13',1,'ABLMost']]] + ['rayleigh_4538',['Rayleigh',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239',1,'DataStruct.H']]], + ['roughcalctype_4539',['RoughCalcType',['../classABLMost.html#ae825f96c2d098b3e070642a74e6a3f13',1,'ABLMost']]] ]; diff --git a/search/enums_a.js b/search/enums_a.js index 8d4e2bc3fe..faf12a9a46 100644 --- a/search/enums_a.js +++ b/search/enums_a.js @@ -1,4 +1,4 @@ var searchData= [ - ['sponge_4532',['Sponge',['../DataStruct_8H.html#a5bebd9ff4e2455172deca3b399214fcb',1,'DataStruct.H']]] + ['sponge_4540',['Sponge',['../DataStruct_8H.html#a5bebd9ff4e2455172deca3b399214fcb',1,'DataStruct.H']]] ]; diff --git a/search/enums_b.js b/search/enums_b.js index aa069a7237..8d7b18305b 100644 --- a/search/enums_b.js +++ b/search/enums_b.js @@ -1,6 +1,6 @@ var searchData= [ - ['terraintype_4533',['TerrainType',['../DataStruct_8H.html#af82ff6f1edafee12190434b73fe91127',1,'DataStruct.H']]], - ['thetacalctype_4534',['ThetaCalcType',['../classABLMost.html#a46fbd9260d2adfa7c18edad6452f9bab',1,'ABLMost']]], - ['type_4535',['Type',['../classSatMethods.html#a62096d95f324cd2a3504554437067ef7',1,'SatMethods']]] + ['terraintype_4541',['TerrainType',['../DataStruct_8H.html#af82ff6f1edafee12190434b73fe91127',1,'DataStruct.H']]], + ['thetacalctype_4542',['ThetaCalcType',['../classABLMost.html#a46fbd9260d2adfa7c18edad6452f9bab',1,'ABLMost']]], + ['type_4543',['Type',['../classSatMethods.html#a62096d95f324cd2a3504554437067ef7',1,'SatMethods']]] ]; diff --git a/search/enums_c.js b/search/enums_c.js index 01a7fe031c..58584263e8 100644 --- a/search/enums_c.js +++ b/search/enums_c.js @@ -1,4 +1,4 @@ var searchData= [ - ['units_4536',['Units',['../classRadConstants.html#a2de1ff8cbc3cafe6a42e8f884002e4f1',1,'RadConstants']]] + ['units_4544',['Units',['../classRadConstants.html#a2de1ff8cbc3cafe6a42e8f884002e4f1',1,'RadConstants']]] ]; diff --git a/search/enums_d.js b/search/enums_d.js index 20a28f6520..46867ebe46 100644 --- a/search/enums_d.js +++ b/search/enums_d.js @@ -1,5 +1,5 @@ var searchData= [ - ['windfarmloctype_4537',['WindFarmLocType',['../DataStruct_8H.html#acc2aa74379de57a98956ae09f0a11c9b',1,'DataStruct.H']]], - ['windfarmtype_4538',['WindFarmType',['../DataStruct_8H.html#a5930188cdc2dd4def9ce58fdf5f46847',1,'DataStruct.H']]] + ['windfarmloctype_4545',['WindFarmLocType',['../DataStruct_8H.html#acc2aa74379de57a98956ae09f0a11c9b',1,'DataStruct.H']]], + ['windfarmtype_4546',['WindFarmType',['../DataStruct_8H.html#a5930188cdc2dd4def9ce58fdf5f46847',1,'DataStruct.H']]] ]; diff --git a/search/enumvalues_0.js b/search/enumvalues_0.js index a973ac731b..ed5d1ffa74 100644 --- a/search/enumvalues_0.js +++ b/search/enumvalues_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['adiabatic_4539',['ADIABATIC',['../classABLMost.html#a46fbd9260d2adfa7c18edad6452f9baba10548012f42e962e7945ce998b571c5c',1,'ABLMost']]] + ['adiabatic_4547',['ADIABATIC',['../classABLMost.html#a46fbd9260d2adfa7c18edad6452f9baba10548012f42e962e7945ce998b571c5c',1,'ABLMost']]] ]; diff --git a/search/enumvalues_1.js b/search/enumvalues_1.js index 9f80e7ba94..6aeec0f23b 100644 --- a/search/enumvalues_1.js +++ b/search/enumvalues_1.js @@ -1,5 +1,5 @@ var searchData= [ - ['bogus_4540',['bogus',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca5e7251ff4badd9a198c0601a7929b1c4',1,'ERFBCType']]], - ['bolton_4541',['Bolton',['../classSatMethods.html#a62096d95f324cd2a3504554437067ef7aad1ba505f7c25afbfb5c6fe45f03789d',1,'SatMethods']]] + ['bogus_4548',['bogus',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca5e7251ff4badd9a198c0601a7929b1c4',1,'ERFBCType']]], + ['bolton_4549',['Bolton',['../classSatMethods.html#a62096d95f324cd2a3504554437067ef7aad1ba505f7c25afbfb5c6fe45f03789d',1,'SatMethods']]] ]; diff --git a/search/enumvalues_10.js b/search/enumvalues_10.js index c654221786..a1fb6547b5 100644 --- a/search/enumvalues_10.js +++ b/search/enumvalues_10.js @@ -1,15 +1,15 @@ var searchData= [ - ['r_4638',['R',['../namespaceRealBdyVars.html#aa4743649b85ade11df23692d7c3947bda00b4f21134a7ba868f49f0d2ed3f7506',1,'RealBdyVars::R()'],['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a21c496fde087064e9fa91a2349d4d2eb',1,'WRFBdyVars::R()'],['../namespaceMetGridBdyVars.html#a22bd27d0288d22c74bd7c0bb57b2b89fa890a68deeda33b83d4ac4e821f78be84',1,'MetGridBdyVars::R()']]], - ['rain_5faccum_4639',['rain_accum',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476beaa364685bc5d7f6f41ff14bbaf6ca3fc1',1,'MicVar_Kess::rain_accum()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a710fb698c72c08828c86a3efa6e28614',1,'MicVar::rain_accum()']]], - ['reflect_5feven_4640',['reflect_even',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01cabc47f82507730e1734a2f3bc58893cf9',1,'ERFBCType']]], - ['reflect_5fodd_4641',['reflect_odd',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca41cecdb4487b15207675ae9ee564e705',1,'ERFBCType']]], - ['rho_4642',['rho',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea89de8c3bfc941080efb960e5119fbd61',1,'MicVar_Kess::rho()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a2534fc55b1bd99268d18c38ddd112e53',1,'MicVar::rho()']]], - ['rho_5fbc_5fcomp_4643',['Rho_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa559799ff291d4e692283c4056bac8db1',1,'BCVars']]], - ['rhoke_5fbc_5fcomp_4644',['RhoKE_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa1556c0a3817c6fab60fbb6952cf0124f',1,'BCVars']]], - ['rhoq1_5fbc_5fcomp_4645',['RhoQ1_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa0473174d8328f2bf7f74b84e9047e684',1,'BCVars']]], - ['rhoq2_5fbc_5fcomp_4646',['RhoQ2_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa502372fe4399d381375f39c17301030c',1,'BCVars']]], - ['rhoqke_5fbc_5fcomp_4647',['RhoQKE_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa3fd5e6f8378f1e1e80146b207c062cd8',1,'BCVars']]], - ['rhoscalar_5fbc_5fcomp_4648',['RhoScalar_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa029ef491930290dea3a984ebdb6d6ae4',1,'BCVars']]], - ['rhotheta_5fbc_5fcomp_4649',['RhoTheta_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa417d2de099d125a0f6b3e32cde3733d1',1,'BCVars']]] + ['r_4646',['R',['../namespaceRealBdyVars.html#aa4743649b85ade11df23692d7c3947bda00b4f21134a7ba868f49f0d2ed3f7506',1,'RealBdyVars::R()'],['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a21c496fde087064e9fa91a2349d4d2eb',1,'WRFBdyVars::R()'],['../namespaceMetGridBdyVars.html#a22bd27d0288d22c74bd7c0bb57b2b89fa890a68deeda33b83d4ac4e821f78be84',1,'MetGridBdyVars::R()']]], + ['rain_5faccum_4647',['rain_accum',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476beaa364685bc5d7f6f41ff14bbaf6ca3fc1',1,'MicVar_Kess::rain_accum()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a710fb698c72c08828c86a3efa6e28614',1,'MicVar::rain_accum()']]], + ['reflect_5feven_4648',['reflect_even',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01cabc47f82507730e1734a2f3bc58893cf9',1,'ERFBCType']]], + ['reflect_5fodd_4649',['reflect_odd',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca41cecdb4487b15207675ae9ee564e705',1,'ERFBCType']]], + ['rho_4650',['rho',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea89de8c3bfc941080efb960e5119fbd61',1,'MicVar_Kess::rho()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a2534fc55b1bd99268d18c38ddd112e53',1,'MicVar::rho()']]], + ['rho_5fbc_5fcomp_4651',['Rho_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa559799ff291d4e692283c4056bac8db1',1,'BCVars']]], + ['rhoke_5fbc_5fcomp_4652',['RhoKE_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa1556c0a3817c6fab60fbb6952cf0124f',1,'BCVars']]], + ['rhoq1_5fbc_5fcomp_4653',['RhoQ1_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa0473174d8328f2bf7f74b84e9047e684',1,'BCVars']]], + ['rhoq2_5fbc_5fcomp_4654',['RhoQ2_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa502372fe4399d381375f39c17301030c',1,'BCVars']]], + ['rhoqke_5fbc_5fcomp_4655',['RhoQKE_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa3fd5e6f8378f1e1e80146b207c062cd8',1,'BCVars']]], + ['rhoscalar_5fbc_5fcomp_4656',['RhoScalar_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa029ef491930290dea3a984ebdb6d6ae4',1,'BCVars']]], + ['rhotheta_5fbc_5fcomp_4657',['RhoTheta_bc_comp',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa417d2de099d125a0f6b3e32cde3733d1',1,'BCVars']]] ]; diff --git a/search/enumvalues_11.js b/search/enumvalues_11.js index de28d94639..770c39b267 100644 --- a/search/enumvalues_11.js +++ b/search/enumvalues_11.js @@ -1,16 +1,16 @@ var searchData= [ - ['sam_4650',['SAM',['../DataStruct_8H.html#ab34704153a585940411c26587cb82ad0a9f1b3be4a82b11d104e4ef7f7ccb1c19',1,'DataStruct.H']]], - ['sam_5fnoice_4651',['SAM_NoIce',['../DataStruct_8H.html#ab34704153a585940411c26587cb82ad0aca8fb8e2f9829763f29ce489f9f6e535',1,'DataStruct.H']]], - ['sam_5fnoprecip_5fnoice_4652',['SAM_NoPrecip_NoIce',['../DataStruct_8H.html#ab34704153a585940411c26587cb82ad0a1571939639d68374fc4af7fae4b66d03',1,'DataStruct.H']]], - ['scalar_5fh_4653',['Scalar_h',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea85d322ae06bc4f66f791d4eda0a13ae6',1,'EddyDiff']]], - ['scalar_5fv_4654',['Scalar_v',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea2b82a72be137b3159e7d4945735fcbf5',1,'EddyDiff']]], - ['simplead_4655',['SimpleAD',['../DataStruct_8H.html#a5930188cdc2dd4def9ce58fdf5f46847a492784fb728d5797eb8db8b25fa2b33a',1,'DataStruct.H']]], - ['slip_5fwall_4656',['slip_wall',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9a03ee6de9fd100444c5c0567ea01bd538',1,'IndexDefines.H']]], - ['slm_4657',['SLM',['../DataStruct_8H.html#abeec366fd5381f3bb7ba39f6e5c1e7e4ad3a11aacb1a63c0b2e5165c43b8ccd68',1,'DataStruct.H']]], - ['smagorinsky_4658',['Smagorinsky',['../TurbStruct_8H.html#aa346fa9f5c0cb101a7766563fb76c500a409c5986f243d66ca7b1ef5882f4f808',1,'TurbStruct.H']]], - ['snow_5faccum_4659',['snow_accum',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a310c28c6a2a5e209f43302921d535af2',1,'MicVar']]], - ['static_4660',['Static',['../DataStruct_8H.html#af82ff6f1edafee12190434b73fe91127a84a8921b25f505d0d2077aeb5db4bc16',1,'DataStruct.H']]], - ['surface_5ftemperature_4661',['SURFACE_TEMPERATURE',['../classABLMost.html#a46fbd9260d2adfa7c18edad6452f9baba317cef85d14b4909f1d76becb00dc0f1',1,'ABLMost']]], - ['symmetry_4662',['symmetry',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9a40e712f30d56083318ab20a2402921d2',1,'IndexDefines.H']]] + ['sam_4658',['SAM',['../DataStruct_8H.html#ab34704153a585940411c26587cb82ad0a9f1b3be4a82b11d104e4ef7f7ccb1c19',1,'DataStruct.H']]], + ['sam_5fnoice_4659',['SAM_NoIce',['../DataStruct_8H.html#ab34704153a585940411c26587cb82ad0aca8fb8e2f9829763f29ce489f9f6e535',1,'DataStruct.H']]], + ['sam_5fnoprecip_5fnoice_4660',['SAM_NoPrecip_NoIce',['../DataStruct_8H.html#ab34704153a585940411c26587cb82ad0a1571939639d68374fc4af7fae4b66d03',1,'DataStruct.H']]], + ['scalar_5fh_4661',['Scalar_h',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea85d322ae06bc4f66f791d4eda0a13ae6',1,'EddyDiff']]], + ['scalar_5fv_4662',['Scalar_v',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea2b82a72be137b3159e7d4945735fcbf5',1,'EddyDiff']]], + ['simplead_4663',['SimpleAD',['../DataStruct_8H.html#a5930188cdc2dd4def9ce58fdf5f46847a492784fb728d5797eb8db8b25fa2b33a',1,'DataStruct.H']]], + ['slip_5fwall_4664',['slip_wall',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9a03ee6de9fd100444c5c0567ea01bd538',1,'IndexDefines.H']]], + ['slm_4665',['SLM',['../DataStruct_8H.html#abeec366fd5381f3bb7ba39f6e5c1e7e4ad3a11aacb1a63c0b2e5165c43b8ccd68',1,'DataStruct.H']]], + ['smagorinsky_4666',['Smagorinsky',['../TurbStruct_8H.html#aa346fa9f5c0cb101a7766563fb76c500a409c5986f243d66ca7b1ef5882f4f808',1,'TurbStruct.H']]], + ['snow_5faccum_4667',['snow_accum',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a310c28c6a2a5e209f43302921d535af2',1,'MicVar']]], + ['static_4668',['Static',['../DataStruct_8H.html#af82ff6f1edafee12190434b73fe91127a84a8921b25f505d0d2077aeb5db4bc16',1,'DataStruct.H']]], + ['surface_5ftemperature_4669',['SURFACE_TEMPERATURE',['../classABLMost.html#a46fbd9260d2adfa7c18edad6452f9baba317cef85d14b4909f1d76becb00dc0f1',1,'ABLMost']]], + ['symmetry_4670',['symmetry',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9a40e712f30d56083318ab20a2402921d2',1,'IndexDefines.H']]] ]; diff --git a/search/enumvalues_12.js b/search/enumvalues_12.js index cf07b4a14a..d38e9dbc1f 100644 --- a/search/enumvalues_12.js +++ b/search/enumvalues_12.js @@ -1,19 +1,19 @@ var searchData= [ - ['t_4663',['T',['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a1e7df4966430ffdaa4bb7bbd0f8a6d02',1,'WRFBdyVars::T()'],['../namespaceMetGridBdyVars.html#a22bd27d0288d22c74bd7c0bb57b2b89faba8b3d297f43d3f8d507b19ff6e21757',1,'MetGridBdyVars::T()'],['../namespaceRealBdyVars.html#aa4743649b85ade11df23692d7c3947bda8ecd2dbb16824e5c68db7daf2254fc79',1,'RealBdyVars::T()']]], - ['tabs_4664',['tabs',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea7cde81843cd190a3122d7c3912a39b74',1,'MicVar_Kess::tabs()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8aaf3c3122dd3954fe2b19abfc5c27b3dc',1,'MicVar::tabs()']]], - ['tau_4665',['tau',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239a0831ecd8c789131994c1f350dce2b02f',1,'DataStruct.H']]], - ['theta_4666',['theta',['../namespaceLsmVar__MM5.html#a0c17a1ae9d9db120b8947e6da767cd3baf198df5800148ff3680d005b5fb09c68',1,'LsmVar_MM5::theta()'],['../namespaceLsmVar__SLM.html#a9927bc85abdc2fa6040b222a6c1ddd91a8cbbe7ff58f91759c10f65b097bcfc0f',1,'LsmVar_SLM::theta()'],['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea8e4ed7630edede7500eef0da31218c36',1,'MicVar_Kess::theta()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a96295e93c39d249775ba2498eb3d4fc1',1,'MicVar::theta()']]], - ['theta_5fh_4667',['Theta_h',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ead0cfc6c50b43867895cbc2c02eb2b99a',1,'EddyDiff']]], - ['theta_5fv_4668',['Theta_v',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea0af64d676c5c6f4312eb892f9a7a46cd',1,'EddyDiff']]], - ['thetabar_4669',['thetabar',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239ae41e9f65f26ee3b04db07f2db7f28bdb',1,'DataStruct.H']]], - ['time_4670',['Time',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06aa76d4ef5f3f6a672bbfab2865563e530',1,'NCWpsFile.H']]], - ['time_5fbdywidth_5fbt_5fsn_4671',['Time_BdyWidth_BT_SN',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06a2f43039d16fd9942908dc0b55b462b18',1,'NCWpsFile.H']]], - ['time_5fbdywidth_5fbt_5fwe_4672',['Time_BdyWidth_BT_WE',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06aaa684fa862f886663c11fcad18416550',1,'NCWpsFile.H']]], - ['time_5fbdywidth_5fsn_4673',['Time_BdyWidth_SN',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06a7d998330c55b56c1e46c449b2e39e89f',1,'NCWpsFile.H']]], - ['time_5fbdywidth_5fwe_4674',['Time_BdyWidth_WE',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06a1bfaf1bd09d922faf1b4bb0ffb3a6ec3',1,'NCWpsFile.H']]], - ['time_5fbt_4675',['Time_BT',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06a539ca443eab3c322b2b37046e896dc62',1,'NCWpsFile.H']]], - ['time_5fbt_5fsn_5fwe_4676',['Time_BT_SN_WE',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06aa3968158227ea04595d4003503cca22b',1,'NCWpsFile.H']]], - ['time_5fsn_5fwe_4677',['Time_SN_WE',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06a5f93bace93896872075eae75770cadc4',1,'NCWpsFile.H']]], - ['twoway_4678',['TwoWay',['../DataStruct_8H.html#ad285be248c0803917aaf5cf8ce62139ba6c267346f8ebb889610a5a90838be815',1,'DataStruct.H']]] + ['t_4671',['T',['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a1e7df4966430ffdaa4bb7bbd0f8a6d02',1,'WRFBdyVars::T()'],['../namespaceMetGridBdyVars.html#a22bd27d0288d22c74bd7c0bb57b2b89faba8b3d297f43d3f8d507b19ff6e21757',1,'MetGridBdyVars::T()'],['../namespaceRealBdyVars.html#aa4743649b85ade11df23692d7c3947bda8ecd2dbb16824e5c68db7daf2254fc79',1,'RealBdyVars::T()']]], + ['tabs_4672',['tabs',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea7cde81843cd190a3122d7c3912a39b74',1,'MicVar_Kess::tabs()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8aaf3c3122dd3954fe2b19abfc5c27b3dc',1,'MicVar::tabs()']]], + ['tau_4673',['tau',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239a0831ecd8c789131994c1f350dce2b02f',1,'DataStruct.H']]], + ['theta_4674',['theta',['../namespaceLsmVar__MM5.html#a0c17a1ae9d9db120b8947e6da767cd3baf198df5800148ff3680d005b5fb09c68',1,'LsmVar_MM5::theta()'],['../namespaceLsmVar__SLM.html#a9927bc85abdc2fa6040b222a6c1ddd91a8cbbe7ff58f91759c10f65b097bcfc0f',1,'LsmVar_SLM::theta()'],['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea8e4ed7630edede7500eef0da31218c36',1,'MicVar_Kess::theta()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a96295e93c39d249775ba2498eb3d4fc1',1,'MicVar::theta()']]], + ['theta_5fh_4675',['Theta_h',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ead0cfc6c50b43867895cbc2c02eb2b99a',1,'EddyDiff']]], + ['theta_5fv_4676',['Theta_v',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea0af64d676c5c6f4312eb892f9a7a46cd',1,'EddyDiff']]], + ['thetabar_4677',['thetabar',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239ae41e9f65f26ee3b04db07f2db7f28bdb',1,'DataStruct.H']]], + ['time_4678',['Time',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06aa76d4ef5f3f6a672bbfab2865563e530',1,'NCWpsFile.H']]], + ['time_5fbdywidth_5fbt_5fsn_4679',['Time_BdyWidth_BT_SN',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06a2f43039d16fd9942908dc0b55b462b18',1,'NCWpsFile.H']]], + ['time_5fbdywidth_5fbt_5fwe_4680',['Time_BdyWidth_BT_WE',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06aaa684fa862f886663c11fcad18416550',1,'NCWpsFile.H']]], + ['time_5fbdywidth_5fsn_4681',['Time_BdyWidth_SN',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06a7d998330c55b56c1e46c449b2e39e89f',1,'NCWpsFile.H']]], + ['time_5fbdywidth_5fwe_4682',['Time_BdyWidth_WE',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06a1bfaf1bd09d922faf1b4bb0ffb3a6ec3',1,'NCWpsFile.H']]], + ['time_5fbt_4683',['Time_BT',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06a539ca443eab3c322b2b37046e896dc62',1,'NCWpsFile.H']]], + ['time_5fbt_5fsn_5fwe_4684',['Time_BT_SN_WE',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06aa3968158227ea04595d4003503cca22b',1,'NCWpsFile.H']]], + ['time_5fsn_5fwe_4685',['Time_SN_WE',['../NCWpsFile_8H.html#a147911bcb83952a10f7560fd4e9d8f06a5f93bace93896872075eae75770cadc4',1,'NCWpsFile.H']]], + ['twoway_4686',['TwoWay',['../DataStruct_8H.html#ad285be248c0803917aaf5cf8ce62139ba6c267346f8ebb889610a5a90838be815',1,'DataStruct.H']]] ]; diff --git a/search/enumvalues_13.js b/search/enumvalues_13.js index 9302545d92..57da708d18 100644 --- a/search/enumvalues_13.js +++ b/search/enumvalues_13.js @@ -1,11 +1,11 @@ var searchData= [ - ['u_4679',['U',['../namespaceRealBdyVars.html#aa4743649b85ade11df23692d7c3947bda18f2b09699f8c7ee3796d766f288f411',1,'RealBdyVars::U()'],['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582aa53bdf551bf25340a362d722eac4ab6f',1,'WRFBdyVars::U()'],['../namespaceMetGridBdyVars.html#a22bd27d0288d22c74bd7c0bb57b2b89fa378f42ee4d721483e332f15a50a6f3ea',1,'MetGridBdyVars::U()']]], - ['ubar_4680',['ubar',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239a3d2cdf8cea6cb933d4ce759c1ff1b948',1,'DataStruct.H']]], - ['ubar_5fsponge_4681',['ubar_sponge',['../DataStruct_8H.html#a5bebd9ff4e2455172deca3b399214fcbac159d9fae0d25be7ce907e1feb87cdaa',1,'DataStruct.H']]], - ['undefined_4682',['undefined',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9a5e543256c480ac577d30f76f9120eb74',1,'IndexDefines.H']]], - ['undefined_4683',['Undefined',['../DataStruct_8H.html#a62a5a9bde82457a1611cde231a43bfe5aec0fc0100c4fc1ce4eea230c3dc10360',1,'DataStruct.H']]], - ['unknown_4684',['Unknown',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70a88183b946cc5f0e8c96b2e66e1c74a7e',1,'IndexDefines.H']]], - ['upwind_5f3rd_4685',['Upwind_3rd',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70a40adf6565c1a31b2c72d8072412d0b9f',1,'IndexDefines.H']]], - ['upwind_5f5th_4686',['Upwind_5th',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70a83aec89012c35752597047c6ebdd983a',1,'IndexDefines.H']]] + ['u_4687',['U',['../namespaceRealBdyVars.html#aa4743649b85ade11df23692d7c3947bda18f2b09699f8c7ee3796d766f288f411',1,'RealBdyVars::U()'],['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582aa53bdf551bf25340a362d722eac4ab6f',1,'WRFBdyVars::U()'],['../namespaceMetGridBdyVars.html#a22bd27d0288d22c74bd7c0bb57b2b89fa378f42ee4d721483e332f15a50a6f3ea',1,'MetGridBdyVars::U()']]], + ['ubar_4688',['ubar',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239a3d2cdf8cea6cb933d4ce759c1ff1b948',1,'DataStruct.H']]], + ['ubar_5fsponge_4689',['ubar_sponge',['../DataStruct_8H.html#a5bebd9ff4e2455172deca3b399214fcbac159d9fae0d25be7ce907e1feb87cdaa',1,'DataStruct.H']]], + ['undefined_4690',['undefined',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9a5e543256c480ac577d30f76f9120eb74',1,'IndexDefines.H']]], + ['undefined_4691',['Undefined',['../DataStruct_8H.html#a62a5a9bde82457a1611cde231a43bfe5aec0fc0100c4fc1ce4eea230c3dc10360',1,'DataStruct.H']]], + ['unknown_4692',['Unknown',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70a88183b946cc5f0e8c96b2e66e1c74a7e',1,'IndexDefines.H']]], + ['upwind_5f3rd_4693',['Upwind_3rd',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70a40adf6565c1a31b2c72d8072412d0b9f',1,'IndexDefines.H']]], + ['upwind_5f5th_4694',['Upwind_5th',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70a83aec89012c35752597047c6ebdd983a',1,'IndexDefines.H']]] ]; diff --git a/search/enumvalues_14.js b/search/enumvalues_14.js index 8f305660d8..1042dbfa03 100644 --- a/search/enumvalues_14.js +++ b/search/enumvalues_14.js @@ -1,6 +1,6 @@ var searchData= [ - ['v_4687',['V',['../namespaceRealBdyVars.html#aa4743649b85ade11df23692d7c3947bdaeb7c7786202be202372af9778caaa59a',1,'RealBdyVars::V()'],['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a4d00543cd0d6f68475152e954f5dfa43',1,'WRFBdyVars::V()'],['../namespaceMetGridBdyVars.html#a22bd27d0288d22c74bd7c0bb57b2b89fa648d295dcce3682ff094adbee4f946bf',1,'MetGridBdyVars::V()']]], - ['vbar_4688',['vbar',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239acb08c6a1b8bca5e9e4ef6162aef2cfa4',1,'DataStruct.H']]], - ['vbar_5fsponge_4689',['vbar_sponge',['../DataStruct_8H.html#a5bebd9ff4e2455172deca3b399214fcbaad1bdec1c0213a18483e81bcb4926964',1,'DataStruct.H']]] + ['v_4695',['V',['../namespaceRealBdyVars.html#aa4743649b85ade11df23692d7c3947bdaeb7c7786202be202372af9778caaa59a',1,'RealBdyVars::V()'],['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a4d00543cd0d6f68475152e954f5dfa43',1,'WRFBdyVars::V()'],['../namespaceMetGridBdyVars.html#a22bd27d0288d22c74bd7c0bb57b2b89fa648d295dcce3682ff094adbee4f946bf',1,'MetGridBdyVars::V()']]], + ['vbar_4696',['vbar',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239acb08c6a1b8bca5e9e4ef6162aef2cfa4',1,'DataStruct.H']]], + ['vbar_5fsponge_4697',['vbar_sponge',['../DataStruct_8H.html#a5bebd9ff4e2455172deca3b399214fcbaad1bdec1c0213a18483e81bcb4926964',1,'DataStruct.H']]] ]; diff --git a/search/enumvalues_15.js b/search/enumvalues_15.js index ca69123dd5..db79fcbb98 100644 --- a/search/enumvalues_15.js +++ b/search/enumvalues_15.js @@ -1,10 +1,10 @@ var searchData= [ - ['wave_5fcoupled_4690',['WAVE_COUPLED',['../classABLMost.html#ae825f96c2d098b3e070642a74e6a3f13a3e1545d84d0cc7da6edf47adda8a80f9',1,'ABLMost']]], - ['wbar_4691',['wbar',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239a3d8bd6001a2421b06c3ec4e9f2dcdffd',1,'DataStruct.H']]], - ['weno_5f3_4692',['Weno_3',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70ada35597e5f00fa867fe6e39d651a2195',1,'IndexDefines.H']]], - ['weno_5f3mzq_4693',['Weno_3MZQ',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70af8b942d20ed08b25df71ea1c87244210',1,'IndexDefines.H']]], - ['weno_5f3z_4694',['Weno_3Z',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70a9c29b64a7627155706a1cd93682b4351',1,'IndexDefines.H']]], - ['weno_5f5_4695',['Weno_5',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70af2429e8de544f3ebd7c9668e3dbebaa8',1,'IndexDefines.H']]], - ['weno_5f5z_4696',['Weno_5Z',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70aeb75f5943c7837da80e2048f2b344efc',1,'IndexDefines.H']]] + ['wave_5fcoupled_4698',['WAVE_COUPLED',['../classABLMost.html#ae825f96c2d098b3e070642a74e6a3f13a3e1545d84d0cc7da6edf47adda8a80f9',1,'ABLMost']]], + ['wbar_4699',['wbar',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239a3d8bd6001a2421b06c3ec4e9f2dcdffd',1,'DataStruct.H']]], + ['weno_5f3_4700',['Weno_3',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70ada35597e5f00fa867fe6e39d651a2195',1,'IndexDefines.H']]], + ['weno_5f3mzq_4701',['Weno_3MZQ',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70af8b942d20ed08b25df71ea1c87244210',1,'IndexDefines.H']]], + ['weno_5f3z_4702',['Weno_3Z',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70a9c29b64a7627155706a1cd93682b4351',1,'IndexDefines.H']]], + ['weno_5f5_4703',['Weno_5',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70af2429e8de544f3ebd7c9668e3dbebaa8',1,'IndexDefines.H']]], + ['weno_5f5z_4704',['Weno_5Z',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70aeb75f5943c7837da80e2048f2b344efc',1,'IndexDefines.H']]] ]; diff --git a/search/enumvalues_16.js b/search/enumvalues_16.js index 4433e5ac1a..1e5bab8670 100644 --- a/search/enumvalues_16.js +++ b/search/enumvalues_16.js @@ -1,8 +1,8 @@ var searchData= [ - ['x_4697',['x',['../DataStruct_8H.html#a627f1f843904477f763577ad1460de01a9dd4e461268c8034f5c8564e155c67a6',1,'DataStruct.H']]], - ['x_5fy_4698',['x_y',['../DataStruct_8H.html#acc2aa74379de57a98956ae09f0a11c9ba52102d8e853322150c95bd20cec93d2a',1,'DataStruct.H']]], - ['xmom_4699',['xmom',['../namespaceIntVars.html#afdaa1b64a98a711870ca86f30e7963daaf661293a5a71ca532c214929b98c0bad',1,'IntVars']]], - ['xvel_4700',['xvel',['../namespaceVars.html#a161eed9b529c2108b15a09099729c3b9a2a10a6e726515894b07621908abd4c0c',1,'Vars']]], - ['xvel_5fbc_4701',['xvel_bc',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aab1782753c68aaad8632b0a7d575e57f4',1,'BCVars']]] + ['x_4705',['x',['../DataStruct_8H.html#a627f1f843904477f763577ad1460de01a9dd4e461268c8034f5c8564e155c67a6',1,'DataStruct.H']]], + ['x_5fy_4706',['x_y',['../DataStruct_8H.html#acc2aa74379de57a98956ae09f0a11c9ba52102d8e853322150c95bd20cec93d2a',1,'DataStruct.H']]], + ['xmom_4707',['xmom',['../namespaceIntVars.html#afdaa1b64a98a711870ca86f30e7963daaf661293a5a71ca532c214929b98c0bad',1,'IntVars']]], + ['xvel_4708',['xvel',['../namespaceVars.html#a161eed9b529c2108b15a09099729c3b9a2a10a6e726515894b07621908abd4c0c',1,'Vars']]], + ['xvel_5fbc_4709',['xvel_bc',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aab1782753c68aaad8632b0a7d575e57f4',1,'BCVars']]] ]; diff --git a/search/enumvalues_17.js b/search/enumvalues_17.js index 0327267921..f36de664e2 100644 --- a/search/enumvalues_17.js +++ b/search/enumvalues_17.js @@ -1,8 +1,8 @@ var searchData= [ - ['y_4702',['y',['../DataStruct_8H.html#a627f1f843904477f763577ad1460de01a415290769594460e2e485922904f345d',1,'DataStruct.H']]], - ['ymom_4703',['ymom',['../namespaceIntVars.html#afdaa1b64a98a711870ca86f30e7963daa2e60798bc45154a8f905b1aa228a24e5',1,'IntVars']]], - ['ysu_4704',['YSU',['../TurbStruct_8H.html#a4a079f2650ca30c787a8375ec5f17ca5ad032bccff1ff2e272cc68da5a0de09fe',1,'TurbStruct.H']]], - ['yvel_4705',['yvel',['../namespaceVars.html#a161eed9b529c2108b15a09099729c3b9a81793b83204cfa56d4683bc676fbbfb6',1,'Vars']]], - ['yvel_5fbc_4706',['yvel_bc',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa98ad22810fdfe9e585bc6481fc12454e',1,'BCVars']]] + ['y_4710',['y',['../DataStruct_8H.html#a627f1f843904477f763577ad1460de01a415290769594460e2e485922904f345d',1,'DataStruct.H']]], + ['ymom_4711',['ymom',['../namespaceIntVars.html#afdaa1b64a98a711870ca86f30e7963daa2e60798bc45154a8f905b1aa228a24e5',1,'IntVars']]], + ['ysu_4712',['YSU',['../TurbStruct_8H.html#a4a079f2650ca30c787a8375ec5f17ca5ad032bccff1ff2e272cc68da5a0de09fe',1,'TurbStruct.H']]], + ['yvel_4713',['yvel',['../namespaceVars.html#a161eed9b529c2108b15a09099729c3b9a81793b83204cfa56d4683bc676fbbfb6',1,'Vars']]], + ['yvel_5fbc_4714',['yvel_bc',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa98ad22810fdfe9e585bc6481fc12454e',1,'BCVars']]] ]; diff --git a/search/enumvalues_18.js b/search/enumvalues_18.js index 3d1d3b8045..edee8665a4 100644 --- a/search/enumvalues_18.js +++ b/search/enumvalues_18.js @@ -1,7 +1,7 @@ var searchData= [ - ['z_4707',['z',['../DataStruct_8H.html#a627f1f843904477f763577ad1460de01afbade9e36a3f36d3d676c1b808451dd7',1,'DataStruct.H']]], - ['zmom_4708',['zmom',['../namespaceIntVars.html#afdaa1b64a98a711870ca86f30e7963daaaab25f707cae69bfadac2abcd17a2188',1,'IntVars']]], - ['zvel_4709',['zvel',['../namespaceVars.html#a161eed9b529c2108b15a09099729c3b9a48ee63b17bc216e9661511c33c68bd8b',1,'Vars']]], - ['zvel_5fbc_4710',['zvel_bc',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa03b35ec9e83f34bb1349a86965d34e34',1,'BCVars']]] + ['z_4715',['z',['../DataStruct_8H.html#a627f1f843904477f763577ad1460de01afbade9e36a3f36d3d676c1b808451dd7',1,'DataStruct.H']]], + ['zmom_4716',['zmom',['../namespaceIntVars.html#afdaa1b64a98a711870ca86f30e7963daaaab25f707cae69bfadac2abcd17a2188',1,'IntVars']]], + ['zvel_4717',['zvel',['../namespaceVars.html#a161eed9b529c2108b15a09099729c3b9a48ee63b17bc216e9661511c33c68bd8b',1,'Vars']]], + ['zvel_5fbc_4718',['zvel_bc',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa03b35ec9e83f34bb1349a86965d34e34',1,'BCVars']]] ]; diff --git a/search/enumvalues_2.js b/search/enumvalues_2.js index bd686451d8..7c53276a11 100644 --- a/search/enumvalues_2.js +++ b/search/enumvalues_2.js @@ -1,19 +1,19 @@ var searchData= [ - ['cellbilinear_4542',['CellBilinear',['../namespaceInterpType.html#ac65aa6d3ffa2549732d15f959cff81aba39d869532e57e69c15b845ee6e38a9de',1,'InterpType']]], - ['cellconservativelinear_4543',['CellConservativeLinear',['../namespaceInterpType.html#ac65aa6d3ffa2549732d15f959cff81abab0ad7795a42bdee1bdd33474214bc822',1,'InterpType']]], - ['cellconservativeprotected_4544',['CellConservativeProtected',['../namespaceInterpType.html#ac65aa6d3ffa2549732d15f959cff81abacb9bd14749e9f8c08885b9bc981992de',1,'InterpType']]], - ['cellconservativequartic_4545',['CellConservativeQuartic',['../namespaceInterpType.html#ac65aa6d3ffa2549732d15f959cff81aba0291df397377f0f90f7353e49f5a8f20',1,'InterpType']]], - ['cellquadratic_4546',['CellQuadratic',['../namespaceInterpType.html#ac65aa6d3ffa2549732d15f959cff81abab57fb74e35b4c4d31f44d6cafe66cf69',1,'InterpType']]], - ['centered_5f2nd_4547',['Centered_2nd',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70ada570868919bafaab1776170229a7049',1,'IndexDefines.H']]], - ['centered_5f4th_4548',['Centered_4th',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70a778e0ed47937713eb1c4bedef6b00161',1,'IndexDefines.H']]], - ['centered_5f6th_4549',['Centered_6th',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70a8c9475eb6bfde28e5bcb5230ac2e22a9',1,'IndexDefines.H']]], - ['centimeter_4550',['centimeter',['../classRadConstants.html#a2de1ff8cbc3cafe6a42e8f884002e4f1a135cc2d02c99a9ca6a6413cacea93664',1,'RadConstants']]], - ['charnock_4551',['CHARNOCK',['../classABLMost.html#ae825f96c2d098b3e070642a74e6a3f13addbb8213265f3ad773f7af2cb8147062',1,'ABLMost']]], - ['cons_4552',['cons',['../namespaceVars.html#a161eed9b529c2108b15a09099729c3b9a47abe072e12c61d29cde15a509a0664b',1,'Vars::cons()'],['../namespaceIntVars.html#afdaa1b64a98a711870ca86f30e7963daa2e7100afbf5e7a39371f1cb29f6f570a',1,'IntVars::cons()']]], - ['cons_5fbc_4553',['cons_bc',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aaaf601346b01655b32acf66d07b856aec',1,'BCVars']]], - ['constant_4554',['CONSTANT',['../classABLMost.html#ae825f96c2d098b3e070642a74e6a3f13a8d6b5cada83510220f59e00ce86d4d92',1,'ABLMost']]], - ['constant_4555',['Constant',['../DiffStruct_8H.html#a84e6bfbbb8e490790c506939b364f735acb17869fe51048b5a5c4c6106551a255',1,'DiffStruct.H']]], - ['constantalpha_4556',['ConstantAlpha',['../DiffStruct_8H.html#a84e6bfbbb8e490790c506939b364f735a6f0229db491c3b01860363456dc57288',1,'DiffStruct.H']]], - ['custom_4557',['CUSTOM',['../classABLMost.html#a92e41ba7a650b4768aa6bc006b2241e0a72baef04098f035e8a320b03ad197818',1,'ABLMost']]] + ['cellbilinear_4550',['CellBilinear',['../namespaceInterpType.html#ac65aa6d3ffa2549732d15f959cff81aba39d869532e57e69c15b845ee6e38a9de',1,'InterpType']]], + ['cellconservativelinear_4551',['CellConservativeLinear',['../namespaceInterpType.html#ac65aa6d3ffa2549732d15f959cff81abab0ad7795a42bdee1bdd33474214bc822',1,'InterpType']]], + ['cellconservativeprotected_4552',['CellConservativeProtected',['../namespaceInterpType.html#ac65aa6d3ffa2549732d15f959cff81abacb9bd14749e9f8c08885b9bc981992de',1,'InterpType']]], + ['cellconservativequartic_4553',['CellConservativeQuartic',['../namespaceInterpType.html#ac65aa6d3ffa2549732d15f959cff81aba0291df397377f0f90f7353e49f5a8f20',1,'InterpType']]], + ['cellquadratic_4554',['CellQuadratic',['../namespaceInterpType.html#ac65aa6d3ffa2549732d15f959cff81abab57fb74e35b4c4d31f44d6cafe66cf69',1,'InterpType']]], + ['centered_5f2nd_4555',['Centered_2nd',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70ada570868919bafaab1776170229a7049',1,'IndexDefines.H']]], + ['centered_5f4th_4556',['Centered_4th',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70a778e0ed47937713eb1c4bedef6b00161',1,'IndexDefines.H']]], + ['centered_5f6th_4557',['Centered_6th',['../IndexDefines_8H.html#ada2d84e0dbbfb8d748defbf018748a70a8c9475eb6bfde28e5bcb5230ac2e22a9',1,'IndexDefines.H']]], + ['centimeter_4558',['centimeter',['../classRadConstants.html#a2de1ff8cbc3cafe6a42e8f884002e4f1a135cc2d02c99a9ca6a6413cacea93664',1,'RadConstants']]], + ['charnock_4559',['CHARNOCK',['../classABLMost.html#ae825f96c2d098b3e070642a74e6a3f13addbb8213265f3ad773f7af2cb8147062',1,'ABLMost']]], + ['cons_4560',['cons',['../namespaceVars.html#a161eed9b529c2108b15a09099729c3b9a47abe072e12c61d29cde15a509a0664b',1,'Vars::cons()'],['../namespaceIntVars.html#afdaa1b64a98a711870ca86f30e7963daa2e7100afbf5e7a39371f1cb29f6f570a',1,'IntVars::cons()']]], + ['cons_5fbc_4561',['cons_bc',['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aaaf601346b01655b32acf66d07b856aec',1,'BCVars']]], + ['constant_4562',['CONSTANT',['../classABLMost.html#ae825f96c2d098b3e070642a74e6a3f13a8d6b5cada83510220f59e00ce86d4d92',1,'ABLMost']]], + ['constant_4563',['Constant',['../DiffStruct_8H.html#a84e6bfbbb8e490790c506939b364f735acb17869fe51048b5a5c4c6106551a255',1,'DiffStruct.H']]], + ['constantalpha_4564',['ConstantAlpha',['../DiffStruct_8H.html#a84e6bfbbb8e490790c506939b364f735a6f0229db491c3b01860363456dc57288',1,'DiffStruct.H']]], + ['custom_4565',['CUSTOM',['../classABLMost.html#a92e41ba7a650b4768aa6bc006b2241e0a72baef04098f035e8a320b03ad197818',1,'ABLMost']]] ]; diff --git a/search/enumvalues_3.js b/search/enumvalues_3.js index d7db3965e1..78446df73e 100644 --- a/search/enumvalues_3.js +++ b/search/enumvalues_3.js @@ -1,5 +1,5 @@ var searchData= [ - ['deardorff_4558',['Deardorff',['../TurbStruct_8H.html#aa346fa9f5c0cb101a7766563fb76c500ab7106655ebb5e00e0f040302bf4129bf',1,'TurbStruct.H']]], - ['donelan_4559',['DONELAN',['../classABLMost.html#a92e41ba7a650b4768aa6bc006b2241e0afbf950ece84b8c4c7ebcf6492db726f7',1,'ABLMost']]] + ['deardorff_4566',['Deardorff',['../TurbStruct_8H.html#aa346fa9f5c0cb101a7766563fb76c500ab7106655ebb5e00e0f040302bf4129bf',1,'TurbStruct.H']]], + ['donelan_4567',['DONELAN',['../classABLMost.html#a92e41ba7a650b4768aa6bc006b2241e0afbf950ece84b8c4c7ebcf6492db726f7',1,'ABLMost']]] ]; diff --git a/search/enumvalues_4.js b/search/enumvalues_4.js index 1bccd7ca3f..b28f59e96f 100644 --- a/search/enumvalues_4.js +++ b/search/enumvalues_4.js @@ -1,11 +1,11 @@ var searchData= [ - ['eulerian_4560',['Eulerian',['../DataStruct_8H.html#a62a5a9bde82457a1611cde231a43bfe5aff01d2011cc56dfe241e0002bb9df778',1,'DataStruct.H']]], - ['ewp_4561',['EWP',['../DataStruct_8H.html#a5930188cdc2dd4def9ce58fdf5f46847ac49b3a43f2f11cf252c3a9f35d1c4441',1,'DataStruct.H']]], - ['ext_5fdir_4562',['ext_dir',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca4b16988b22c277c9f812ddb5fb1539af',1,'ERFBCType']]], - ['ext_5fdir_5fingested_4563',['ext_dir_ingested',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca138e8c6c2427dcd78959f3e0e84b3462',1,'ERFBCType']]], - ['ext_5fdir_5fprim_4564',['ext_dir_prim',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca52a76d5c6aeb74655f726be3ae8a1eab',1,'ERFBCType']]], - ['extrap_5fmethod_5fbndry_4565',['extrap_method_bndry',['../classLinInterp.html#a1f3e9aabd558af36cbc7accfc6e523a2ac291677b47a4b2b3276ea6ebf30d6e26',1,'LinInterp']]], - ['extrap_5fmethod_5fcycle_4566',['extrap_method_cycle',['../classLinInterp.html#a1f3e9aabd558af36cbc7accfc6e523a2aeec66ba685aaa33115191d8f6bc9c0e6',1,'LinInterp']]], - ['extrap_5fmethod_5fzero_4567',['extrap_method_zero',['../classLinInterp.html#a1f3e9aabd558af36cbc7accfc6e523a2aa8778034b0e18c190776623750b945b5',1,'LinInterp']]] + ['eulerian_4568',['Eulerian',['../DataStruct_8H.html#a62a5a9bde82457a1611cde231a43bfe5aff01d2011cc56dfe241e0002bb9df778',1,'DataStruct.H']]], + ['ewp_4569',['EWP',['../DataStruct_8H.html#a5930188cdc2dd4def9ce58fdf5f46847ac49b3a43f2f11cf252c3a9f35d1c4441',1,'DataStruct.H']]], + ['ext_5fdir_4570',['ext_dir',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca4b16988b22c277c9f812ddb5fb1539af',1,'ERFBCType']]], + ['ext_5fdir_5fingested_4571',['ext_dir_ingested',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca138e8c6c2427dcd78959f3e0e84b3462',1,'ERFBCType']]], + ['ext_5fdir_5fprim_4572',['ext_dir_prim',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca52a76d5c6aeb74655f726be3ae8a1eab',1,'ERFBCType']]], + ['extrap_5fmethod_5fbndry_4573',['extrap_method_bndry',['../classLinInterp.html#a1f3e9aabd558af36cbc7accfc6e523a2ac291677b47a4b2b3276ea6ebf30d6e26',1,'LinInterp']]], + ['extrap_5fmethod_5fcycle_4574',['extrap_method_cycle',['../classLinInterp.html#a1f3e9aabd558af36cbc7accfc6e523a2aeec66ba685aaa33115191d8f6bc9c0e6',1,'LinInterp']]], + ['extrap_5fmethod_5fzero_4575',['extrap_method_zero',['../classLinInterp.html#a1f3e9aabd558af36cbc7accfc6e523a2aa8778034b0e18c190776623750b945b5',1,'LinInterp']]] ]; diff --git a/search/enumvalues_5.js b/search/enumvalues_5.js index 9a935006a7..8ac73ca1db 100644 --- a/search/enumvalues_5.js +++ b/search/enumvalues_5.js @@ -1,7 +1,7 @@ var searchData= [ - ['faceconserativelinear_4568',['FaceConserativeLinear',['../namespaceInterpType.html#ac65aa6d3ffa2549732d15f959cff81aba01c80186916322ee3aec36ca88914dec',1,'InterpType']]], - ['facelinear_4569',['FaceLinear',['../namespaceInterpType.html#ac65aa6d3ffa2549732d15f959cff81aba61db714b7a202883765f0d43fe722f18',1,'InterpType']]], - ['fitch_4570',['Fitch',['../DataStruct_8H.html#a5930188cdc2dd4def9ce58fdf5f46847a2b00d051a8acd949c63ac94efa793efe',1,'DataStruct.H']]], - ['foextrap_4571',['foextrap',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca4a8d85af949a1ce567934e55c69c2846',1,'ERFBCType']]] + ['faceconserativelinear_4576',['FaceConserativeLinear',['../namespaceInterpType.html#ac65aa6d3ffa2549732d15f959cff81aba01c80186916322ee3aec36ca88914dec',1,'InterpType']]], + ['facelinear_4577',['FaceLinear',['../namespaceInterpType.html#ac65aa6d3ffa2549732d15f959cff81aba61db714b7a202883765f0d43fe722f18',1,'InterpType']]], + ['fitch_4578',['Fitch',['../DataStruct_8H.html#a5930188cdc2dd4def9ce58fdf5f46847a2b00d051a8acd949c63ac94efa793efe',1,'DataStruct.H']]], + ['foextrap_4579',['foextrap',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca4a8d85af949a1ce567934e55c69c2846',1,'ERFBCType']]] ]; diff --git a/search/enumvalues_6.js b/search/enumvalues_6.js index f14944b117..9af1e620e7 100644 --- a/search/enumvalues_6.js +++ b/search/enumvalues_6.js @@ -1,6 +1,6 @@ var searchData= [ - ['geostrophicwind_4572',['GeostrophicWind',['../DataStruct_8H.html#a90da675b718151491fd0c934a0ad3ceba6c2c47a19d5c773bae606eb243104880',1,'DataStruct.H']]], - ['goffgratch_4573',['GoffGratch',['../classSatMethods.html#a62096d95f324cd2a3504554437067ef7ab35ed313acae6ed02218056f81d56455',1,'SatMethods']]], - ['graup_5faccum_4574',['graup_accum',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8aa13fe479c935eca35c9375907e524992',1,'MicVar']]] + ['geostrophicwind_4580',['GeostrophicWind',['../DataStruct_8H.html#a90da675b718151491fd0c934a0ad3ceba6c2c47a19d5c773bae606eb243104880',1,'DataStruct.H']]], + ['goffgratch_4581',['GoffGratch',['../classSatMethods.html#a62096d95f324cd2a3504554437067ef7ab35ed313acae6ed02218056f81d56455',1,'SatMethods']]], + ['graup_5faccum_4582',['graup_accum',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8aa13fe479c935eca35c9375907e524992',1,'MicVar']]] ]; diff --git a/search/enumvalues_7.js b/search/enumvalues_7.js index 99e17160f6..951a4c7a92 100644 --- a/search/enumvalues_7.js +++ b/search/enumvalues_7.js @@ -1,6 +1,6 @@ var searchData= [ - ['heat_5fflux_4575',['HEAT_FLUX',['../classABLMost.html#a46fbd9260d2adfa7c18edad6452f9babac03b743c56d9316fbd3d327453b22226',1,'ABLMost']]], - ['ho_5foutflow_4576',['ho_outflow',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9a7a78e4cea7eaa21ad14a6fa92fbdc549',1,'IndexDefines.H']]], - ['hoextrapcc_4577',['hoextrapcc',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca71e344f745a7b29eb00c25df691f410d',1,'ERFBCType']]] + ['heat_5fflux_4583',['HEAT_FLUX',['../classABLMost.html#a46fbd9260d2adfa7c18edad6452f9babac03b743c56d9316fbd3d327453b22226',1,'ABLMost']]], + ['ho_5foutflow_4584',['ho_outflow',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9a7a78e4cea7eaa21ad14a6fa92fbdc549',1,'IndexDefines.H']]], + ['hoextrapcc_4585',['hoextrapcc',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca71e344f745a7b29eb00c25df691f410d',1,'ERFBCType']]] ]; diff --git a/search/enumvalues_8.js b/search/enumvalues_8.js index 3fcf84a1e8..c5fa8ab3eb 100644 --- a/search/enumvalues_8.js +++ b/search/enumvalues_8.js @@ -1,7 +1,7 @@ var searchData= [ - ['inflow_4578',['inflow',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9ad37e67db17cfd059f2852e2673b9e8ef',1,'IndexDefines.H']]], - ['int_5fdir_4579',['int_dir',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca9f18284526a1054d4e7a4783852ead30',1,'ERFBCType']]], - ['inv_5fcm_4580',['inv_cm',['../classRadConstants.html#a2de1ff8cbc3cafe6a42e8f884002e4f1a8b67eb83509631c60e1fe0a561983f52',1,'RadConstants']]], - ['invalid_4581',['Invalid',['../classSatMethods.html#a62096d95f324cd2a3504554437067ef7aacd427431253b9fe6b472b6db3685edb',1,'SatMethods']]] + ['inflow_4586',['inflow',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9ad37e67db17cfd059f2852e2673b9e8ef',1,'IndexDefines.H']]], + ['int_5fdir_4587',['int_dir',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca9f18284526a1054d4e7a4783852ead30',1,'ERFBCType']]], + ['inv_5fcm_4588',['inv_cm',['../classRadConstants.html#a2de1ff8cbc3cafe6a42e8f884002e4f1a8b67eb83509631c60e1fe0a561983f52',1,'RadConstants']]], + ['invalid_4589',['Invalid',['../classSatMethods.html#a62096d95f324cd2a3504554437067ef7aacd427431253b9fe6b472b6db3685edb',1,'SatMethods']]] ]; diff --git a/search/enumvalues_9.js b/search/enumvalues_9.js index 040c94ae49..239748f929 100644 --- a/search/enumvalues_9.js +++ b/search/enumvalues_9.js @@ -1,7 +1,7 @@ var searchData= [ - ['ke_5fh_4582',['KE_h',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149eafa0c87454b22a819e328491f78bf6767',1,'EddyDiff']]], - ['ke_5fv_4583',['KE_v',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea937c191d351b2c26cd7ea07878978b94',1,'EddyDiff']]], - ['kessler_4584',['Kessler',['../DataStruct_8H.html#ab34704153a585940411c26587cb82ad0af918ea9a492942625a661a22ac6af91d',1,'DataStruct.H']]], - ['kessler_5fnorain_4585',['Kessler_NoRain',['../DataStruct_8H.html#ab34704153a585940411c26587cb82ad0ab367ee4b7b1fe3bae62b649e580db4f4',1,'DataStruct.H']]] + ['ke_5fh_4590',['KE_h',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149eafa0c87454b22a819e328491f78bf6767',1,'EddyDiff']]], + ['ke_5fv_4591',['KE_v',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea937c191d351b2c26cd7ea07878978b94',1,'EddyDiff']]], + ['kessler_4592',['Kessler',['../DataStruct_8H.html#ab34704153a585940411c26587cb82ad0af918ea9a492942625a661a22ac6af91d',1,'DataStruct.H']]], + ['kessler_5fnorain_4593',['Kessler_NoRain',['../DataStruct_8H.html#ab34704153a585940411c26587cb82ad0ab367ee4b7b1fe3bae62b649e580db4f4',1,'DataStruct.H']]] ]; diff --git a/search/enumvalues_a.js b/search/enumvalues_a.js index acd0f2fca1..d2d919ba90 100644 --- a/search/enumvalues_a.js +++ b/search/enumvalues_a.js @@ -1,5 +1,5 @@ var searchData= [ - ['lagrangian_4586',['Lagrangian',['../DataStruct_8H.html#a62a5a9bde82457a1611cde231a43bfe5a2e32ba26d0dfb8d9502608639fcac451',1,'DataStruct.H']]], - ['lat_5flon_4587',['lat_lon',['../DataStruct_8H.html#acc2aa74379de57a98956ae09f0a11c9ba17fee101a502e526f68bdfb76a231372',1,'DataStruct.H']]] + ['lagrangian_4594',['Lagrangian',['../DataStruct_8H.html#a62a5a9bde82457a1611cde231a43bfe5a2e32ba26d0dfb8d9502608639fcac451',1,'DataStruct.H']]], + ['lat_5flon_4595',['lat_lon',['../DataStruct_8H.html#acc2aa74379de57a98956ae09f0a11c9ba17fee101a502e526f68bdfb76a231372',1,'DataStruct.H']]] ]; diff --git a/search/enumvalues_b.js b/search/enumvalues_b.js index 843c610ea5..494fae1f2f 100644 --- a/search/enumvalues_b.js +++ b/search/enumvalues_b.js @@ -1,15 +1,15 @@ var searchData= [ - ['meter_4588',['meter',['../classRadConstants.html#a2de1ff8cbc3cafe6a42e8f884002e4f1a3c6b87cb2d07bd40e9ed24c8729b20bd',1,'RadConstants']]], - ['micrometer_4589',['micrometer',['../classRadConstants.html#a2de1ff8cbc3cafe6a42e8f884002e4f1aca44c575fbae0e89d6f7764169e03c46',1,'RadConstants']]], - ['mm5_4590',['MM5',['../DataStruct_8H.html#abeec366fd5381f3bb7ba39f6e5c1e7e4a4594809823de21e46cbf63b1bcd316b5',1,'DataStruct.H']]], - ['modified_5fcharnock_4591',['MODIFIED_CHARNOCK',['../classABLMost.html#ae825f96c2d098b3e070642a74e6a3f13a266bf3048d67b1b3187c0189bc232fde',1,'ABLMost']]], - ['moeng_4592',['MOENG',['../classABLMost.html#a92e41ba7a650b4768aa6bc006b2241e0a0525d4394471c332f3c0a497584923d5',1,'ABLMost']]], - ['mom_5fh_4593',['Mom_h',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea2e96e6d5e84e7d7b9857e73159dfbe2b',1,'EddyDiff']]], - ['mom_5fv_4594',['Mom_v',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea61ed124b350a1b26da1bd26aebfa5f82',1,'EddyDiff']]], - ['most_4595',['MOST',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca42d0838b4e8d40ee76fbaf2d55c3402e',1,'ERFBCType::MOST()'],['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9a882dd232c0425bb9366544f84f0a7b6c',1,'MOST(): IndexDefines.H']]], - ['moving_4596',['Moving',['../DataStruct_8H.html#af82ff6f1edafee12190434b73fe91127adefe967ad0373b2274fc298f19125ca7',1,'DataStruct.H']]], - ['mu_4597',['MU',['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a9d2d300be8f8f15441322fce35c9c92e',1,'WRFBdyVars']]], - ['murphykoop_4598',['MurphyKoop',['../classSatMethods.html#a62096d95f324cd2a3504554437067ef7a614be0679f050250e4d5494708d1136a',1,'SatMethods']]], - ['mynn25_4599',['MYNN25',['../TurbStruct_8H.html#a4a079f2650ca30c787a8375ec5f17ca5abdeb9a753db1d1f3fe0e944eab1d0601',1,'TurbStruct.H']]] + ['meter_4596',['meter',['../classRadConstants.html#a2de1ff8cbc3cafe6a42e8f884002e4f1a3c6b87cb2d07bd40e9ed24c8729b20bd',1,'RadConstants']]], + ['micrometer_4597',['micrometer',['../classRadConstants.html#a2de1ff8cbc3cafe6a42e8f884002e4f1aca44c575fbae0e89d6f7764169e03c46',1,'RadConstants']]], + ['mm5_4598',['MM5',['../DataStruct_8H.html#abeec366fd5381f3bb7ba39f6e5c1e7e4a4594809823de21e46cbf63b1bcd316b5',1,'DataStruct.H']]], + ['modified_5fcharnock_4599',['MODIFIED_CHARNOCK',['../classABLMost.html#ae825f96c2d098b3e070642a74e6a3f13a266bf3048d67b1b3187c0189bc232fde',1,'ABLMost']]], + ['moeng_4600',['MOENG',['../classABLMost.html#a92e41ba7a650b4768aa6bc006b2241e0a0525d4394471c332f3c0a497584923d5',1,'ABLMost']]], + ['mom_5fh_4601',['Mom_h',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea2e96e6d5e84e7d7b9857e73159dfbe2b',1,'EddyDiff']]], + ['mom_5fv_4602',['Mom_v',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea61ed124b350a1b26da1bd26aebfa5f82',1,'EddyDiff']]], + ['most_4603',['MOST',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca42d0838b4e8d40ee76fbaf2d55c3402e',1,'ERFBCType::MOST()'],['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9a882dd232c0425bb9366544f84f0a7b6c',1,'MOST(): IndexDefines.H']]], + ['moving_4604',['Moving',['../DataStruct_8H.html#af82ff6f1edafee12190434b73fe91127adefe967ad0373b2274fc298f19125ca7',1,'DataStruct.H']]], + ['mu_4605',['MU',['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a9d2d300be8f8f15441322fce35c9c92e',1,'WRFBdyVars']]], + ['murphykoop_4606',['MurphyKoop',['../classSatMethods.html#a62096d95f324cd2a3504554437067ef7a614be0679f050250e4d5494708d1136a',1,'SatMethods']]], + ['mynn25_4607',['MYNN25',['../TurbStruct_8H.html#a4a079f2650ca30c787a8375ec5f17ca5abdeb9a753db1d1f3fe0e944eab1d0601',1,'TurbStruct.H']]] ]; diff --git a/search/enumvalues_c.js b/search/enumvalues_c.js index b93f75d4c5..09185f85b4 100644 --- a/search/enumvalues_c.js +++ b/search/enumvalues_c.js @@ -1,14 +1,14 @@ var searchData= [ - ['nanometer_4600',['nanometer',['../classRadConstants.html#a2de1ff8cbc3cafe6a42e8f884002e4f1a7a267da562dd711a27346968f67cadfe',1,'RadConstants']]], - ['neumann_4601',['neumann',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca0b217c3380adcde8f3cd9b58d949db60',1,'ERFBCType']]], - ['neumann_5fint_4602',['neumann_int',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01caa8e7f5249fea539bf14e97cfba9074d9',1,'ERFBCType']]], - ['no_5fslip_5fwall_4603',['no_slip_wall',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9acb8c716b8d9b499d9bc323d8f8a410d3',1,'IndexDefines.H']]], - ['nodebilinear_4604',['NodeBilinear',['../namespaceInterpType.html#ac65aa6d3ffa2549732d15f959cff81abaa8e5f7bd547098a67d20537514465dd9',1,'InterpType']]], - ['none_4605',['None',['../TurbStruct_8H.html#a4a079f2650ca30c787a8375ec5f17ca5a6adf97f83acf6453d4a6a4b1070f3754',1,'None(): TurbStruct.H'],['../TurbStruct_8H.html#aa346fa9f5c0cb101a7766563fb76c500a6adf97f83acf6453d4a6a4b1070f3754',1,'None(): TurbStruct.H'],['../DiffStruct_8H.html#a84e6bfbbb8e490790c506939b364f735a6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DiffStruct.H'],['../DataStruct_8H.html#a335364b39450e23bfefded6b7af8908ca6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DataStruct.H'],['../DataStruct_8H.html#acc2aa74379de57a98956ae09f0a11c9ba6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DataStruct.H'],['../DataStruct_8H.html#a5930188cdc2dd4def9ce58fdf5f46847a6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DataStruct.H'],['../DataStruct_8H.html#ab34704153a585940411c26587cb82ad0a6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DataStruct.H'],['../DataStruct_8H.html#a90da675b718151491fd0c934a0ad3ceba6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DataStruct.H'],['../DataStruct_8H.html#abeec366fd5381f3bb7ba39f6e5c1e7e4a6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DataStruct.H']]], - ['numdiffs_4606',['NumDiffs',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149eaa3900ab375460932d825b615bb532446',1,'EddyDiff']]], - ['numtypes_4607',['NumTypes',['../namespaceMetGridBdyVars.html#a22bd27d0288d22c74bd7c0bb57b2b89fa4f8e93d238957b496990de56dff45193',1,'MetGridBdyVars::NumTypes()'],['../namespaceIntVars.html#afdaa1b64a98a711870ca86f30e7963daa0468f4146b966163a1fe9f4f32a038c8',1,'IntVars::NumTypes()'],['../namespaceVars.html#a161eed9b529c2108b15a09099729c3b9a5deccaa24d5e74279425d7749f7d1494',1,'Vars::NumTypes()'],['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a6d1cade25038e11a813d4b72b651b04c',1,'WRFBdyVars::NumTypes()'],['../namespaceRealBdyVars.html#aa4743649b85ade11df23692d7c3947bda642348f19beb023be6cb81f253b41e7e',1,'RealBdyVars::NumTypes()'],['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa0b88b0a3a03a3e787a7b27717ec64de7',1,'BCVars::NumTypes()']]], - ['numvars_4608',['NumVars',['../namespaceLsmVar__MM5.html#a0c17a1ae9d9db120b8947e6da767cd3ba9295a4d95dbd36001a7b1beaa15e14b9',1,'LsmVar_MM5::NumVars()'],['../namespaceLsmVar__SLM.html#a9927bc85abdc2fa6040b222a6c1ddd91a46379e2639967ccb36fdea0aa7fbda61',1,'LsmVar_SLM::NumVars()'],['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476beacc0e3f4d1137cce9139f79959ac8542b',1,'MicVar_Kess::NumVars()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a0a8da919c111613d4806217dce5cd1e3',1,'MicVar::NumVars()']]], - ['nvars_4609',['nvars',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239a7c3c83d6fcec1f134956c3160adf6e39',1,'DataStruct.H']]], - ['nvars_5fsponge_4610',['nvars_sponge',['../DataStruct_8H.html#a5bebd9ff4e2455172deca3b399214fcba7f0566bdfe36c67d532a7e2aca33d9a4',1,'DataStruct.H']]] + ['nanometer_4608',['nanometer',['../classRadConstants.html#a2de1ff8cbc3cafe6a42e8f884002e4f1a7a267da562dd711a27346968f67cadfe',1,'RadConstants']]], + ['neumann_4609',['neumann',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca0b217c3380adcde8f3cd9b58d949db60',1,'ERFBCType']]], + ['neumann_5fint_4610',['neumann_int',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01caa8e7f5249fea539bf14e97cfba9074d9',1,'ERFBCType']]], + ['no_5fslip_5fwall_4611',['no_slip_wall',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9acb8c716b8d9b499d9bc323d8f8a410d3',1,'IndexDefines.H']]], + ['nodebilinear_4612',['NodeBilinear',['../namespaceInterpType.html#ac65aa6d3ffa2549732d15f959cff81abaa8e5f7bd547098a67d20537514465dd9',1,'InterpType']]], + ['none_4613',['None',['../TurbStruct_8H.html#a4a079f2650ca30c787a8375ec5f17ca5a6adf97f83acf6453d4a6a4b1070f3754',1,'None(): TurbStruct.H'],['../TurbStruct_8H.html#aa346fa9f5c0cb101a7766563fb76c500a6adf97f83acf6453d4a6a4b1070f3754',1,'None(): TurbStruct.H'],['../DiffStruct_8H.html#a84e6bfbbb8e490790c506939b364f735a6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DiffStruct.H'],['../DataStruct_8H.html#a335364b39450e23bfefded6b7af8908ca6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DataStruct.H'],['../DataStruct_8H.html#acc2aa74379de57a98956ae09f0a11c9ba6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DataStruct.H'],['../DataStruct_8H.html#a5930188cdc2dd4def9ce58fdf5f46847a6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DataStruct.H'],['../DataStruct_8H.html#ab34704153a585940411c26587cb82ad0a6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DataStruct.H'],['../DataStruct_8H.html#a90da675b718151491fd0c934a0ad3ceba6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DataStruct.H'],['../DataStruct_8H.html#abeec366fd5381f3bb7ba39f6e5c1e7e4a6adf97f83acf6453d4a6a4b1070f3754',1,'None(): DataStruct.H']]], + ['numdiffs_4614',['NumDiffs',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149eaa3900ab375460932d825b615bb532446',1,'EddyDiff']]], + ['numtypes_4615',['NumTypes',['../namespaceMetGridBdyVars.html#a22bd27d0288d22c74bd7c0bb57b2b89fa4f8e93d238957b496990de56dff45193',1,'MetGridBdyVars::NumTypes()'],['../namespaceIntVars.html#afdaa1b64a98a711870ca86f30e7963daa0468f4146b966163a1fe9f4f32a038c8',1,'IntVars::NumTypes()'],['../namespaceVars.html#a161eed9b529c2108b15a09099729c3b9a5deccaa24d5e74279425d7749f7d1494',1,'Vars::NumTypes()'],['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a6d1cade25038e11a813d4b72b651b04c',1,'WRFBdyVars::NumTypes()'],['../namespaceRealBdyVars.html#aa4743649b85ade11df23692d7c3947bda642348f19beb023be6cb81f253b41e7e',1,'RealBdyVars::NumTypes()'],['../namespaceBCVars.html#a00367571247ba920989360b94c156f4aa0b88b0a3a03a3e787a7b27717ec64de7',1,'BCVars::NumTypes()']]], + ['numvars_4616',['NumVars',['../namespaceLsmVar__MM5.html#a0c17a1ae9d9db120b8947e6da767cd3ba9295a4d95dbd36001a7b1beaa15e14b9',1,'LsmVar_MM5::NumVars()'],['../namespaceLsmVar__SLM.html#a9927bc85abdc2fa6040b222a6c1ddd91a46379e2639967ccb36fdea0aa7fbda61',1,'LsmVar_SLM::NumVars()'],['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476beacc0e3f4d1137cce9139f79959ac8542b',1,'MicVar_Kess::NumVars()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a0a8da919c111613d4806217dce5cd1e3',1,'MicVar::NumVars()']]], + ['nvars_4617',['nvars',['../DataStruct_8H.html#a3856c8a2f055327ada182186bfd70239a7c3c83d6fcec1f134956c3160adf6e39',1,'DataStruct.H']]], + ['nvars_5fsponge_4618',['nvars_sponge',['../DataStruct_8H.html#a5bebd9ff4e2455172deca3b399214fcba7f0566bdfe36c67d532a7e2aca33d9a4',1,'DataStruct.H']]] ]; diff --git a/search/enumvalues_d.js b/search/enumvalues_d.js index a5cd8a5cb2..b5357b890c 100644 --- a/search/enumvalues_d.js +++ b/search/enumvalues_d.js @@ -1,8 +1,8 @@ var searchData= [ - ['oldgoffgratch_4611',['OldGoffGratch',['../classSatMethods.html#a62096d95f324cd2a3504554437067ef7aebef486906cc4e78c948e4b43f6680db',1,'SatMethods']]], - ['omega_4612',['omega',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a40820295afd4707e596461de893e54ae',1,'MicVar']]], - ['oneway_4613',['OneWay',['../DataStruct_8H.html#ad285be248c0803917aaf5cf8ce62139ba8d892b915adb5e7c957f4425253ee1d6',1,'DataStruct.H']]], - ['open_4614',['open',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca2b4e1a73027449d9af83a25ed67ae914',1,'ERFBCType::open()'],['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9a7cef8a734855777c2a9d0caf42666e69',1,'open(): IndexDefines.H']]], - ['outflow_4615',['outflow',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9acac0c32caf84a889ec9b2b4cb2d56972',1,'IndexDefines.H']]] + ['oldgoffgratch_4619',['OldGoffGratch',['../classSatMethods.html#a62096d95f324cd2a3504554437067ef7aebef486906cc4e78c948e4b43f6680db',1,'SatMethods']]], + ['omega_4620',['omega',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a40820295afd4707e596461de893e54ae',1,'MicVar']]], + ['oneway_4621',['OneWay',['../DataStruct_8H.html#ad285be248c0803917aaf5cf8ce62139ba8d892b915adb5e7c957f4425253ee1d6',1,'DataStruct.H']]], + ['open_4622',['open',['../namespaceERFBCType.html#a40fbdd5a379a92debb4bcaaccac6e01ca2b4e1a73027449d9af83a25ed67ae914',1,'ERFBCType::open()'],['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9a7cef8a734855777c2a9d0caf42666e69',1,'open(): IndexDefines.H']]], + ['outflow_4623',['outflow',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9acac0c32caf84a889ec9b2b4cb2d56972',1,'IndexDefines.H']]] ]; diff --git a/search/enumvalues_e.js b/search/enumvalues_e.js index a19c173e6b..8b6538b6dc 100644 --- a/search/enumvalues_e.js +++ b/search/enumvalues_e.js @@ -1,11 +1,11 @@ var searchData= [ - ['pbl_5flengthscale_4616',['PBL_lengthscale',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea6a553b28d62930bdda7b473e28464b73',1,'EddyDiff']]], - ['pc_4617',['PC',['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a56079d34fee7d4d15412dfffaa370ad9',1,'WRFBdyVars']]], - ['pcinterp_4618',['PCInterp',['../namespaceInterpType.html#ac65aa6d3ffa2549732d15f959cff81aba6ece140c8e1d325d1a2b3615064284c3',1,'InterpType']]], - ['periodic_4619',['periodic',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9ae6ffdec5e14fce371eb7ae99edebbbee',1,'IndexDefines.H']]], - ['perturbdirect_4620',['perturbDirect',['../DataStruct_8H.html#a335364b39450e23bfefded6b7af8908ca22ff088526a64c994976d9a158972c69',1,'DataStruct.H']]], - ['perturbsource_4621',['perturbSource',['../DataStruct_8H.html#a335364b39450e23bfefded6b7af8908ca97033369409e3c8abdcb8026cf1bdcc8',1,'DataStruct.H']]], - ['pres_4622',['pres',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea82dd7c202e6cce14520ac01cfaa4f4ad',1,'MicVar_Kess::pres()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a147204d9af51dec01fb0d95c5cde8d37',1,'MicVar::pres()']]], - ['pressuregradient_4623',['PressureGradient',['../DataStruct_8H.html#a90da675b718151491fd0c934a0ad3ceba527d74300afe17c5171b0e5e015918e6',1,'DataStruct.H']]] + ['pbl_5flengthscale_4624',['PBL_lengthscale',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea6a553b28d62930bdda7b473e28464b73',1,'EddyDiff']]], + ['pc_4625',['PC',['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a56079d34fee7d4d15412dfffaa370ad9',1,'WRFBdyVars']]], + ['pcinterp_4626',['PCInterp',['../namespaceInterpType.html#ac65aa6d3ffa2549732d15f959cff81aba6ece140c8e1d325d1a2b3615064284c3',1,'InterpType']]], + ['periodic_4627',['periodic',['../IndexDefines_8H.html#adf340bf1893bad34b2bf452d987d86c9ae6ffdec5e14fce371eb7ae99edebbbee',1,'IndexDefines.H']]], + ['perturbdirect_4628',['perturbDirect',['../DataStruct_8H.html#a335364b39450e23bfefded6b7af8908ca22ff088526a64c994976d9a158972c69',1,'DataStruct.H']]], + ['perturbsource_4629',['perturbSource',['../DataStruct_8H.html#a335364b39450e23bfefded6b7af8908ca97033369409e3c8abdcb8026cf1bdcc8',1,'DataStruct.H']]], + ['pres_4630',['pres',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea82dd7c202e6cce14520ac01cfaa4f4ad',1,'MicVar_Kess::pres()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a147204d9af51dec01fb0d95c5cde8d37',1,'MicVar::pres()']]], + ['pressuregradient_4631',['PressureGradient',['../DataStruct_8H.html#a90da675b718151491fd0c934a0ad3ceba527d74300afe17c5171b0e5e015918e6',1,'DataStruct.H']]] ]; diff --git a/search/enumvalues_f.js b/search/enumvalues_f.js index 789474724f..a77cf7b9af 100644 --- a/search/enumvalues_f.js +++ b/search/enumvalues_f.js @@ -1,17 +1,17 @@ var searchData= [ - ['q_5fh_4624',['Q_h',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea5bdaa761454a0b6bbfd57ec7f2b41c8f',1,'EddyDiff']]], - ['q_5fv_4625',['Q_v',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea4166b9561a2ef0ad6d1b6d2c34cb9580',1,'EddyDiff']]], - ['qci_4626',['qci',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a1bb53b1131a676fadffc9e0a53c0309a',1,'MicVar']]], - ['qcl_4627',['qcl',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea6b81d3dc642e339490ef9ab50db41a65',1,'MicVar_Kess::qcl()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a9b5910b49731b9337307885dee73e090',1,'MicVar::qcl()']]], - ['qke_5fh_4628',['QKE_h',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149eafa82972314696da2709ea8ac9b63d963',1,'EddyDiff']]], - ['qke_5fv_4629',['QKE_v',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149eab74402005c035d247402e5f247827dcc',1,'EddyDiff']]], - ['qn_4630',['qn',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a62db2b95f840b974246d431152593fb8',1,'MicVar']]], - ['qp_4631',['qp',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea2edc86e05fd080c928faeb1f6f39c701',1,'MicVar_Kess::qp()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8af86a273a88ba038dd1ea798c51ebf8c4',1,'MicVar::qp()']]], - ['qpg_4632',['qpg',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a36203351003064cd3dfd2c84f66c0ea1',1,'MicVar']]], - ['qpr_4633',['qpr',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a1669c627fc476575ea3c391a275d8cd3',1,'MicVar']]], - ['qps_4634',['qps',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8ae960e0fe1fea5fc017938ab2b92757ed',1,'MicVar']]], - ['qt_4635',['qt',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea9f81c8a38dd25b5ae5821d48e8878b03',1,'MicVar_Kess::qt()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a584161f7272862cb35496c7560617286',1,'MicVar::qt()']]], - ['qv_4636',['qv',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476beaf099273d19f4b8cdca199c5177231e35',1,'MicVar_Kess::qv()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a24d3a4784c4c0b3c8ab827a784198261',1,'MicVar::qv()']]], - ['qv_4637',['QV',['../namespaceRealBdyVars.html#aa4743649b85ade11df23692d7c3947bda70da43bc7762a74b799365a54a1c1b2c',1,'RealBdyVars::QV()'],['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a3b5140db1e7e68b5103cb3372b24faf5',1,'WRFBdyVars::QV()'],['../namespaceMetGridBdyVars.html#a22bd27d0288d22c74bd7c0bb57b2b89fa7da9efd84268db8dc519ebf62f34c4c0',1,'MetGridBdyVars::QV()']]] + ['q_5fh_4632',['Q_h',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea5bdaa761454a0b6bbfd57ec7f2b41c8f',1,'EddyDiff']]], + ['q_5fv_4633',['Q_v',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149ea4166b9561a2ef0ad6d1b6d2c34cb9580',1,'EddyDiff']]], + ['qci_4634',['qci',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a1bb53b1131a676fadffc9e0a53c0309a',1,'MicVar']]], + ['qcl_4635',['qcl',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea6b81d3dc642e339490ef9ab50db41a65',1,'MicVar_Kess::qcl()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a9b5910b49731b9337307885dee73e090',1,'MicVar::qcl()']]], + ['qke_5fh_4636',['QKE_h',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149eafa82972314696da2709ea8ac9b63d963',1,'EddyDiff']]], + ['qke_5fv_4637',['QKE_v',['../namespaceEddyDiff.html#a7e7e94a6b49fe20d106a1ea7317d149eab74402005c035d247402e5f247827dcc',1,'EddyDiff']]], + ['qn_4638',['qn',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a62db2b95f840b974246d431152593fb8',1,'MicVar']]], + ['qp_4639',['qp',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea2edc86e05fd080c928faeb1f6f39c701',1,'MicVar_Kess::qp()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8af86a273a88ba038dd1ea798c51ebf8c4',1,'MicVar::qp()']]], + ['qpg_4640',['qpg',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a36203351003064cd3dfd2c84f66c0ea1',1,'MicVar']]], + ['qpr_4641',['qpr',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a1669c627fc476575ea3c391a275d8cd3',1,'MicVar']]], + ['qps_4642',['qps',['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8ae960e0fe1fea5fc017938ab2b92757ed',1,'MicVar']]], + ['qt_4643',['qt',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476bea9f81c8a38dd25b5ae5821d48e8878b03',1,'MicVar_Kess::qt()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a584161f7272862cb35496c7560617286',1,'MicVar::qt()']]], + ['qv_4644',['qv',['../namespaceMicVar__Kess.html#ad6f84c7e649afdd998b2f37ba87476beaf099273d19f4b8cdca199c5177231e35',1,'MicVar_Kess::qv()'],['../namespaceMicVar.html#a1609c4386a90fb1c27791fa3cd511fa8a24d3a4784c4c0b3c8ab827a784198261',1,'MicVar::qv()']]], + ['qv_4645',['QV',['../namespaceRealBdyVars.html#aa4743649b85ade11df23692d7c3947bda70da43bc7762a74b799365a54a1c1b2c',1,'RealBdyVars::QV()'],['../namespaceWRFBdyVars.html#a1582ccc8cbf6a14eab1a5fc48d404582a3b5140db1e7e68b5103cb3372b24faf5',1,'WRFBdyVars::QV()'],['../namespaceMetGridBdyVars.html#a22bd27d0288d22c74bd7c0bb57b2b89fa7da9efd84268db8dc519ebf62f34c4c0',1,'MetGridBdyVars::QV()']]] ]; diff --git a/search/files_0.js b/search/files_0.js index 66cdf0b30d..a767aa29de 100644 --- a/search/files_0.js +++ b/search/files_0.js @@ -1,20 +1,20 @@ var searchData= [ - ['ablmost_2ecpp_2452',['ABLMost.cpp',['../ABLMost_8cpp.html',1,'']]], - ['ablmost_2eh_2453',['ABLMost.H',['../ABLMost_8H.html',1,'']]], - ['advanceewp_2ecpp_2454',['AdvanceEWP.cpp',['../AdvanceEWP_8cpp.html',1,'']]], - ['advancefitch_2ecpp_2455',['AdvanceFitch.cpp',['../AdvanceFitch_8cpp.html',1,'']]], - ['advancesimplead_2ecpp_2456',['AdvanceSimpleAD.cpp',['../AdvanceSimpleAD_8cpp.html',1,'']]], - ['advection_2eh_2457',['Advection.H',['../Advection_8H.html',1,'']]], - ['advectionsrcformom_2ecpp_2458',['AdvectionSrcForMom.cpp',['../AdvectionSrcForMom_8cpp.html',1,'']]], - ['advectionsrcformom_5fn_2eh_2459',['AdvectionSrcForMom_N.H',['../AdvectionSrcForMom__N_8H.html',1,'']]], - ['advectionsrcformom_5ft_2eh_2460',['AdvectionSrcForMom_T.H',['../AdvectionSrcForMom__T_8H.html',1,'']]], - ['advectionsrcforopenbc_2ecpp_2461',['AdvectionSrcForOpenBC.cpp',['../AdvectionSrcForOpenBC_8cpp.html',1,'']]], - ['advectionsrcforscalars_2eh_2462',['AdvectionSrcForScalars.H',['../AdvectionSrcForScalars_8H.html',1,'']]], - ['advectionsrcforstate_2ecpp_2463',['AdvectionSrcForState.cpp',['../AdvectionSrcForState_8cpp.html',1,'']]], - ['advstruct_2eh_2464',['AdvStruct.H',['../AdvStruct_8H.html',1,'']]], - ['aero_5frad_5fprops_2ecpp_2465',['Aero_rad_props.cpp',['../Aero__rad__props_8cpp.html',1,'']]], - ['aero_5frad_5fprops_2eh_2466',['Aero_rad_props.H',['../Aero__rad__props_8H.html',1,'']]], - ['albedo_2ecpp_2467',['Albedo.cpp',['../Albedo_8cpp.html',1,'']]], - ['albedo_2eh_2468',['Albedo.H',['../Albedo_8H.html',1,'']]] + ['ablmost_2ecpp_2456',['ABLMost.cpp',['../ABLMost_8cpp.html',1,'']]], + ['ablmost_2eh_2457',['ABLMost.H',['../ABLMost_8H.html',1,'']]], + ['advanceewp_2ecpp_2458',['AdvanceEWP.cpp',['../AdvanceEWP_8cpp.html',1,'']]], + ['advancefitch_2ecpp_2459',['AdvanceFitch.cpp',['../AdvanceFitch_8cpp.html',1,'']]], + ['advancesimplead_2ecpp_2460',['AdvanceSimpleAD.cpp',['../AdvanceSimpleAD_8cpp.html',1,'']]], + ['advection_2eh_2461',['Advection.H',['../Advection_8H.html',1,'']]], + ['advectionsrcformom_2ecpp_2462',['AdvectionSrcForMom.cpp',['../AdvectionSrcForMom_8cpp.html',1,'']]], + ['advectionsrcformom_5fn_2eh_2463',['AdvectionSrcForMom_N.H',['../AdvectionSrcForMom__N_8H.html',1,'']]], + ['advectionsrcformom_5ft_2eh_2464',['AdvectionSrcForMom_T.H',['../AdvectionSrcForMom__T_8H.html',1,'']]], + ['advectionsrcforopenbc_2ecpp_2465',['AdvectionSrcForOpenBC.cpp',['../AdvectionSrcForOpenBC_8cpp.html',1,'']]], + ['advectionsrcforscalars_2eh_2466',['AdvectionSrcForScalars.H',['../AdvectionSrcForScalars_8H.html',1,'']]], + ['advectionsrcforstate_2ecpp_2467',['AdvectionSrcForState.cpp',['../AdvectionSrcForState_8cpp.html',1,'']]], + ['advstruct_2eh_2468',['AdvStruct.H',['../AdvStruct_8H.html',1,'']]], + ['aero_5frad_5fprops_2ecpp_2469',['Aero_rad_props.cpp',['../Aero__rad__props_8cpp.html',1,'']]], + ['aero_5frad_5fprops_2eh_2470',['Aero_rad_props.H',['../Aero__rad__props_8H.html',1,'']]], + ['albedo_2ecpp_2471',['Albedo.cpp',['../Albedo_8cpp.html',1,'']]], + ['albedo_2eh_2472',['Albedo.H',['../Albedo_8H.html',1,'']]] ]; diff --git a/search/files_1.js b/search/files_1.js index 09e28b0d5d..b0a9728d27 100644 --- a/search/files_1.js +++ b/search/files_1.js @@ -1,9 +1,9 @@ var searchData= [ - ['boundaryconditions_5fbndryreg_2ecpp_2469',['BoundaryConditions_bndryreg.cpp',['../BoundaryConditions__bndryreg_8cpp.html',1,'']]], - ['boundaryconditions_5fcons_2ecpp_2470',['BoundaryConditions_cons.cpp',['../BoundaryConditions__cons_8cpp.html',1,'']]], - ['boundaryconditions_5frealbdy_2ecpp_2471',['BoundaryConditions_realbdy.cpp',['../BoundaryConditions__realbdy_8cpp.html',1,'']]], - ['boundaryconditions_5fxvel_2ecpp_2472',['BoundaryConditions_xvel.cpp',['../BoundaryConditions__xvel_8cpp.html',1,'']]], - ['boundaryconditions_5fyvel_2ecpp_2473',['BoundaryConditions_yvel.cpp',['../BoundaryConditions__yvel_8cpp.html',1,'']]], - ['boundaryconditions_5fzvel_2ecpp_2474',['BoundaryConditions_zvel.cpp',['../BoundaryConditions__zvel_8cpp.html',1,'']]] + ['boundaryconditions_5fbndryreg_2ecpp_2473',['BoundaryConditions_bndryreg.cpp',['../BoundaryConditions__bndryreg_8cpp.html',1,'']]], + ['boundaryconditions_5fcons_2ecpp_2474',['BoundaryConditions_cons.cpp',['../BoundaryConditions__cons_8cpp.html',1,'']]], + ['boundaryconditions_5frealbdy_2ecpp_2475',['BoundaryConditions_realbdy.cpp',['../BoundaryConditions__realbdy_8cpp.html',1,'']]], + ['boundaryconditions_5fxvel_2ecpp_2476',['BoundaryConditions_xvel.cpp',['../BoundaryConditions__xvel_8cpp.html',1,'']]], + ['boundaryconditions_5fyvel_2ecpp_2477',['BoundaryConditions_yvel.cpp',['../BoundaryConditions__yvel_8cpp.html',1,'']]], + ['boundaryconditions_5fzvel_2ecpp_2478',['BoundaryConditions_zvel.cpp',['../BoundaryConditions__zvel_8cpp.html',1,'']]] ]; diff --git a/search/files_10.js b/search/files_10.js index 438fedcfe5..8821459263 100644 --- a/search/files_10.js +++ b/search/files_10.js @@ -1,17 +1,17 @@ var searchData= [ - ['terrainif_2eh_2653',['TerrainIF.H',['../TerrainIF_8H.html',1,'']]], - ['terrainmetrics_2ecpp_2654',['TerrainMetrics.cpp',['../TerrainMetrics_8cpp.html',1,'']]], - ['terrainmetrics_2eh_2655',['TerrainMetrics.H',['../TerrainMetrics_8H.html',1,'']]], - ['ti_5ffast_5fheaders_2eh_2656',['TI_fast_headers.H',['../TI__fast__headers_8H.html',1,'']]], - ['ti_5ffast_5frhs_5ffun_2eh_2657',['TI_fast_rhs_fun.H',['../TI__fast__rhs__fun_8H.html',1,'']]], - ['ti_5fno_5fsubstep_5ffun_2eh_2658',['TI_no_substep_fun.H',['../TI__no__substep__fun_8H.html',1,'']]], - ['ti_5fslow_5fheaders_2eh_2659',['TI_slow_headers.H',['../TI__slow__headers_8H.html',1,'']]], - ['ti_5fslow_5frhs_5ffun_2eh_2660',['TI_slow_rhs_fun.H',['../TI__slow__rhs__fun_8H.html',1,'']]], - ['ti_5futils_2eh_2661',['TI_utils.H',['../TI__utils_8H.html',1,'']]], - ['tilenoz_2eh_2662',['TileNoZ.H',['../TileNoZ_8H.html',1,'']]], - ['time_5favg_5fvel_2ecpp_2663',['Time_Avg_Vel.cpp',['../Time__Avg__Vel_8cpp.html',1,'']]], - ['timeinterpolateddata_2eh_2664',['TimeInterpolatedData.H',['../TimeInterpolatedData_8H.html',1,'']]], - ['turbpertstruct_2eh_2665',['TurbPertStruct.H',['../TurbPertStruct_8H.html',1,'']]], - ['turbstruct_2eh_2666',['TurbStruct.H',['../TurbStruct_8H.html',1,'']]] + ['terrainif_2eh_2657',['TerrainIF.H',['../TerrainIF_8H.html',1,'']]], + ['terrainmetrics_2ecpp_2658',['TerrainMetrics.cpp',['../TerrainMetrics_8cpp.html',1,'']]], + ['terrainmetrics_2eh_2659',['TerrainMetrics.H',['../TerrainMetrics_8H.html',1,'']]], + ['ti_5ffast_5fheaders_2eh_2660',['TI_fast_headers.H',['../TI__fast__headers_8H.html',1,'']]], + ['ti_5ffast_5frhs_5ffun_2eh_2661',['TI_fast_rhs_fun.H',['../TI__fast__rhs__fun_8H.html',1,'']]], + ['ti_5fno_5fsubstep_5ffun_2eh_2662',['TI_no_substep_fun.H',['../TI__no__substep__fun_8H.html',1,'']]], + ['ti_5fslow_5fheaders_2eh_2663',['TI_slow_headers.H',['../TI__slow__headers_8H.html',1,'']]], + ['ti_5fslow_5frhs_5ffun_2eh_2664',['TI_slow_rhs_fun.H',['../TI__slow__rhs__fun_8H.html',1,'']]], + ['ti_5futils_2eh_2665',['TI_utils.H',['../TI__utils_8H.html',1,'']]], + ['tilenoz_2eh_2666',['TileNoZ.H',['../TileNoZ_8H.html',1,'']]], + ['time_5favg_5fvel_2ecpp_2667',['Time_Avg_Vel.cpp',['../Time__Avg__Vel_8cpp.html',1,'']]], + ['timeinterpolateddata_2eh_2668',['TimeInterpolatedData.H',['../TimeInterpolatedData_8H.html',1,'']]], + ['turbpertstruct_2eh_2669',['TurbPertStruct.H',['../TurbPertStruct_8H.html',1,'']]], + ['turbstruct_2eh_2670',['TurbStruct.H',['../TurbStruct_8H.html',1,'']]] ]; diff --git a/search/files_11.js b/search/files_11.js index 053d134dd7..e0e528d284 100644 --- a/search/files_11.js +++ b/search/files_11.js @@ -1,6 +1,6 @@ var searchData= [ - ['update_5fkessler_2ecpp_2667',['Update_Kessler.cpp',['../Update__Kessler_8cpp.html',1,'']]], - ['update_5fsam_2ecpp_2668',['Update_SAM.cpp',['../Update__SAM_8cpp.html',1,'']]], - ['utils_2eh_2669',['Utils.H',['../Utils_8H.html',1,'']]] + ['update_5fkessler_2ecpp_2671',['Update_Kessler.cpp',['../Update__Kessler_8cpp.html',1,'']]], + ['update_5fsam_2ecpp_2672',['Update_SAM.cpp',['../Update__SAM_8cpp.html',1,'']]], + ['utils_2eh_2673',['Utils.H',['../Utils_8H.html',1,'']]] ]; diff --git a/search/files_12.js b/search/files_12.js index 14b7389cbb..5aef55560e 100644 --- a/search/files_12.js +++ b/search/files_12.js @@ -1,4 +1,4 @@ var searchData= [ - ['velocitytomomentum_2ecpp_2670',['VelocityToMomentum.cpp',['../VelocityToMomentum_8cpp.html',1,'']]] + ['velocitytomomentum_2ecpp_2674',['VelocityToMomentum.cpp',['../VelocityToMomentum_8cpp.html',1,'']]] ]; diff --git a/search/files_13.js b/search/files_13.js index 805a852368..222703871d 100644 --- a/search/files_13.js +++ b/search/files_13.js @@ -1,7 +1,7 @@ var searchData= [ - ['water_5fvapor_5fsaturation_2eh_2671',['Water_vapor_saturation.H',['../Water__vapor__saturation_8H.html',1,'']]], - ['windfarm_2eh_2672',['WindFarm.H',['../WindFarm_8H.html',1,'']]], - ['writeebsurface_2ecpp_2673',['writeEBsurface.cpp',['../writeEBsurface_8cpp.html',1,'']]], - ['writejobinfo_2ecpp_2674',['writeJobInfo.cpp',['../writeJobInfo_8cpp.html',1,'']]] + ['water_5fvapor_5fsaturation_2eh_2675',['Water_vapor_saturation.H',['../Water__vapor__saturation_8H.html',1,'']]], + ['windfarm_2eh_2676',['WindFarm.H',['../WindFarm_8H.html',1,'']]], + ['writeebsurface_2ecpp_2677',['writeEBsurface.cpp',['../writeEBsurface_8cpp.html',1,'']]], + ['writejobinfo_2ecpp_2678',['writeJobInfo.cpp',['../writeJobInfo_8cpp.html',1,'']]] ]; diff --git a/search/files_2.js b/search/files_2.js index 6bd3b72351..0b1b2b0b38 100644 --- a/search/files_2.js +++ b/search/files_2.js @@ -1,13 +1,13 @@ var searchData= [ - ['checkpoint_2ecpp_2475',['Checkpoint.cpp',['../Checkpoint_8cpp.html',1,'']]], - ['cloud_5frad_5fprops_2ecpp_2476',['Cloud_rad_props.cpp',['../Cloud__rad__props_8cpp.html',1,'']]], - ['cloud_5frad_5fprops_2eh_2477',['Cloud_rad_props.H',['../Cloud__rad__props_8H.html',1,'']]], - ['cloud_5fsam_2ecpp_2478',['Cloud_SAM.cpp',['../Cloud__SAM_8cpp.html',1,'']]], - ['computestrain_5fn_2ecpp_2479',['ComputeStrain_N.cpp',['../ComputeStrain__N_8cpp.html',1,'']]], - ['computestrain_5ft_2ecpp_2480',['ComputeStrain_T.cpp',['../ComputeStrain__T_8cpp.html',1,'']]], - ['computestress_5fn_2ecpp_2481',['ComputeStress_N.cpp',['../ComputeStress__N_8cpp.html',1,'']]], - ['computestress_5ft_2ecpp_2482',['ComputeStress_T.cpp',['../ComputeStress__T_8cpp.html',1,'']]], - ['computeturbulentviscosity_2ecpp_2483',['ComputeTurbulentViscosity.cpp',['../ComputeTurbulentViscosity_8cpp.html',1,'']]], - ['console_5fio_2ecpp_2484',['console_io.cpp',['../console__io_8cpp.html',1,'']]] + ['checkpoint_2ecpp_2479',['Checkpoint.cpp',['../Checkpoint_8cpp.html',1,'']]], + ['cloud_5frad_5fprops_2ecpp_2480',['Cloud_rad_props.cpp',['../Cloud__rad__props_8cpp.html',1,'']]], + ['cloud_5frad_5fprops_2eh_2481',['Cloud_rad_props.H',['../Cloud__rad__props_8H.html',1,'']]], + ['cloud_5fsam_2ecpp_2482',['Cloud_SAM.cpp',['../Cloud__SAM_8cpp.html',1,'']]], + ['computestrain_5fn_2ecpp_2483',['ComputeStrain_N.cpp',['../ComputeStrain__N_8cpp.html',1,'']]], + ['computestrain_5ft_2ecpp_2484',['ComputeStrain_T.cpp',['../ComputeStrain__T_8cpp.html',1,'']]], + ['computestress_5fn_2ecpp_2485',['ComputeStress_N.cpp',['../ComputeStress__N_8cpp.html',1,'']]], + ['computestress_5ft_2ecpp_2486',['ComputeStress_T.cpp',['../ComputeStress__T_8cpp.html',1,'']]], + ['computeturbulentviscosity_2ecpp_2487',['ComputeTurbulentViscosity.cpp',['../ComputeTurbulentViscosity_8cpp.html',1,'']]], + ['console_5fio_2ecpp_2488',['console_io.cpp',['../console__io_8cpp.html',1,'']]] ]; diff --git a/search/files_3.js b/search/files_3.js index ce61eb8a26..d4da4a5c2c 100644 --- a/search/files_3.js +++ b/search/files_3.js @@ -1,13 +1,13 @@ var searchData= [ - ['datastruct_2eh_2485',['DataStruct.H',['../DataStruct_8H.html',1,'']]], - ['derive_2ecpp_2486',['Derive.cpp',['../Derive_8cpp.html',1,'']]], - ['derive_2eh_2487',['Derive.H',['../Derive_8H.html',1,'']]], - ['diffstruct_2eh_2488',['DiffStruct.H',['../DiffStruct_8H.html',1,'']]], - ['diffusion_2eh_2489',['Diffusion.H',['../Diffusion_8H.html',1,'']]], - ['diffusionsrcformom_5fn_2ecpp_2490',['DiffusionSrcForMom_N.cpp',['../DiffusionSrcForMom__N_8cpp.html',1,'']]], - ['diffusionsrcformom_5ft_2ecpp_2491',['DiffusionSrcForMom_T.cpp',['../DiffusionSrcForMom__T_8cpp.html',1,'']]], - ['diffusionsrcforstate_5fn_2ecpp_2492',['DiffusionSrcForState_N.cpp',['../DiffusionSrcForState__N_8cpp.html',1,'']]], - ['diffusionsrcforstate_5ft_2ecpp_2493',['DiffusionSrcForState_T.cpp',['../DiffusionSrcForState__T_8cpp.html',1,'']]], - ['directionselector_2eh_2494',['DirectionSelector.H',['../DirectionSelector_8H.html',1,'']]] + ['datastruct_2eh_2489',['DataStruct.H',['../DataStruct_8H.html',1,'']]], + ['derive_2ecpp_2490',['Derive.cpp',['../Derive_8cpp.html',1,'']]], + ['derive_2eh_2491',['Derive.H',['../Derive_8H.html',1,'']]], + ['diffstruct_2eh_2492',['DiffStruct.H',['../DiffStruct_8H.html',1,'']]], + ['diffusion_2eh_2493',['Diffusion.H',['../Diffusion_8H.html',1,'']]], + ['diffusionsrcformom_5fn_2ecpp_2494',['DiffusionSrcForMom_N.cpp',['../DiffusionSrcForMom__N_8cpp.html',1,'']]], + ['diffusionsrcformom_5ft_2ecpp_2495',['DiffusionSrcForMom_T.cpp',['../DiffusionSrcForMom__T_8cpp.html',1,'']]], + ['diffusionsrcforstate_5fn_2ecpp_2496',['DiffusionSrcForState_N.cpp',['../DiffusionSrcForState__N_8cpp.html',1,'']]], + ['diffusionsrcforstate_5ft_2ecpp_2497',['DiffusionSrcForState_T.cpp',['../DiffusionSrcForState__T_8cpp.html',1,'']]], + ['directionselector_2eh_2498',['DirectionSelector.H',['../DirectionSelector_8H.html',1,'']]] ]; diff --git a/search/files_4.js b/search/files_4.js index f4deabdf45..4e201653c9 100644 --- a/search/files_4.js +++ b/search/files_4.js @@ -1,71 +1,71 @@ var searchData= [ - ['eb_5fbox_2ecpp_2495',['eb_box.cpp',['../eb__box_8cpp.html',1,'']]], - ['eb_5fcylinder_2ecpp_2496',['eb_cylinder.cpp',['../eb__cylinder_8cpp.html',1,'']]], - ['eb_5fif_2eh_2497',['eb_if.H',['../eb__if_8H.html',1,'']]], - ['eb_5fregular_2ecpp_2498',['eb_regular.cpp',['../eb__regular_8cpp.html',1,'']]], - ['ebert_5fcurry_2eh_2499',['Ebert_curry.H',['../Ebert__curry_8H.html',1,'']]], - ['eddyviscosity_2eh_2500',['EddyViscosity.H',['../EddyViscosity_8H.html',1,'']]], - ['eos_2eh_2501',['EOS.H',['../EOS_8H.html',1,'']]], - ['erf_2ecpp_2502',['ERF.cpp',['../ERF_8cpp.html',1,'']]], - ['erf_2eh_2503',['ERF.H',['../ERF_8H.html',1,'']]], - ['erf_5fadd_5fthin_5fbody_5fsources_2ecpp_2504',['ERF_add_thin_body_sources.cpp',['../ERF__add__thin__body__sources_8cpp.html',1,'']]], - ['erf_5fadvance_2ecpp_2505',['ERF_Advance.cpp',['../ERF__Advance_8cpp.html',1,'']]], - ['erf_5fadvance_5fdycore_2ecpp_2506',['ERF_advance_dycore.cpp',['../ERF__advance__dycore_8cpp.html',1,'']]], - ['erf_5fadvance_5flsm_2ecpp_2507',['ERF_advance_lsm.cpp',['../ERF__advance__lsm_8cpp.html',1,'']]], - ['erf_5fadvance_5fmicrophysics_2ecpp_2508',['ERF_advance_microphysics.cpp',['../ERF__advance__microphysics_8cpp.html',1,'']]], - ['erf_5fadvance_5fradiation_2ecpp_2509',['ERF_advance_radiation.cpp',['../ERF__advance__radiation_8cpp.html',1,'']]], - ['erf_5fapplyspongezonebcs_2ecpp_2510',['ERF_ApplySpongeZoneBCs.cpp',['../ERF__ApplySpongeZoneBCs_8cpp.html',1,'']]], - ['erf_5fapplyspongezonebcs_5freadfromfile_2ecpp_2511',['ERF_ApplySpongeZoneBCs_ReadFromFile.cpp',['../ERF__ApplySpongeZoneBCs__ReadFromFile_8cpp.html',1,'']]], - ['erf_5fcomputetimestep_2ecpp_2512',['ERF_ComputeTimestep.cpp',['../ERF__ComputeTimestep_8cpp.html',1,'']]], - ['erf_5fconstants_2eh_2513',['ERF_Constants.H',['../ERF__Constants_8H.html',1,'']]], - ['erf_5ffast_5frhs_5fmt_2ecpp_2514',['ERF_fast_rhs_MT.cpp',['../ERF__fast__rhs__MT_8cpp.html',1,'']]], - ['erf_5ffast_5frhs_5fn_2ecpp_2515',['ERF_fast_rhs_N.cpp',['../ERF__fast__rhs__N_8cpp.html',1,'']]], - ['erf_5ffast_5frhs_5ft_2ecpp_2516',['ERF_fast_rhs_T.cpp',['../ERF__fast__rhs__T_8cpp.html',1,'']]], - ['erf_5ffillpatch_2ecpp_2517',['ERF_FillPatch.cpp',['../ERF__FillPatch_8cpp.html',1,'']]], - ['erf_5ffillpatcher_2ecpp_2518',['ERF_FillPatcher.cpp',['../ERF__FillPatcher_8cpp.html',1,'']]], - ['erf_5ffillpatcher_2eh_2519',['ERF_FillPatcher.H',['../ERF__FillPatcher_8H.html',1,'']]], - ['erf_5finit1d_2ecpp_2520',['ERF_init1d.cpp',['../ERF__init1d_8cpp.html',1,'']]], - ['erf_5finit_5fbcs_2ecpp_2521',['ERF_init_bcs.cpp',['../ERF__init__bcs_8cpp.html',1,'']]], - ['erf_5finit_5fcustom_2ecpp_2522',['ERF_init_custom.cpp',['../ERF__init__custom_8cpp.html',1,'']]], - ['erf_5finit_5ffrom_5fhse_2ecpp_2523',['ERF_init_from_hse.cpp',['../ERF__init__from__hse_8cpp.html',1,'']]], - ['erf_5finit_5ffrom_5finput_5fsounding_2ecpp_2524',['ERF_init_from_input_sounding.cpp',['../ERF__init__from__input__sounding_8cpp.html',1,'']]], - ['erf_5finit_5ffrom_5fmetgrid_2ecpp_2525',['ERF_init_from_metgrid.cpp',['../ERF__init__from__metgrid_8cpp.html',1,'']]], - ['erf_5finit_5ffrom_5fwrfinput_2ecpp_2526',['ERF_init_from_wrfinput.cpp',['../ERF__init__from__wrfinput_8cpp.html',1,'']]], - ['erf_5finit_5fturbpert_2ecpp_2527',['ERF_init_TurbPert.cpp',['../ERF__init__TurbPert_8cpp.html',1,'']]], - ['erf_5finit_5funiform_2ecpp_2528',['ERF_init_uniform.cpp',['../ERF__init__uniform_8cpp.html',1,'']]], - ['erf_5finit_5fwindfarm_2ecpp_2529',['ERF_init_windfarm.cpp',['../ERF__init__windfarm_8cpp.html',1,'']]], - ['erf_5finput_5fsponge_2ecpp_2530',['ERF_input_sponge.cpp',['../ERF__input__sponge_8cpp.html',1,'']]], - ['erf_5fmake_5fbuoyancy_2ecpp_2531',['ERF_make_buoyancy.cpp',['../ERF__make__buoyancy_8cpp.html',1,'']]], - ['erf_5fmake_5ffast_5fcoeffs_2ecpp_2532',['ERF_make_fast_coeffs.cpp',['../ERF__make__fast__coeffs_8cpp.html',1,'']]], - ['erf_5fmake_5fmom_5fsources_2ecpp_2533',['ERF_make_mom_sources.cpp',['../ERF__make__mom__sources_8cpp.html',1,'']]], - ['erf_5fmake_5fnew_5farrays_2ecpp_2534',['ERF_make_new_arrays.cpp',['../ERF__make__new__arrays_8cpp.html',1,'']]], - ['erf_5fmake_5fnew_5flevel_2ecpp_2535',['ERF_make_new_level.cpp',['../ERF__make__new__level_8cpp.html',1,'']]], - ['erf_5fmake_5fsources_2ecpp_2536',['ERF_make_sources.cpp',['../ERF__make__sources_8cpp.html',1,'']]], - ['erf_5fmake_5ftau_5fterms_2ecpp_2537',['ERF_make_tau_terms.cpp',['../ERF__make__tau__terms_8cpp.html',1,'']]], - ['erf_5fmoist_5fset_5frhs_2ecpp_2538',['ERF_moist_set_rhs.cpp',['../ERF__moist__set__rhs_8cpp.html',1,'']]], - ['erf_5fmri_2eh_2539',['ERF_MRI.H',['../ERF__MRI_8H.html',1,'']]], - ['erf_5fphysbcfunct_2ecpp_2540',['ERF_PhysBCFunct.cpp',['../ERF__PhysBCFunct_8cpp.html',1,'']]], - ['erf_5fphysbcfunct_2eh_2541',['ERF_PhysBCFunct.H',['../ERF__PhysBCFunct_8H.html',1,'']]], - ['erf_5fpoissonsolve_2ecpp_2542',['ERF_PoissonSolve.cpp',['../ERF__PoissonSolve_8cpp.html',1,'']]], - ['erf_5fpoissonsolve_5ftb_2ecpp_2543',['ERF_PoissonSolve_tb.cpp',['../ERF__PoissonSolve__tb_8cpp.html',1,'']]], - ['erf_5fread_5fwaves_2ecpp_2544',['ERF_read_waves.cpp',['../ERF__read__waves_8cpp.html',1,'']]], - ['erf_5freadbndryplanes_2ecpp_2545',['ERF_ReadBndryPlanes.cpp',['../ERF__ReadBndryPlanes_8cpp.html',1,'']]], - ['erf_5freadbndryplanes_2eh_2546',['ERF_ReadBndryPlanes.H',['../ERF__ReadBndryPlanes_8H.html',1,'']]], - ['erf_5fslow_5frhs_5fpost_2ecpp_2547',['ERF_slow_rhs_post.cpp',['../ERF__slow__rhs__post_8cpp.html',1,'']]], - ['erf_5fslow_5frhs_5fpre_2ecpp_2548',['ERF_slow_rhs_pre.cpp',['../ERF__slow__rhs__pre_8cpp.html',1,'']]], - ['erf_5ftagging_2ecpp_2549',['ERF_Tagging.cpp',['../ERF__Tagging_8cpp.html',1,'']]], - ['erf_5ftimestep_2ecpp_2550',['ERF_TimeStep.cpp',['../ERF__TimeStep_8cpp.html',1,'']]], - ['erf_5fwrite1dprofiles_2ecpp_2551',['ERF_Write1DProfiles.cpp',['../ERF__Write1DProfiles_8cpp.html',1,'']]], - ['erf_5fwrite1dprofiles_5fstag_2ecpp_2552',['ERF_Write1DProfiles_stag.cpp',['../ERF__Write1DProfiles__stag_8cpp.html',1,'']]], - ['erf_5fwritebndryplanes_2ecpp_2553',['ERF_WriteBndryPlanes.cpp',['../ERF__WriteBndryPlanes_8cpp.html',1,'']]], - ['erf_5fwritebndryplanes_2eh_2554',['ERF_WriteBndryPlanes.H',['../ERF__WriteBndryPlanes_8H.html',1,'']]], - ['erf_5fwritescalarprofiles_2ecpp_2555',['ERF_WriteScalarProfiles.cpp',['../ERF__WriteScalarProfiles_8cpp.html',1,'']]], - ['erfpc_2eh_2556',['ERFPC.H',['../ERFPC_8H.html',1,'']]], - ['erfpcevolve_2ecpp_2557',['ERFPCEvolve.cpp',['../ERFPCEvolve_8cpp.html',1,'']]], - ['erfpcinitializations_2ecpp_2558',['ERFPCInitializations.cpp',['../ERFPCInitializations_8cpp.html',1,'']]], - ['erfpcutils_2ecpp_2559',['ERFPCUtils.cpp',['../ERFPCUtils_8cpp.html',1,'']]], - ['erftracers_2ecpp_2560',['ERFTracers.cpp',['../ERFTracers_8cpp.html',1,'']]], - ['eulerianmicrophysics_2eh_2561',['EulerianMicrophysics.H',['../EulerianMicrophysics_8H.html',1,'']]], - ['ewp_2eh_2562',['EWP.H',['../EWP_8H.html',1,'']]] + ['eb_5fbox_2ecpp_2499',['eb_box.cpp',['../eb__box_8cpp.html',1,'']]], + ['eb_5fcylinder_2ecpp_2500',['eb_cylinder.cpp',['../eb__cylinder_8cpp.html',1,'']]], + ['eb_5fif_2eh_2501',['eb_if.H',['../eb__if_8H.html',1,'']]], + ['eb_5fregular_2ecpp_2502',['eb_regular.cpp',['../eb__regular_8cpp.html',1,'']]], + ['ebert_5fcurry_2eh_2503',['Ebert_curry.H',['../Ebert__curry_8H.html',1,'']]], + ['eddyviscosity_2eh_2504',['EddyViscosity.H',['../EddyViscosity_8H.html',1,'']]], + ['eos_2eh_2505',['EOS.H',['../EOS_8H.html',1,'']]], + ['erf_2ecpp_2506',['ERF.cpp',['../ERF_8cpp.html',1,'']]], + ['erf_2eh_2507',['ERF.H',['../ERF_8H.html',1,'']]], + ['erf_5fadd_5fthin_5fbody_5fsources_2ecpp_2508',['ERF_add_thin_body_sources.cpp',['../ERF__add__thin__body__sources_8cpp.html',1,'']]], + ['erf_5fadvance_2ecpp_2509',['ERF_Advance.cpp',['../ERF__Advance_8cpp.html',1,'']]], + ['erf_5fadvance_5fdycore_2ecpp_2510',['ERF_advance_dycore.cpp',['../ERF__advance__dycore_8cpp.html',1,'']]], + ['erf_5fadvance_5flsm_2ecpp_2511',['ERF_advance_lsm.cpp',['../ERF__advance__lsm_8cpp.html',1,'']]], + ['erf_5fadvance_5fmicrophysics_2ecpp_2512',['ERF_advance_microphysics.cpp',['../ERF__advance__microphysics_8cpp.html',1,'']]], + ['erf_5fadvance_5fradiation_2ecpp_2513',['ERF_advance_radiation.cpp',['../ERF__advance__radiation_8cpp.html',1,'']]], + ['erf_5fapplyspongezonebcs_2ecpp_2514',['ERF_ApplySpongeZoneBCs.cpp',['../ERF__ApplySpongeZoneBCs_8cpp.html',1,'']]], + ['erf_5fapplyspongezonebcs_5freadfromfile_2ecpp_2515',['ERF_ApplySpongeZoneBCs_ReadFromFile.cpp',['../ERF__ApplySpongeZoneBCs__ReadFromFile_8cpp.html',1,'']]], + ['erf_5fcomputetimestep_2ecpp_2516',['ERF_ComputeTimestep.cpp',['../ERF__ComputeTimestep_8cpp.html',1,'']]], + ['erf_5fconstants_2eh_2517',['ERF_Constants.H',['../ERF__Constants_8H.html',1,'']]], + ['erf_5ffast_5frhs_5fmt_2ecpp_2518',['ERF_fast_rhs_MT.cpp',['../ERF__fast__rhs__MT_8cpp.html',1,'']]], + ['erf_5ffast_5frhs_5fn_2ecpp_2519',['ERF_fast_rhs_N.cpp',['../ERF__fast__rhs__N_8cpp.html',1,'']]], + ['erf_5ffast_5frhs_5ft_2ecpp_2520',['ERF_fast_rhs_T.cpp',['../ERF__fast__rhs__T_8cpp.html',1,'']]], + ['erf_5ffillpatch_2ecpp_2521',['ERF_FillPatch.cpp',['../ERF__FillPatch_8cpp.html',1,'']]], + ['erf_5ffillpatcher_2ecpp_2522',['ERF_FillPatcher.cpp',['../ERF__FillPatcher_8cpp.html',1,'']]], + ['erf_5ffillpatcher_2eh_2523',['ERF_FillPatcher.H',['../ERF__FillPatcher_8H.html',1,'']]], + ['erf_5finit1d_2ecpp_2524',['ERF_init1d.cpp',['../ERF__init1d_8cpp.html',1,'']]], + ['erf_5finit_5fbcs_2ecpp_2525',['ERF_init_bcs.cpp',['../ERF__init__bcs_8cpp.html',1,'']]], + ['erf_5finit_5fcustom_2ecpp_2526',['ERF_init_custom.cpp',['../ERF__init__custom_8cpp.html',1,'']]], + ['erf_5finit_5ffrom_5fhse_2ecpp_2527',['ERF_init_from_hse.cpp',['../ERF__init__from__hse_8cpp.html',1,'']]], + ['erf_5finit_5ffrom_5finput_5fsounding_2ecpp_2528',['ERF_init_from_input_sounding.cpp',['../ERF__init__from__input__sounding_8cpp.html',1,'']]], + ['erf_5finit_5ffrom_5fmetgrid_2ecpp_2529',['ERF_init_from_metgrid.cpp',['../ERF__init__from__metgrid_8cpp.html',1,'']]], + ['erf_5finit_5ffrom_5fwrfinput_2ecpp_2530',['ERF_init_from_wrfinput.cpp',['../ERF__init__from__wrfinput_8cpp.html',1,'']]], + ['erf_5finit_5fturbpert_2ecpp_2531',['ERF_init_TurbPert.cpp',['../ERF__init__TurbPert_8cpp.html',1,'']]], + ['erf_5finit_5funiform_2ecpp_2532',['ERF_init_uniform.cpp',['../ERF__init__uniform_8cpp.html',1,'']]], + ['erf_5finit_5fwindfarm_2ecpp_2533',['ERF_init_windfarm.cpp',['../ERF__init__windfarm_8cpp.html',1,'']]], + ['erf_5finput_5fsponge_2ecpp_2534',['ERF_input_sponge.cpp',['../ERF__input__sponge_8cpp.html',1,'']]], + ['erf_5fmake_5fbuoyancy_2ecpp_2535',['ERF_make_buoyancy.cpp',['../ERF__make__buoyancy_8cpp.html',1,'']]], + ['erf_5fmake_5ffast_5fcoeffs_2ecpp_2536',['ERF_make_fast_coeffs.cpp',['../ERF__make__fast__coeffs_8cpp.html',1,'']]], + ['erf_5fmake_5fmom_5fsources_2ecpp_2537',['ERF_make_mom_sources.cpp',['../ERF__make__mom__sources_8cpp.html',1,'']]], + ['erf_5fmake_5fnew_5farrays_2ecpp_2538',['ERF_make_new_arrays.cpp',['../ERF__make__new__arrays_8cpp.html',1,'']]], + ['erf_5fmake_5fnew_5flevel_2ecpp_2539',['ERF_make_new_level.cpp',['../ERF__make__new__level_8cpp.html',1,'']]], + ['erf_5fmake_5fsources_2ecpp_2540',['ERF_make_sources.cpp',['../ERF__make__sources_8cpp.html',1,'']]], + ['erf_5fmake_5ftau_5fterms_2ecpp_2541',['ERF_make_tau_terms.cpp',['../ERF__make__tau__terms_8cpp.html',1,'']]], + ['erf_5fmoist_5fset_5frhs_2ecpp_2542',['ERF_moist_set_rhs.cpp',['../ERF__moist__set__rhs_8cpp.html',1,'']]], + ['erf_5fmri_2eh_2543',['ERF_MRI.H',['../ERF__MRI_8H.html',1,'']]], + ['erf_5fphysbcfunct_2ecpp_2544',['ERF_PhysBCFunct.cpp',['../ERF__PhysBCFunct_8cpp.html',1,'']]], + ['erf_5fphysbcfunct_2eh_2545',['ERF_PhysBCFunct.H',['../ERF__PhysBCFunct_8H.html',1,'']]], + ['erf_5fpoissonsolve_2ecpp_2546',['ERF_PoissonSolve.cpp',['../ERF__PoissonSolve_8cpp.html',1,'']]], + ['erf_5fpoissonsolve_5ftb_2ecpp_2547',['ERF_PoissonSolve_tb.cpp',['../ERF__PoissonSolve__tb_8cpp.html',1,'']]], + ['erf_5fread_5fwaves_2ecpp_2548',['ERF_read_waves.cpp',['../ERF__read__waves_8cpp.html',1,'']]], + ['erf_5freadbndryplanes_2ecpp_2549',['ERF_ReadBndryPlanes.cpp',['../ERF__ReadBndryPlanes_8cpp.html',1,'']]], + ['erf_5freadbndryplanes_2eh_2550',['ERF_ReadBndryPlanes.H',['../ERF__ReadBndryPlanes_8H.html',1,'']]], + ['erf_5fslow_5frhs_5fpost_2ecpp_2551',['ERF_slow_rhs_post.cpp',['../ERF__slow__rhs__post_8cpp.html',1,'']]], + ['erf_5fslow_5frhs_5fpre_2ecpp_2552',['ERF_slow_rhs_pre.cpp',['../ERF__slow__rhs__pre_8cpp.html',1,'']]], + ['erf_5ftagging_2ecpp_2553',['ERF_Tagging.cpp',['../ERF__Tagging_8cpp.html',1,'']]], + ['erf_5ftimestep_2ecpp_2554',['ERF_TimeStep.cpp',['../ERF__TimeStep_8cpp.html',1,'']]], + ['erf_5fwrite1dprofiles_2ecpp_2555',['ERF_Write1DProfiles.cpp',['../ERF__Write1DProfiles_8cpp.html',1,'']]], + ['erf_5fwrite1dprofiles_5fstag_2ecpp_2556',['ERF_Write1DProfiles_stag.cpp',['../ERF__Write1DProfiles__stag_8cpp.html',1,'']]], + ['erf_5fwritebndryplanes_2ecpp_2557',['ERF_WriteBndryPlanes.cpp',['../ERF__WriteBndryPlanes_8cpp.html',1,'']]], + ['erf_5fwritebndryplanes_2eh_2558',['ERF_WriteBndryPlanes.H',['../ERF__WriteBndryPlanes_8H.html',1,'']]], + ['erf_5fwritescalarprofiles_2ecpp_2559',['ERF_WriteScalarProfiles.cpp',['../ERF__WriteScalarProfiles_8cpp.html',1,'']]], + ['erfpc_2eh_2560',['ERFPC.H',['../ERFPC_8H.html',1,'']]], + ['erfpcevolve_2ecpp_2561',['ERFPCEvolve.cpp',['../ERFPCEvolve_8cpp.html',1,'']]], + ['erfpcinitializations_2ecpp_2562',['ERFPCInitializations.cpp',['../ERFPCInitializations_8cpp.html',1,'']]], + ['erfpcutils_2ecpp_2563',['ERFPCUtils.cpp',['../ERFPCUtils_8cpp.html',1,'']]], + ['erftracers_2ecpp_2564',['ERFTracers.cpp',['../ERFTracers_8cpp.html',1,'']]], + ['eulerianmicrophysics_2eh_2565',['EulerianMicrophysics.H',['../EulerianMicrophysics_8H.html',1,'']]], + ['ewp_2eh_2566',['EWP.H',['../EWP_8H.html',1,'']]] ]; diff --git a/search/files_5.js b/search/files_5.js index cc5d3b7d61..e9c9833c8b 100644 --- a/search/files_5.js +++ b/search/files_5.js @@ -1,6 +1,6 @@ var searchData= [ - ['finalize_5frrtmgp_2ecpp_2563',['Finalize_rrtmgp.cpp',['../Finalize__rrtmgp_8cpp.html',1,'']]], - ['fitch_2eh_2564',['Fitch.H',['../Fitch_8H.html',1,'']]], - ['flowerif_2eh_2565',['FlowerIF.H',['../FlowerIF_8H.html',1,'']]] + ['finalize_5frrtmgp_2ecpp_2567',['Finalize_rrtmgp.cpp',['../Finalize__rrtmgp_8cpp.html',1,'']]], + ['fitch_2eh_2568',['Fitch.H',['../Fitch_8H.html',1,'']]], + ['flowerif_2eh_2569',['FlowerIF.H',['../FlowerIF_8H.html',1,'']]] ]; diff --git a/search/files_6.js b/search/files_6.js index f889e90489..72e1f0d5f1 100644 --- a/search/files_6.js +++ b/search/files_6.js @@ -1,4 +1,4 @@ var searchData= [ - ['hse_5futils_2eh_2566',['HSE_utils.H',['../HSE__utils_8H.html',1,'']]] + ['hse_5futils_2eh_2570',['HSE_utils.H',['../HSE__utils_8H.html',1,'']]] ]; diff --git a/search/files_7.js b/search/files_7.js index e49ef42b40..37a33931b3 100644 --- a/search/files_7.js +++ b/search/files_7.js @@ -1,21 +1,21 @@ var searchData= [ - ['icefall_2ecpp_2567',['IceFall.cpp',['../IceFall_8cpp.html',1,'']]], - ['indexdefines_2eh_2568',['IndexDefines.H',['../IndexDefines_8H.html',1,'']]], - ['init_5fconstant_5fdensity_5fhse_2eh_2569',['init_constant_density_hse.H',['../init__constant__density__hse_8H.html',1,'']]], - ['init_5fdensity_5fhse_5fdry_2eh_2570',['init_density_hse_dry.H',['../init__density__hse__dry_8H.html',1,'']]], - ['init_5fkessler_2ecpp_2571',['Init_Kessler.cpp',['../Init__Kessler_8cpp.html',1,'']]], - ['init_5frayleigh_5fdamping_2eh_2572',['init_rayleigh_damping.H',['../init__rayleigh__damping_8H.html',1,'']]], - ['init_5frrtmgp_2ecpp_2573',['Init_rrtmgp.cpp',['../Init__rrtmgp_8cpp.html',1,'']]], - ['init_5fsam_2ecpp_2574',['Init_SAM.cpp',['../Init__SAM_8cpp.html',1,'']]], - ['initeb_2ecpp_2575',['initEB.cpp',['../initEB_8cpp.html',1,'']]], - ['initwindfarm_2ecpp_2576',['InitWindFarm.cpp',['../InitWindFarm_8cpp.html',1,'']]], - ['inputsoundingdata_2eh_2577',['InputSoundingData.H',['../InputSoundingData_8H.html',1,'']]], - ['inputspongedata_2eh_2578',['InputSpongeData.H',['../InputSpongeData_8H.html',1,'']]], - ['interiorghostcells_2ecpp_2579',['InteriorGhostCells.cpp',['../InteriorGhostCells_8cpp.html',1,'']]], - ['interpolation_2eh_2580',['Interpolation.H',['../Interpolation_8H.html',1,'']]], - ['interpolation_5f1d_2eh_2581',['Interpolation_1D.H',['../Interpolation__1D_8H.html',1,'']]], - ['interpolation_5fupw_2eh_2582',['Interpolation_UPW.H',['../Interpolation__UPW_8H.html',1,'']]], - ['interpolation_5fweno_2eh_2583',['Interpolation_WENO.H',['../Interpolation__WENO_8H.html',1,'']]], - ['interpolation_5fweno_5fz_2eh_2584',['Interpolation_WENO_Z.H',['../Interpolation__WENO__Z_8H.html',1,'']]] + ['icefall_2ecpp_2571',['IceFall.cpp',['../IceFall_8cpp.html',1,'']]], + ['indexdefines_2eh_2572',['IndexDefines.H',['../IndexDefines_8H.html',1,'']]], + ['init_5fconstant_5fdensity_5fhse_2eh_2573',['init_constant_density_hse.H',['../init__constant__density__hse_8H.html',1,'']]], + ['init_5fdensity_5fhse_5fdry_2eh_2574',['init_density_hse_dry.H',['../init__density__hse__dry_8H.html',1,'']]], + ['init_5fkessler_2ecpp_2575',['Init_Kessler.cpp',['../Init__Kessler_8cpp.html',1,'']]], + ['init_5frayleigh_5fdamping_2eh_2576',['init_rayleigh_damping.H',['../init__rayleigh__damping_8H.html',1,'']]], + ['init_5frrtmgp_2ecpp_2577',['Init_rrtmgp.cpp',['../Init__rrtmgp_8cpp.html',1,'']]], + ['init_5fsam_2ecpp_2578',['Init_SAM.cpp',['../Init__SAM_8cpp.html',1,'']]], + ['initeb_2ecpp_2579',['initEB.cpp',['../initEB_8cpp.html',1,'']]], + ['initwindfarm_2ecpp_2580',['InitWindFarm.cpp',['../InitWindFarm_8cpp.html',1,'']]], + ['inputsoundingdata_2eh_2581',['InputSoundingData.H',['../InputSoundingData_8H.html',1,'']]], + ['inputspongedata_2eh_2582',['InputSpongeData.H',['../InputSpongeData_8H.html',1,'']]], + ['interiorghostcells_2ecpp_2583',['InteriorGhostCells.cpp',['../InteriorGhostCells_8cpp.html',1,'']]], + ['interpolation_2eh_2584',['Interpolation.H',['../Interpolation_8H.html',1,'']]], + ['interpolation_5f1d_2eh_2585',['Interpolation_1D.H',['../Interpolation__1D_8H.html',1,'']]], + ['interpolation_5fupw_2eh_2586',['Interpolation_UPW.H',['../Interpolation__UPW_8H.html',1,'']]], + ['interpolation_5fweno_2eh_2587',['Interpolation_WENO.H',['../Interpolation__WENO_8H.html',1,'']]], + ['interpolation_5fweno_5fz_2eh_2588',['Interpolation_WENO_Z.H',['../Interpolation__WENO__Z_8H.html',1,'']]] ]; diff --git a/search/files_8.js b/search/files_8.js index 88f221d180..cdaeeebae6 100644 --- a/search/files_8.js +++ b/search/files_8.js @@ -1,5 +1,5 @@ var searchData= [ - ['kessler_2ecpp_2585',['Kessler.cpp',['../Kessler_8cpp.html',1,'']]], - ['kessler_2eh_2586',['Kessler.H',['../Kessler_8H.html',1,'']]] + ['kessler_2ecpp_2589',['Kessler.cpp',['../Kessler_8cpp.html',1,'']]], + ['kessler_2eh_2590',['Kessler.H',['../Kessler_8H.html',1,'']]] ]; diff --git a/search/files_9.js b/search/files_9.js index 62121d4fa6..297d70b0fd 100644 --- a/search/files_9.js +++ b/search/files_9.js @@ -1,6 +1,6 @@ var searchData= [ - ['lagrangianmicrophysics_2eh_2587',['LagrangianMicrophysics.H',['../LagrangianMicrophysics_8H.html',1,'']]], - ['landsurface_2eh_2588',['LandSurface.H',['../LandSurface_8H.html',1,'']]], - ['linear_5finterpolate_2eh_2589',['Linear_interpolate.H',['../Linear__interpolate_8H.html',1,'']]] + ['lagrangianmicrophysics_2eh_2591',['LagrangianMicrophysics.H',['../LagrangianMicrophysics_8H.html',1,'']]], + ['landsurface_2eh_2592',['LandSurface.H',['../LandSurface_8H.html',1,'']]], + ['linear_5finterpolate_2eh_2593',['Linear_interpolate.H',['../Linear__interpolate_8H.html',1,'']]] ]; diff --git a/search/files_a.js b/search/files_a.js index c7b23ed1c3..a9c62bc017 100644 --- a/search/files_a.js +++ b/search/files_a.js @@ -1,20 +1,20 @@ var searchData= [ - ['m2005_5feffradius_2eh_2590',['m2005_effradius.H',['../m2005__effradius_8H.html',1,'']]], - ['main_2ecpp_2591',['main.cpp',['../main_8cpp.html',1,'']]], - ['main_2edox_2592',['main.dox',['../main_8dox.html',1,'']]], - ['mam4_5faero_2eh_2593',['Mam4_aero.H',['../Mam4__aero_8H.html',1,'']]], - ['mam4_5fconstituents_2eh_2594',['Mam4_constituents.H',['../Mam4__constituents_8H.html',1,'']]], - ['metgrid_5futils_2eh_2595',['Metgrid_utils.H',['../Metgrid__utils_8H.html',1,'']]], - ['microphysics_2eh_2596',['Microphysics.H',['../Microphysics_8H.html',1,'']]], - ['microphysics_5futils_2eh_2597',['Microphysics_Utils.H',['../Microphysics__Utils_8H.html',1,'']]], - ['mm5_2ecpp_2598',['MM5.cpp',['../MM5_8cpp.html',1,'']]], - ['mm5_2eh_2599',['MM5.H',['../MM5_8H.html',1,'']]], - ['modal_5faero_5fwateruptake_2eh_2600',['Modal_aero_wateruptake.H',['../Modal__aero__wateruptake_8H.html',1,'']]], - ['momentumtovelocity_2ecpp_2601',['MomentumToVelocity.cpp',['../MomentumToVelocity_8cpp.html',1,'']]], - ['mostaverage_2ecpp_2602',['MOSTAverage.cpp',['../MOSTAverage_8cpp.html',1,'']]], - ['mostaverage_2eh_2603',['MOSTAverage.H',['../MOSTAverage_8H.html',1,'']]], - ['moststress_2eh_2604',['MOSTStress.H',['../MOSTStress_8H.html',1,'']]], - ['multiblockcontainer_2ecpp_2605',['MultiBlockContainer.cpp',['../MultiBlockContainer_8cpp.html',1,'']]], - ['multiblockcontainer_2eh_2606',['MultiBlockContainer.H',['../MultiBlockContainer_8H.html',1,'']]] + ['m2005_5feffradius_2eh_2594',['m2005_effradius.H',['../m2005__effradius_8H.html',1,'']]], + ['main_2ecpp_2595',['main.cpp',['../main_8cpp.html',1,'']]], + ['main_2edox_2596',['main.dox',['../main_8dox.html',1,'']]], + ['mam4_5faero_2eh_2597',['Mam4_aero.H',['../Mam4__aero_8H.html',1,'']]], + ['mam4_5fconstituents_2eh_2598',['Mam4_constituents.H',['../Mam4__constituents_8H.html',1,'']]], + ['metgrid_5futils_2eh_2599',['Metgrid_utils.H',['../Metgrid__utils_8H.html',1,'']]], + ['microphysics_2eh_2600',['Microphysics.H',['../Microphysics_8H.html',1,'']]], + ['microphysics_5futils_2eh_2601',['Microphysics_Utils.H',['../Microphysics__Utils_8H.html',1,'']]], + ['mm5_2ecpp_2602',['MM5.cpp',['../MM5_8cpp.html',1,'']]], + ['mm5_2eh_2603',['MM5.H',['../MM5_8H.html',1,'']]], + ['modal_5faero_5fwateruptake_2eh_2604',['Modal_aero_wateruptake.H',['../Modal__aero__wateruptake_8H.html',1,'']]], + ['momentumtovelocity_2ecpp_2605',['MomentumToVelocity.cpp',['../MomentumToVelocity_8cpp.html',1,'']]], + ['mostaverage_2ecpp_2606',['MOSTAverage.cpp',['../MOSTAverage_8cpp.html',1,'']]], + ['mostaverage_2eh_2607',['MOSTAverage.H',['../MOSTAverage_8H.html',1,'']]], + ['moststress_2eh_2608',['MOSTStress.H',['../MOSTStress_8H.html',1,'']]], + ['multiblockcontainer_2ecpp_2609',['MultiBlockContainer.cpp',['../MultiBlockContainer_8cpp.html',1,'']]], + ['multiblockcontainer_2eh_2610',['MultiBlockContainer.H',['../MultiBlockContainer_8H.html',1,'']]] ]; diff --git a/search/files_b.js b/search/files_b.js index 96e495c054..980d7950e6 100644 --- a/search/files_b.js +++ b/search/files_b.js @@ -1,17 +1,17 @@ var searchData= [ - ['nccheckpoint_2ecpp_2607',['NCCheckpoint.cpp',['../NCCheckpoint_8cpp.html',1,'']]], - ['nccolumnfile_2ecpp_2608',['NCColumnFile.cpp',['../NCColumnFile_8cpp.html',1,'']]], - ['ncinterface_2ecpp_2609',['NCInterface.cpp',['../NCInterface_8cpp.html',1,'']]], - ['ncinterface_2eh_2610',['NCInterface.H',['../NCInterface_8H.html',1,'']]], - ['ncmultifabfile_2ecpp_2611',['NCMultiFabFile.cpp',['../NCMultiFabFile_8cpp.html',1,'']]], - ['ncplotfile_2ecpp_2612',['NCPlotFile.cpp',['../NCPlotFile_8cpp.html',1,'']]], - ['ncplotfile_2eh_2613',['NCPlotFile.H',['../NCPlotFile_8H.html',1,'']]], - ['ncwpsfile_2eh_2614',['NCWpsFile.H',['../NCWpsFile_8H.html',1,'']]], - ['nullmoist_2eh_2615',['NullMoist.H',['../NullMoist_8H.html',1,'']]], - ['nullmoistlagrangian_2eh_2616',['NullMoistLagrangian.H',['../NullMoistLagrangian_8H.html',1,'']]], - ['nullsurf_2eh_2617',['NullSurf.H',['../NullSurf_8H.html',1,'']]], - ['nullwindfarm_2eh_2618',['NullWindFarm.H',['../NullWindFarm_8H.html',1,'']]], - ['numericaldiffusion_2ecpp_2619',['NumericalDiffusion.cpp',['../NumericalDiffusion_8cpp.html',1,'']]], - ['numericaldiffusion_2eh_2620',['NumericalDiffusion.H',['../NumericalDiffusion_8H.html',1,'']]] + ['nccheckpoint_2ecpp_2611',['NCCheckpoint.cpp',['../NCCheckpoint_8cpp.html',1,'']]], + ['nccolumnfile_2ecpp_2612',['NCColumnFile.cpp',['../NCColumnFile_8cpp.html',1,'']]], + ['ncinterface_2ecpp_2613',['NCInterface.cpp',['../NCInterface_8cpp.html',1,'']]], + ['ncinterface_2eh_2614',['NCInterface.H',['../NCInterface_8H.html',1,'']]], + ['ncmultifabfile_2ecpp_2615',['NCMultiFabFile.cpp',['../NCMultiFabFile_8cpp.html',1,'']]], + ['ncplotfile_2ecpp_2616',['NCPlotFile.cpp',['../NCPlotFile_8cpp.html',1,'']]], + ['ncplotfile_2eh_2617',['NCPlotFile.H',['../NCPlotFile_8H.html',1,'']]], + ['ncwpsfile_2eh_2618',['NCWpsFile.H',['../NCWpsFile_8H.html',1,'']]], + ['nullmoist_2eh_2619',['NullMoist.H',['../NullMoist_8H.html',1,'']]], + ['nullmoistlagrangian_2eh_2620',['NullMoistLagrangian.H',['../NullMoistLagrangian_8H.html',1,'']]], + ['nullsurf_2eh_2621',['NullSurf.H',['../NullSurf_8H.html',1,'']]], + ['nullwindfarm_2eh_2622',['NullWindFarm.H',['../NullWindFarm_8H.html',1,'']]], + ['numericaldiffusion_2ecpp_2623',['NumericalDiffusion.cpp',['../NumericalDiffusion_8cpp.html',1,'']]], + ['numericaldiffusion_2eh_2624',['NumericalDiffusion.H',['../NumericalDiffusion_8H.html',1,'']]] ]; diff --git a/search/files_c.js b/search/files_c.js index 4770d18a9a..1ca1dd740b 100644 --- a/search/files_c.js +++ b/search/files_c.js @@ -1,7 +1,7 @@ var searchData= [ - ['optics_2ecpp_2621',['Optics.cpp',['../Optics_8cpp.html',1,'']]], - ['optics_2eh_2622',['Optics.H',['../Optics_8H.html',1,'']]], - ['orbit_2ecpp_2623',['Orbit.cpp',['../Orbit_8cpp.html',1,'']]], - ['orbit_2eh_2624',['Orbit.H',['../Orbit_8H.html',1,'']]] + ['optics_2ecpp_2625',['Optics.cpp',['../Optics_8cpp.html',1,'']]], + ['optics_2eh_2626',['Optics.H',['../Optics_8H.html',1,'']]], + ['orbit_2ecpp_2627',['Orbit.cpp',['../Orbit_8cpp.html',1,'']]], + ['orbit_2eh_2628',['Orbit.H',['../Orbit_8H.html',1,'']]] ]; diff --git a/search/files_d.js b/search/files_d.js index 791857162f..82be05f62c 100644 --- a/search/files_d.js +++ b/search/files_d.js @@ -1,14 +1,14 @@ var searchData= [ - ['parameterizations_2eh_2625',['Parameterizations.H',['../Parameterizations_8H.html',1,'']]], - ['parfunctions_2eh_2626',['ParFunctions.H',['../ParFunctions_8H.html',1,'']]], - ['particledata_2eh_2627',['ParticleData.H',['../ParticleData_8H.html',1,'']]], - ['pblmodels_2ecpp_2628',['PBLModels.cpp',['../PBLModels_8cpp.html',1,'']]], - ['pblmodels_2eh_2629',['PBLModels.H',['../PBLModels_8H.html',1,'']]], - ['phys_5fprop_2eh_2630',['Phys_prop.H',['../Phys__prop_8H.html',1,'']]], - ['planeaverage_2eh_2631',['PlaneAverage.H',['../PlaneAverage_8H.html',1,'']]], - ['plotfile_2ecpp_2632',['Plotfile.cpp',['../Plotfile_8cpp.html',1,'']]], - ['precip_2ecpp_2633',['Precip.cpp',['../Precip_8cpp.html',1,'']]], - ['precipfall_2ecpp_2634',['PrecipFall.cpp',['../PrecipFall_8cpp.html',1,'']]], - ['prob_5fcommon_2eh_2635',['prob_common.H',['../prob__common_8H.html',1,'']]] + ['parameterizations_2eh_2629',['Parameterizations.H',['../Parameterizations_8H.html',1,'']]], + ['parfunctions_2eh_2630',['ParFunctions.H',['../ParFunctions_8H.html',1,'']]], + ['particledata_2eh_2631',['ParticleData.H',['../ParticleData_8H.html',1,'']]], + ['pblmodels_2ecpp_2632',['PBLModels.cpp',['../PBLModels_8cpp.html',1,'']]], + ['pblmodels_2eh_2633',['PBLModels.H',['../PBLModels_8H.html',1,'']]], + ['phys_5fprop_2eh_2634',['Phys_prop.H',['../Phys__prop_8H.html',1,'']]], + ['planeaverage_2eh_2635',['PlaneAverage.H',['../PlaneAverage_8H.html',1,'']]], + ['plotfile_2ecpp_2636',['Plotfile.cpp',['../Plotfile_8cpp.html',1,'']]], + ['precip_2ecpp_2637',['Precip.cpp',['../Precip_8cpp.html',1,'']]], + ['precipfall_2ecpp_2638',['PrecipFall.cpp',['../PrecipFall_8cpp.html',1,'']]], + ['prob_5fcommon_2eh_2639',['prob_common.H',['../prob__common_8H.html',1,'']]] ]; diff --git a/search/files_e.js b/search/files_e.js index 2a75875252..8d5de8e5ba 100644 --- a/search/files_e.js +++ b/search/files_e.js @@ -1,12 +1,12 @@ var searchData= [ - ['rad_5fconstants_2eh_2636',['Rad_constants.H',['../Rad__constants_8H.html',1,'']]], - ['radiation_2ecpp_2637',['Radiation.cpp',['../Radiation_8cpp.html',1,'']]], - ['radiation_2eh_2638',['Radiation.H',['../Radiation_8H.html',1,'']]], - ['readfrommetgrid_2ecpp_2639',['ReadFromMetgrid.cpp',['../ReadFromMetgrid_8cpp.html',1,'']]], - ['readfromwrfbdy_2ecpp_2640',['ReadFromWRFBdy.cpp',['../ReadFromWRFBdy_8cpp.html',1,'']]], - ['readfromwrfinput_2ecpp_2641',['ReadFromWRFInput.cpp',['../ReadFromWRFInput_8cpp.html',1,'']]], - ['rrtmgp_2eh_2642',['Rrtmgp.H',['../Rrtmgp_8H.html',1,'']]], - ['run_5flongwave_5frrtmgp_2ecpp_2643',['Run_longwave_rrtmgp.cpp',['../Run__longwave__rrtmgp_8cpp.html',1,'']]], - ['run_5fshortwave_5frrtmgp_2ecpp_2644',['Run_shortwave_rrtmgp.cpp',['../Run__shortwave__rrtmgp_8cpp.html',1,'']]] + ['rad_5fconstants_2eh_2640',['Rad_constants.H',['../Rad__constants_8H.html',1,'']]], + ['radiation_2ecpp_2641',['Radiation.cpp',['../Radiation_8cpp.html',1,'']]], + ['radiation_2eh_2642',['Radiation.H',['../Radiation_8H.html',1,'']]], + ['readfrommetgrid_2ecpp_2643',['ReadFromMetgrid.cpp',['../ReadFromMetgrid_8cpp.html',1,'']]], + ['readfromwrfbdy_2ecpp_2644',['ReadFromWRFBdy.cpp',['../ReadFromWRFBdy_8cpp.html',1,'']]], + ['readfromwrfinput_2ecpp_2645',['ReadFromWRFInput.cpp',['../ReadFromWRFInput_8cpp.html',1,'']]], + ['rrtmgp_2eh_2646',['Rrtmgp.H',['../Rrtmgp_8H.html',1,'']]], + ['run_5flongwave_5frrtmgp_2ecpp_2647',['Run_longwave_rrtmgp.cpp',['../Run__longwave__rrtmgp_8cpp.html',1,'']]], + ['run_5fshortwave_5frrtmgp_2ecpp_2648',['Run_shortwave_rrtmgp.cpp',['../Run__shortwave__rrtmgp_8cpp.html',1,'']]] ]; diff --git a/search/files_f.js b/search/files_f.js index 658b28623e..d357f71907 100644 --- a/search/files_f.js +++ b/search/files_f.js @@ -1,11 +1,11 @@ var searchData= [ - ['sam_2eh_2645',['SAM.H',['../SAM_8H.html',1,'']]], - ['sat_5fmethods_2eh_2646',['Sat_methods.H',['../Sat__methods_8H.html',1,'']]], - ['simplead_2eh_2647',['SimpleAD.H',['../SimpleAD_8H.html',1,'']]], - ['slingo_2eh_2648',['Slingo.H',['../Slingo_8H.html',1,'']]], - ['slm_2ecpp_2649',['SLM.cpp',['../SLM_8cpp.html',1,'']]], - ['slm_2eh_2650',['SLM.H',['../SLM_8H.html',1,'']]], - ['spongestruct_2eh_2651',['SpongeStruct.H',['../SpongeStruct_8H.html',1,'']]], - ['src_5fheaders_2eh_2652',['Src_headers.H',['../Src__headers_8H.html',1,'']]] + ['sam_2eh_2649',['SAM.H',['../SAM_8H.html',1,'']]], + ['sat_5fmethods_2eh_2650',['Sat_methods.H',['../Sat__methods_8H.html',1,'']]], + ['simplead_2eh_2651',['SimpleAD.H',['../SimpleAD_8H.html',1,'']]], + ['slingo_2eh_2652',['Slingo.H',['../Slingo_8H.html',1,'']]], + ['slm_2ecpp_2653',['SLM.cpp',['../SLM_8cpp.html',1,'']]], + ['slm_2eh_2654',['SLM.H',['../SLM_8H.html',1,'']]], + ['spongestruct_2eh_2655',['SpongeStruct.H',['../SpongeStruct_8H.html',1,'']]], + ['src_5fheaders_2eh_2656',['Src_headers.H',['../Src__headers_8H.html',1,'']]] ]; diff --git a/search/functions_0.js b/search/functions_0.js index b8d1ac9ef9..3f392ceb3e 100644 --- a/search/functions_0.js +++ b/search/functions_0.js @@ -1,65 +1,66 @@ var searchData= [ - ['ablmost_2675',['ABLMost',['../classABLMost.html#a4ee786860369e5a42ba353308590b372',1,'ABLMost']]], - ['add_5fpar_2676',['add_par',['../main_8cpp.html#a183e783116d02836167ccbed3b28c1d3',1,'main.cpp']]], - ['add_5fthin_5fbody_5fsources_2677',['add_thin_body_sources',['../Src__headers_8H.html#a5b82614fa1590f73caf25dc65b1c937d',1,'add_thin_body_sources(amrex::MultiFab &xmom_source, amrex::MultiFab &ymom_source, amrex::MultiFab &zmom_source, std::unique_ptr< amrex::iMultiFab > &xflux_imask_lev, std::unique_ptr< amrex::iMultiFab > &yflux_imask_lev, std::unique_ptr< amrex::iMultiFab > &zflux_imask_lev, std::unique_ptr< amrex::MultiFab > &thin_xforce_lev, std::unique_ptr< amrex::MultiFab > &thin_yforce_lev, std::unique_ptr< amrex::MultiFab > &thin_zforce_lev): Src_headers.H'],['../ERF__add__thin__body__sources_8cpp.html#afe1f106475861ba9ed98d5163c7f4e20',1,'add_thin_body_sources(MultiFab &xmom_src, MultiFab &ymom_src, MultiFab &zmom_src, std::unique_ptr< iMultiFab > &xflux_imask_lev, std::unique_ptr< iMultiFab > &yflux_imask_lev, std::unique_ptr< iMultiFab > &zflux_imask_lev, std::unique_ptr< MultiFab > &thin_xforce_lev, std::unique_ptr< MultiFab > &thin_yforce_lev, std::unique_ptr< MultiFab > &thin_zforce_lev): ERF_add_thin_body_sources.cpp']]], - ['add_5fvar_2678',['add_var',['../structTimeInterpolatedData.html#a3b9292eb3012672361abacc2ab7d9b2c',1,'TimeInterpolatedData']]], - ['adiabatic_2679',['adiabatic',['../structadiabatic.html#a43c914de601009400405ce6cfaaf2936',1,'adiabatic']]], - ['adiabatic_5fcharnock_2680',['adiabatic_charnock',['../structadiabatic__charnock.html#a03e2e3c105b2939c433c758d067a74a9',1,'adiabatic_charnock']]], - ['adiabatic_5fmod_5fcharnock_2681',['adiabatic_mod_charnock',['../structadiabatic__mod__charnock.html#a4d85da446411e8d3f4dfb8e47e4c14b4',1,'adiabatic_mod_charnock']]], - ['adiabatic_5fwave_5fcoupled_2682',['adiabatic_wave_coupled',['../structadiabatic__wave__coupled.html#ab4bae3bcb6d202acedfa914203374506',1,'adiabatic_wave_coupled']]], - ['adv_5ftype_5fconvert_5fint_5fto_5fstring_2683',['adv_type_convert_int_to_string',['../structAdvChoice.html#abea240033571adc8f3993bd56bf28fa2',1,'AdvChoice']]], - ['adv_5ftype_5fconvert_5fstring_5fto_5fadvtype_2684',['adv_type_convert_string_to_advtype',['../structAdvChoice.html#a191cb08c4e809d1982ea90e4b4f9a528',1,'AdvChoice']]], - ['advance_2685',['advance',['../classNullWindFarm.html#a3085f67dd33114a5984f51ccdeffc7fa',1,'NullWindFarm::advance()'],['../classMRISplitIntegrator.html#ad78b5d1908a131c3597232a041ca267b',1,'MRISplitIntegrator::advance()'],['../classEWP.html#ab1f86b9667e1b3b119458c86b8655939',1,'EWP::advance()']]], - ['advance_2686',['Advance',['../classSAM.html#a012056ae20ded7928adf1be8afa665b9',1,'SAM::Advance()'],['../classNullMoist.html#aa2f97dcd622bc4ef212421d496ee2297',1,'NullMoist::Advance()'],['../classMicrophysics.html#a88b5020f081efbf8805cffff5cde298c',1,'Microphysics::Advance()'],['../classKessler.html#adbfb72df664abc2f02fede6b91b066b6',1,'Kessler::Advance()'],['../classEulerianMicrophysics.html#a6cc7efaa2f4f27f8a7f485fd96e5635b',1,'EulerianMicrophysics::Advance()'],['../classNullSurf.html#a70a49bad633a2a87c4df7de8f368ef95',1,'NullSurf::Advance()']]], - ['advance_2687',['advance',['../classWindFarm.html#a1ee7eda7941fb31102be525bd79c8eb6',1,'WindFarm::advance()'],['../classSimpleAD.html#a846f49f7333ed47f1c92d5cc8b57cb08',1,'SimpleAD::advance()'],['../classFitch.html#a9360fcfcc51477e24b225c54387543c6',1,'Fitch::advance()']]], - ['advance_2688',['Advance',['../classSLM.html#a31956746a8b8bbf207027cb784c9bfa4',1,'SLM::Advance()'],['../classERF.html#a47413fe5588f7dd71a1d5087a9e804f9',1,'ERF::Advance()'],['../classLandSurface.html#a2170397164e0f533884e744a2a73deb7',1,'LandSurface::Advance()'],['../classMM5.html#a2acfbfb967111ce4aed50e55adbcc15c',1,'MM5::Advance()']]], - ['advance_5fdycore_2689',['advance_dycore',['../classERF.html#af836d1bb05ac4c9f535358e14714f13e',1,'ERF']]], - ['advance_5flsm_2690',['advance_lsm',['../classERF.html#ac3f83ba16254a0efd4395900cef97efc',1,'ERF']]], - ['advance_5fmicrophysics_2691',['advance_microphysics',['../classERF.html#ad64b5fe566102dc053b35ad337971a3e',1,'ERF']]], - ['advanceblocks_2692',['AdvanceBlocks',['../classMultiBlockContainer.html#afe74361709855a6b78669dea775edc45',1,'MultiBlockContainer']]], - ['advancekessler_2693',['AdvanceKessler',['../classKessler.html#ab67e26d4eb01a6e25707b73ca47714ef',1,'Kessler']]], - ['advancemm5_2694',['AdvanceMM5',['../classMM5.html#a44d3fcf82f4f149b6ba3ccfe9b896849',1,'MM5']]], - ['advanceslm_2695',['AdvanceSLM',['../classSLM.html#ac051c05d408c3471b0206f232c5f1fbc',1,'SLM']]], - ['advectionsrcformom_2696',['AdvectionSrcForMom',['../AdvectionSrcForMom_8cpp.html#a308c801e1b50746486cee1e6f9ee60fd',1,'AdvectionSrcForMom(const Box &bx, const Box &bxx, const Box &bxy, const Box &bxz, const Array4< Real > &rho_u_rhs, const Array4< Real > &rho_v_rhs, const Array4< Real > &rho_w_rhs, const Array4< const Real > &cell_data, const Array4< const Real > &u, const Array4< const Real > &v, const Array4< const Real > &w, const Array4< const Real > &rho_u, const Array4< const Real > &rho_v, const Array4< const Real > &Omega, const Array4< const Real > &z_nd, const Array4< const Real > &ax, const Array4< const Real > &ay, const Array4< const Real > &az, const Array4< const Real > &detJ, const GpuArray< Real, AMREX_SPACEDIM > &cellSizeInv, const Array4< const Real > &mf_m, const Array4< const Real > &mf_u, const Array4< const Real > &mf_v, const AdvType horiz_adv_type, const AdvType vert_adv_type, const Real horiz_upw_frac, const Real vert_upw_frac, const bool use_terrain, const int lo_z_face, const int hi_z_face, const Box &domain, const BCRec *bc_ptr_h): AdvectionSrcForMom.cpp'],['../Advection_8H.html#ab1b35d1f492c8be5490f75c18d1abc7a',1,'AdvectionSrcForMom(const amrex::Box &bx, const amrex::Box &bxx, const amrex::Box &bxy, const amrex::Box &bxz, const amrex::Array4< amrex::Real > &rho_u_rhs, const amrex::Array4< amrex::Real > &rho_v_rhs, const amrex::Array4< amrex::Real > &rho_w_rhs, const amrex::Array4< const amrex::Real > &rho, const amrex::Array4< const amrex::Real > &u, const amrex::Array4< const amrex::Real > &v, const amrex::Array4< const amrex::Real > &w, const amrex::Array4< const amrex::Real > &rho_u, const amrex::Array4< const amrex::Real > &rho_v, const amrex::Array4< const amrex::Real > &Omega, const amrex::Array4< const amrex::Real > &z_nd, const amrex::Array4< const amrex::Real > &ax, const amrex::Array4< const amrex::Real > &ay, const amrex::Array4< const amrex::Real > &az, const amrex::Array4< const amrex::Real > &detJ, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &cellSizeInv, const amrex::Array4< const amrex::Real > &mf_m, const amrex::Array4< const amrex::Real > &mf_u, const amrex::Array4< const amrex::Real > &mf_v, const AdvType horiz_adv_type, const AdvType vert_adv_type, const amrex::Real horiz_upw_frac, const amrex::Real vert_upw_frac, const bool use_terrain, const int lo_z_face, const int hi_z_face, const amrex::Box &domain, const amrex::BCRec *bc_ptr_h): Advection.H']]], - ['advectionsrcformomvert_2697',['AdvectionSrcForMomVert',['../AdvectionSrcForMom__T_8H.html#ae8cc522ffffb23058df8e8ed5c892acd',1,'AdvectionSrcForMom_T.H']]], - ['advectionsrcformomvert_5fn_2698',['AdvectionSrcForMomVert_N',['../AdvectionSrcForMom__N_8H.html#ac1ffb44f53b355afef0c5a20b7750910',1,'AdvectionSrcForMom_N.H']]], - ['advectionsrcformomwrapper_2699',['AdvectionSrcForMomWrapper',['../AdvectionSrcForMom__T_8H.html#a4594886b5c42807b88fde702d78b062b',1,'AdvectionSrcForMom_T.H']]], - ['advectionsrcformomwrapper_5fn_2700',['AdvectionSrcForMomWrapper_N',['../AdvectionSrcForMom__N_8H.html#afccfe8e1799dbee5d72547a51914406a',1,'AdvectionSrcForMom_N.H']]], - ['advectionsrcforopenbc_5fnormal_2701',['AdvectionSrcForOpenBC_Normal',['../AdvectionSrcForOpenBC_8cpp.html#a9724c4268388a35a651fbe8e0b8d8e15',1,'AdvectionSrcForOpenBC_Normal(const Box &bx, const int &dir, const Array4< Real > &rhs_arr, const Array4< const Real > &vel_norm_arr, const Array4< const Real > &cell_data_arr, const GpuArray< Real, AMREX_SPACEDIM > &dxInv, const bool do_lo): AdvectionSrcForOpenBC.cpp'],['../Advection_8H.html#a8a93a1f4fa830e853896360758c1185c',1,'AdvectionSrcForOpenBC_Normal(const amrex::Box &bx, const int &dir, const amrex::Array4< amrex::Real > &rhs_arr, const amrex::Array4< const amrex::Real > &vel_norm_arr, const amrex::Array4< const amrex::Real > &cell_data_arr, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxInv, const bool do_lo=false): Advection.H']]], - ['advectionsrcforopenbc_5ftangent_2702',['AdvectionSrcForOpenBC_Tangent',['../AdvectionSrcForOpenBC_8cpp.html#ac6e7a792c85a42fe5c0679a2b1f763ec',1,'AdvectionSrcForOpenBC_Tangent(const int &i, const int &j, const int &k, const int &nprim, const int &dir, const Array4< const Real > &prim_tang_arr, const Array4< const Real > &mom_norm_arr, const Real &dxInv, const bool do_lo): AdvectionSrcForOpenBC.cpp'],['../Advection_8H.html#ab0aafe8d39448868a229ed291f363d5b',1,'AdvectionSrcForOpenBC_Tangent(const int &i, const int &j, const int &k, const int &nprim, const int &dir, const amrex::Array4< const amrex::Real > &prim_tang_arr, const amrex::Array4< const amrex::Real > &mom_norm_arr, const amrex::Real &dxInv, const bool do_lo=false): Advection.H']]], - ['advectionsrcforopenbc_5ftangent_5fcons_2703',['AdvectionSrcForOpenBC_Tangent_Cons',['../Advection_8H.html#abd84d0909db1f87c22b5a92aae03e919',1,'AdvectionSrcForOpenBC_Tangent_Cons(const amrex::Box &bx, const int &dir, const int &icomp, const int &ncomp, const amrex::Array4< amrex::Real > &cell_rhs, const amrex::Array4< const amrex::Real > &cell_prim, const amrex::Array4< const amrex::Real > &avg_xmom, const amrex::Array4< const amrex::Real > &avg_ymom, const amrex::Array4< const amrex::Real > &avg_zmom, const amrex::Array4< const amrex::Real > &detJ, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &cellSizeInv, const bool do_lo=false): Advection.H'],['../AdvectionSrcForOpenBC_8cpp.html#af626d3a8c7d93d081c268b6ef3368e20',1,'AdvectionSrcForOpenBC_Tangent_Cons(const Box &bx, const int &dir, const int &icomp, const int &ncomp, const Array4< Real > &cell_rhs, const Array4< const Real > &cell_prim, const Array4< const Real > &avg_xmom, const Array4< const Real > &avg_ymom, const Array4< const Real > &avg_zmom, const Array4< const Real > &detJ, const GpuArray< Real, AMREX_SPACEDIM > &cellSizeInv, const bool do_lo): AdvectionSrcForOpenBC.cpp']]], - ['advectionsrcforopenbc_5ftangent_5fxmom_2704',['AdvectionSrcForOpenBC_Tangent_Xmom',['../AdvectionSrcForOpenBC_8cpp.html#a426d47e0a43e0ba9ec9ea4791165c14e',1,'AdvectionSrcForOpenBC_Tangent_Xmom(const Box &bxx, const int &dir, const Array4< Real > &rho_u_rhs, const Array4< const Real > &u, const Array4< const Real > &rho_u, const Array4< const Real > &rho_v, const Array4< const Real > &Omega, const Array4< const Real > &ax, const Array4< const Real > &az, const Array4< const Real > &detJ, const GpuArray< Real, AMREX_SPACEDIM > &cellSizeInv, const bool do_lo): AdvectionSrcForOpenBC.cpp'],['../Advection_8H.html#a77a3da224ebc848d774a465bc4edbb6d',1,'AdvectionSrcForOpenBC_Tangent_Xmom(const amrex::Box &bxx, const int &dir, const amrex::Array4< amrex::Real > &rho_u_rhs, const amrex::Array4< const amrex::Real > &u, const amrex::Array4< const amrex::Real > &rho_u, const amrex::Array4< const amrex::Real > &rho_v, const amrex::Array4< const amrex::Real > &Omega, const amrex::Array4< const amrex::Real > &ax, const amrex::Array4< const amrex::Real > &az, const amrex::Array4< const amrex::Real > &detJ, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &cellSizeInv, const bool do_lo=false): Advection.H']]], - ['advectionsrcforopenbc_5ftangent_5fymom_2705',['AdvectionSrcForOpenBC_Tangent_Ymom',['../Advection_8H.html#a4ff38549b044becdf35e0331f8361756',1,'AdvectionSrcForOpenBC_Tangent_Ymom(const amrex::Box &bxy, const int &dir, const amrex::Array4< amrex::Real > &rho_v_rhs, const amrex::Array4< const amrex::Real > &v, const amrex::Array4< const amrex::Real > &rho_u, const amrex::Array4< const amrex::Real > &rho_v, const amrex::Array4< const amrex::Real > &Omega, const amrex::Array4< const amrex::Real > &ay, const amrex::Array4< const amrex::Real > &az, const amrex::Array4< const amrex::Real > &detJ, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &cellSizeInv, const bool do_lo=false): Advection.H'],['../AdvectionSrcForOpenBC_8cpp.html#a7962977abbf346525d7b3481c8a6f25e',1,'AdvectionSrcForOpenBC_Tangent_Ymom(const Box &bxy, const int &dir, const Array4< Real > &rho_v_rhs, const Array4< const Real > &v, const Array4< const Real > &rho_u, const Array4< const Real > &rho_v, const Array4< const Real > &Omega, const Array4< const Real > &ay, const Array4< const Real > &az, const Array4< const Real > &detJ, const GpuArray< Real, AMREX_SPACEDIM > &cellSizeInv, const bool do_lo): AdvectionSrcForOpenBC.cpp']]], - ['advectionsrcforopenbc_5ftangent_5fzmom_2706',['AdvectionSrcForOpenBC_Tangent_Zmom',['../Advection_8H.html#ac890a386e0e9ef50f62ae1ae7a3297fb',1,'AdvectionSrcForOpenBC_Tangent_Zmom(const amrex::Box &bxz, const int &dir, const amrex::Array4< amrex::Real > &rho_w_rhs, const amrex::Array4< const amrex::Real > &w, const amrex::Array4< const amrex::Real > &rho_u, const amrex::Array4< const amrex::Real > &rho_v, const amrex::Array4< const amrex::Real > &Omega, const amrex::Array4< const amrex::Real > &ax, const amrex::Array4< const amrex::Real > &ay, const amrex::Array4< const amrex::Real > &az, const amrex::Array4< const amrex::Real > &detJ, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &cellSizeInv, const int domhi_z, const bool do_lo=false): Advection.H'],['../AdvectionSrcForOpenBC_8cpp.html#a77ce5c5e497f070833cb915ffee7eea2',1,'AdvectionSrcForOpenBC_Tangent_Zmom(const Box &bxz, const int &dir, const Array4< Real > &rho_w_rhs, const Array4< const Real > &w, const Array4< const Real > &rho_u, const Array4< const Real > &rho_v, const Array4< const Real > &Omega, const Array4< const Real > &ax, const Array4< const Real > &ay, const Array4< const Real > &az, const Array4< const Real > &detJ, const GpuArray< Real, AMREX_SPACEDIM > &cellSizeInv, const int domhi_z, const bool do_lo): AdvectionSrcForOpenBC.cpp']]], - ['advectionsrcforrho_2707',['AdvectionSrcForRho',['../Advection_8H.html#a0227b1517e5223b7b884ba7d5b59f51e',1,'AdvectionSrcForRho(const amrex::Box &bx, const amrex::Array4< amrex::Real > &src, const amrex::Array4< const amrex::Real > &rho_u, const amrex::Array4< const amrex::Real > &rho_v, const amrex::Array4< const amrex::Real > &omega, const amrex::Array4< amrex::Real > &avg_xmom, const amrex::Array4< amrex::Real > &avg_ymom, const amrex::Array4< amrex::Real > &avg_zmom, const amrex::Array4< const amrex::Real > &ax_arr, const amrex::Array4< const amrex::Real > &ay_arr, const amrex::Array4< const amrex::Real > &az_arr, const amrex::Array4< const amrex::Real > &detJ, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &cellSizeInv, const amrex::Array4< const amrex::Real > &mf_m, const amrex::Array4< const amrex::Real > &mf_u, const amrex::Array4< const amrex::Real > &mf_v, const amrex::GpuArray< const amrex::Array4< amrex::Real >, AMREX_SPACEDIM > &flx_arr, const bool const_rho): Advection.H'],['../AdvectionSrcForState_8cpp.html#a9683ebdeaa4713791cdaf407ff259e2b',1,'AdvectionSrcForRho(const Box &bx, const Array4< Real > &advectionSrc, const Array4< const Real > &rho_u, const Array4< const Real > &rho_v, const Array4< const Real > &Omega, const Array4< Real > &avg_xmom, const Array4< Real > &avg_ymom, const Array4< Real > &avg_zmom, const Array4< const Real > &ax_arr, const Array4< const Real > &ay_arr, const Array4< const Real > &az_arr, const Array4< const Real > &detJ, const GpuArray< Real, AMREX_SPACEDIM > &cellSizeInv, const Array4< const Real > &mf_m, const Array4< const Real > &mf_u, const Array4< const Real > &mf_v, const GpuArray< const Array4< Real >, AMREX_SPACEDIM > &flx_arr, const bool const_rho): AdvectionSrcForState.cpp']]], - ['advectionsrcforscalars_2708',['AdvectionSrcForScalars',['../Advection_8H.html#aec32d1f86c49b3d647c08f4226e2fcd2',1,'AdvectionSrcForScalars(const amrex::Real &dt, const amrex::Box &bx, const int icomp, const int ncomp, const amrex::Array4< const amrex::Real > &avg_xmom, const amrex::Array4< const amrex::Real > &avg_ymom, const amrex::Array4< const amrex::Real > &avg_zmom, const amrex::Array4< const amrex::Real > &cur_cons, const amrex::Array4< const amrex::Real > &cell_prim, const amrex::Array4< amrex::Real > &src, const bool &use_mono_adv, amrex::Real *max_s_ptr, amrex::Real *min_s_ptr, const amrex::Array4< const amrex::Real > &vf_arr, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &cellSizeInv, const amrex::Array4< const amrex::Real > &mf_m, const AdvType horiz_adv_type, const AdvType vert_adv_type, const amrex::Real horiz_upw_frac, const amrex::Real vert_upw_frac, const amrex::GpuArray< const amrex::Array4< amrex::Real >, AMREX_SPACEDIM > &flx_arr, const amrex::Box &domain, const amrex::BCRec *bc_ptr_h): Advection.H'],['../AdvectionSrcForState_8cpp.html#a2d291e3fb848a64238a0c62cf85c25f9',1,'AdvectionSrcForScalars(const Real &dt, const Box &bx, const int icomp, const int ncomp, const Array4< const Real > &avg_xmom, const Array4< const Real > &avg_ymom, const Array4< const Real > &avg_zmom, const Array4< const Real > &cur_cons, const Array4< const Real > &cell_prim, const Array4< Real > &advectionSrc, const bool &use_mono_adv, Real *max_s_ptr, Real *min_s_ptr, const Array4< const Real > &detJ, const GpuArray< Real, AMREX_SPACEDIM > &cellSizeInv, const Array4< const Real > &mf_m, const AdvType horiz_adv_type, const AdvType vert_adv_type, const Real horiz_upw_frac, const Real vert_upw_frac, const GpuArray< const Array4< Real >, AMREX_SPACEDIM > &flx_arr, const Box &domain, const BCRec *bc_ptr_h): AdvectionSrcForState.cpp']]], - ['advectionsrcforscalarsvert_2709',['AdvectionSrcForScalarsVert',['../AdvectionSrcForScalars_8H.html#a7ae00f92678a2aeee794bf2b735c19eb',1,'AdvectionSrcForScalars.H']]], - ['advectionsrcforscalarswrapper_2710',['AdvectionSrcForScalarsWrapper',['../AdvectionSrcForScalars_8H.html#a528a419d0272e41cd3e30a963e40c5bd',1,'AdvectionSrcForScalars.H']]], - ['advectionsrcforxmom_2711',['AdvectionSrcForXMom',['../AdvectionSrcForMom__T_8H.html#a5468932ef249d02b34fb647a1b1ab5c8',1,'AdvectionSrcForMom_T.H']]], - ['advectionsrcforxmom_5fn_2712',['AdvectionSrcForXMom_N',['../AdvectionSrcForMom__N_8H.html#a1bf28455bc3f12b6bfaf2ac5c72ade43',1,'AdvectionSrcForMom_N.H']]], - ['advectionsrcforymom_2713',['AdvectionSrcForYMom',['../AdvectionSrcForMom__T_8H.html#a135f2345d5ee1204bc954483daf46e5a',1,'AdvectionSrcForMom_T.H']]], - ['advectionsrcforymom_5fn_2714',['AdvectionSrcForYMom_N',['../AdvectionSrcForMom__N_8H.html#ab60d92de161522cece1baf13c5dea04c',1,'AdvectionSrcForMom_N.H']]], - ['advectionsrcforzmom_2715',['AdvectionSrcForZMom',['../AdvectionSrcForMom__T_8H.html#a333428f54334374129656feb237e8047',1,'AdvectionSrcForMom_T.H']]], - ['advectionsrcforzmom_5fn_2716',['AdvectionSrcForZMom_N',['../AdvectionSrcForMom__N_8H.html#abbcdc73f7b35b08b49f4ddab5a3d3a99',1,'AdvectionSrcForMom_N.H']]], - ['aer_5foptics_5flog_5frh_2717',['aer_optics_log_rh',['../classPhysProp.html#a1099f5de19b69524e4c2bb0b78e497b7',1,'PhysProp']]], - ['aer_5frad_5fprops_5flw_2718',['aer_rad_props_lw',['../classAerRadProps.html#a6aabfa89e9a9d91bae79c7a0d91f17b3',1,'AerRadProps']]], - ['aer_5frad_5fprops_5fsw_2719',['aer_rad_props_sw',['../classAerRadProps.html#a433097bd85637100b16f3e120e9d6fa1',1,'AerRadProps']]], - ['aer_5fvis_5fdiag_5fout_2720',['aer_vis_diag_out',['../classAerRadProps.html#a97f18fad2a20322240862cee5c3fb5b7',1,'AerRadProps']]], - ['aerosol_5foptics_5finit_2721',['aerosol_optics_init',['../classPhysProp.html#a2f4be5c79cc5394f258c6e2e4570f897',1,'PhysProp']]], - ['aerradprops_2722',['AerRadProps',['../classAerRadProps.html#ae0eb6fbcd6b30a8e4538b8db3944d1e0',1,'AerRadProps']]], - ['all_5fdims_2723',['all_dims',['../classncutils_1_1NCGroup.html#a8e01fe072fa48f4fa9c8be33a3a401b0',1,'ncutils::NCGroup']]], - ['all_5fgroups_2724',['all_groups',['../classncutils_1_1NCGroup.html#a82a48643f27b33b27cdd87c60e63f5f5',1,'ncutils::NCGroup']]], - ['all_5fvars_2725',['all_vars',['../classncutils_1_1NCGroup.html#affa2e62434110dd4fa47d093162e56cf',1,'ncutils::NCGroup']]], - ['amrex_5fprobinit_2726',['amrex_probinit',['../prob__common_8H.html#a177c505462e3d544fae638344f900397',1,'prob_common.H']]], - ['appendplotvariables_2727',['appendPlotVariables',['../classERF.html#a7758f75dc7c9029eddc4c58ac0567654',1,'ERF']]], - ['apply_5ftpi_2728',['apply_tpi',['../structTurbulentPerturbation.html#adcb414231654ad9f5232a1a3377c30f2',1,'TurbulentPerturbation']]], - ['applyinvertedmask_2729',['ApplyInvertedMask',['../Utils_8H.html#acbc6116a3309adf87b7dc24242dc50ec',1,'Utils.H']]], - ['applymask_2730',['ApplyMask',['../Utils_8H.html#acebead6f3a33cb7737a1fea98341c3ae',1,'Utils.H']]], - ['applyspongezonebcsforcc_2731',['ApplySpongeZoneBCsForCC',['../ERF__ApplySpongeZoneBCs_8cpp.html#a2bb1399e36952baeacfd197a5322d661',1,'ApplySpongeZoneBCsForCC(const SpongeChoice &spongeChoice, const Geometry geom, const Box &bx, const Array4< Real > &cell_rhs, const Array4< const Real > &cell_data): ERF_ApplySpongeZoneBCs.cpp'],['../Src__headers_8H.html#a2cafd6a78e2987d7566c34f8f1f57cff',1,'ApplySpongeZoneBCsForCC(const SpongeChoice &spongeChoice, const amrex::Geometry geom, const amrex::Box &bx, const amrex::Array4< amrex::Real > &cell_rhs, const amrex::Array4< const amrex::Real > &cell_data): Src_headers.H']]], - ['applyspongezonebcsformom_2732',['ApplySpongeZoneBCsForMom',['../ERF__ApplySpongeZoneBCs_8cpp.html#a2f0457a5cf90ed9e3f084a3951a80ae8',1,'ApplySpongeZoneBCsForMom(const SpongeChoice &spongeChoice, const Geometry geom, const Box &tbx, const Box &tby, const Box &tbz, const Array4< Real > &rho_u_rhs, const Array4< Real > &rho_v_rhs, const Array4< Real > &rho_w_rhs, const Array4< const Real > &rho_u, const Array4< const Real > &rho_v, const Array4< const Real > &rho_w): ERF_ApplySpongeZoneBCs.cpp'],['../Src__headers_8H.html#a0d9796507be7a7f2072d5f15928e05fc',1,'ApplySpongeZoneBCsForMom(const SpongeChoice &spongeChoice, const amrex::Geometry geom, const amrex::Box &tbx, const amrex::Box &tby, const amrex::Box &tbz, const amrex::Array4< amrex::Real > &rho_u_rhs, const amrex::Array4< amrex::Real > &rho_v_rhs, const amrex::Array4< amrex::Real > &rho_w_rhs, const amrex::Array4< const amrex::Real > &rho_u, const amrex::Array4< const amrex::Real > &rho_v, const amrex::Array4< const amrex::Real > &rho_w): Src_headers.H']]], - ['applyspongezonebcsformom_5freadfromfile_2733',['ApplySpongeZoneBCsForMom_ReadFromFile',['../Src__headers_8H.html#ae22ef4440a73ae73f46775e3b8f635ac',1,'ApplySpongeZoneBCsForMom_ReadFromFile(const SpongeChoice &spongeChoice, const amrex::Geometry geom, const amrex::Box &tbx, const amrex::Box &tby, const amrex::Array4< const amrex::Real > &cell_data, const amrex::Array4< amrex::Real > &rho_u_rhs, const amrex::Array4< amrex::Real > &rho_v_rhs, const amrex::Array4< const amrex::Real > &rho_u, const amrex::Array4< const amrex::Real > &rho_v, const amrex::Vector< amrex::Real * > d_sponge_ptrs_at_lev): Src_headers.H'],['../ERF__ApplySpongeZoneBCs__ReadFromFile_8cpp.html#a43cc085fc4c8dd69e73541c28062925c',1,'ApplySpongeZoneBCsForMom_ReadFromFile(const SpongeChoice &spongeChoice, const Geometry geom, const Box &tbx, const Box &tby, const Array4< const Real > &cell_data, const Array4< Real > &rho_u_rhs, const Array4< Real > &rho_v_rhs, const Array4< const Real > &rho_u, const Array4< const Real > &rho_v, const Vector< Real * > d_sponge_ptrs_at_lev): ERF_ApplySpongeZoneBCs_ReadFromFile.cpp']]], - ['averagedown_2734',['AverageDown',['../classERF.html#a8202de1f8f372e3e6fdc483447c6a55f',1,'ERF']]], - ['averagedownto_2735',['AverageDownTo',['../classERF.html#ae17524f168760cf435685a08d97480e7',1,'ERF']]], - ['axis_2736',['axis',['../classPlaneAverage.html#ae90ae5492fc58db64f54c342c800f59a',1,'PlaneAverage']]] + ['ablmost_2679',['ABLMost',['../classABLMost.html#a4ee786860369e5a42ba353308590b372',1,'ABLMost']]], + ['add_5fpar_2680',['add_par',['../main_8cpp.html#a183e783116d02836167ccbed3b28c1d3',1,'main.cpp']]], + ['add_5fthin_5fbody_5fsources_2681',['add_thin_body_sources',['../Src__headers_8H.html#a5b82614fa1590f73caf25dc65b1c937d',1,'add_thin_body_sources(amrex::MultiFab &xmom_source, amrex::MultiFab &ymom_source, amrex::MultiFab &zmom_source, std::unique_ptr< amrex::iMultiFab > &xflux_imask_lev, std::unique_ptr< amrex::iMultiFab > &yflux_imask_lev, std::unique_ptr< amrex::iMultiFab > &zflux_imask_lev, std::unique_ptr< amrex::MultiFab > &thin_xforce_lev, std::unique_ptr< amrex::MultiFab > &thin_yforce_lev, std::unique_ptr< amrex::MultiFab > &thin_zforce_lev): Src_headers.H'],['../ERF__add__thin__body__sources_8cpp.html#afe1f106475861ba9ed98d5163c7f4e20',1,'add_thin_body_sources(MultiFab &xmom_src, MultiFab &ymom_src, MultiFab &zmom_src, std::unique_ptr< iMultiFab > &xflux_imask_lev, std::unique_ptr< iMultiFab > &yflux_imask_lev, std::unique_ptr< iMultiFab > &zflux_imask_lev, std::unique_ptr< MultiFab > &thin_xforce_lev, std::unique_ptr< MultiFab > &thin_yforce_lev, std::unique_ptr< MultiFab > &thin_zforce_lev): ERF_add_thin_body_sources.cpp']]], + ['add_5fvar_2682',['add_var',['../structTimeInterpolatedData.html#a3b9292eb3012672361abacc2ab7d9b2c',1,'TimeInterpolatedData']]], + ['adiabatic_2683',['adiabatic',['../structadiabatic.html#a43c914de601009400405ce6cfaaf2936',1,'adiabatic']]], + ['adiabatic_5fcharnock_2684',['adiabatic_charnock',['../structadiabatic__charnock.html#a03e2e3c105b2939c433c758d067a74a9',1,'adiabatic_charnock']]], + ['adiabatic_5fmod_5fcharnock_2685',['adiabatic_mod_charnock',['../structadiabatic__mod__charnock.html#a4d85da446411e8d3f4dfb8e47e4c14b4',1,'adiabatic_mod_charnock']]], + ['adiabatic_5fwave_5fcoupled_2686',['adiabatic_wave_coupled',['../structadiabatic__wave__coupled.html#ab4bae3bcb6d202acedfa914203374506',1,'adiabatic_wave_coupled']]], + ['adv_5ftype_5fconvert_5fint_5fto_5fstring_2687',['adv_type_convert_int_to_string',['../structAdvChoice.html#abea240033571adc8f3993bd56bf28fa2',1,'AdvChoice']]], + ['adv_5ftype_5fconvert_5fstring_5fto_5fadvtype_2688',['adv_type_convert_string_to_advtype',['../structAdvChoice.html#a191cb08c4e809d1982ea90e4b4f9a528',1,'AdvChoice']]], + ['advance_2689',['Advance',['../classNullSurf.html#a70a49bad633a2a87c4df7de8f368ef95',1,'NullSurf::Advance()'],['../classERF.html#a47413fe5588f7dd71a1d5087a9e804f9',1,'ERF::Advance()'],['../classLandSurface.html#a2170397164e0f533884e744a2a73deb7',1,'LandSurface::Advance()']]], + ['advance_2690',['advance',['../classWindFarm.html#a1ee7eda7941fb31102be525bd79c8eb6',1,'WindFarm::advance()'],['../classSimpleAD.html#a846f49f7333ed47f1c92d5cc8b57cb08',1,'SimpleAD::advance()'],['../classNullWindFarm.html#a3085f67dd33114a5984f51ccdeffc7fa',1,'NullWindFarm::advance()'],['../classFitch.html#a9360fcfcc51477e24b225c54387543c6',1,'Fitch::advance()'],['../classEWP.html#ab1f86b9667e1b3b119458c86b8655939',1,'EWP::advance()']]], + ['advance_2691',['Advance',['../classSAM.html#a012056ae20ded7928adf1be8afa665b9',1,'SAM::Advance()'],['../classEulerianMicrophysics.html#a6cc7efaa2f4f27f8a7f485fd96e5635b',1,'EulerianMicrophysics::Advance()'],['../classSLM.html#a31956746a8b8bbf207027cb784c9bfa4',1,'SLM::Advance()'],['../classMM5.html#a2acfbfb967111ce4aed50e55adbcc15c',1,'MM5::Advance()']]], + ['advance_2692',['advance',['../classMRISplitIntegrator.html#ad78b5d1908a131c3597232a041ca267b',1,'MRISplitIntegrator']]], + ['advance_2693',['Advance',['../classKessler.html#adbfb72df664abc2f02fede6b91b066b6',1,'Kessler::Advance()'],['../classMicrophysics.html#a88b5020f081efbf8805cffff5cde298c',1,'Microphysics::Advance()'],['../classNullMoist.html#aa2f97dcd622bc4ef212421d496ee2297',1,'NullMoist::Advance()']]], + ['advance_5fdycore_2694',['advance_dycore',['../classERF.html#af836d1bb05ac4c9f535358e14714f13e',1,'ERF']]], + ['advance_5flsm_2695',['advance_lsm',['../classERF.html#ac3f83ba16254a0efd4395900cef97efc',1,'ERF']]], + ['advance_5fmicrophysics_2696',['advance_microphysics',['../classERF.html#ad64b5fe566102dc053b35ad337971a3e',1,'ERF']]], + ['advanceblocks_2697',['AdvanceBlocks',['../classMultiBlockContainer.html#afe74361709855a6b78669dea775edc45',1,'MultiBlockContainer']]], + ['advancekessler_2698',['AdvanceKessler',['../classKessler.html#ab67e26d4eb01a6e25707b73ca47714ef',1,'Kessler']]], + ['advancemm5_2699',['AdvanceMM5',['../classMM5.html#a44d3fcf82f4f149b6ba3ccfe9b896849',1,'MM5']]], + ['advanceslm_2700',['AdvanceSLM',['../classSLM.html#ac051c05d408c3471b0206f232c5f1fbc',1,'SLM']]], + ['advectionsrcformom_2701',['AdvectionSrcForMom',['../AdvectionSrcForMom_8cpp.html#a308c801e1b50746486cee1e6f9ee60fd',1,'AdvectionSrcForMom(const Box &bx, const Box &bxx, const Box &bxy, const Box &bxz, const Array4< Real > &rho_u_rhs, const Array4< Real > &rho_v_rhs, const Array4< Real > &rho_w_rhs, const Array4< const Real > &cell_data, const Array4< const Real > &u, const Array4< const Real > &v, const Array4< const Real > &w, const Array4< const Real > &rho_u, const Array4< const Real > &rho_v, const Array4< const Real > &Omega, const Array4< const Real > &z_nd, const Array4< const Real > &ax, const Array4< const Real > &ay, const Array4< const Real > &az, const Array4< const Real > &detJ, const GpuArray< Real, AMREX_SPACEDIM > &cellSizeInv, const Array4< const Real > &mf_m, const Array4< const Real > &mf_u, const Array4< const Real > &mf_v, const AdvType horiz_adv_type, const AdvType vert_adv_type, const Real horiz_upw_frac, const Real vert_upw_frac, const bool use_terrain, const int lo_z_face, const int hi_z_face, const Box &domain, const BCRec *bc_ptr_h): AdvectionSrcForMom.cpp'],['../Advection_8H.html#ab1b35d1f492c8be5490f75c18d1abc7a',1,'AdvectionSrcForMom(const amrex::Box &bx, const amrex::Box &bxx, const amrex::Box &bxy, const amrex::Box &bxz, const amrex::Array4< amrex::Real > &rho_u_rhs, const amrex::Array4< amrex::Real > &rho_v_rhs, const amrex::Array4< amrex::Real > &rho_w_rhs, const amrex::Array4< const amrex::Real > &rho, const amrex::Array4< const amrex::Real > &u, const amrex::Array4< const amrex::Real > &v, const amrex::Array4< const amrex::Real > &w, const amrex::Array4< const amrex::Real > &rho_u, const amrex::Array4< const amrex::Real > &rho_v, const amrex::Array4< const amrex::Real > &Omega, const amrex::Array4< const amrex::Real > &z_nd, const amrex::Array4< const amrex::Real > &ax, const amrex::Array4< const amrex::Real > &ay, const amrex::Array4< const amrex::Real > &az, const amrex::Array4< const amrex::Real > &detJ, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &cellSizeInv, const amrex::Array4< const amrex::Real > &mf_m, const amrex::Array4< const amrex::Real > &mf_u, const amrex::Array4< const amrex::Real > &mf_v, const AdvType horiz_adv_type, const AdvType vert_adv_type, const amrex::Real horiz_upw_frac, const amrex::Real vert_upw_frac, const bool use_terrain, const int lo_z_face, const int hi_z_face, const amrex::Box &domain, const amrex::BCRec *bc_ptr_h): Advection.H']]], + ['advectionsrcformomvert_2702',['AdvectionSrcForMomVert',['../AdvectionSrcForMom__T_8H.html#ae8cc522ffffb23058df8e8ed5c892acd',1,'AdvectionSrcForMom_T.H']]], + ['advectionsrcformomvert_5fn_2703',['AdvectionSrcForMomVert_N',['../AdvectionSrcForMom__N_8H.html#ac1ffb44f53b355afef0c5a20b7750910',1,'AdvectionSrcForMom_N.H']]], + ['advectionsrcformomwrapper_2704',['AdvectionSrcForMomWrapper',['../AdvectionSrcForMom__T_8H.html#a4594886b5c42807b88fde702d78b062b',1,'AdvectionSrcForMom_T.H']]], + ['advectionsrcformomwrapper_5fn_2705',['AdvectionSrcForMomWrapper_N',['../AdvectionSrcForMom__N_8H.html#afccfe8e1799dbee5d72547a51914406a',1,'AdvectionSrcForMom_N.H']]], + ['advectionsrcforopenbc_5fnormal_2706',['AdvectionSrcForOpenBC_Normal',['../AdvectionSrcForOpenBC_8cpp.html#a9724c4268388a35a651fbe8e0b8d8e15',1,'AdvectionSrcForOpenBC_Normal(const Box &bx, const int &dir, const Array4< Real > &rhs_arr, const Array4< const Real > &vel_norm_arr, const Array4< const Real > &cell_data_arr, const GpuArray< Real, AMREX_SPACEDIM > &dxInv, const bool do_lo): AdvectionSrcForOpenBC.cpp'],['../Advection_8H.html#a8a93a1f4fa830e853896360758c1185c',1,'AdvectionSrcForOpenBC_Normal(const amrex::Box &bx, const int &dir, const amrex::Array4< amrex::Real > &rhs_arr, const amrex::Array4< const amrex::Real > &vel_norm_arr, const amrex::Array4< const amrex::Real > &cell_data_arr, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxInv, const bool do_lo=false): Advection.H']]], + ['advectionsrcforopenbc_5ftangent_2707',['AdvectionSrcForOpenBC_Tangent',['../AdvectionSrcForOpenBC_8cpp.html#ac6e7a792c85a42fe5c0679a2b1f763ec',1,'AdvectionSrcForOpenBC_Tangent(const int &i, const int &j, const int &k, const int &nprim, const int &dir, const Array4< const Real > &prim_tang_arr, const Array4< const Real > &mom_norm_arr, const Real &dxInv, const bool do_lo): AdvectionSrcForOpenBC.cpp'],['../Advection_8H.html#ab0aafe8d39448868a229ed291f363d5b',1,'AdvectionSrcForOpenBC_Tangent(const int &i, const int &j, const int &k, const int &nprim, const int &dir, const amrex::Array4< const amrex::Real > &prim_tang_arr, const amrex::Array4< const amrex::Real > &mom_norm_arr, const amrex::Real &dxInv, const bool do_lo=false): Advection.H']]], + ['advectionsrcforopenbc_5ftangent_5fcons_2708',['AdvectionSrcForOpenBC_Tangent_Cons',['../Advection_8H.html#abd84d0909db1f87c22b5a92aae03e919',1,'AdvectionSrcForOpenBC_Tangent_Cons(const amrex::Box &bx, const int &dir, const int &icomp, const int &ncomp, const amrex::Array4< amrex::Real > &cell_rhs, const amrex::Array4< const amrex::Real > &cell_prim, const amrex::Array4< const amrex::Real > &avg_xmom, const amrex::Array4< const amrex::Real > &avg_ymom, const amrex::Array4< const amrex::Real > &avg_zmom, const amrex::Array4< const amrex::Real > &detJ, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &cellSizeInv, const bool do_lo=false): Advection.H'],['../AdvectionSrcForOpenBC_8cpp.html#af626d3a8c7d93d081c268b6ef3368e20',1,'AdvectionSrcForOpenBC_Tangent_Cons(const Box &bx, const int &dir, const int &icomp, const int &ncomp, const Array4< Real > &cell_rhs, const Array4< const Real > &cell_prim, const Array4< const Real > &avg_xmom, const Array4< const Real > &avg_ymom, const Array4< const Real > &avg_zmom, const Array4< const Real > &detJ, const GpuArray< Real, AMREX_SPACEDIM > &cellSizeInv, const bool do_lo): AdvectionSrcForOpenBC.cpp']]], + ['advectionsrcforopenbc_5ftangent_5fxmom_2709',['AdvectionSrcForOpenBC_Tangent_Xmom',['../AdvectionSrcForOpenBC_8cpp.html#a426d47e0a43e0ba9ec9ea4791165c14e',1,'AdvectionSrcForOpenBC_Tangent_Xmom(const Box &bxx, const int &dir, const Array4< Real > &rho_u_rhs, const Array4< const Real > &u, const Array4< const Real > &rho_u, const Array4< const Real > &rho_v, const Array4< const Real > &Omega, const Array4< const Real > &ax, const Array4< const Real > &az, const Array4< const Real > &detJ, const GpuArray< Real, AMREX_SPACEDIM > &cellSizeInv, const bool do_lo): AdvectionSrcForOpenBC.cpp'],['../Advection_8H.html#a77a3da224ebc848d774a465bc4edbb6d',1,'AdvectionSrcForOpenBC_Tangent_Xmom(const amrex::Box &bxx, const int &dir, const amrex::Array4< amrex::Real > &rho_u_rhs, const amrex::Array4< const amrex::Real > &u, const amrex::Array4< const amrex::Real > &rho_u, const amrex::Array4< const amrex::Real > &rho_v, const amrex::Array4< const amrex::Real > &Omega, const amrex::Array4< const amrex::Real > &ax, const amrex::Array4< const amrex::Real > &az, const amrex::Array4< const amrex::Real > &detJ, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &cellSizeInv, const bool do_lo=false): Advection.H']]], + ['advectionsrcforopenbc_5ftangent_5fymom_2710',['AdvectionSrcForOpenBC_Tangent_Ymom',['../Advection_8H.html#a4ff38549b044becdf35e0331f8361756',1,'AdvectionSrcForOpenBC_Tangent_Ymom(const amrex::Box &bxy, const int &dir, const amrex::Array4< amrex::Real > &rho_v_rhs, const amrex::Array4< const amrex::Real > &v, const amrex::Array4< const amrex::Real > &rho_u, const amrex::Array4< const amrex::Real > &rho_v, const amrex::Array4< const amrex::Real > &Omega, const amrex::Array4< const amrex::Real > &ay, const amrex::Array4< const amrex::Real > &az, const amrex::Array4< const amrex::Real > &detJ, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &cellSizeInv, const bool do_lo=false): Advection.H'],['../AdvectionSrcForOpenBC_8cpp.html#a7962977abbf346525d7b3481c8a6f25e',1,'AdvectionSrcForOpenBC_Tangent_Ymom(const Box &bxy, const int &dir, const Array4< Real > &rho_v_rhs, const Array4< const Real > &v, const Array4< const Real > &rho_u, const Array4< const Real > &rho_v, const Array4< const Real > &Omega, const Array4< const Real > &ay, const Array4< const Real > &az, const Array4< const Real > &detJ, const GpuArray< Real, AMREX_SPACEDIM > &cellSizeInv, const bool do_lo): AdvectionSrcForOpenBC.cpp']]], + ['advectionsrcforopenbc_5ftangent_5fzmom_2711',['AdvectionSrcForOpenBC_Tangent_Zmom',['../Advection_8H.html#ac890a386e0e9ef50f62ae1ae7a3297fb',1,'AdvectionSrcForOpenBC_Tangent_Zmom(const amrex::Box &bxz, const int &dir, const amrex::Array4< amrex::Real > &rho_w_rhs, const amrex::Array4< const amrex::Real > &w, const amrex::Array4< const amrex::Real > &rho_u, const amrex::Array4< const amrex::Real > &rho_v, const amrex::Array4< const amrex::Real > &Omega, const amrex::Array4< const amrex::Real > &ax, const amrex::Array4< const amrex::Real > &ay, const amrex::Array4< const amrex::Real > &az, const amrex::Array4< const amrex::Real > &detJ, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &cellSizeInv, const int domhi_z, const bool do_lo=false): Advection.H'],['../AdvectionSrcForOpenBC_8cpp.html#a77ce5c5e497f070833cb915ffee7eea2',1,'AdvectionSrcForOpenBC_Tangent_Zmom(const Box &bxz, const int &dir, const Array4< Real > &rho_w_rhs, const Array4< const Real > &w, const Array4< const Real > &rho_u, const Array4< const Real > &rho_v, const Array4< const Real > &Omega, const Array4< const Real > &ax, const Array4< const Real > &ay, const Array4< const Real > &az, const Array4< const Real > &detJ, const GpuArray< Real, AMREX_SPACEDIM > &cellSizeInv, const int domhi_z, const bool do_lo): AdvectionSrcForOpenBC.cpp']]], + ['advectionsrcforrho_2712',['AdvectionSrcForRho',['../Advection_8H.html#a0227b1517e5223b7b884ba7d5b59f51e',1,'AdvectionSrcForRho(const amrex::Box &bx, const amrex::Array4< amrex::Real > &src, const amrex::Array4< const amrex::Real > &rho_u, const amrex::Array4< const amrex::Real > &rho_v, const amrex::Array4< const amrex::Real > &omega, const amrex::Array4< amrex::Real > &avg_xmom, const amrex::Array4< amrex::Real > &avg_ymom, const amrex::Array4< amrex::Real > &avg_zmom, const amrex::Array4< const amrex::Real > &ax_arr, const amrex::Array4< const amrex::Real > &ay_arr, const amrex::Array4< const amrex::Real > &az_arr, const amrex::Array4< const amrex::Real > &detJ, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &cellSizeInv, const amrex::Array4< const amrex::Real > &mf_m, const amrex::Array4< const amrex::Real > &mf_u, const amrex::Array4< const amrex::Real > &mf_v, const amrex::GpuArray< const amrex::Array4< amrex::Real >, AMREX_SPACEDIM > &flx_arr, const bool const_rho): Advection.H'],['../AdvectionSrcForState_8cpp.html#a9683ebdeaa4713791cdaf407ff259e2b',1,'AdvectionSrcForRho(const Box &bx, const Array4< Real > &advectionSrc, const Array4< const Real > &rho_u, const Array4< const Real > &rho_v, const Array4< const Real > &Omega, const Array4< Real > &avg_xmom, const Array4< Real > &avg_ymom, const Array4< Real > &avg_zmom, const Array4< const Real > &ax_arr, const Array4< const Real > &ay_arr, const Array4< const Real > &az_arr, const Array4< const Real > &detJ, const GpuArray< Real, AMREX_SPACEDIM > &cellSizeInv, const Array4< const Real > &mf_m, const Array4< const Real > &mf_u, const Array4< const Real > &mf_v, const GpuArray< const Array4< Real >, AMREX_SPACEDIM > &flx_arr, const bool const_rho): AdvectionSrcForState.cpp']]], + ['advectionsrcforscalars_2713',['AdvectionSrcForScalars',['../Advection_8H.html#aec32d1f86c49b3d647c08f4226e2fcd2',1,'AdvectionSrcForScalars(const amrex::Real &dt, const amrex::Box &bx, const int icomp, const int ncomp, const amrex::Array4< const amrex::Real > &avg_xmom, const amrex::Array4< const amrex::Real > &avg_ymom, const amrex::Array4< const amrex::Real > &avg_zmom, const amrex::Array4< const amrex::Real > &cur_cons, const amrex::Array4< const amrex::Real > &cell_prim, const amrex::Array4< amrex::Real > &src, const bool &use_mono_adv, amrex::Real *max_s_ptr, amrex::Real *min_s_ptr, const amrex::Array4< const amrex::Real > &vf_arr, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &cellSizeInv, const amrex::Array4< const amrex::Real > &mf_m, const AdvType horiz_adv_type, const AdvType vert_adv_type, const amrex::Real horiz_upw_frac, const amrex::Real vert_upw_frac, const amrex::GpuArray< const amrex::Array4< amrex::Real >, AMREX_SPACEDIM > &flx_arr, const amrex::Box &domain, const amrex::BCRec *bc_ptr_h): Advection.H'],['../AdvectionSrcForState_8cpp.html#a2d291e3fb848a64238a0c62cf85c25f9',1,'AdvectionSrcForScalars(const Real &dt, const Box &bx, const int icomp, const int ncomp, const Array4< const Real > &avg_xmom, const Array4< const Real > &avg_ymom, const Array4< const Real > &avg_zmom, const Array4< const Real > &cur_cons, const Array4< const Real > &cell_prim, const Array4< Real > &advectionSrc, const bool &use_mono_adv, Real *max_s_ptr, Real *min_s_ptr, const Array4< const Real > &detJ, const GpuArray< Real, AMREX_SPACEDIM > &cellSizeInv, const Array4< const Real > &mf_m, const AdvType horiz_adv_type, const AdvType vert_adv_type, const Real horiz_upw_frac, const Real vert_upw_frac, const GpuArray< const Array4< Real >, AMREX_SPACEDIM > &flx_arr, const Box &domain, const BCRec *bc_ptr_h): AdvectionSrcForState.cpp']]], + ['advectionsrcforscalarsvert_2714',['AdvectionSrcForScalarsVert',['../AdvectionSrcForScalars_8H.html#a7ae00f92678a2aeee794bf2b735c19eb',1,'AdvectionSrcForScalars.H']]], + ['advectionsrcforscalarswrapper_2715',['AdvectionSrcForScalarsWrapper',['../AdvectionSrcForScalars_8H.html#a528a419d0272e41cd3e30a963e40c5bd',1,'AdvectionSrcForScalars.H']]], + ['advectionsrcforxmom_2716',['AdvectionSrcForXMom',['../AdvectionSrcForMom__T_8H.html#a5468932ef249d02b34fb647a1b1ab5c8',1,'AdvectionSrcForMom_T.H']]], + ['advectionsrcforxmom_5fn_2717',['AdvectionSrcForXMom_N',['../AdvectionSrcForMom__N_8H.html#a1bf28455bc3f12b6bfaf2ac5c72ade43',1,'AdvectionSrcForMom_N.H']]], + ['advectionsrcforymom_2718',['AdvectionSrcForYMom',['../AdvectionSrcForMom__T_8H.html#a135f2345d5ee1204bc954483daf46e5a',1,'AdvectionSrcForMom_T.H']]], + ['advectionsrcforymom_5fn_2719',['AdvectionSrcForYMom_N',['../AdvectionSrcForMom__N_8H.html#ab60d92de161522cece1baf13c5dea04c',1,'AdvectionSrcForMom_N.H']]], + ['advectionsrcforzmom_2720',['AdvectionSrcForZMom',['../AdvectionSrcForMom__T_8H.html#a333428f54334374129656feb237e8047',1,'AdvectionSrcForMom_T.H']]], + ['advectionsrcforzmom_5fn_2721',['AdvectionSrcForZMom_N',['../AdvectionSrcForMom__N_8H.html#abbcdc73f7b35b08b49f4ddab5a3d3a99',1,'AdvectionSrcForMom_N.H']]], + ['aer_5foptics_5flog_5frh_2722',['aer_optics_log_rh',['../classPhysProp.html#a1099f5de19b69524e4c2bb0b78e497b7',1,'PhysProp']]], + ['aer_5frad_5fprops_5flw_2723',['aer_rad_props_lw',['../classAerRadProps.html#a6aabfa89e9a9d91bae79c7a0d91f17b3',1,'AerRadProps']]], + ['aer_5frad_5fprops_5fsw_2724',['aer_rad_props_sw',['../classAerRadProps.html#a433097bd85637100b16f3e120e9d6fa1',1,'AerRadProps']]], + ['aer_5fvis_5fdiag_5fout_2725',['aer_vis_diag_out',['../classAerRadProps.html#a97f18fad2a20322240862cee5c3fb5b7',1,'AerRadProps']]], + ['aerosol_5foptics_5finit_2726',['aerosol_optics_init',['../classPhysProp.html#a2f4be5c79cc5394f258c6e2e4570f897',1,'PhysProp']]], + ['aerradprops_2727',['AerRadProps',['../classAerRadProps.html#ae0eb6fbcd6b30a8e4538b8db3944d1e0',1,'AerRadProps']]], + ['all_5fdims_2728',['all_dims',['../classncutils_1_1NCGroup.html#a8e01fe072fa48f4fa9c8be33a3a401b0',1,'ncutils::NCGroup']]], + ['all_5fgroups_2729',['all_groups',['../classncutils_1_1NCGroup.html#a82a48643f27b33b27cdd87c60e63f5f5',1,'ncutils::NCGroup']]], + ['all_5fvars_2730',['all_vars',['../classncutils_1_1NCGroup.html#affa2e62434110dd4fa47d093162e56cf',1,'ncutils::NCGroup']]], + ['amrex_5fprobinit_2731',['amrex_probinit',['../prob__common_8H.html#a177c505462e3d544fae638344f900397',1,'prob_common.H']]], + ['appendplotvariables_2732',['appendPlotVariables',['../classERF.html#a7758f75dc7c9029eddc4c58ac0567654',1,'ERF']]], + ['apply_5ftpi_2733',['apply_tpi',['../structTurbulentPerturbation.html#adcb414231654ad9f5232a1a3377c30f2',1,'TurbulentPerturbation']]], + ['applyinvertedmask_2734',['ApplyInvertedMask',['../Utils_8H.html#acbc6116a3309adf87b7dc24242dc50ec',1,'Utils.H']]], + ['applymask_2735',['ApplyMask',['../Utils_8H.html#acebead6f3a33cb7737a1fea98341c3ae',1,'Utils.H']]], + ['applyspongezonebcsforcc_2736',['ApplySpongeZoneBCsForCC',['../ERF__ApplySpongeZoneBCs_8cpp.html#a2bb1399e36952baeacfd197a5322d661',1,'ApplySpongeZoneBCsForCC(const SpongeChoice &spongeChoice, const Geometry geom, const Box &bx, const Array4< Real > &cell_rhs, const Array4< const Real > &cell_data): ERF_ApplySpongeZoneBCs.cpp'],['../Src__headers_8H.html#a2cafd6a78e2987d7566c34f8f1f57cff',1,'ApplySpongeZoneBCsForCC(const SpongeChoice &spongeChoice, const amrex::Geometry geom, const amrex::Box &bx, const amrex::Array4< amrex::Real > &cell_rhs, const amrex::Array4< const amrex::Real > &cell_data): Src_headers.H']]], + ['applyspongezonebcsformom_2737',['ApplySpongeZoneBCsForMom',['../ERF__ApplySpongeZoneBCs_8cpp.html#a2f0457a5cf90ed9e3f084a3951a80ae8',1,'ApplySpongeZoneBCsForMom(const SpongeChoice &spongeChoice, const Geometry geom, const Box &tbx, const Box &tby, const Box &tbz, const Array4< Real > &rho_u_rhs, const Array4< Real > &rho_v_rhs, const Array4< Real > &rho_w_rhs, const Array4< const Real > &rho_u, const Array4< const Real > &rho_v, const Array4< const Real > &rho_w): ERF_ApplySpongeZoneBCs.cpp'],['../Src__headers_8H.html#a0d9796507be7a7f2072d5f15928e05fc',1,'ApplySpongeZoneBCsForMom(const SpongeChoice &spongeChoice, const amrex::Geometry geom, const amrex::Box &tbx, const amrex::Box &tby, const amrex::Box &tbz, const amrex::Array4< amrex::Real > &rho_u_rhs, const amrex::Array4< amrex::Real > &rho_v_rhs, const amrex::Array4< amrex::Real > &rho_w_rhs, const amrex::Array4< const amrex::Real > &rho_u, const amrex::Array4< const amrex::Real > &rho_v, const amrex::Array4< const amrex::Real > &rho_w): Src_headers.H']]], + ['applyspongezonebcsformom_5freadfromfile_2738',['ApplySpongeZoneBCsForMom_ReadFromFile',['../Src__headers_8H.html#ae22ef4440a73ae73f46775e3b8f635ac',1,'ApplySpongeZoneBCsForMom_ReadFromFile(const SpongeChoice &spongeChoice, const amrex::Geometry geom, const amrex::Box &tbx, const amrex::Box &tby, const amrex::Array4< const amrex::Real > &cell_data, const amrex::Array4< amrex::Real > &rho_u_rhs, const amrex::Array4< amrex::Real > &rho_v_rhs, const amrex::Array4< const amrex::Real > &rho_u, const amrex::Array4< const amrex::Real > &rho_v, const amrex::Vector< amrex::Real * > d_sponge_ptrs_at_lev): Src_headers.H'],['../ERF__ApplySpongeZoneBCs__ReadFromFile_8cpp.html#a43cc085fc4c8dd69e73541c28062925c',1,'ApplySpongeZoneBCsForMom_ReadFromFile(const SpongeChoice &spongeChoice, const Geometry geom, const Box &tbx, const Box &tby, const Array4< const Real > &cell_data, const Array4< Real > &rho_u_rhs, const Array4< Real > &rho_v_rhs, const Array4< const Real > &rho_u, const Array4< const Real > &rho_v, const Vector< Real * > d_sponge_ptrs_at_lev): ERF_ApplySpongeZoneBCs_ReadFromFile.cpp']]], + ['averagedown_2739',['AverageDown',['../classERF.html#a8202de1f8f372e3e6fdc483447c6a55f',1,'ERF']]], + ['averagedownto_2740',['AverageDownTo',['../classERF.html#ae17524f168760cf435685a08d97480e7',1,'ERF']]], + ['axis_2741',['axis',['../classPlaneAverage.html#ae90ae5492fc58db64f54c342c800f59a',1,'PlaneAverage']]] ]; diff --git a/search/functions_1.js b/search/functions_1.js index 8de86439d4..198d6cbcdd 100644 --- a/search/functions_1.js +++ b/search/functions_1.js @@ -1,16 +1,16 @@ var searchData= [ - ['binterp_2737',['binterp',['../classMam4__aer.html#ac1ba4ccab45c000472b4d40cb43c9ef9',1,'Mam4_aer']]], - ['bolton_5fsvp_5fwater_2738',['Bolton_svp_water',['../classSatMethods.html#a128ccad46f784c2d1aaeda372833dab6',1,'SatMethods']]], - ['br_5fshift_2739',['br_shift',['../ERF__WriteBndryPlanes_8cpp.html#a84c19e5c5555fe13da12dc8ba44e7da8',1,'ERF_WriteBndryPlanes.cpp']]], - ['build_5fcoriolis_5fforcings_2740',['build_coriolis_forcings',['../structSolverChoice.html#a3b31e3a91b502cabfc9fd8778492ad46',1,'SolverChoice']]], - ['build_5ffine_5fmask_2741',['build_fine_mask',['../classERF.html#af46289079e053a6d74ddef0bf1a5d8a3',1,'ERF']]], - ['buildfabsfromnetcdffile_2742',['BuildFABsFromNetCDFFile',['../NCWpsFile_8H.html#ac2228af687d21c7fde3d80c4b89e4027',1,'NCWpsFile.H']]], - ['buildfabsfromwrfbdyfile_2743',['BuildFABsFromWRFBdyFile',['../NCWpsFile_8H.html#aae7cfa7d43851de007130e9a44b7f1c0',1,'NCWpsFile.H']]], - ['buildinfogetbuilddate_2744',['buildInfoGetBuildDate',['../namespaceamrex.html#a8f794ff24efbc4b60058492d1a073c78',1,'amrex']]], - ['buildinfogetcomp_2745',['buildInfoGetComp',['../namespaceamrex.html#a9d270ec83f99e836cca454cac4e0af5e',1,'amrex']]], - ['buildinfogetcompversion_2746',['buildInfoGetCompVersion',['../namespaceamrex.html#aab3ca155f0d0a6d198817df9c35352f8',1,'amrex']]], - ['buildinfogetgithash_2747',['buildInfoGetGitHash',['../namespaceamrex.html#afa2dbdd17ead719f97272c9a0a2b0f8a',1,'amrex']]], - ['buildmask_2748',['BuildMask',['../classERFFillPatcher.html#ace667632120f87025e805461dd796599',1,'ERFFillPatcher']]], - ['bulk_5fprops_5finit_2749',['bulk_props_init',['../classPhysProp.html#a1bd98e99ebbc4373a913a6522b7a604f',1,'PhysProp']]] + ['binterp_2742',['binterp',['../classMam4__aer.html#ac1ba4ccab45c000472b4d40cb43c9ef9',1,'Mam4_aer']]], + ['bolton_5fsvp_5fwater_2743',['Bolton_svp_water',['../classSatMethods.html#a128ccad46f784c2d1aaeda372833dab6',1,'SatMethods']]], + ['br_5fshift_2744',['br_shift',['../ERF__WriteBndryPlanes_8cpp.html#a84c19e5c5555fe13da12dc8ba44e7da8',1,'ERF_WriteBndryPlanes.cpp']]], + ['build_5fcoriolis_5fforcings_2745',['build_coriolis_forcings',['../structSolverChoice.html#a3b31e3a91b502cabfc9fd8778492ad46',1,'SolverChoice']]], + ['build_5ffine_5fmask_2746',['build_fine_mask',['../classERF.html#af46289079e053a6d74ddef0bf1a5d8a3',1,'ERF']]], + ['buildfabsfromnetcdffile_2747',['BuildFABsFromNetCDFFile',['../NCWpsFile_8H.html#ac2228af687d21c7fde3d80c4b89e4027',1,'NCWpsFile.H']]], + ['buildfabsfromwrfbdyfile_2748',['BuildFABsFromWRFBdyFile',['../NCWpsFile_8H.html#aae7cfa7d43851de007130e9a44b7f1c0',1,'NCWpsFile.H']]], + ['buildinfogetbuilddate_2749',['buildInfoGetBuildDate',['../namespaceamrex.html#a8f794ff24efbc4b60058492d1a073c78',1,'amrex']]], + ['buildinfogetcomp_2750',['buildInfoGetComp',['../namespaceamrex.html#a9d270ec83f99e836cca454cac4e0af5e',1,'amrex']]], + ['buildinfogetcompversion_2751',['buildInfoGetCompVersion',['../namespaceamrex.html#aab3ca155f0d0a6d198817df9c35352f8',1,'amrex']]], + ['buildinfogetgithash_2752',['buildInfoGetGitHash',['../namespaceamrex.html#afa2dbdd17ead719f97272c9a0a2b0f8a',1,'amrex']]], + ['buildmask_2753',['BuildMask',['../classERFFillPatcher.html#ace667632120f87025e805461dd796599',1,'ERFFillPatcher']]], + ['bulk_5fprops_5finit_2754',['bulk_props_init',['../classPhysProp.html#a1bd98e99ebbc4373a913a6522b7a604f',1,'PhysProp']]] ]; diff --git a/search/functions_10.js b/search/functions_10.js index dc4143df96..5507bbcff8 100644 --- a/search/functions_10.js +++ b/search/functions_10.js @@ -1,50 +1,50 @@ var searchData= [ - ['rad_5fcnst_5fget_5faer_5fidx_3291',['rad_cnst_get_aer_idx',['../classMamConstituents.html#a34183bce976a770cdace5b4b51b2f1cc',1,'MamConstituents']]], - ['rad_5fcnst_5fget_5faer_5fmmr_5fby_5fidx_3292',['rad_cnst_get_aer_mmr_by_idx',['../classMamConstituents.html#a51f22d472f105d4586cbf3e2a05ef7c2',1,'MamConstituents']]], - ['rad_5fcnst_5fget_5fgas_3293',['rad_cnst_get_gas',['../classMamConstituents.html#a54283f7f7c2d8b81a37a6c4fa84c88ff',1,'MamConstituents']]], - ['rad_5fcnst_5fget_5finfo_5fby_5fmode_3294',['rad_cnst_get_info_by_mode',['../classMamConstituents.html#a52ef200c09c64ec7d34984262e6c5939',1,'MamConstituents']]], - ['rad_5fcnst_5fget_5finfo_5fby_5fmode_5fspec_3295',['rad_cnst_get_info_by_mode_spec',['../classMamConstituents.html#a1c3ed658d0910537c8f8ca304a8da959',1,'MamConstituents']]], - ['rad_5fcnst_5fget_5finfo_5fby_5fspectype_3296',['rad_cnst_get_info_by_spectype',['../classMamConstituents.html#a232c585283486fd1b1a08142aa82355d',1,'MamConstituents']]], - ['rad_5fcnst_5fget_5fmam_5fmmr_5fby_5fidx_3297',['rad_cnst_get_mam_mmr_by_idx',['../classMamConstituents.html#afb5674421ff78c9688d71bfbf460a746',1,'MamConstituents']]], - ['rad_5fcnst_5fget_5fmam_5fmmr_5fidx_3298',['rad_cnst_get_mam_mmr_idx',['../classMamConstituents.html#a961fa56ba740189db861cdce2d903f7a',1,'MamConstituents']]], - ['rad_5fcnst_5fget_5fmode_5fidx_3299',['rad_cnst_get_mode_idx',['../classMamConstituents.html#ad4cf2f8e8744e1f06be9936ad8e47a5a',1,'MamConstituents']]], - ['rad_5fcnst_5fget_5fmode_5fnum_3300',['rad_cnst_get_mode_num',['../classMamConstituents.html#a47b426e82c4a19365d77eaa51c7cac32',1,'MamConstituents']]], - ['rad_5fcnst_5fget_5fmode_5fnum_5fidx_3301',['rad_cnst_get_mode_num_idx',['../classMamConstituents.html#a4076c6a6cf134bef0e6c6ad1b683c098',1,'MamConstituents']]], - ['rad_5fcnst_5fget_5fspec_5fidx_3302',['rad_cnst_get_spec_idx',['../classMamConstituents.html#aaecf4d2caa28eb62f46307aa7a97b059',1,'MamConstituents']]], - ['rad_5fcnst_5finit_3303',['rad_cnst_init',['../classMamConstituents.html#a5e7be8b1cc061652374bb6ab9e2d3645',1,'MamConstituents']]], - ['rad_5fcnst_5fout_3304',['rad_cnst_out',['../classMamConstituents.html#af4848bed3a1019cc1e3d423494bbda0a',1,'MamConstituents']]], - ['rad_5fgas_5findex_3305',['rad_gas_index',['../classRadConstants.html#a41beba72a1d7ac337497bca58b5ff6f7',1,'RadConstants']]], - ['radiation_3306',['Radiation',['../classRadiation.html#aff1bb11c6262db1629ede245d861be18',1,'Radiation']]], - ['radiation_5fdriver_5flw_3307',['radiation_driver_lw',['../classRadiation.html#accd99e73e1c185372d1219e87fa5d94b',1,'Radiation']]], - ['radiation_5fdriver_5fsw_3308',['radiation_driver_sw',['../classRadiation.html#abf8ab94227c1a5f729ac24d92e52518b',1,'Radiation']]], - ['randomreal_3309',['RandomReal',['../structTurbulentPerturbation.html#ad1831bbc1cee603520e0b66692cebfa7',1,'TurbulentPerturbation']]], - ['read_5fcustom_5fterrain_3310',['read_custom_terrain',['../classProblemBase.html#a7497a6e90bebb14387f5716ee2e51c2d',1,'ProblemBase']]], - ['read_5ffile_3311',['read_file',['../classReadBndryPlanes.html#a5c2780ff94cadd975717d0f4084e6c9e',1,'ReadBndryPlanes']]], - ['read_5ffrom_5ffile_3312',['read_from_file',['../structInputSoundingData.html#a596a65687875bb0172f0621f446452ae',1,'InputSoundingData::read_from_file()'],['../structInputSpongeData.html#a8480886e7e481c5f83915d5feae62907',1,'InputSpongeData::read_from_file()']]], - ['read_5ffrom_5fmetgrid_3313',['read_from_metgrid',['../Metgrid__utils_8H.html#a1c4ef6b718a4e7c9c225b35ba096ebf9',1,'Metgrid_utils.H']]], - ['read_5finput_5ffiles_3314',['read_input_files',['../classReadBndryPlanes.html#a6545891550da1a217d5e566ddafdd566',1,'ReadBndryPlanes']]], - ['read_5ftables_3315',['read_tables',['../classWindFarm.html#afd5b76a577e1a810a1599014957a1d9b',1,'WindFarm']]], - ['read_5ftime_5ffile_3316',['read_time_file',['../classReadBndryPlanes.html#ac6633331e3b4ae3d7c93534930b7f856',1,'ReadBndryPlanes']]], - ['read_5fwater_5frefindex_3317',['read_water_refindex',['../classMam4__aer.html#a4bd98954eadce524390046791a1730a1',1,'Mam4_aer']]], - ['read_5fwindfarm_5flocations_5ftable_3318',['read_windfarm_locations_table',['../classWindFarm.html#acbc15873f66a7ee7ae10023fdfc3a8c7',1,'WindFarm']]], - ['read_5fwindfarm_5fspec_5ftable_3319',['read_windfarm_spec_table',['../classWindFarm.html#a92bd0b9d5124a84555b8ea2633502191',1,'WindFarm']]], - ['readbndryplanes_3320',['ReadBndryPlanes',['../classReadBndryPlanes.html#a16269dfa161d2fdbe02eeb5ac0cb0e24',1,'ReadBndryPlanes']]], - ['readcheckpointfile_3321',['ReadCheckpointFile',['../classERF.html#af285247b24b173cd851fe49799d17f42',1,'ERF']]], - ['readnetcdffile_3322',['ReadNetCDFFile',['../NCWpsFile_8H.html#aa682cd5b28ee9ffaf36c6944bd124af0',1,'NCWpsFile.H']]], - ['readparameters_3323',['ReadParameters',['../classERF.html#a2d39cd3bdc3d90609ad3b14e266d190a',1,'ERF']]], - ['realbdy_5fcompute_5finterior_5fghost_5frhs_3324',['realbdy_compute_interior_ghost_rhs',['../Utils_8H.html#a64ede26fe5618a31fe1e297ef29095cd',1,'realbdy_compute_interior_ghost_rhs(const std::string &init_type, const amrex::Real &bdy_time_interval, const amrex::Real &start_bdy_time, const amrex::Real &time, const amrex::Real &delta_t, int width, int set_width, const amrex::Geometry &geom, amrex::Vector< amrex::MultiFab > &S_rhs, amrex::Vector< amrex::MultiFab > &S_old_data, amrex::Vector< amrex::MultiFab > &S_cur_data, amrex::Vector< amrex::Vector< amrex::FArrayBox >> &bdy_data_xlo, amrex::Vector< amrex::Vector< amrex::FArrayBox >> &bdy_data_xhi, amrex::Vector< amrex::Vector< amrex::FArrayBox >> &bdy_data_ylo, amrex::Vector< amrex::Vector< amrex::FArrayBox >> &bdy_data_yhi): Utils.H'],['../InteriorGhostCells_8cpp.html#a41e809a463649991c08af8667d3947cb',1,'realbdy_compute_interior_ghost_rhs(const std::string &, const Real &bdy_time_interval, const Real &start_bdy_time, const Real &time, const Real &delta_t, int width, int set_width, const Geometry &geom, Vector< MultiFab > &S_rhs, Vector< MultiFab > &S_old_data, Vector< MultiFab > &S_cur_data, Vector< Vector< FArrayBox >> &bdy_data_xlo, Vector< Vector< FArrayBox >> &bdy_data_xhi, Vector< Vector< FArrayBox >> &bdy_data_ylo, Vector< Vector< FArrayBox >> &bdy_data_yhi): InteriorGhostCells.cpp']]], - ['reduce_5fto_5fmax_5fper_5flevel_3325',['reduce_to_max_per_level',['../ParFunctions_8H.html#a7e646d3f1b936883c143204caa88c7c5',1,'ParFunctions.H']]], - ['refindex_5faer_5finit_3326',['refindex_aer_init',['../classPhysProp.html#a0be655aa777ad0bcd46e6b896942a733',1,'PhysProp']]], - ['refinement_5fcriteria_5fsetup_3327',['refinement_criteria_setup',['../classERF.html#aa90c9756f684404f8b69b8a23568b535',1,'ERF']]], - ['registercoarsedata_3328',['RegisterCoarseData',['../classERFFillPatcher.html#a58c4f0d21effa697eff8a0b22b2f3bc1',1,'ERFFillPatcher']]], - ['remakelevel_3329',['RemakeLevel',['../classERF.html#aae7a3a76e08e54c618cf79b30ed2d73d',1,'ERF']]], - ['reordered_3330',['reordered',['../namespaceinternal.html#a2e09ba4f36b78ebbb569741fedab06ed',1,'internal']]], - ['resize_3331',['ReSize',['../classLandSurface.html#a58bc8a6e1b1369cd863f8b4f424a6270',1,'LandSurface']]], - ['restart_3332',['restart',['../classERF.html#a530d2ce59e6fd46e9fb00e4d11eaf737',1,'ERF']]], - ['rh_5fto_5fmxrat_3333',['rh_to_mxrat',['../Metgrid__utils_8H.html#a8458220de6985f12501aa040c218bff0',1,'Metgrid_utils.H']]], - ['rrtmgp_3334',['Rrtmgp',['../classRrtmgp.html#afb3690c8a0708be5b1d213f5a17fd668',1,'Rrtmgp']]], - ['run_3335',['run',['../classRadiation.html#a748f2155d330eecb6d0ce4fba32db8e7',1,'Radiation']]], - ['run_5flongwave_5frrtmgp_3336',['run_longwave_rrtmgp',['../classRrtmgp.html#a3d62575dce314f1bae7898cfdadebce6',1,'Rrtmgp']]], - ['run_5fshortwave_5frrtmgp_3337',['run_shortwave_rrtmgp',['../classRrtmgp.html#a1f1633f280b8584c58747278b376854a',1,'Rrtmgp']]] + ['rad_5fcnst_5fget_5faer_5fidx_3296',['rad_cnst_get_aer_idx',['../classMamConstituents.html#a34183bce976a770cdace5b4b51b2f1cc',1,'MamConstituents']]], + ['rad_5fcnst_5fget_5faer_5fmmr_5fby_5fidx_3297',['rad_cnst_get_aer_mmr_by_idx',['../classMamConstituents.html#a51f22d472f105d4586cbf3e2a05ef7c2',1,'MamConstituents']]], + ['rad_5fcnst_5fget_5fgas_3298',['rad_cnst_get_gas',['../classMamConstituents.html#a54283f7f7c2d8b81a37a6c4fa84c88ff',1,'MamConstituents']]], + ['rad_5fcnst_5fget_5finfo_5fby_5fmode_3299',['rad_cnst_get_info_by_mode',['../classMamConstituents.html#a52ef200c09c64ec7d34984262e6c5939',1,'MamConstituents']]], + ['rad_5fcnst_5fget_5finfo_5fby_5fmode_5fspec_3300',['rad_cnst_get_info_by_mode_spec',['../classMamConstituents.html#a1c3ed658d0910537c8f8ca304a8da959',1,'MamConstituents']]], + ['rad_5fcnst_5fget_5finfo_5fby_5fspectype_3301',['rad_cnst_get_info_by_spectype',['../classMamConstituents.html#a232c585283486fd1b1a08142aa82355d',1,'MamConstituents']]], + ['rad_5fcnst_5fget_5fmam_5fmmr_5fby_5fidx_3302',['rad_cnst_get_mam_mmr_by_idx',['../classMamConstituents.html#afb5674421ff78c9688d71bfbf460a746',1,'MamConstituents']]], + ['rad_5fcnst_5fget_5fmam_5fmmr_5fidx_3303',['rad_cnst_get_mam_mmr_idx',['../classMamConstituents.html#a961fa56ba740189db861cdce2d903f7a',1,'MamConstituents']]], + ['rad_5fcnst_5fget_5fmode_5fidx_3304',['rad_cnst_get_mode_idx',['../classMamConstituents.html#ad4cf2f8e8744e1f06be9936ad8e47a5a',1,'MamConstituents']]], + ['rad_5fcnst_5fget_5fmode_5fnum_3305',['rad_cnst_get_mode_num',['../classMamConstituents.html#a47b426e82c4a19365d77eaa51c7cac32',1,'MamConstituents']]], + ['rad_5fcnst_5fget_5fmode_5fnum_5fidx_3306',['rad_cnst_get_mode_num_idx',['../classMamConstituents.html#a4076c6a6cf134bef0e6c6ad1b683c098',1,'MamConstituents']]], + ['rad_5fcnst_5fget_5fspec_5fidx_3307',['rad_cnst_get_spec_idx',['../classMamConstituents.html#aaecf4d2caa28eb62f46307aa7a97b059',1,'MamConstituents']]], + ['rad_5fcnst_5finit_3308',['rad_cnst_init',['../classMamConstituents.html#a5e7be8b1cc061652374bb6ab9e2d3645',1,'MamConstituents']]], + ['rad_5fcnst_5fout_3309',['rad_cnst_out',['../classMamConstituents.html#af4848bed3a1019cc1e3d423494bbda0a',1,'MamConstituents']]], + ['rad_5fgas_5findex_3310',['rad_gas_index',['../classRadConstants.html#a41beba72a1d7ac337497bca58b5ff6f7',1,'RadConstants']]], + ['radiation_3311',['Radiation',['../classRadiation.html#aff1bb11c6262db1629ede245d861be18',1,'Radiation']]], + ['radiation_5fdriver_5flw_3312',['radiation_driver_lw',['../classRadiation.html#accd99e73e1c185372d1219e87fa5d94b',1,'Radiation']]], + ['radiation_5fdriver_5fsw_3313',['radiation_driver_sw',['../classRadiation.html#abf8ab94227c1a5f729ac24d92e52518b',1,'Radiation']]], + ['randomreal_3314',['RandomReal',['../structTurbulentPerturbation.html#ad1831bbc1cee603520e0b66692cebfa7',1,'TurbulentPerturbation']]], + ['read_5fcustom_5fterrain_3315',['read_custom_terrain',['../classProblemBase.html#a7497a6e90bebb14387f5716ee2e51c2d',1,'ProblemBase']]], + ['read_5ffile_3316',['read_file',['../classReadBndryPlanes.html#a5c2780ff94cadd975717d0f4084e6c9e',1,'ReadBndryPlanes']]], + ['read_5ffrom_5ffile_3317',['read_from_file',['../structInputSoundingData.html#a596a65687875bb0172f0621f446452ae',1,'InputSoundingData::read_from_file()'],['../structInputSpongeData.html#a8480886e7e481c5f83915d5feae62907',1,'InputSpongeData::read_from_file()']]], + ['read_5ffrom_5fmetgrid_3318',['read_from_metgrid',['../Metgrid__utils_8H.html#a1c4ef6b718a4e7c9c225b35ba096ebf9',1,'Metgrid_utils.H']]], + ['read_5finput_5ffiles_3319',['read_input_files',['../classReadBndryPlanes.html#a6545891550da1a217d5e566ddafdd566',1,'ReadBndryPlanes']]], + ['read_5ftables_3320',['read_tables',['../classWindFarm.html#afd5b76a577e1a810a1599014957a1d9b',1,'WindFarm']]], + ['read_5ftime_5ffile_3321',['read_time_file',['../classReadBndryPlanes.html#ac6633331e3b4ae3d7c93534930b7f856',1,'ReadBndryPlanes']]], + ['read_5fwater_5frefindex_3322',['read_water_refindex',['../classMam4__aer.html#a4bd98954eadce524390046791a1730a1',1,'Mam4_aer']]], + ['read_5fwindfarm_5flocations_5ftable_3323',['read_windfarm_locations_table',['../classWindFarm.html#acbc15873f66a7ee7ae10023fdfc3a8c7',1,'WindFarm']]], + ['read_5fwindfarm_5fspec_5ftable_3324',['read_windfarm_spec_table',['../classWindFarm.html#a92bd0b9d5124a84555b8ea2633502191',1,'WindFarm']]], + ['readbndryplanes_3325',['ReadBndryPlanes',['../classReadBndryPlanes.html#a16269dfa161d2fdbe02eeb5ac0cb0e24',1,'ReadBndryPlanes']]], + ['readcheckpointfile_3326',['ReadCheckpointFile',['../classERF.html#af285247b24b173cd851fe49799d17f42',1,'ERF']]], + ['readnetcdffile_3327',['ReadNetCDFFile',['../NCWpsFile_8H.html#aa682cd5b28ee9ffaf36c6944bd124af0',1,'NCWpsFile.H']]], + ['readparameters_3328',['ReadParameters',['../classERF.html#a2d39cd3bdc3d90609ad3b14e266d190a',1,'ERF']]], + ['realbdy_5fcompute_5finterior_5fghost_5frhs_3329',['realbdy_compute_interior_ghost_rhs',['../Utils_8H.html#a64ede26fe5618a31fe1e297ef29095cd',1,'realbdy_compute_interior_ghost_rhs(const std::string &init_type, const amrex::Real &bdy_time_interval, const amrex::Real &start_bdy_time, const amrex::Real &time, const amrex::Real &delta_t, int width, int set_width, const amrex::Geometry &geom, amrex::Vector< amrex::MultiFab > &S_rhs, amrex::Vector< amrex::MultiFab > &S_old_data, amrex::Vector< amrex::MultiFab > &S_cur_data, amrex::Vector< amrex::Vector< amrex::FArrayBox >> &bdy_data_xlo, amrex::Vector< amrex::Vector< amrex::FArrayBox >> &bdy_data_xhi, amrex::Vector< amrex::Vector< amrex::FArrayBox >> &bdy_data_ylo, amrex::Vector< amrex::Vector< amrex::FArrayBox >> &bdy_data_yhi): Utils.H'],['../InteriorGhostCells_8cpp.html#a41e809a463649991c08af8667d3947cb',1,'realbdy_compute_interior_ghost_rhs(const std::string &, const Real &bdy_time_interval, const Real &start_bdy_time, const Real &time, const Real &delta_t, int width, int set_width, const Geometry &geom, Vector< MultiFab > &S_rhs, Vector< MultiFab > &S_old_data, Vector< MultiFab > &S_cur_data, Vector< Vector< FArrayBox >> &bdy_data_xlo, Vector< Vector< FArrayBox >> &bdy_data_xhi, Vector< Vector< FArrayBox >> &bdy_data_ylo, Vector< Vector< FArrayBox >> &bdy_data_yhi): InteriorGhostCells.cpp']]], + ['reduce_5fto_5fmax_5fper_5flevel_3330',['reduce_to_max_per_level',['../ParFunctions_8H.html#a7e646d3f1b936883c143204caa88c7c5',1,'ParFunctions.H']]], + ['refindex_5faer_5finit_3331',['refindex_aer_init',['../classPhysProp.html#a0be655aa777ad0bcd46e6b896942a733',1,'PhysProp']]], + ['refinement_5fcriteria_5fsetup_3332',['refinement_criteria_setup',['../classERF.html#aa90c9756f684404f8b69b8a23568b535',1,'ERF']]], + ['registercoarsedata_3333',['RegisterCoarseData',['../classERFFillPatcher.html#a58c4f0d21effa697eff8a0b22b2f3bc1',1,'ERFFillPatcher']]], + ['remakelevel_3334',['RemakeLevel',['../classERF.html#aae7a3a76e08e54c618cf79b30ed2d73d',1,'ERF']]], + ['reordered_3335',['reordered',['../namespaceinternal.html#a2e09ba4f36b78ebbb569741fedab06ed',1,'internal']]], + ['resize_3336',['ReSize',['../classLandSurface.html#a58bc8a6e1b1369cd863f8b4f424a6270',1,'LandSurface']]], + ['restart_3337',['restart',['../classERF.html#a530d2ce59e6fd46e9fb00e4d11eaf737',1,'ERF']]], + ['rh_5fto_5fmxrat_3338',['rh_to_mxrat',['../Metgrid__utils_8H.html#a8458220de6985f12501aa040c218bff0',1,'Metgrid_utils.H']]], + ['rrtmgp_3339',['Rrtmgp',['../classRrtmgp.html#afb3690c8a0708be5b1d213f5a17fd668',1,'Rrtmgp']]], + ['run_3340',['run',['../classRadiation.html#a748f2155d330eecb6d0ce4fba32db8e7',1,'Radiation']]], + ['run_5flongwave_5frrtmgp_3341',['run_longwave_rrtmgp',['../classRrtmgp.html#a3d62575dce314f1bae7898cfdadebce6',1,'Rrtmgp']]], + ['run_5fshortwave_5frrtmgp_3342',['run_shortwave_rrtmgp',['../classRrtmgp.html#a1f1633f280b8584c58747278b376854a',1,'Rrtmgp']]] ]; diff --git a/search/functions_11.js b/search/functions_11.js index 2ad601188b..319134a579 100644 --- a/search/functions_11.js +++ b/search/functions_11.js @@ -1,73 +1,74 @@ var searchData= [ - ['sam_3338',['SAM',['../classSAM.html#a14fc54f233862c3c339abcc16412078c',1,'SAM']]], - ['sample_5fcloud_5foptics_5flw_3339',['sample_cloud_optics_lw',['../classOptics.html#aa4a9d3efc9d464090f9a803bdab51ca1',1,'Optics']]], - ['sample_5fcloud_5foptics_5fsw_3340',['sample_cloud_optics_sw',['../classOptics.html#abf585c4bba33e85f0eb2f685c87b22a7',1,'Optics']]], - ['sample_5flines_3341',['sample_lines',['../classERF.html#afb798c72ea4fde6f4da8d01a24c8c165',1,'ERF']]], - ['sample_5fpoints_3342',['sample_points',['../classERF.html#aa28182226262c67cfd686d35bfeabcad',1,'ERF']]], - ['sampleline_3343',['SampleLine',['../classERF.html#a54357e2f81f3d7d3a9189a3e21283e6b',1,'ERF']]], - ['samplelinelog_3344',['SampleLineLog',['../classERF.html#aa559426d0435e669b04148c58b20caef',1,'ERF']]], - ['samplelinelogname_3345',['SampleLineLogName',['../classERF.html#a59eae161173111d66e88dc3acc65b552',1,'ERF']]], - ['samplepoint_3346',['SamplePoint',['../classERF.html#a9095d1b641b4d7f32ca5acb679786891',1,'ERF']]], - ['samplepointlog_3347',['SamplePointLog',['../classERF.html#af5f6c32cc5463e52901f21117d3156c7',1,'ERF']]], - ['samplepointlogname_3348',['SamplePointLogName',['../classERF.html#aa87242f053bfae4efb2a7698ef417ab9',1,'ERF']]], - ['set_5factive_3349',['set_active',['../classCIF.html#a76d1ac8079f53130cbc9f3367a149823',1,'CIF']]], - ['set_5faerosol_5foptics_5flw_3350',['set_aerosol_optics_lw',['../classOptics.html#aecf608be7db530dc74beb0a03b2279f2',1,'Optics']]], - ['set_5faerosol_5foptics_5fsw_3351',['set_aerosol_optics_sw',['../classOptics.html#a54463b4d74c22934fcbf36a7c95f0b3f',1,'Optics']]], - ['set_5falbedo_3352',['set_albedo',['../Albedo_8cpp.html#a677778ad4c4fb53a8c7076ace6d436ce',1,'set_albedo(const real1d &coszrs, real2d &albedo_dir, real2d &albedo_dif): Albedo.cpp'],['../Albedo_8H.html#a677778ad4c4fb53a8c7076ace6d436ce',1,'set_albedo(const real1d &coszrs, real2d &albedo_dir, real2d &albedo_dif): Albedo.cpp']]], - ['set_5fdaynight_5findices_3353',['set_daynight_indices',['../classRadiation.html#a5a59f4f8e03a0e6dcfe96c31a0c9b352',1,'Radiation']]], - ['set_5ffast_5frhs_3354',['set_fast_rhs',['../classMRISplitIntegrator.html#aafed3f1d61d477bd1f01bdeb71a9ab11',1,'MRISplitIntegrator']]], - ['set_5fk_5findices_5fn_3355',['set_k_indices_N',['../classMOSTAverage.html#a8928b9f9d6d45fdd9fd88053fcae34e2',1,'MOSTAverage']]], - ['set_5fk_5findices_5ft_3356',['set_k_indices_T',['../classMOSTAverage.html#a1892a3f9c2175cd2323d8d3a3bc83b6c',1,'MOSTAverage']]], - ['set_5fno_5fsubstep_3357',['set_no_substep',['../classMRISplitIntegrator.html#a216903aa134536df210f489acdfd2b8b',1,'MRISplitIntegrator']]], - ['set_5fnorm_5findices_5ft_3358',['set_norm_indices_T',['../classMOSTAverage.html#a2908278cc9088e345af422a187eba337',1,'MOSTAverage']]], - ['set_5fnorm_5fpositions_5ft_3359',['set_norm_positions_T',['../classMOSTAverage.html#a697396705fddae5c919c7e4020cf20b2',1,'MOSTAverage']]], - ['set_5fplane_5fnormalization_3360',['set_plane_normalization',['../classMOSTAverage.html#a5a0413a85da2e6a13f21cc875c8295d0',1,'MOSTAverage']]], - ['set_5fpost_5fupdate_3361',['set_post_update',['../classMRISplitIntegrator.html#a95b3c0742918b516a3d12a60eb280b48',1,'MRISplitIntegrator']]], - ['set_5fpre_5fupdate_3362',['set_pre_update',['../classMRISplitIntegrator.html#a7c3d1c29712cdc8888af315d37960561',1,'MRISplitIntegrator']]], - ['set_5fprecision_3363',['set_precision',['../classPlaneAverage.html#a6933fa8d1b71a55f5276250050c54216',1,'PlaneAverage']]], - ['set_5fregion_5fnormalization_3364',['set_region_normalization',['../classMOSTAverage.html#a1eafe515fb0a3fc673d604b854a3cc13',1,'MOSTAverage']]], - ['set_5fslow_5ffast_5ftimestep_5fratio_3365',['set_slow_fast_timestep_ratio',['../classMRISplitIntegrator.html#ad31fb2cda1fc2dce80820ed7c4a3c052',1,'MRISplitIntegrator']]], - ['set_5fslow_5frhs_5finc_3366',['set_slow_rhs_inc',['../classMRISplitIntegrator.html#a26955c190dfb0d6cef7237198dbfd099',1,'MRISplitIntegrator']]], - ['set_5fslow_5frhs_5fpost_3367',['set_slow_rhs_post',['../classMRISplitIntegrator.html#af086d3c68787442d07f0a9d530618cc1',1,'MRISplitIntegrator']]], - ['set_5fslow_5frhs_5fpre_3368',['set_slow_rhs_pre',['../classMRISplitIntegrator.html#a137a1ceb1e8051b5a97aaab40492c0e1',1,'MRISplitIntegrator']]], - ['set_5ftime_3369',['set_time',['../structTimeInterpolatedData.html#a0d6dcefbf7407a24669d2a37c7f558d4',1,'TimeInterpolatedData']]], - ['set_5fturb_5floc_3370',['set_turb_loc',['../classWindFarm.html#a5defcbb732ba325db7b6e8a819ab381e',1,'WindFarm::set_turb_loc()'],['../classNullWindFarm.html#aadf3ba54909c2931d089f631889dbd5b',1,'NullWindFarm::set_turb_loc(const amrex::Vector< amrex::Real > &xloc, const amrex::Vector< amrex::Real > &yloc)']]], - ['set_5fturb_5fspec_3371',['set_turb_spec',['../classNullWindFarm.html#a745c730028714c13ff11fefb5440b2e5',1,'NullWindFarm::set_turb_spec()'],['../classWindFarm.html#aabf18956cad4a8546eb60ff8300c94c8',1,'WindFarm::set_turb_spec()']]], - ['set_5fvshape_3372',['set_vshape',['../structNDArray.html#a6a0a485b6da8ce09dda81fc51607da73',1,'NDArray']]], - ['set_5fz_5fpositions_5ft_3373',['set_z_positions_T',['../classMOSTAverage.html#a96178b02bec37f171ef608cec9a246bf',1,'MOSTAverage']]], - ['setblockcommmetadata_3374',['SetBlockCommMetaData',['../classMultiBlockContainer.html#a154697509fae9c842b83ede2d30b7060',1,'MultiBlockContainer']]], - ['setboxlists_3375',['SetBoxLists',['../classMultiBlockContainer.html#a6965a65ae5ef2533298b274797b5d8c7',1,'MultiBlockContainer']]], - ['setforcefirststagesinglesubstep_3376',['setForceFirstStageSingleSubstep',['../classMRISplitIntegrator.html#a5ae771a094162dc22bfdded7b12fd5c4',1,'MRISplitIntegrator']]], - ['setincompressible_3377',['setIncompressible',['../classMRISplitIntegrator.html#aad2f2b1f64f0d193e3321a46afa15deb',1,'MRISplitIntegrator']]], - ['setmodel_3378',['SetModel',['../classWindFarm.html#a638bdc717e37526689d507a5cd36735e',1,'WindFarm::SetModel()'],['../classEulerianMicrophysics.html#aa882ea75f222099b16b43a579d11e2c1',1,'EulerianMicrophysics::SetModel()'],['../classLandSurface.html#a91df3382b60a6566b78a23c87b46f065',1,'LandSurface::SetModel()']]], - ['setncompcons_3379',['setNcompCons',['../classMRISplitIntegrator.html#a294f18465629a72da152b3e9aa4b0455',1,'MRISplitIntegrator']]], - ['setnosubstepping_3380',['setNoSubstepping',['../classMRISplitIntegrator.html#a6ca4eef257ddfcb793de89d2309ac9a1',1,'MRISplitIntegrator']]], - ['setplotvariables_3381',['setPlotVariables',['../classERF.html#a1fcb440c67da60c86372aec1fe871cb7',1,'ERF']]], - ['setrayleighreffromsounding_3382',['setRayleighRefFromSounding',['../classERF.html#a0877d5a0263641c13b92d2d16f47b689',1,'ERF']]], - ['setrecorddatainfo_3383',['setRecordDataInfo',['../classERF.html#a2486b49bb0d7917f812318822e42a03c',1,'ERF']]], - ['setrecordsamplelineinfo_3384',['setRecordSampleLineInfo',['../classERF.html#ae1a8856961aaee53016122facba03dbe',1,'ERF']]], - ['setrecordsamplepointinfo_3385',['setRecordSamplePointInfo',['../classERF.html#af8d930dce1b926ecc3bdc6787dd47818',1,'ERF']]], - ['setspongereffromsounding_3386',['setSpongeRefFromSounding',['../classERF.html#ae27a45d751287a887769df20dea60633',1,'ERF']]], - ['shape_3387',['shape',['../structncutils_1_1NCVar.html#adb6e5fe1bfe8ab79e9ecf33ca5800797',1,'ncutils::NCVar']]], - ['shr_5forb_5fcosz_3388',['shr_orb_cosz',['../Orbit_8H.html#a5e24c049c05ea5e14bfc131dcca54c93',1,'Orbit.H']]], - ['shr_5forb_5fdecl_3389',['shr_orb_decl',['../Orbit_8H.html#a778a20e582ab3eaecfe3a5f67c73d68d',1,'Orbit.H']]], - ['simplead_3390',['SimpleAD',['../classSimpleAD.html#a708d4346c7d8900854def95ffd127985',1,'SimpleAD']]], - ['size_3391',['size',['../structInputSoundingData.html#af2e8c00eb0bd0d64abf35528b33b3240',1,'InputSoundingData::size()'],['../structInputSpongeData.html#aff9684faaf6b3a26494766819e4ba6dd',1,'InputSpongeData::size()']]], - ['slingo_5fliq_5foptics_5flw_3392',['slingo_liq_optics_lw',['../classSlingo.html#aedbfc95f917b864354b84a9a78d74c94',1,'Slingo']]], - ['slingo_5fliq_5foptics_5fsw_3393',['slingo_liq_optics_sw',['../classSlingo.html#ab37f1c288e0dcc71337629a65fb65e17',1,'Slingo']]], - ['slm_3394',['SLM',['../classSLM.html#a0f889af6d11c1e5fc4afbe7841e1c5c0',1,'SLM']]], - ['source_5fterms_5fcellcentered_3395',['source_terms_cellcentered',['../classSimpleAD.html#a740ca3e67d7489e03f6f599ad2f162e7',1,'SimpleAD::source_terms_cellcentered()'],['../classFitch.html#aa56821341be1cf4d01558e297993c0f2',1,'Fitch::source_terms_cellcentered()'],['../classEWP.html#a4f28000173748f88919eda5fbed1368e',1,'EWP::source_terms_cellcentered()']]], - ['sum_5fintegrated_5fquantities_3396',['sum_integrated_quantities',['../classERF.html#a922892a05ee0c5bccd210a3e5a8599e1',1,'ERF']]], - ['surface_5fflux_3397',['surface_flux',['../structsurface__flux.html#a99588cc80bc461f24f2217f7c7cb1294',1,'surface_flux']]], - ['surface_5fflux_5fcharnock_3398',['surface_flux_charnock',['../structsurface__flux__charnock.html#a6fef08de02ce5a69d4f276dce6721d27',1,'surface_flux_charnock']]], - ['surface_5fflux_5fmod_5fcharnock_3399',['surface_flux_mod_charnock',['../structsurface__flux__mod__charnock.html#ab0516a2bad4b4a38ecfa71f75fa3b00c',1,'surface_flux_mod_charnock']]], - ['surface_5fflux_5fwave_5fcoupled_3400',['surface_flux_wave_coupled',['../structsurface__flux__wave__coupled.html#a1f7495d05cf04a69be3d51e6535644d6',1,'surface_flux_wave_coupled']]], - ['surface_5ftemp_3401',['surface_temp',['../structsurface__temp.html#a6b5b55df12e42231fa3d8cf36ab0c734',1,'surface_temp']]], - ['surface_5ftemp_5fcharnock_3402',['surface_temp_charnock',['../structsurface__temp__charnock.html#a21617e7d85b0127ca609a82c0f95556b',1,'surface_temp_charnock']]], - ['surface_5ftemp_5fmod_5fcharnock_3403',['surface_temp_mod_charnock',['../structsurface__temp__mod__charnock.html#a5812f19588039a9d3186e63bfe529b9c',1,'surface_temp_mod_charnock']]], - ['surface_5ftemp_5fwave_5fcoupled_3404',['surface_temp_wave_coupled',['../structsurface__temp__wave__coupled.html#afb061b2c2b86edd4821efbcb70295412',1,'surface_temp_wave_coupled']]], - ['svp_5fice_3405',['svp_ice',['../classWaterVaporSat.html#a0ff4f9b6dff1a33f4ed6eb9d7af72e49',1,'WaterVaporSat']]], - ['svp_5ftrans_3406',['svp_trans',['../classWaterVaporSat.html#a65b6cc3dc802016e84bc19030f6ad65a',1,'WaterVaporSat']]], - ['svp_5fwater_3407',['svp_water',['../classWaterVaporSat.html#a5463980977e84f7268ed9afde2bad62e',1,'WaterVaporSat']]] + ['sam_3343',['SAM',['../classSAM.html#a14fc54f233862c3c339abcc16412078c',1,'SAM']]], + ['sample_5fcloud_5foptics_5flw_3344',['sample_cloud_optics_lw',['../classOptics.html#aa4a9d3efc9d464090f9a803bdab51ca1',1,'Optics']]], + ['sample_5fcloud_5foptics_5fsw_3345',['sample_cloud_optics_sw',['../classOptics.html#abf585c4bba33e85f0eb2f685c87b22a7',1,'Optics']]], + ['sample_5flines_3346',['sample_lines',['../classERF.html#afb798c72ea4fde6f4da8d01a24c8c165',1,'ERF']]], + ['sample_5fpoints_3347',['sample_points',['../classERF.html#aa28182226262c67cfd686d35bfeabcad',1,'ERF']]], + ['sampleline_3348',['SampleLine',['../classERF.html#a54357e2f81f3d7d3a9189a3e21283e6b',1,'ERF']]], + ['samplelinelog_3349',['SampleLineLog',['../classERF.html#aa559426d0435e669b04148c58b20caef',1,'ERF']]], + ['samplelinelogname_3350',['SampleLineLogName',['../classERF.html#a59eae161173111d66e88dc3acc65b552',1,'ERF']]], + ['samplepoint_3351',['SamplePoint',['../classERF.html#a9095d1b641b4d7f32ca5acb679786891',1,'ERF']]], + ['samplepointlog_3352',['SamplePointLog',['../classERF.html#af5f6c32cc5463e52901f21117d3156c7',1,'ERF']]], + ['samplepointlogname_3353',['SamplePointLogName',['../classERF.html#aa87242f053bfae4efb2a7698ef417ab9',1,'ERF']]], + ['set_5factive_3354',['set_active',['../classCIF.html#a76d1ac8079f53130cbc9f3367a149823',1,'CIF']]], + ['set_5faerosol_5foptics_5flw_3355',['set_aerosol_optics_lw',['../classOptics.html#aecf608be7db530dc74beb0a03b2279f2',1,'Optics']]], + ['set_5faerosol_5foptics_5fsw_3356',['set_aerosol_optics_sw',['../classOptics.html#a54463b4d74c22934fcbf36a7c95f0b3f',1,'Optics']]], + ['set_5falbedo_3357',['set_albedo',['../Albedo_8cpp.html#a677778ad4c4fb53a8c7076ace6d436ce',1,'set_albedo(const real1d &coszrs, real2d &albedo_dir, real2d &albedo_dif): Albedo.cpp'],['../Albedo_8H.html#a677778ad4c4fb53a8c7076ace6d436ce',1,'set_albedo(const real1d &coszrs, real2d &albedo_dir, real2d &albedo_dif): Albedo.cpp']]], + ['set_5fdaynight_5findices_3358',['set_daynight_indices',['../classRadiation.html#a5a59f4f8e03a0e6dcfe96c31a0c9b352',1,'Radiation']]], + ['set_5ffast_5frhs_3359',['set_fast_rhs',['../classMRISplitIntegrator.html#aafed3f1d61d477bd1f01bdeb71a9ab11',1,'MRISplitIntegrator']]], + ['set_5fk_5findices_5fn_3360',['set_k_indices_N',['../classMOSTAverage.html#a8928b9f9d6d45fdd9fd88053fcae34e2',1,'MOSTAverage']]], + ['set_5fk_5findices_5ft_3361',['set_k_indices_T',['../classMOSTAverage.html#a1892a3f9c2175cd2323d8d3a3bc83b6c',1,'MOSTAverage']]], + ['set_5fno_5fsubstep_3362',['set_no_substep',['../classMRISplitIntegrator.html#a216903aa134536df210f489acdfd2b8b',1,'MRISplitIntegrator']]], + ['set_5fnorm_5findices_5ft_3363',['set_norm_indices_T',['../classMOSTAverage.html#a2908278cc9088e345af422a187eba337',1,'MOSTAverage']]], + ['set_5fnorm_5fpositions_5ft_3364',['set_norm_positions_T',['../classMOSTAverage.html#a697396705fddae5c919c7e4020cf20b2',1,'MOSTAverage']]], + ['set_5fplane_5fnormalization_3365',['set_plane_normalization',['../classMOSTAverage.html#a5a0413a85da2e6a13f21cc875c8295d0',1,'MOSTAverage']]], + ['set_5fpost_5fupdate_3366',['set_post_update',['../classMRISplitIntegrator.html#a95b3c0742918b516a3d12a60eb280b48',1,'MRISplitIntegrator']]], + ['set_5fpre_5fupdate_3367',['set_pre_update',['../classMRISplitIntegrator.html#a7c3d1c29712cdc8888af315d37960561',1,'MRISplitIntegrator']]], + ['set_5fprecision_3368',['set_precision',['../classPlaneAverage.html#a6933fa8d1b71a55f5276250050c54216',1,'PlaneAverage']]], + ['set_5fregion_5fnormalization_3369',['set_region_normalization',['../classMOSTAverage.html#a1eafe515fb0a3fc673d604b854a3cc13',1,'MOSTAverage']]], + ['set_5frotated_5ffields_3370',['set_rotated_fields',['../classMOSTAverage.html#a314ac1672f7b8ce2cf9f9d32d00191a5',1,'MOSTAverage']]], + ['set_5fslow_5ffast_5ftimestep_5fratio_3371',['set_slow_fast_timestep_ratio',['../classMRISplitIntegrator.html#ad31fb2cda1fc2dce80820ed7c4a3c052',1,'MRISplitIntegrator']]], + ['set_5fslow_5frhs_5finc_3372',['set_slow_rhs_inc',['../classMRISplitIntegrator.html#a26955c190dfb0d6cef7237198dbfd099',1,'MRISplitIntegrator']]], + ['set_5fslow_5frhs_5fpost_3373',['set_slow_rhs_post',['../classMRISplitIntegrator.html#af086d3c68787442d07f0a9d530618cc1',1,'MRISplitIntegrator']]], + ['set_5fslow_5frhs_5fpre_3374',['set_slow_rhs_pre',['../classMRISplitIntegrator.html#a137a1ceb1e8051b5a97aaab40492c0e1',1,'MRISplitIntegrator']]], + ['set_5ftime_3375',['set_time',['../structTimeInterpolatedData.html#a0d6dcefbf7407a24669d2a37c7f558d4',1,'TimeInterpolatedData']]], + ['set_5fturb_5floc_3376',['set_turb_loc',['../classNullWindFarm.html#aadf3ba54909c2931d089f631889dbd5b',1,'NullWindFarm::set_turb_loc()'],['../classWindFarm.html#a5defcbb732ba325db7b6e8a819ab381e',1,'WindFarm::set_turb_loc()']]], + ['set_5fturb_5fspec_3377',['set_turb_spec',['../classNullWindFarm.html#a745c730028714c13ff11fefb5440b2e5',1,'NullWindFarm::set_turb_spec()'],['../classWindFarm.html#aabf18956cad4a8546eb60ff8300c94c8',1,'WindFarm::set_turb_spec()']]], + ['set_5fvshape_3378',['set_vshape',['../structNDArray.html#a6a0a485b6da8ce09dda81fc51607da73',1,'NDArray']]], + ['set_5fz_5fpositions_5ft_3379',['set_z_positions_T',['../classMOSTAverage.html#a96178b02bec37f171ef608cec9a246bf',1,'MOSTAverage']]], + ['setblockcommmetadata_3380',['SetBlockCommMetaData',['../classMultiBlockContainer.html#a154697509fae9c842b83ede2d30b7060',1,'MultiBlockContainer']]], + ['setboxlists_3381',['SetBoxLists',['../classMultiBlockContainer.html#a6965a65ae5ef2533298b274797b5d8c7',1,'MultiBlockContainer']]], + ['setforcefirststagesinglesubstep_3382',['setForceFirstStageSingleSubstep',['../classMRISplitIntegrator.html#a5ae771a094162dc22bfdded7b12fd5c4',1,'MRISplitIntegrator']]], + ['setincompressible_3383',['setIncompressible',['../classMRISplitIntegrator.html#aad2f2b1f64f0d193e3321a46afa15deb',1,'MRISplitIntegrator']]], + ['setmodel_3384',['SetModel',['../classEulerianMicrophysics.html#aa882ea75f222099b16b43a579d11e2c1',1,'EulerianMicrophysics::SetModel()'],['../classWindFarm.html#a638bdc717e37526689d507a5cd36735e',1,'WindFarm::SetModel()'],['../classLandSurface.html#a91df3382b60a6566b78a23c87b46f065',1,'LandSurface::SetModel()']]], + ['setncompcons_3385',['setNcompCons',['../classMRISplitIntegrator.html#a294f18465629a72da152b3e9aa4b0455',1,'MRISplitIntegrator']]], + ['setnosubstepping_3386',['setNoSubstepping',['../classMRISplitIntegrator.html#a6ca4eef257ddfcb793de89d2309ac9a1',1,'MRISplitIntegrator']]], + ['setplotvariables_3387',['setPlotVariables',['../classERF.html#a1fcb440c67da60c86372aec1fe871cb7',1,'ERF']]], + ['setrayleighreffromsounding_3388',['setRayleighRefFromSounding',['../classERF.html#a0877d5a0263641c13b92d2d16f47b689',1,'ERF']]], + ['setrecorddatainfo_3389',['setRecordDataInfo',['../classERF.html#a2486b49bb0d7917f812318822e42a03c',1,'ERF']]], + ['setrecordsamplelineinfo_3390',['setRecordSampleLineInfo',['../classERF.html#ae1a8856961aaee53016122facba03dbe',1,'ERF']]], + ['setrecordsamplepointinfo_3391',['setRecordSamplePointInfo',['../classERF.html#af8d930dce1b926ecc3bdc6787dd47818',1,'ERF']]], + ['setspongereffromsounding_3392',['setSpongeRefFromSounding',['../classERF.html#ae27a45d751287a887769df20dea60633',1,'ERF']]], + ['shape_3393',['shape',['../structncutils_1_1NCVar.html#adb6e5fe1bfe8ab79e9ecf33ca5800797',1,'ncutils::NCVar']]], + ['shr_5forb_5fcosz_3394',['shr_orb_cosz',['../Orbit_8H.html#a5e24c049c05ea5e14bfc131dcca54c93',1,'Orbit.H']]], + ['shr_5forb_5fdecl_3395',['shr_orb_decl',['../Orbit_8H.html#a778a20e582ab3eaecfe3a5f67c73d68d',1,'Orbit.H']]], + ['simplead_3396',['SimpleAD',['../classSimpleAD.html#a708d4346c7d8900854def95ffd127985',1,'SimpleAD']]], + ['size_3397',['size',['../structInputSoundingData.html#af2e8c00eb0bd0d64abf35528b33b3240',1,'InputSoundingData::size()'],['../structInputSpongeData.html#aff9684faaf6b3a26494766819e4ba6dd',1,'InputSpongeData::size()']]], + ['slingo_5fliq_5foptics_5flw_3398',['slingo_liq_optics_lw',['../classSlingo.html#aedbfc95f917b864354b84a9a78d74c94',1,'Slingo']]], + ['slingo_5fliq_5foptics_5fsw_3399',['slingo_liq_optics_sw',['../classSlingo.html#ab37f1c288e0dcc71337629a65fb65e17',1,'Slingo']]], + ['slm_3400',['SLM',['../classSLM.html#a0f889af6d11c1e5fc4afbe7841e1c5c0',1,'SLM']]], + ['source_5fterms_5fcellcentered_3401',['source_terms_cellcentered',['../classSimpleAD.html#a740ca3e67d7489e03f6f599ad2f162e7',1,'SimpleAD::source_terms_cellcentered()'],['../classFitch.html#aa56821341be1cf4d01558e297993c0f2',1,'Fitch::source_terms_cellcentered()'],['../classEWP.html#a4f28000173748f88919eda5fbed1368e',1,'EWP::source_terms_cellcentered()']]], + ['sum_5fintegrated_5fquantities_3402',['sum_integrated_quantities',['../classERF.html#a922892a05ee0c5bccd210a3e5a8599e1',1,'ERF']]], + ['surface_5fflux_3403',['surface_flux',['../structsurface__flux.html#a99588cc80bc461f24f2217f7c7cb1294',1,'surface_flux']]], + ['surface_5fflux_5fcharnock_3404',['surface_flux_charnock',['../structsurface__flux__charnock.html#a6fef08de02ce5a69d4f276dce6721d27',1,'surface_flux_charnock']]], + ['surface_5fflux_5fmod_5fcharnock_3405',['surface_flux_mod_charnock',['../structsurface__flux__mod__charnock.html#ab0516a2bad4b4a38ecfa71f75fa3b00c',1,'surface_flux_mod_charnock']]], + ['surface_5fflux_5fwave_5fcoupled_3406',['surface_flux_wave_coupled',['../structsurface__flux__wave__coupled.html#a1f7495d05cf04a69be3d51e6535644d6',1,'surface_flux_wave_coupled']]], + ['surface_5ftemp_3407',['surface_temp',['../structsurface__temp.html#a6b5b55df12e42231fa3d8cf36ab0c734',1,'surface_temp']]], + ['surface_5ftemp_5fcharnock_3408',['surface_temp_charnock',['../structsurface__temp__charnock.html#a21617e7d85b0127ca609a82c0f95556b',1,'surface_temp_charnock']]], + ['surface_5ftemp_5fmod_5fcharnock_3409',['surface_temp_mod_charnock',['../structsurface__temp__mod__charnock.html#a5812f19588039a9d3186e63bfe529b9c',1,'surface_temp_mod_charnock']]], + ['surface_5ftemp_5fwave_5fcoupled_3410',['surface_temp_wave_coupled',['../structsurface__temp__wave__coupled.html#afb061b2c2b86edd4821efbcb70295412',1,'surface_temp_wave_coupled']]], + ['svp_5fice_3411',['svp_ice',['../classWaterVaporSat.html#a0ff4f9b6dff1a33f4ed6eb9d7af72e49',1,'WaterVaporSat']]], + ['svp_5ftrans_3412',['svp_trans',['../classWaterVaporSat.html#a65b6cc3dc802016e84bc19030f6ad65a',1,'WaterVaporSat']]], + ['svp_5fwater_3413',['svp_water',['../classWaterVaporSat.html#a5463980977e84f7268ed9afde2bad62e',1,'WaterVaporSat']]] ]; diff --git a/search/functions_12.js b/search/functions_12.js index 6beea5937f..d1e1df04ad 100644 --- a/search/functions_12.js +++ b/search/functions_12.js @@ -1,15 +1,15 @@ var searchData= [ - ['term_5fvel_5fqp_3408',['term_vel_qp',['../Microphysics__Utils_8H.html#a7cf098884df5812417aa6ca8a52ec713',1,'Microphysics_Utils.H']]], - ['terrainif_3409',['TerrainIF',['../classTerrainIF.html#ac037e7de054cca909a921eccc620ef4a',1,'TerrainIF']]], - ['tilenoz_3410',['TileNoZ',['../TileNoZ_8H.html#a8da113f1d5603f7297fe1d03e5013f00',1,'TileNoZ.H']]], - ['time_5favg_5fvel_5fatcc_3411',['Time_Avg_Vel_atCC',['../Time__Avg__Vel_8cpp.html#a2241063c19e843eaaa749c3b51b6b0fe',1,'Time_Avg_Vel_atCC(const Real &dt, Real &t_avg_cnt, MultiFab *vel_t_avg, MultiFab &xvel, MultiFab &yvel, MultiFab &zvel): Time_Avg_Vel.cpp'],['../Utils_8H.html#ac3d734b65fd91857925d381c476e7965',1,'Time_Avg_Vel_atCC(const amrex::Real &dt, amrex::Real &t_avg_cnt, amrex::MultiFab *vel_t_avg, amrex::MultiFab &xvel, amrex::MultiFab &yvel, amrex::MultiFab &zvel): Utils.H']]], - ['time_5finterp_5fsst_3412',['time_interp_sst',['../classABLMost.html#aaeef06eb7d0ab7e3d100e583337121cc',1,'ABLMost']]], - ['timeinterpolateddata_3413',['TimeInterpolatedData',['../structTimeInterpolatedData.html#a1184805b0ed3f51a5f64344e40913165',1,'TimeInterpolatedData::TimeInterpolatedData()=default'],['../structTimeInterpolatedData.html#ae8db82a30cc400c01b3cb5a2ee83a778',1,'TimeInterpolatedData::TimeInterpolatedData(amrex::Real time)'],['../structTimeInterpolatedData.html#afc37639ef60efba7c592f9d1b6380df6',1,'TimeInterpolatedData::TimeInterpolatedData(TimeInterpolatedData &&) noexcept=default'],['../structTimeInterpolatedData.html#a9fa3bce37585ef02c43d0ba1546f93eb',1,'TimeInterpolatedData::TimeInterpolatedData(const TimeInterpolatedData &other)=delete']]], - ['timestep_3414',['timeStep',['../classERF.html#aff397ccf7eb99c51d7c705a35e85ec5f',1,'ERF']]], - ['tinterp_3415',['tinterp',['../classReadBndryPlanes.html#a6f54411420eb4d57e4dc201b256f3d5e',1,'ReadBndryPlanes']]], - ['tq_5fenthalpy_3416',['tq_enthalpy',['../classWaterVaporSat.html#afae0dfb4f85c8ac528ff330ccfa182b2',1,'WaterVaporSat']]], - ['trilinear_5finterp_5ft_3417',['trilinear_interp_T',['../classMOSTAverage.html#aefb42b9f2a5c3347e7ab87abdfcab3d7',1,'MOSTAverage']]], - ['turbpert_5famplitude_3418',['turbPert_amplitude',['../classERF.html#afb76c0633e2ba944c543e7a03a5e9424',1,'ERF']]], - ['turbpert_5fupdate_3419',['turbPert_update',['../classERF.html#aa89efe0abf37918ce3f212fb0e26f1bc',1,'ERF']]] + ['term_5fvel_5fqp_3414',['term_vel_qp',['../Microphysics__Utils_8H.html#a7cf098884df5812417aa6ca8a52ec713',1,'Microphysics_Utils.H']]], + ['terrainif_3415',['TerrainIF',['../classTerrainIF.html#ac037e7de054cca909a921eccc620ef4a',1,'TerrainIF']]], + ['tilenoz_3416',['TileNoZ',['../TileNoZ_8H.html#a8da113f1d5603f7297fe1d03e5013f00',1,'TileNoZ.H']]], + ['time_5favg_5fvel_5fatcc_3417',['Time_Avg_Vel_atCC',['../Time__Avg__Vel_8cpp.html#a2241063c19e843eaaa749c3b51b6b0fe',1,'Time_Avg_Vel_atCC(const Real &dt, Real &t_avg_cnt, MultiFab *vel_t_avg, MultiFab &xvel, MultiFab &yvel, MultiFab &zvel): Time_Avg_Vel.cpp'],['../Utils_8H.html#ac3d734b65fd91857925d381c476e7965',1,'Time_Avg_Vel_atCC(const amrex::Real &dt, amrex::Real &t_avg_cnt, amrex::MultiFab *vel_t_avg, amrex::MultiFab &xvel, amrex::MultiFab &yvel, amrex::MultiFab &zvel): Utils.H']]], + ['time_5finterp_5fsst_3418',['time_interp_sst',['../classABLMost.html#aaeef06eb7d0ab7e3d100e583337121cc',1,'ABLMost']]], + ['timeinterpolateddata_3419',['TimeInterpolatedData',['../structTimeInterpolatedData.html#a1184805b0ed3f51a5f64344e40913165',1,'TimeInterpolatedData::TimeInterpolatedData()=default'],['../structTimeInterpolatedData.html#ae8db82a30cc400c01b3cb5a2ee83a778',1,'TimeInterpolatedData::TimeInterpolatedData(amrex::Real time)'],['../structTimeInterpolatedData.html#afc37639ef60efba7c592f9d1b6380df6',1,'TimeInterpolatedData::TimeInterpolatedData(TimeInterpolatedData &&) noexcept=default'],['../structTimeInterpolatedData.html#a9fa3bce37585ef02c43d0ba1546f93eb',1,'TimeInterpolatedData::TimeInterpolatedData(const TimeInterpolatedData &other)=delete']]], + ['timestep_3420',['timeStep',['../classERF.html#aff397ccf7eb99c51d7c705a35e85ec5f',1,'ERF']]], + ['tinterp_3421',['tinterp',['../classReadBndryPlanes.html#a6f54411420eb4d57e4dc201b256f3d5e',1,'ReadBndryPlanes']]], + ['tq_5fenthalpy_3422',['tq_enthalpy',['../classWaterVaporSat.html#afae0dfb4f85c8ac528ff330ccfa182b2',1,'WaterVaporSat']]], + ['trilinear_5finterp_5ft_3423',['trilinear_interp_T',['../classMOSTAverage.html#aefb42b9f2a5c3347e7ab87abdfcab3d7',1,'MOSTAverage']]], + ['turbpert_5famplitude_3424',['turbPert_amplitude',['../classERF.html#afb76c0633e2ba944c543e7a03a5e9424',1,'ERF']]], + ['turbpert_5fupdate_3425',['turbPert_update',['../classERF.html#aa89efe0abf37918ce3f212fb0e26f1bc',1,'ERF']]] ]; diff --git a/search/functions_13.js b/search/functions_13.js index 184ed15e3c..349efb7f86 100644 --- a/search/functions_13.js +++ b/search/functions_13.js @@ -1,23 +1,23 @@ var searchData= [ - ['unioncif_3420',['UnionCIF',['../classUnionCIF.html#a409d59d8707a2695b13b7115f69f406e',1,'UnionCIF::UnionCIF(const UnionCIF &rhs)=default'],['../classUnionCIF.html#ae309467c4c5a1af20d285441d1fb9670',1,'UnionCIF::UnionCIF(const F1 &f1, const F2 &f2)'],['../classUnionCIF.html#aafc94c60436bf1ae2decb6fb84ce300f',1,'UnionCIF::UnionCIF(UnionCIF &&rhs) noexcept=default']]], - ['unionlistif_3421',['UnionListIF',['../classUnionListIF.html#a7d510d7cb349a3e162d88ac660a6b3c2',1,'UnionListIF']]], - ['update_3422',['update',['../classEWP.html#a762189d5d9c02d32fa1e6186adb35ae0',1,'EWP::update()'],['../classFitch.html#a1a2db68abb0185de73bd870884f0b019',1,'Fitch::update()'],['../classSimpleAD.html#a1d87675adbb7e56ff0969cd1543c72c4',1,'SimpleAD::update()']]], - ['update_5fdiffusive_5farrays_3423',['update_diffusive_arrays',['../classERF.html#a419510fced05e9afc05c466beeeb66f7',1,'ERF']]], - ['update_5ffield_5fptrs_3424',['update_field_ptrs',['../classMOSTAverage.html#acdb5e2dec5f3e9b0a37e194430ca32a7',1,'MOSTAverage']]], - ['update_5ffluxes_3425',['update_fluxes',['../classABLMost.html#af82057d4fbaaf1d8347cf18c7efd7b53',1,'ABLMost']]], - ['update_5fgeostrophic_5fprofile_3426',['update_geostrophic_profile',['../classProblemBase.html#a7ca260b5527bb1ecbae0aa78897dd666',1,'ProblemBase']]], - ['update_5fmac_5fptrs_3427',['update_mac_ptrs',['../classABLMost.html#a6a3e64fcdbe709a947131d31cd0e347b',1,'ABLMost']]], - ['update_5fmicro_5fvars_3428',['Update_Micro_Vars',['../classNullSurf.html#aad733e954aefc643ed1f2c6a1bb564ac',1,'NullSurf::Update_Micro_Vars()'],['../classKessler.html#a05b9426e9fd6af90ea40aa77ed0cbe66',1,'Kessler::Update_Micro_Vars()'],['../classNullMoist.html#aece7a50f16bf40e3e9d536cc030458f7',1,'NullMoist::Update_Micro_Vars()'],['../classSAM.html#a2e6ff95cf827306bbcf3661c954a692e',1,'SAM::Update_Micro_Vars()']]], - ['update_5fmicro_5fvars_5flev_3429',['Update_Micro_Vars_Lev',['../classMicrophysics.html#a6b8a14f003da6293f7a9ee118bc60149',1,'Microphysics::Update_Micro_Vars_Lev()'],['../classEulerianMicrophysics.html#a0f8fc766c44f4331bfc86337eb43f6cc',1,'EulerianMicrophysics::Update_Micro_Vars_Lev()'],['../classLandSurface.html#afcb150f2d64cc46a8fbdc817d6fb9872',1,'LandSurface::Update_Micro_Vars_Lev()']]], - ['update_5frhoqt_5fsources_3430',['update_rhoqt_sources',['../classProblemBase.html#a9ef723333579aac2295b535c79193088',1,'ProblemBase']]], - ['update_5frhotheta_5fsources_3431',['update_rhotheta_sources',['../classProblemBase.html#ad8f582edde4d124612f67d9d2a17f4a4',1,'ProblemBase']]], - ['update_5fstate_5fvars_3432',['Update_State_Vars',['../classNullSurf.html#aec12d8aa3e358ea40f7d4371651eb73a',1,'NullSurf::Update_State_Vars()'],['../classKessler.html#add7ed88ab0086ee53aa15e87cc8686ef',1,'Kessler::Update_State_Vars()'],['../classNullMoist.html#a24f0528f7d31b89f36a3c225c7e53010',1,'NullMoist::Update_State_Vars()'],['../classSAM.html#aea5fdd520cbb1bc936a0f11d55400029',1,'SAM::Update_State_Vars()']]], - ['update_5fstate_5fvars_5flev_3433',['Update_State_Vars_Lev',['../classLandSurface.html#adc42b59dad9dc817ee882778a2b3d273',1,'LandSurface::Update_State_Vars_Lev()'],['../classEulerianMicrophysics.html#a6f0dc90119a228e56c5616267eba6009',1,'EulerianMicrophysics::Update_State_Vars_Lev()'],['../classMicrophysics.html#a5d7ee0e4867e53e492b8179365e85bb4',1,'Microphysics::Update_State_Vars_Lev()']]], - ['update_5fsurf_5ftemp_3434',['update_surf_temp',['../classABLMost.html#ad878840b1c998160ba79c1e9714adc70',1,'ABLMost']]], - ['update_5fterrain_5farrays_3435',['update_terrain_arrays',['../classERF.html#a900a0119c110486650f2759287e22cba',1,'ERF']]], - ['update_5fw_5fsubsidence_3436',['update_w_subsidence',['../classProblemBase.html#aeea63567f941d0ee6f5a653bd8404268',1,'ProblemBase']]], - ['upwind3_3437',['UPWIND3',['../structUPWIND3.html#a8292861e993880bb65b24308d62d52a8',1,'UPWIND3']]], - ['upwind5_3438',['UPWIND5',['../structUPWIND5.html#ac13bbcdad8180ebd3e15168365299f40',1,'UPWIND5']]], - ['upwindall_3439',['UPWINDALL',['../structUPWINDALL.html#a0201b903572d5e51aa42bbc43cd94242',1,'UPWINDALL']]] + ['unioncif_3426',['UnionCIF',['../classUnionCIF.html#a409d59d8707a2695b13b7115f69f406e',1,'UnionCIF::UnionCIF(const UnionCIF &rhs)=default'],['../classUnionCIF.html#ae309467c4c5a1af20d285441d1fb9670',1,'UnionCIF::UnionCIF(const F1 &f1, const F2 &f2)'],['../classUnionCIF.html#aafc94c60436bf1ae2decb6fb84ce300f',1,'UnionCIF::UnionCIF(UnionCIF &&rhs) noexcept=default']]], + ['unionlistif_3427',['UnionListIF',['../classUnionListIF.html#a7d510d7cb349a3e162d88ac660a6b3c2',1,'UnionListIF']]], + ['update_3428',['update',['../classEWP.html#a762189d5d9c02d32fa1e6186adb35ae0',1,'EWP::update()'],['../classFitch.html#a1a2db68abb0185de73bd870884f0b019',1,'Fitch::update()'],['../classSimpleAD.html#a1d87675adbb7e56ff0969cd1543c72c4',1,'SimpleAD::update()']]], + ['update_5fdiffusive_5farrays_3429',['update_diffusive_arrays',['../classERF.html#a419510fced05e9afc05c466beeeb66f7',1,'ERF']]], + ['update_5ffield_5fptrs_3430',['update_field_ptrs',['../classMOSTAverage.html#acdb5e2dec5f3e9b0a37e194430ca32a7',1,'MOSTAverage']]], + ['update_5ffluxes_3431',['update_fluxes',['../classABLMost.html#af82057d4fbaaf1d8347cf18c7efd7b53',1,'ABLMost']]], + ['update_5fgeostrophic_5fprofile_3432',['update_geostrophic_profile',['../classProblemBase.html#a7ca260b5527bb1ecbae0aa78897dd666',1,'ProblemBase']]], + ['update_5fmac_5fptrs_3433',['update_mac_ptrs',['../classABLMost.html#a6a3e64fcdbe709a947131d31cd0e347b',1,'ABLMost']]], + ['update_5fmicro_5fvars_3434',['Update_Micro_Vars',['../classNullSurf.html#aad733e954aefc643ed1f2c6a1bb564ac',1,'NullSurf::Update_Micro_Vars()'],['../classKessler.html#a05b9426e9fd6af90ea40aa77ed0cbe66',1,'Kessler::Update_Micro_Vars()'],['../classNullMoist.html#aece7a50f16bf40e3e9d536cc030458f7',1,'NullMoist::Update_Micro_Vars()'],['../classSAM.html#a2e6ff95cf827306bbcf3661c954a692e',1,'SAM::Update_Micro_Vars()']]], + ['update_5fmicro_5fvars_5flev_3435',['Update_Micro_Vars_Lev',['../classMicrophysics.html#a6b8a14f003da6293f7a9ee118bc60149',1,'Microphysics::Update_Micro_Vars_Lev()'],['../classEulerianMicrophysics.html#a0f8fc766c44f4331bfc86337eb43f6cc',1,'EulerianMicrophysics::Update_Micro_Vars_Lev()'],['../classLandSurface.html#afcb150f2d64cc46a8fbdc817d6fb9872',1,'LandSurface::Update_Micro_Vars_Lev()']]], + ['update_5frhoqt_5fsources_3436',['update_rhoqt_sources',['../classProblemBase.html#a9ef723333579aac2295b535c79193088',1,'ProblemBase']]], + ['update_5frhotheta_5fsources_3437',['update_rhotheta_sources',['../classProblemBase.html#ad8f582edde4d124612f67d9d2a17f4a4',1,'ProblemBase']]], + ['update_5fstate_5fvars_3438',['Update_State_Vars',['../classNullSurf.html#aec12d8aa3e358ea40f7d4371651eb73a',1,'NullSurf::Update_State_Vars()'],['../classKessler.html#add7ed88ab0086ee53aa15e87cc8686ef',1,'Kessler::Update_State_Vars()'],['../classNullMoist.html#a24f0528f7d31b89f36a3c225c7e53010',1,'NullMoist::Update_State_Vars()'],['../classSAM.html#aea5fdd520cbb1bc936a0f11d55400029',1,'SAM::Update_State_Vars()']]], + ['update_5fstate_5fvars_5flev_3439',['Update_State_Vars_Lev',['../classLandSurface.html#adc42b59dad9dc817ee882778a2b3d273',1,'LandSurface::Update_State_Vars_Lev()'],['../classEulerianMicrophysics.html#a6f0dc90119a228e56c5616267eba6009',1,'EulerianMicrophysics::Update_State_Vars_Lev()'],['../classMicrophysics.html#a5d7ee0e4867e53e492b8179365e85bb4',1,'Microphysics::Update_State_Vars_Lev()']]], + ['update_5fsurf_5ftemp_3440',['update_surf_temp',['../classABLMost.html#ad878840b1c998160ba79c1e9714adc70',1,'ABLMost']]], + ['update_5fterrain_5farrays_3441',['update_terrain_arrays',['../classERF.html#a900a0119c110486650f2759287e22cba',1,'ERF']]], + ['update_5fw_5fsubsidence_3442',['update_w_subsidence',['../classProblemBase.html#aeea63567f941d0ee6f5a653bd8404268',1,'ProblemBase']]], + ['upwind3_3443',['UPWIND3',['../structUPWIND3.html#a8292861e993880bb65b24308d62d52a8',1,'UPWIND3']]], + ['upwind5_3444',['UPWIND5',['../structUPWIND5.html#ac13bbcdad8180ebd3e15168365299f40',1,'UPWIND5']]], + ['upwindall_3445',['UPWINDALL',['../structUPWINDALL.html#a0201b903572d5e51aa42bbc43cd94242',1,'UPWINDALL']]] ]; diff --git a/search/functions_14.js b/search/functions_14.js index 8f9d2c6107..788a8fcae1 100644 --- a/search/functions_14.js +++ b/search/functions_14.js @@ -1,9 +1,9 @@ var searchData= [ - ['var_3440',['var',['../classncutils_1_1NCGroup.html#a79bef315da5cff7bcf8bbcfbdd122115',1,'ncutils::NCGroup']]], - ['velocitytomomentum_3441',['VelocityToMomentum',['../Utils_8H.html#a5e2e36af19c0192915a2ca721c0cded4',1,'VelocityToMomentum(const amrex::MultiFab &xvel_in, const amrex::IntVect &xvel_ngrow, const amrex::MultiFab &yvel_in, const amrex::IntVect &yvel_ngrow, const amrex::MultiFab &zvel_in, const amrex::IntVect &zvel_ngrow, const amrex::MultiFab &cons_in, amrex::MultiFab &xmom_out, amrex::MultiFab &ymom_out, amrex::MultiFab &zmom_out, const amrex::Box &domain, const amrex::Vector< amrex::BCRec > &domain_bcs_type_h): Utils.H'],['../VelocityToMomentum_8cpp.html#abd0f6df06c5a596317146e0b9ee81780',1,'VelocityToMomentum(const MultiFab &xvel_in, const IntVect &xvel_ngrow, const MultiFab &yvel_in, const IntVect &yvel_ngrow, const MultiFab &zvel_in, const IntVect &zvel_ngrow, const MultiFab &density, MultiFab &xmom, MultiFab &ymom, MultiFab &zmom, const Box &domain, const Vector< BCRec > &domain_bcs_type_h): VelocityToMomentum.cpp']]], - ['volcanic_5fcmip_5fsw_3442',['volcanic_cmip_sw',['../classAerRadProps.html#aa4241f4adcf62ef3c537a91bdfce66db',1,'AerRadProps']]], - ['volcanic_5foptics_5finit_3443',['volcanic_optics_init',['../classPhysProp.html#a0ad3529b5187f2cfbc7f502655910f32',1,'PhysProp']]], - ['volcanic_5fradius_5foptics_5finit_3444',['volcanic_radius_optics_init',['../classPhysProp.html#adf9483b1971e6a0e2d7e14bcfd2779c1',1,'PhysProp']]], - ['volwgtsummf_3445',['volWgtSumMF',['../classERF.html#ae959fa22a0c888a6da28d385054edf82',1,'ERF']]] + ['var_3446',['var',['../classncutils_1_1NCGroup.html#a79bef315da5cff7bcf8bbcfbdd122115',1,'ncutils::NCGroup']]], + ['velocitytomomentum_3447',['VelocityToMomentum',['../Utils_8H.html#a5e2e36af19c0192915a2ca721c0cded4',1,'VelocityToMomentum(const amrex::MultiFab &xvel_in, const amrex::IntVect &xvel_ngrow, const amrex::MultiFab &yvel_in, const amrex::IntVect &yvel_ngrow, const amrex::MultiFab &zvel_in, const amrex::IntVect &zvel_ngrow, const amrex::MultiFab &cons_in, amrex::MultiFab &xmom_out, amrex::MultiFab &ymom_out, amrex::MultiFab &zmom_out, const amrex::Box &domain, const amrex::Vector< amrex::BCRec > &domain_bcs_type_h): Utils.H'],['../VelocityToMomentum_8cpp.html#abd0f6df06c5a596317146e0b9ee81780',1,'VelocityToMomentum(const MultiFab &xvel_in, const IntVect &xvel_ngrow, const MultiFab &yvel_in, const IntVect &yvel_ngrow, const MultiFab &zvel_in, const IntVect &zvel_ngrow, const MultiFab &density, MultiFab &xmom, MultiFab &ymom, MultiFab &zmom, const Box &domain, const Vector< BCRec > &domain_bcs_type_h): VelocityToMomentum.cpp']]], + ['volcanic_5fcmip_5fsw_3448',['volcanic_cmip_sw',['../classAerRadProps.html#aa4241f4adcf62ef3c537a91bdfce66db',1,'AerRadProps']]], + ['volcanic_5foptics_5finit_3449',['volcanic_optics_init',['../classPhysProp.html#a0ad3529b5187f2cfbc7f502655910f32',1,'PhysProp']]], + ['volcanic_5fradius_5foptics_5finit_3450',['volcanic_radius_optics_init',['../classPhysProp.html#adf9483b1971e6a0e2d7e14bcfd2779c1',1,'PhysProp']]], + ['volwgtsummf_3451',['volWgtSumMF',['../classERF.html#ae959fa22a0c888a6da28d385054edf82',1,'ERF']]] ]; diff --git a/search/functions_15.js b/search/functions_15.js index 9e0d53973f..26b568ca6b 100644 --- a/search/functions_15.js +++ b/search/functions_15.js @@ -1,36 +1,36 @@ var searchData= [ - ['weno3_3446',['WENO3',['../structWENO3.html#aa02f985763b5a70539e23704c5eb63f5',1,'WENO3']]], - ['weno5_3447',['WENO5',['../structWENO5.html#a912e48be65b9a2c9f3b774fe4188b611',1,'WENO5']]], - ['weno_5fmzq3_3448',['WENO_MZQ3',['../structWENO__MZQ3.html#a9d80ce41fb8ce4487f97fe4448fcb131',1,'WENO_MZQ3']]], - ['weno_5fz3_3449',['WENO_Z3',['../structWENO__Z3.html#a810a42fb5036957a15fd24569248f814',1,'WENO_Z3']]], - ['weno_5fz5_3450',['WENO_Z5',['../structWENO__Z5.html#ab1358af1406351c440ca130640812f6d',1,'WENO_Z5']]], - ['wfromomega_3451',['WFromOmega',['../TerrainMetrics_8H.html#afcf8f856b0f93b149c115ca1ff240039',1,'WFromOmega(int i, int j, int k, amrex::Real omega, const amrex::Array4< const amrex::Real > &u_arr, const amrex::Array4< const amrex::Real > &v_arr, const amrex::Array4< const amrex::Real > &z_nd, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxInv): TerrainMetrics.H'],['../TerrainMetrics_8H.html#a53ec395d493c2308315f7512c5438087',1,'WFromOmega(int i, int j, int k, amrex::Real omega, amrex::Real u, amrex::Real v, const amrex::Array4< const amrex::Real > &z_nd, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxInv): TerrainMetrics.H']]], - ['windfarm_3452',['WindFarm',['../classWindFarm.html#a3248ba59be840e23843bebe9b2c82f36',1,'WindFarm::WindFarm()'],['../classWindFarm.html#aa029a9a7efa768d39849b4fb27ab5eeb',1,'WindFarm::WindFarm(int nlev, const WindFarmType &a_windfarm_type)']]], - ['wrfbdy_5fcompute_5flaplacian_5frelaxation_3453',['wrfbdy_compute_laplacian_relaxation',['../Utils_8H.html#af0d5ce71ebff8b1ef263dbaccfaf7758',1,'Utils.H']]], - ['wrfbdy_5fset_5frhs_5fin_5fspec_5fregion_3454',['wrfbdy_set_rhs_in_spec_region',['../Utils_8H.html#a07e79832d9bdb9c05a939bee38a06b9c',1,'Utils.H']]], - ['write_5f1d_5fprofiles_3455',['write_1D_profiles',['../classERF.html#a55eae94c5363e227b571739738bb26b7',1,'ERF']]], - ['write_5f1d_5fprofiles_5fstag_3456',['write_1D_profiles_stag',['../classERF.html#a39efa3a0f3ae3deb7a43f4ce110ee49a',1,'ERF']]], - ['write_5factuator_5fdisks_5fvtk_3457',['write_actuator_disks_vtk',['../classWindFarm.html#a0228aae26b6b0737cfba12ab47bbe619',1,'WindFarm']]], - ['write_5faverages_3458',['write_averages',['../classMOSTAverage.html#ac37b71ce655ea973ad6fc4c564b040c1',1,'MOSTAverage']]], - ['write_5fk_5findices_3459',['write_k_indices',['../classMOSTAverage.html#a612fdb06ff433e33c717198c7e3e4b0b',1,'MOSTAverage']]], - ['write_5fnorm_5findices_3460',['write_norm_indices',['../classMOSTAverage.html#ab886a0b96314880c4769318c81b23fbb',1,'MOSTAverage']]], - ['write_5fplanes_3461',['write_planes',['../classWriteBndryPlanes.html#a1010dd3e951cad55702ae47607f8dd1e',1,'WriteBndryPlanes']]], - ['write_5fturbine_5flocations_5fvtk_3462',['write_turbine_locations_vtk',['../classWindFarm.html#ad777d1138832963ea3158ec66c86e0c7',1,'WindFarm']]], - ['write_5fxz_5fpositions_3463',['write_xz_positions',['../classMOSTAverage.html#a221a026c642af21a051b05b2b4ea763a',1,'MOSTAverage']]], - ['writebndryplanes_3464',['WriteBndryPlanes',['../classWriteBndryPlanes.html#a460f7f20cb59e7f2f8546ebf423585d5',1,'WriteBndryPlanes']]], - ['writebuildinfo_3465',['writeBuildInfo',['../classERF.html#ae6afed5b3a72ca80ccf0d791b08516aa',1,'ERF']]], - ['writecheckpointfile_3466',['WriteCheckpointFile',['../classERF.html#ad101fd46096db2d6b21544bfede6551f',1,'ERF']]], - ['writegenericplotfileheaderwithterrain_3467',['WriteGenericPlotfileHeaderWithTerrain',['../classERF.html#a16e49fd65c68e2afc2140bd9e97bcbe9',1,'ERF']]], - ['writejobinfo_3468',['writeJobInfo',['../classERF.html#aa2d8099655a8779836e63e3e98ea4372',1,'ERF']]], - ['writemultilevelplotfilewithterrain_3469',['WriteMultiLevelPlotfileWithTerrain',['../classERF.html#a898410553492b2add00a72374dcec6ba',1,'ERF']]], - ['writenow_3470',['writeNow',['../classERF.html#af2e4de4eaa0f93149c1aefd58dc7068a',1,'ERF']]], - ['writeplotfile_3471',['WritePlotFile',['../classERF.html#a0b0b4140e117163895e5e2c89a68d12a',1,'ERF']]], - ['wv_5fsat_5fqsat_5fice_3472',['wv_sat_qsat_ice',['../classSatMethods.html#a9a256423ef50446cfdf6d4dcc1c1f73b',1,'SatMethods']]], - ['wv_5fsat_5fqsat_5ftrans_3473',['wv_sat_qsat_trans',['../classSatMethods.html#a8668cfc2892409c9aaeb26762486ac50',1,'SatMethods']]], - ['wv_5fsat_5fqsat_5fwater_3474',['wv_sat_qsat_water',['../classSatMethods.html#a97d1392753f7f866850e99c89c815bcf',1,'SatMethods']]], - ['wv_5fsat_5fsvp_5fice_3475',['wv_sat_svp_ice',['../classSatMethods.html#add2fde8076c60c19ed9f4f78c9891e0e',1,'SatMethods']]], - ['wv_5fsat_5fsvp_5fto_5fqsat_3476',['wv_sat_svp_to_qsat',['../classSatMethods.html#a25e9dd28dcfcfd4e060472815e8389fa',1,'SatMethods']]], - ['wv_5fsat_5fsvp_5ftrans_3477',['wv_sat_svp_trans',['../classSatMethods.html#ac2fa5e55257c6021e9e7fd897f4950b7',1,'SatMethods']]], - ['wv_5fsat_5fsvp_5fwater_3478',['wv_sat_svp_water',['../classSatMethods.html#a1c4bb9729c75dd1160d45ae638635766',1,'SatMethods']]] + ['weno3_3452',['WENO3',['../structWENO3.html#aa02f985763b5a70539e23704c5eb63f5',1,'WENO3']]], + ['weno5_3453',['WENO5',['../structWENO5.html#a912e48be65b9a2c9f3b774fe4188b611',1,'WENO5']]], + ['weno_5fmzq3_3454',['WENO_MZQ3',['../structWENO__MZQ3.html#a9d80ce41fb8ce4487f97fe4448fcb131',1,'WENO_MZQ3']]], + ['weno_5fz3_3455',['WENO_Z3',['../structWENO__Z3.html#a810a42fb5036957a15fd24569248f814',1,'WENO_Z3']]], + ['weno_5fz5_3456',['WENO_Z5',['../structWENO__Z5.html#ab1358af1406351c440ca130640812f6d',1,'WENO_Z5']]], + ['wfromomega_3457',['WFromOmega',['../TerrainMetrics_8H.html#afcf8f856b0f93b149c115ca1ff240039',1,'WFromOmega(int i, int j, int k, amrex::Real omega, const amrex::Array4< const amrex::Real > &u_arr, const amrex::Array4< const amrex::Real > &v_arr, const amrex::Array4< const amrex::Real > &z_nd, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxInv): TerrainMetrics.H'],['../TerrainMetrics_8H.html#a53ec395d493c2308315f7512c5438087',1,'WFromOmega(int i, int j, int k, amrex::Real omega, amrex::Real u, amrex::Real v, const amrex::Array4< const amrex::Real > &z_nd, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxInv): TerrainMetrics.H']]], + ['windfarm_3458',['WindFarm',['../classWindFarm.html#a3248ba59be840e23843bebe9b2c82f36',1,'WindFarm::WindFarm()'],['../classWindFarm.html#aa029a9a7efa768d39849b4fb27ab5eeb',1,'WindFarm::WindFarm(int nlev, const WindFarmType &a_windfarm_type)']]], + ['wrfbdy_5fcompute_5flaplacian_5frelaxation_3459',['wrfbdy_compute_laplacian_relaxation',['../Utils_8H.html#af0d5ce71ebff8b1ef263dbaccfaf7758',1,'Utils.H']]], + ['wrfbdy_5fset_5frhs_5fin_5fspec_5fregion_3460',['wrfbdy_set_rhs_in_spec_region',['../Utils_8H.html#a07e79832d9bdb9c05a939bee38a06b9c',1,'Utils.H']]], + ['write_5f1d_5fprofiles_3461',['write_1D_profiles',['../classERF.html#a55eae94c5363e227b571739738bb26b7',1,'ERF']]], + ['write_5f1d_5fprofiles_5fstag_3462',['write_1D_profiles_stag',['../classERF.html#a39efa3a0f3ae3deb7a43f4ce110ee49a',1,'ERF']]], + ['write_5factuator_5fdisks_5fvtk_3463',['write_actuator_disks_vtk',['../classWindFarm.html#a0228aae26b6b0737cfba12ab47bbe619',1,'WindFarm']]], + ['write_5faverages_3464',['write_averages',['../classMOSTAverage.html#ac37b71ce655ea973ad6fc4c564b040c1',1,'MOSTAverage']]], + ['write_5fk_5findices_3465',['write_k_indices',['../classMOSTAverage.html#a612fdb06ff433e33c717198c7e3e4b0b',1,'MOSTAverage']]], + ['write_5fnorm_5findices_3466',['write_norm_indices',['../classMOSTAverage.html#ab886a0b96314880c4769318c81b23fbb',1,'MOSTAverage']]], + ['write_5fplanes_3467',['write_planes',['../classWriteBndryPlanes.html#a1010dd3e951cad55702ae47607f8dd1e',1,'WriteBndryPlanes']]], + ['write_5fturbine_5flocations_5fvtk_3468',['write_turbine_locations_vtk',['../classWindFarm.html#ad777d1138832963ea3158ec66c86e0c7',1,'WindFarm']]], + ['write_5fxz_5fpositions_3469',['write_xz_positions',['../classMOSTAverage.html#a221a026c642af21a051b05b2b4ea763a',1,'MOSTAverage']]], + ['writebndryplanes_3470',['WriteBndryPlanes',['../classWriteBndryPlanes.html#a460f7f20cb59e7f2f8546ebf423585d5',1,'WriteBndryPlanes']]], + ['writebuildinfo_3471',['writeBuildInfo',['../classERF.html#ae6afed5b3a72ca80ccf0d791b08516aa',1,'ERF']]], + ['writecheckpointfile_3472',['WriteCheckpointFile',['../classERF.html#ad101fd46096db2d6b21544bfede6551f',1,'ERF']]], + ['writegenericplotfileheaderwithterrain_3473',['WriteGenericPlotfileHeaderWithTerrain',['../classERF.html#a16e49fd65c68e2afc2140bd9e97bcbe9',1,'ERF']]], + ['writejobinfo_3474',['writeJobInfo',['../classERF.html#aa2d8099655a8779836e63e3e98ea4372',1,'ERF']]], + ['writemultilevelplotfilewithterrain_3475',['WriteMultiLevelPlotfileWithTerrain',['../classERF.html#a898410553492b2add00a72374dcec6ba',1,'ERF']]], + ['writenow_3476',['writeNow',['../classERF.html#af2e4de4eaa0f93149c1aefd58dc7068a',1,'ERF']]], + ['writeplotfile_3477',['WritePlotFile',['../classERF.html#a0b0b4140e117163895e5e2c89a68d12a',1,'ERF']]], + ['wv_5fsat_5fqsat_5fice_3478',['wv_sat_qsat_ice',['../classSatMethods.html#a9a256423ef50446cfdf6d4dcc1c1f73b',1,'SatMethods']]], + ['wv_5fsat_5fqsat_5ftrans_3479',['wv_sat_qsat_trans',['../classSatMethods.html#a8668cfc2892409c9aaeb26762486ac50',1,'SatMethods']]], + ['wv_5fsat_5fqsat_5fwater_3480',['wv_sat_qsat_water',['../classSatMethods.html#a97d1392753f7f866850e99c89c815bcf',1,'SatMethods']]], + ['wv_5fsat_5fsvp_5fice_3481',['wv_sat_svp_ice',['../classSatMethods.html#add2fde8076c60c19ed9f4f78c9891e0e',1,'SatMethods']]], + ['wv_5fsat_5fsvp_5fto_5fqsat_3482',['wv_sat_svp_to_qsat',['../classSatMethods.html#a25e9dd28dcfcfd4e060472815e8389fa',1,'SatMethods']]], + ['wv_5fsat_5fsvp_5ftrans_3483',['wv_sat_svp_trans',['../classSatMethods.html#ac2fa5e55257c6021e9e7fd897f4950b7',1,'SatMethods']]], + ['wv_5fsat_5fsvp_5fwater_3484',['wv_sat_svp_water',['../classSatMethods.html#a1c4bb9729c75dd1160d45ae638635766',1,'SatMethods']]] ]; diff --git a/search/functions_16.js b/search/functions_16.js index b9e3afc1d6..41a816275a 100644 --- a/search/functions_16.js +++ b/search/functions_16.js @@ -1,4 +1,4 @@ var searchData= [ - ['xlo_3479',['xlo',['../classPlaneAverage.html#a9ed43e3c2cfd2ef0f3fb23d2097a1b6d',1,'PlaneAverage']]] + ['xlo_3485',['xlo',['../classPlaneAverage.html#a9ed43e3c2cfd2ef0f3fb23d2097a1b6d',1,'PlaneAverage']]] ]; diff --git a/search/functions_17.js b/search/functions_17.js index 169d5c2aba..fe6259e2bb 100644 --- a/search/functions_17.js +++ b/search/functions_17.js @@ -1,6 +1,6 @@ var searchData= [ - ['z0_5fest_3480',['z0_est',['../Microphysics__Utils_8H.html#a5e22e7c025af17b4983d25a5b81bfd4b',1,'Microphysics_Utils.H']]], - ['zenith_3481',['zenith',['../Orbit_8cpp.html#aaee034023d5a18e9dd77ea2c0dd01273',1,'zenith(int &calday, amrex::MultiFab *clat, amrex::MultiFab *clon, real1d &coszrs, int &ncol, const Real &eccen, const Real &mvelpp, const Real &lambm0, const Real &obliqr, amrex::Real uniform_angle): Orbit.cpp'],['../Orbit_8H.html#a86ab981fdb3b32de3c39df4cc028fb42',1,'zenith(int &calday, amrex::MultiFab *clat, amrex::MultiFab *clon, real1d &coszrs, int &ncol, const amrex::Real &eccen, const amrex::Real &mvelpp, const amrex::Real &lambm0, const amrex::Real &obliqr, amrex::Real uniform_angle=-1.0): Orbit.H']]], - ['zero_5foptics_5finit_3482',['zero_optics_init',['../classPhysProp.html#af0ccfb22c5689ec73789babb1b7c448d',1,'PhysProp']]] + ['z0_5fest_3486',['z0_est',['../Microphysics__Utils_8H.html#a5e22e7c025af17b4983d25a5b81bfd4b',1,'Microphysics_Utils.H']]], + ['zenith_3487',['zenith',['../Orbit_8cpp.html#aaee034023d5a18e9dd77ea2c0dd01273',1,'zenith(int &calday, amrex::MultiFab *clat, amrex::MultiFab *clon, real1d &coszrs, int &ncol, const Real &eccen, const Real &mvelpp, const Real &lambm0, const Real &obliqr, amrex::Real uniform_angle): Orbit.cpp'],['../Orbit_8H.html#a86ab981fdb3b32de3c39df4cc028fb42',1,'zenith(int &calday, amrex::MultiFab *clat, amrex::MultiFab *clon, real1d &coszrs, int &ncol, const amrex::Real &eccen, const amrex::Real &mvelpp, const amrex::Real &lambm0, const amrex::Real &obliqr, amrex::Real uniform_angle=-1.0): Orbit.H']]], + ['zero_5foptics_5finit_3488',['zero_optics_init',['../classPhysProp.html#af0ccfb22c5689ec73789babb1b7c448d',1,'PhysProp']]] ]; diff --git a/search/functions_18.js b/search/functions_18.js index 90d5a58bc7..2548b042c0 100644 --- a/search/functions_18.js +++ b/search/functions_18.js @@ -1,40 +1,40 @@ var searchData= [ - ['_7eaerradprops_3483',['~AerRadProps',['../classAerRadProps.html#aeb46a505acde8e7bd4a4b4d15e8e1792',1,'AerRadProps']]], - ['_7ecif_3484',['~CIF',['../classCIF.html#ad0e927942bcf9a2db3b073c979f1ef19',1,'CIF']]], - ['_7ecloudradprops_3485',['~CloudRadProps',['../classCloudRadProps.html#a35a276009636e1ac17beeb5343656e29',1,'CloudRadProps']]], - ['_7eerf_3486',['~ERF',['../classERF.html#a30901583bd41e7bf4dddb3c1ea329dfe',1,'ERF']]], - ['_7eerfphysbcfunct_5fcons_3487',['~ERFPhysBCFunct_cons',['../classERFPhysBCFunct__cons.html#ab1f895ffdda9477b380a088bdf48a6de',1,'ERFPhysBCFunct_cons']]], - ['_7eerfphysbcfunct_5fu_3488',['~ERFPhysBCFunct_u',['../classERFPhysBCFunct__u.html#aab6427322211c297482f81b39a03ea03',1,'ERFPhysBCFunct_u']]], - ['_7eerfphysbcfunct_5fv_3489',['~ERFPhysBCFunct_v',['../classERFPhysBCFunct__v.html#a684936c8b176bfd48a383ae1de421777',1,'ERFPhysBCFunct_v']]], - ['_7eerfphysbcfunct_5fw_3490',['~ERFPhysBCFunct_w',['../classERFPhysBCFunct__w.html#ae949a3df422d9d5082146a46c9eca565',1,'ERFPhysBCFunct_w']]], - ['_7eerfphysbcfunct_5fw_5fno_5fterrain_3491',['~ERFPhysBCFunct_w_no_terrain',['../classERFPhysBCFunct__w__no__terrain.html#ac503f5e78b39c513480007824709c573',1,'ERFPhysBCFunct_w_no_terrain']]], - ['_7eeulerianmicrophysics_3492',['~EulerianMicrophysics',['../classEulerianMicrophysics.html#a2eb29d168749af2ea18fc7d67dc5259c',1,'EulerianMicrophysics']]], - ['_7eewp_3493',['~EWP',['../classEWP.html#ad500c0f4245245d407e31633ec7cecff',1,'EWP']]], - ['_7efitch_3494',['~Fitch',['../classFitch.html#af9bc97ca62d0611ab2a300992ca8304d',1,'Fitch']]], - ['_7eintersectioncif_3495',['~IntersectionCIF',['../classIntersectionCIF.html#ad4d1305542a68ced637b6e53e2f70102',1,'IntersectionCIF']]], - ['_7ekessler_3496',['~Kessler',['../classKessler.html#a46902fef513cf7298643ee5cc12594bb',1,'Kessler']]], - ['_7elandsurface_3497',['~LandSurface',['../classLandSurface.html#a39ae5ba26a0bd728afd9cf80a4a5fbd6',1,'LandSurface']]], - ['_7emicrophysics_3498',['~Microphysics',['../classMicrophysics.html#a09486c3bc292538d5a26683fb1e19451',1,'Microphysics']]], - ['_7emm5_3499',['~MM5',['../classMM5.html#aa1428d274d51e6db03618151c2fd91cb',1,'MM5']]], - ['_7emostaverage_3500',['~MOSTAverage',['../classMOSTAverage.html#ac755f71a35f1231c8add20993364832a',1,'MOSTAverage']]], - ['_7emrisplitintegrator_3501',['~MRISplitIntegrator',['../classMRISplitIntegrator.html#acdfcd0a0bca3c145e2305248f0da36a0',1,'MRISplitIntegrator']]], - ['_7emultiblockcontainer_3502',['~MultiBlockContainer',['../classMultiBlockContainer.html#abbe61ab484b52aaf83b1bc8e986aee84',1,'MultiBlockContainer']]], - ['_7encfile_3503',['~NCFile',['../classncutils_1_1NCFile.html#a4c1663f24f84dbc74152d7f040910a22',1,'ncutils::NCFile']]], - ['_7endarray_3504',['~NDArray',['../structNDArray.html#afb8008f414c4404e3a6b425c12401d9d',1,'NDArray']]], - ['_7enullmoist_3505',['~NullMoist',['../classNullMoist.html#a75e2d77cb28efa62759818d066b53bb9',1,'NullMoist']]], - ['_7enullsurf_3506',['~NullSurf',['../classNullSurf.html#afc622f13e248dbe6bc5843241c4afb0f',1,'NullSurf']]], - ['_7enullwindfarm_3507',['~NullWindFarm',['../classNullWindFarm.html#a0dbf7ce260bc3c29e53b3650a0a4c40f',1,'NullWindFarm']]], - ['_7eoptics_3508',['~Optics',['../classOptics.html#ae33a3d262417ad9bb96adc3a32519e5f',1,'Optics']]], - ['_7eplaneaverage_3509',['~PlaneAverage',['../classPlaneAverage.html#a961decb14c2137f36e17ceeaf560b452',1,'PlaneAverage']]], - ['_7eproblembase_3510',['~ProblemBase',['../classProblemBase.html#ac7201619fcd9464f851b0cae82dfbcd1',1,'ProblemBase']]], - ['_7eradiation_3511',['~Radiation',['../classRadiation.html#acde23acb9e9f7061d40634fbc24f330d',1,'Radiation']]], - ['_7errtmgp_3512',['~Rrtmgp',['../classRrtmgp.html#aa5d1fac989fde988d4f192d3f64395ee',1,'Rrtmgp']]], - ['_7esam_3513',['~SAM',['../classSAM.html#a301ce0c7f6cff77d6388c2d706e73a42',1,'SAM']]], - ['_7esimplead_3514',['~SimpleAD',['../classSimpleAD.html#affe2efa65acb68bd027a69ad1410253a',1,'SimpleAD']]], - ['_7eslm_3515',['~SLM',['../classSLM.html#a2db94368b4de4bf176393a628fdbd6a3',1,'SLM']]], - ['_7etimeinterpolateddata_3516',['~TimeInterpolatedData',['../structTimeInterpolatedData.html#af14b2d5c5d55331a4dbc9cec9288af53',1,'TimeInterpolatedData']]], - ['_7eturbulentperturbation_3517',['~TurbulentPerturbation',['../structTurbulentPerturbation.html#ad1464c6ce0bc3a576f9df395f39839ce',1,'TurbulentPerturbation']]], - ['_7eunioncif_3518',['~UnionCIF',['../classUnionCIF.html#afddc15ff44e8e7505b919b16616873cd',1,'UnionCIF']]], - ['_7ewindfarm_3519',['~WindFarm',['../classWindFarm.html#a1be0e27ac213ad5faaf2fb2e114eab48',1,'WindFarm']]] + ['_7eaerradprops_3489',['~AerRadProps',['../classAerRadProps.html#aeb46a505acde8e7bd4a4b4d15e8e1792',1,'AerRadProps']]], + ['_7ecif_3490',['~CIF',['../classCIF.html#ad0e927942bcf9a2db3b073c979f1ef19',1,'CIF']]], + ['_7ecloudradprops_3491',['~CloudRadProps',['../classCloudRadProps.html#a35a276009636e1ac17beeb5343656e29',1,'CloudRadProps']]], + ['_7eerf_3492',['~ERF',['../classERF.html#a30901583bd41e7bf4dddb3c1ea329dfe',1,'ERF']]], + ['_7eerfphysbcfunct_5fcons_3493',['~ERFPhysBCFunct_cons',['../classERFPhysBCFunct__cons.html#ab1f895ffdda9477b380a088bdf48a6de',1,'ERFPhysBCFunct_cons']]], + ['_7eerfphysbcfunct_5fu_3494',['~ERFPhysBCFunct_u',['../classERFPhysBCFunct__u.html#aab6427322211c297482f81b39a03ea03',1,'ERFPhysBCFunct_u']]], + ['_7eerfphysbcfunct_5fv_3495',['~ERFPhysBCFunct_v',['../classERFPhysBCFunct__v.html#a684936c8b176bfd48a383ae1de421777',1,'ERFPhysBCFunct_v']]], + ['_7eerfphysbcfunct_5fw_3496',['~ERFPhysBCFunct_w',['../classERFPhysBCFunct__w.html#ae949a3df422d9d5082146a46c9eca565',1,'ERFPhysBCFunct_w']]], + ['_7eerfphysbcfunct_5fw_5fno_5fterrain_3497',['~ERFPhysBCFunct_w_no_terrain',['../classERFPhysBCFunct__w__no__terrain.html#ac503f5e78b39c513480007824709c573',1,'ERFPhysBCFunct_w_no_terrain']]], + ['_7eeulerianmicrophysics_3498',['~EulerianMicrophysics',['../classEulerianMicrophysics.html#a2eb29d168749af2ea18fc7d67dc5259c',1,'EulerianMicrophysics']]], + ['_7eewp_3499',['~EWP',['../classEWP.html#ad500c0f4245245d407e31633ec7cecff',1,'EWP']]], + ['_7efitch_3500',['~Fitch',['../classFitch.html#af9bc97ca62d0611ab2a300992ca8304d',1,'Fitch']]], + ['_7eintersectioncif_3501',['~IntersectionCIF',['../classIntersectionCIF.html#ad4d1305542a68ced637b6e53e2f70102',1,'IntersectionCIF']]], + ['_7ekessler_3502',['~Kessler',['../classKessler.html#a46902fef513cf7298643ee5cc12594bb',1,'Kessler']]], + ['_7elandsurface_3503',['~LandSurface',['../classLandSurface.html#a39ae5ba26a0bd728afd9cf80a4a5fbd6',1,'LandSurface']]], + ['_7emicrophysics_3504',['~Microphysics',['../classMicrophysics.html#a09486c3bc292538d5a26683fb1e19451',1,'Microphysics']]], + ['_7emm5_3505',['~MM5',['../classMM5.html#aa1428d274d51e6db03618151c2fd91cb',1,'MM5']]], + ['_7emostaverage_3506',['~MOSTAverage',['../classMOSTAverage.html#ac755f71a35f1231c8add20993364832a',1,'MOSTAverage']]], + ['_7emrisplitintegrator_3507',['~MRISplitIntegrator',['../classMRISplitIntegrator.html#acdfcd0a0bca3c145e2305248f0da36a0',1,'MRISplitIntegrator']]], + ['_7emultiblockcontainer_3508',['~MultiBlockContainer',['../classMultiBlockContainer.html#abbe61ab484b52aaf83b1bc8e986aee84',1,'MultiBlockContainer']]], + ['_7encfile_3509',['~NCFile',['../classncutils_1_1NCFile.html#a4c1663f24f84dbc74152d7f040910a22',1,'ncutils::NCFile']]], + ['_7endarray_3510',['~NDArray',['../structNDArray.html#afb8008f414c4404e3a6b425c12401d9d',1,'NDArray']]], + ['_7enullmoist_3511',['~NullMoist',['../classNullMoist.html#a75e2d77cb28efa62759818d066b53bb9',1,'NullMoist']]], + ['_7enullsurf_3512',['~NullSurf',['../classNullSurf.html#afc622f13e248dbe6bc5843241c4afb0f',1,'NullSurf']]], + ['_7enullwindfarm_3513',['~NullWindFarm',['../classNullWindFarm.html#a0dbf7ce260bc3c29e53b3650a0a4c40f',1,'NullWindFarm']]], + ['_7eoptics_3514',['~Optics',['../classOptics.html#ae33a3d262417ad9bb96adc3a32519e5f',1,'Optics']]], + ['_7eplaneaverage_3515',['~PlaneAverage',['../classPlaneAverage.html#a961decb14c2137f36e17ceeaf560b452',1,'PlaneAverage']]], + ['_7eproblembase_3516',['~ProblemBase',['../classProblemBase.html#ac7201619fcd9464f851b0cae82dfbcd1',1,'ProblemBase']]], + ['_7eradiation_3517',['~Radiation',['../classRadiation.html#acde23acb9e9f7061d40634fbc24f330d',1,'Radiation']]], + ['_7errtmgp_3518',['~Rrtmgp',['../classRrtmgp.html#aa5d1fac989fde988d4f192d3f64395ee',1,'Rrtmgp']]], + ['_7esam_3519',['~SAM',['../classSAM.html#a301ce0c7f6cff77d6388c2d706e73a42',1,'SAM']]], + ['_7esimplead_3520',['~SimpleAD',['../classSimpleAD.html#affe2efa65acb68bd027a69ad1410253a',1,'SimpleAD']]], + ['_7eslm_3521',['~SLM',['../classSLM.html#a2db94368b4de4bf176393a628fdbd6a3',1,'SLM']]], + ['_7etimeinterpolateddata_3522',['~TimeInterpolatedData',['../structTimeInterpolatedData.html#af14b2d5c5d55331a4dbc9cec9288af53',1,'TimeInterpolatedData']]], + ['_7eturbulentperturbation_3523',['~TurbulentPerturbation',['../structTurbulentPerturbation.html#ad1464c6ce0bc3a576f9df395f39839ce',1,'TurbulentPerturbation']]], + ['_7eunioncif_3524',['~UnionCIF',['../classUnionCIF.html#afddc15ff44e8e7505b919b16616873cd',1,'UnionCIF']]], + ['_7ewindfarm_3525',['~WindFarm',['../classWindFarm.html#a1be0e27ac213ad5faaf2fb2e114eab48',1,'WindFarm']]] ]; diff --git a/search/functions_2.js b/search/functions_2.js index 4f3a13d6ab..c4f837333f 100644 --- a/search/functions_2.js +++ b/search/functions_2.js @@ -1,81 +1,81 @@ var searchData= [ - ['calc_5fhltalt_2750',['calc_hltalt',['../classWaterVaporSat.html#a071cc1a28405ce131d1c1bcb216d471a',1,'WaterVaporSat']]], - ['calc_5fpsi_5fh_2751',['calc_psi_h',['../structsimilarity__funs.html#a7dcb32f637eab66d2314902d03289bc2',1,'similarity_funs']]], - ['calc_5fpsi_5fm_2752',['calc_psi_m',['../structsimilarity__funs.html#a21cb206b0dd78dc2ac7211de8dbcb8d2',1,'similarity_funs']]], - ['calc_5frho_5fp_2753',['calc_rho_p',['../structInputSoundingData.html#af913103d9ecab49f09b2b107832d265f',1,'InputSoundingData::calc_rho_p()'],['../Metgrid__utils_8H.html#ae984892835c7947f18fca2b597c52d11',1,'calc_rho_p(): Metgrid_utils.H']]], - ['calc_5ftpi_5famp_2754',['calc_tpi_amp',['../structTurbulentPerturbation.html#a6690a1ccf037f5cf892e72724c21b3a5',1,'TurbulentPerturbation']]], - ['calc_5ftpi_5fmeanmag_5fperbox_2755',['calc_tpi_meanMag_perBox',['../structTurbulentPerturbation.html#ac2f49dd6a95ab0bb291fa4977d9682e5',1,'TurbulentPerturbation']]], - ['calc_5ftpi_5fupdate_2756',['calc_tpi_update',['../structTurbulentPerturbation.html#a5e6200f8b6bea3c4944dccc6c7285102',1,'TurbulentPerturbation']]], - ['calculate_5fheating_5frate_2757',['calculate_heating_rate',['../classRadiation.html#ad37acecc5f023e2da167f49e09247233',1,'Radiation']]], - ['centered2_2758',['CENTERED2',['../structCENTERED2.html#a09644816e71e1ade052d277199a8d785',1,'CENTERED2']]], - ['centered4_2759',['CENTERED4',['../structCENTERED4.html#a36a14bbf9f418feee5e1af3685e1b4fb',1,'CENTERED4']]], - ['centered6_2760',['CENTERED6',['../structCENTERED6.html#acedba4c2b029f363a47c32ad0c6f30e8',1,'CENTERED6']]], - ['cif_2761',['CIF',['../classCIF.html#a0e65a3004e88fe6f772690a89a87256f',1,'CIF::CIF(F &&f, bool a_active)'],['../classCIF.html#aeda8119c592d6acaf71927b7d8fe3887',1,'CIF::CIF(const CIF &rhs)=default'],['../classCIF.html#aeb3766fcdd40058f9116d815743381c9',1,'CIF::CIF(CIF &&rhs) noexcept=default']]], - ['clear_2762',['clear',['../structTimeInterpolatedData.html#a68d1abba77684ee584ba484a185a44e2',1,'TimeInterpolatedData']]], - ['clearlevel_2763',['ClearLevel',['../classERF.html#ac44e400a7ce68e18fa44e9416cb1344e',1,'ERF']]], - ['close_2764',['close',['../classncutils_1_1NCFile.html#af2c4a20c38edb3fae69087a80875b8b9',1,'ncutils::NCFile']]], - ['closest_5findex_2765',['closest_index',['../ERF__ReadBndryPlanes_8cpp.html#adc5227730afe35653b2dfa88898eb00a',1,'ERF_ReadBndryPlanes.cpp']]], - ['cloud_2766',['Cloud',['../classSAM.html#a48d25f57da2ba1d7ddb503ede0b8d998',1,'SAM']]], - ['cloud_5ffraction_2767',['cloud_fraction',['../classERF.html#a0f6effb7eeed11385b20e4bbf516b459',1,'ERF']]], - ['cloudradprops_2768',['CloudRadProps',['../classCloudRadProps.html#aade37d67dde6092189402829442285d4',1,'CloudRadProps']]], - ['combine_5fproperties_2769',['combine_properties',['../classOptics.html#a6cbf46804754b07ab0ccf03e6db25207',1,'Optics']]], - ['compute_5fa_2770',['compute_A',['../AdvanceFitch_8cpp.html#a7b6c67da0ff16af60b10f434632b06ce',1,'AdvanceFitch.cpp']]], - ['compute_5faijk_2771',['compute_Aijk',['../AdvanceFitch_8cpp.html#a68e0a40af0744df9f7e79d181225f615',1,'AdvanceFitch.cpp']]], - ['compute_5faverages_2772',['compute_averages',['../classMOSTAverage.html#a7a28005871bb8abb49f44c3976133a4f',1,'MOSTAverage::compute_averages()'],['../classPlaneAverage.html#a0b4bb610551a2f07eb05b8e8b7d91820',1,'PlaneAverage::compute_averages(const IndexSelector &idxOp, const amrex::MultiFab &mfab)'],['../classPlaneAverage.html#a603aee4caf3a370d06bee77fddb0e33e',1,'PlaneAverage::compute_averages(const IndexSelector &idxOp, const amrex::MultiFab &mfab)']]], - ['compute_5fcoefficients_2773',['Compute_Coefficients',['../classSAM.html#a77dd99de0896cf9f9bf8299c2c80bc40',1,'SAM']]], - ['compute_5ffluxes_2774',['compute_fluxes',['../classABLMost.html#a829339fc8e70a5dff8b7c85f3c2e4138',1,'ABLMost']]], - ['compute_5fh_5feta_5fatcellcenter_2775',['Compute_h_eta_AtCellCenter',['../TerrainMetrics_8H.html#a43b431cbd97421014ff80245883e06d2',1,'TerrainMetrics.H']]], - ['compute_5fh_5feta_5fatedgecenteri_2776',['Compute_h_eta_AtEdgeCenterI',['../TerrainMetrics_8H.html#aed973861215c4eb0697f7a83b37016a9',1,'TerrainMetrics.H']]], - ['compute_5fh_5feta_5fatedgecenterj_2777',['Compute_h_eta_AtEdgeCenterJ',['../TerrainMetrics_8H.html#a0251c09947155307e047f79fccdbd463',1,'TerrainMetrics.H']]], - ['compute_5fh_5feta_5fatedgecenterk_2778',['Compute_h_eta_AtEdgeCenterK',['../TerrainMetrics_8H.html#ac1434a53d9966d992133433473bc629a',1,'TerrainMetrics.H']]], - ['compute_5fh_5feta_5fatiface_2779',['Compute_h_eta_AtIface',['../TerrainMetrics_8H.html#ad06b0ae003cb3d59227ce85a5fa8a669',1,'TerrainMetrics.H']]], - ['compute_5fh_5feta_5fatjface_2780',['Compute_h_eta_AtJface',['../TerrainMetrics_8H.html#ae609a5c1f84347b66e9a8b712271c4ce',1,'TerrainMetrics.H']]], - ['compute_5fh_5feta_5fatkface_2781',['Compute_h_eta_AtKface',['../TerrainMetrics_8H.html#af2b7bda0da3e8024e9b02b6d69c366fe',1,'TerrainMetrics.H']]], - ['compute_5fh_5fxi_5fatcellcenter_2782',['Compute_h_xi_AtCellCenter',['../TerrainMetrics_8H.html#ada44020dc4ec27c5bebf8fd82d336cee',1,'TerrainMetrics.H']]], - ['compute_5fh_5fxi_5fatedgecenteri_2783',['Compute_h_xi_AtEdgeCenterI',['../TerrainMetrics_8H.html#ad56aa9e0cc7428ea33d4ac90d91c1f56',1,'TerrainMetrics.H']]], - ['compute_5fh_5fxi_5fatedgecenterj_2784',['Compute_h_xi_AtEdgeCenterJ',['../TerrainMetrics_8H.html#a1582797e6ac6cf0c1e0b94a619bc13b8',1,'TerrainMetrics.H']]], - ['compute_5fh_5fxi_5fatedgecenterk_2785',['Compute_h_xi_AtEdgeCenterK',['../TerrainMetrics_8H.html#a07e83bf0f142a953679c9edfa42b398d',1,'TerrainMetrics.H']]], - ['compute_5fh_5fxi_5fatiface_2786',['Compute_h_xi_AtIface',['../TerrainMetrics_8H.html#a2116df83b61a39fb50b9a2d7474c00d7',1,'TerrainMetrics.H']]], - ['compute_5fh_5fxi_5fatjface_2787',['Compute_h_xi_AtJface',['../TerrainMetrics_8H.html#a9ec5ec17f16954e56733db6dd98fe07d',1,'TerrainMetrics.H']]], - ['compute_5fh_5fxi_5fatkface_2788',['Compute_h_xi_AtKface',['../TerrainMetrics_8H.html#aba0de207695f9674a9e0678a19f22677',1,'TerrainMetrics.H']]], - ['compute_5fh_5fzeta_5fatcellcenter_2789',['Compute_h_zeta_AtCellCenter',['../TerrainMetrics_8H.html#a32eeeb066c70da970aa6a60918515987',1,'TerrainMetrics.H']]], - ['compute_5fh_5fzeta_5fatedgecenteri_2790',['Compute_h_zeta_AtEdgeCenterI',['../TerrainMetrics_8H.html#a3e3ceccddeb3cca9d9e4573af2311a5e',1,'TerrainMetrics.H']]], - ['compute_5fh_5fzeta_5fatedgecenterj_2791',['Compute_h_zeta_AtEdgeCenterJ',['../TerrainMetrics_8H.html#a21aac76e0b284b33e302526e1f292c76',1,'TerrainMetrics.H']]], - ['compute_5fh_5fzeta_5fatedgecenterk_2792',['Compute_h_zeta_AtEdgeCenterK',['../TerrainMetrics_8H.html#a2b9e684355ee8d6dad22950c8c51716b',1,'TerrainMetrics.H']]], - ['compute_5fh_5fzeta_5fatiface_2793',['Compute_h_zeta_AtIface',['../TerrainMetrics_8H.html#a8d96671d41364f1e24391375a2bc0f1e',1,'TerrainMetrics.H']]], - ['compute_5fh_5fzeta_5fatjface_2794',['Compute_h_zeta_AtJface',['../TerrainMetrics_8H.html#ada12bcb6beb3fa0d00dbdacb37f3c60f',1,'TerrainMetrics.H']]], - ['compute_5fh_5fzeta_5fatkface_2795',['Compute_h_zeta_AtKface',['../TerrainMetrics_8H.html#a48f57e72ac183fdf1a984f58f3d24ee0',1,'TerrainMetrics.H']]], - ['compute_5finterior_5fghost_5fbxs_5fxy_2796',['compute_interior_ghost_bxs_xy',['../Utils_8H.html#aaa3f051b9681a4e20d0d88b3715d8897',1,'compute_interior_ghost_bxs_xy(const amrex::Box &bx, const amrex::Box &domain, const int &width, const int &set_width, amrex::Box &bx_xlo, amrex::Box &bx_xhi, amrex::Box &bx_ylo, amrex::Box &bx_yhi, const amrex::IntVect &ng_vect=amrex::IntVect(0, 0, 0), const bool get_int_ng=false): Utils.H'],['../InteriorGhostCells_8cpp.html#a58aa7f6d6812d4dea186477114d1a47c',1,'compute_interior_ghost_bxs_xy(const Box &bx, const Box &domain, const int &width, const int &set_width, Box &bx_xlo, Box &bx_xhi, Box &bx_ylo, Box &bx_yhi, const IntVect &ng_vect, const bool get_int_ng): InteriorGhostCells.cpp']]], - ['compute_5fmost_5fbcs_2797',['compute_most_bcs',['../classABLMost.html#a67df60526193cba93df934a540f7a258',1,'ABLMost::compute_most_bcs(const int &lev, const amrex::Vector< amrex::MultiFab * > &mfs, amrex::MultiFab *xzmom_flux, amrex::MultiFab *zxmom_flux, amrex::MultiFab *yzmom_flux, amrex::MultiFab *zymom_flux, amrex::MultiFab *heat_flux, amrex::MultiFab *z_phys, const amrex::Real &dz_no_terrain, const FluxCalc &flux_comp)'],['../classABLMost.html#a0c33b98848bdb3beb8249d5b60ec1a83',1,'ABLMost::compute_most_bcs(const int &lev, const Vector< MultiFab * > &mfs, MultiFab *xzmom_flux, MultiFab *zxmom_flux, MultiFab *yzmom_flux, MultiFab *zymom_flux, MultiFab *heat_flux, MultiFab *z_phys, const Real &dz_no_terrain, const FluxCalc &flux_comp)']]], - ['compute_5fplane_5faverages_2798',['compute_plane_averages',['../classMOSTAverage.html#ab85828af24cd22d737931c51862389e4',1,'MOSTAverage']]], - ['compute_5fq_5fflux_2799',['compute_q_flux',['../structdonelan__flux.html#a8d0fc02fd064b22206380d593b628efa',1,'donelan_flux::compute_q_flux()'],['../structcustom__flux.html#aca20f274a2d45502698a74ed9b839b02',1,'custom_flux::compute_q_flux()'],['../structmoeng__flux.html#aee217bd58d625b3fb9e80a9fc4e9189f',1,'moeng_flux::compute_q_flux()']]], - ['compute_5fregion_5faverages_2800',['compute_region_averages',['../classMOSTAverage.html#aaea0b00766b3cdeefd2b54bade8a86bd',1,'MOSTAverage']]], - ['compute_5ft_5fflux_2801',['compute_t_flux',['../structmoeng__flux.html#a946d89f0b1c8287c83bea9ff628bdb1e',1,'moeng_flux::compute_t_flux()'],['../structcustom__flux.html#abb193ac77724a6452a6068c3b5954081',1,'custom_flux::compute_t_flux()'],['../structdonelan__flux.html#a999e3bdb322d29fcdfbd51047fb32ee0',1,'donelan_flux::compute_t_flux()']]], - ['compute_5fu_5fflux_2802',['compute_u_flux',['../structcustom__flux.html#a6ab8b167f190f9b0c4c6adb05acfff40',1,'custom_flux::compute_u_flux()'],['../structdonelan__flux.html#a44a032acc6bd6f42ff90f5a0ac14f4cf',1,'donelan_flux::compute_u_flux()'],['../structmoeng__flux.html#a2451f21fea8f87cec2e5f626c36489cb',1,'moeng_flux::compute_u_flux()']]], - ['compute_5fv_5fflux_2803',['compute_v_flux',['../structcustom__flux.html#a2fe8dd883e33e274f6e44f9c0c5cf118',1,'custom_flux::compute_v_flux()'],['../structdonelan__flux.html#ad2da09025b821f79782fa580010c4df2',1,'donelan_flux::compute_v_flux()'],['../structmoeng__flux.html#a5ec0786b043f57c8c41edfd677dde8c9',1,'moeng_flux::compute_v_flux()']]], - ['compute_5fzrel_5fatcellcenter_2804',['Compute_Zrel_AtCellCenter',['../TerrainMetrics_8H.html#a41f9b3a5604791daf44935b10a55a565',1,'TerrainMetrics.H']]], - ['computedt_2805',['ComputeDt',['../classERF.html#aa38639155e79bab8a0c283aa6e7afa81',1,'ERF']]], - ['computefluxes_2806',['ComputeFluxes',['../classSLM.html#aaafd49733163332a7f9616374d103cbb',1,'SLM::ComputeFluxes()'],['../classMM5.html#a109a5f7a252a6ab6c8e5373ca68c32fb',1,'MM5::ComputeFluxes()']]], - ['computeghostcells_2807',['ComputeGhostCells',['../classERF.html#ae68b1f54d196d0a4b19716d65a59d4c5',1,'ERF']]], - ['computeqkesourceterms_2808',['ComputeQKESourceTerms',['../PBLModels_8H.html#a4ce76ae2ddb12da46b999c3c58201cdd',1,'PBLModels.H']]], - ['computesmnsmn_2809',['ComputeSmnSmn',['../EddyViscosity_8H.html#a1d775f0ce64d37053b33d514438ee856',1,'EddyViscosity.H']]], - ['computestrain_5fn_2810',['ComputeStrain_N',['../ComputeStrain__N_8cpp.html#a72f6c981375a19d6e96b875837b57ae0',1,'ComputeStrain_N(Box bxcc, Box tbxxy, Box tbxxz, Box tbxyz, Box domain, const Array4< const Real > &u, const Array4< const Real > &v, const Array4< const Real > &w, Array4< Real > &tau11, Array4< Real > &tau22, Array4< Real > &tau33, Array4< Real > &tau12, Array4< Real > &tau13, Array4< Real > &tau23, const BCRec *bc_ptr, const GpuArray< Real, AMREX_SPACEDIM > &dxInv, const Array4< const Real > &mf_m, const Array4< const Real > &mf_u, const Array4< const Real > &mf_v): ComputeStrain_N.cpp'],['../Diffusion_8H.html#a6338bbbd04537c72c5a57e8a6a52d3c0',1,'ComputeStrain_N(amrex::Box bxcc, amrex::Box tbxxy, amrex::Box tbxxz, amrex::Box tbxyz, amrex::Box domain, const amrex::Array4< const amrex::Real > &u, const amrex::Array4< const amrex::Real > &v, const amrex::Array4< const amrex::Real > &w, amrex::Array4< amrex::Real > &tau11, amrex::Array4< amrex::Real > &tau22, amrex::Array4< amrex::Real > &tau33, amrex::Array4< amrex::Real > &tau12, amrex::Array4< amrex::Real > &tau13, amrex::Array4< amrex::Real > &tau23, const amrex::BCRec *bc_ptr, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxInv, const amrex::Array4< const amrex::Real > &mf_m, const amrex::Array4< const amrex::Real > &mf_u, const amrex::Array4< const amrex::Real > &mf_v): Diffusion.H']]], - ['computestrain_5ft_2811',['ComputeStrain_T',['../ComputeStrain__T_8cpp.html#ab4855711550192d6649ce1163e4cc697',1,'ComputeStrain_T(Box bxcc, Box tbxxy, Box tbxxz, Box tbxyz, Box domain, const Array4< const Real > &u, const Array4< const Real > &v, const Array4< const Real > &w, Array4< Real > &tau11, Array4< Real > &tau22, Array4< Real > &tau33, Array4< Real > &tau12, Array4< Real > &tau13, Array4< Real > &tau21, Array4< Real > &tau23, Array4< Real > &tau31, Array4< Real > &tau32, const Array4< const Real > &z_nd, const Array4< const Real > &detJ, const BCRec *bc_ptr, const GpuArray< Real, AMREX_SPACEDIM > &dxInv, const Array4< const Real > &, const Array4< const Real > &mf_u, const Array4< const Real > &mf_v): ComputeStrain_T.cpp'],['../Diffusion_8H.html#a1c7f3e532227403ddafd0ebde7365262',1,'ComputeStrain_T(amrex::Box bxcc, amrex::Box tbxxy, amrex::Box tbxxz, amrex::Box tbxyz, amrex::Box domain, const amrex::Array4< const amrex::Real > &u, const amrex::Array4< const amrex::Real > &v, const amrex::Array4< const amrex::Real > &w, amrex::Array4< amrex::Real > &tau11, amrex::Array4< amrex::Real > &tau22, amrex::Array4< amrex::Real > &tau33, amrex::Array4< amrex::Real > &tau12, amrex::Array4< amrex::Real > &tau13, amrex::Array4< amrex::Real > &tau21, amrex::Array4< amrex::Real > &tau23, amrex::Array4< amrex::Real > &tau31, amrex::Array4< amrex::Real > &tau32, const amrex::Array4< const amrex::Real > &z_nd, const amrex::Array4< const amrex::Real > &detJ, const amrex::BCRec *bc_ptr, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxInv, const amrex::Array4< const amrex::Real > &mf_m, const amrex::Array4< const amrex::Real > &mf_u, const amrex::Array4< const amrex::Real > &mf_v): Diffusion.H']]], - ['computestressconsvisc_5fn_2812',['ComputeStressConsVisc_N',['../Diffusion_8H.html#a094da213d571d4c5be5c1f8a355be78f',1,'ComputeStressConsVisc_N(amrex::Box bxcc, amrex::Box tbxxy, amrex::Box tbxxz, amrex::Box tbxyz, amrex::Real mu_eff, const amrex::Array4< const amrex::Real > &cell_data, amrex::Array4< amrex::Real > &tau11, amrex::Array4< amrex::Real > &tau22, amrex::Array4< amrex::Real > &tau33, amrex::Array4< amrex::Real > &tau12, amrex::Array4< amrex::Real > &tau13, amrex::Array4< amrex::Real > &tau23, const amrex::Array4< const amrex::Real > &er_arr): Diffusion.H'],['../ComputeStress__N_8cpp.html#a90e3a746cdb875f5eb328b01d5168506',1,'ComputeStressConsVisc_N(Box bxcc, Box tbxxy, Box tbxxz, Box tbxyz, Real mu_eff, const Array4< const Real > &cell_data, Array4< Real > &tau11, Array4< Real > &tau22, Array4< Real > &tau33, Array4< Real > &tau12, Array4< Real > &tau13, Array4< Real > &tau23, const Array4< const Real > &er_arr): ComputeStress_N.cpp']]], - ['computestressconsvisc_5ft_2813',['ComputeStressConsVisc_T',['../ComputeStress__T_8cpp.html#af10fca5e9a1f97c4743e76cc935230bd',1,'ComputeStressConsVisc_T(Box bxcc, Box tbxxy, Box tbxxz, Box tbxyz, Real mu_eff, const Array4< const Real > &cell_data, Array4< Real > &tau11, Array4< Real > &tau22, Array4< Real > &tau33, Array4< Real > &tau12, Array4< Real > &tau13, Array4< Real > &tau21, Array4< Real > &tau23, Array4< Real > &tau31, Array4< Real > &tau32, const Array4< const Real > &er_arr, const Array4< const Real > &z_nd, const Array4< const Real > &detJ, const GpuArray< Real, AMREX_SPACEDIM > &dxInv): ComputeStress_T.cpp'],['../Diffusion_8H.html#a61297def6144337bbf34010d410f4e4a',1,'ComputeStressConsVisc_T(amrex::Box bxcc, amrex::Box tbxxy, amrex::Box tbxxz, amrex::Box tbxyz, amrex::Real mu_eff, const amrex::Array4< const amrex::Real > &cell_data, amrex::Array4< amrex::Real > &tau11, amrex::Array4< amrex::Real > &tau22, amrex::Array4< amrex::Real > &tau33, amrex::Array4< amrex::Real > &tau12, amrex::Array4< amrex::Real > &tau13, amrex::Array4< amrex::Real > &tau21, amrex::Array4< amrex::Real > &tau23, amrex::Array4< amrex::Real > &tau31, amrex::Array4< amrex::Real > &tau32, const amrex::Array4< const amrex::Real > &er_arr, const amrex::Array4< const amrex::Real > &z_nd, const amrex::Array4< const amrex::Real > &detJ, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxInv): Diffusion.H']]], - ['computestressvarvisc_5fn_2814',['ComputeStressVarVisc_N',['../ComputeStress__N_8cpp.html#a3ccb3579df8fa971a01bc7504db45a1e',1,'ComputeStressVarVisc_N(Box bxcc, Box tbxxy, Box tbxxz, Box tbxyz, Real mu_eff, const Array4< const Real > &mu_turb, const Array4< const Real > &cell_data, Array4< Real > &tau11, Array4< Real > &tau22, Array4< Real > &tau33, Array4< Real > &tau12, Array4< Real > &tau13, Array4< Real > &tau23, const Array4< const Real > &er_arr): ComputeStress_N.cpp'],['../Diffusion_8H.html#af89bc368023b73bc1d4e3844d74b8ec2',1,'ComputeStressVarVisc_N(amrex::Box bxcc, amrex::Box tbxxy, amrex::Box tbxxz, amrex::Box tbxyz, amrex::Real mu_eff, const amrex::Array4< const amrex::Real > &mu_turb, const amrex::Array4< const amrex::Real > &cell_data, amrex::Array4< amrex::Real > &tau11, amrex::Array4< amrex::Real > &tau22, amrex::Array4< amrex::Real > &tau33, amrex::Array4< amrex::Real > &tau12, amrex::Array4< amrex::Real > &tau13, amrex::Array4< amrex::Real > &tau23, const amrex::Array4< const amrex::Real > &er_arr): Diffusion.H']]], - ['computestressvarvisc_5ft_2815',['ComputeStressVarVisc_T',['../ComputeStress__T_8cpp.html#a25509867afb4acb014b0eae79da251ae',1,'ComputeStressVarVisc_T(Box bxcc, Box tbxxy, Box tbxxz, Box tbxyz, Real mu_eff, const Array4< const Real > &mu_turb, const Array4< const Real > &cell_data, Array4< Real > &tau11, Array4< Real > &tau22, Array4< Real > &tau33, Array4< Real > &tau12, Array4< Real > &tau13, Array4< Real > &tau21, Array4< Real > &tau23, Array4< Real > &tau31, Array4< Real > &tau32, const Array4< const Real > &er_arr, const Array4< const Real > &z_nd, const Array4< const Real > &detJ, const GpuArray< Real, AMREX_SPACEDIM > &dxInv): ComputeStress_T.cpp'],['../Diffusion_8H.html#a4151c371e6c66295da065ed9ed323dbe',1,'ComputeStressVarVisc_T(amrex::Box bxcc, amrex::Box tbxxy, amrex::Box tbxxz, amrex::Box tbxyz, amrex::Real mu_eff, const amrex::Array4< const amrex::Real > &mu_turb, const amrex::Array4< const amrex::Real > &cell_data, amrex::Array4< amrex::Real > &tau11, amrex::Array4< amrex::Real > &tau22, amrex::Array4< amrex::Real > &tau33, amrex::Array4< amrex::Real > &tau12, amrex::Array4< amrex::Real > &tau13, amrex::Array4< amrex::Real > &tau21, amrex::Array4< amrex::Real > &tau23, amrex::Array4< amrex::Real > &tau31, amrex::Array4< amrex::Real > &tau32, const amrex::Array4< const amrex::Real > &er_arr, const amrex::Array4< const amrex::Real > &z_nd, const amrex::Array4< const amrex::Real > &detJ, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxInv): Diffusion.H']]], - ['computetsurf_2816',['ComputeTsurf',['../classSLM.html#a0db509945fed4bf6ffae276c1c183707',1,'SLM::ComputeTsurf()'],['../classMM5.html#a9fc8c9cf8b165b28583be7bb7e8ac7c3',1,'MM5::ComputeTsurf()']]], - ['computeturbulentviscosity_2817',['ComputeTurbulentViscosity',['../ComputeTurbulentViscosity_8cpp.html#a9bf385bbd3f90411b7189fedab606be9',1,'ComputeTurbulentViscosity(const MultiFab &xvel, const MultiFab &yvel, const MultiFab &Tau11, const MultiFab &Tau22, const MultiFab &Tau33, const MultiFab &Tau12, const MultiFab &Tau13, const MultiFab &Tau23, const MultiFab &cons_in, MultiFab &eddyViscosity, MultiFab &Hfx1, MultiFab &Hfx2, MultiFab &Hfx3, MultiFab &Diss, const Geometry &geom, const MultiFab &mapfac_u, const MultiFab &mapfac_v, const std::unique_ptr< MultiFab > &z_phys_nd, const TurbChoice &turbChoice, const Real const_grav, std::unique_ptr< ABLMost > &most, const bool &exp_most, int level, const BCRec *bc_ptr, bool vert_only): ComputeTurbulentViscosity.cpp'],['../EddyViscosity_8H.html#af02f807d706dfd8fe799cd67d8d785e8',1,'ComputeTurbulentViscosity(const amrex::MultiFab &xvel, const amrex::MultiFab &yvel, const amrex::MultiFab &Tau11, const amrex::MultiFab &Tau22, const amrex::MultiFab &Tau33, const amrex::MultiFab &Tau12, const amrex::MultiFab &Tau13, const amrex::MultiFab &Tau23, const amrex::MultiFab &cons_in, amrex::MultiFab &eddyViscosity, amrex::MultiFab &Hfx1, amrex::MultiFab &Hfx2, amrex::MultiFab &Hfx3, amrex::MultiFab &Diss, const amrex::Geometry &geom, const amrex::MultiFab &mapfac_u, const amrex::MultiFab &mapfac_v, const std::unique_ptr< amrex::MultiFab > &z_phys_nd, const TurbChoice &turbChoice, const amrex::Real const_grav, std::unique_ptr< ABLMost > &most, const bool &exp_most, int level, const amrex::BCRec *bc_ptr, bool vert_only=false): EddyViscosity.H']]], - ['computeturbulentviscosityles_2818',['ComputeTurbulentViscosityLES',['../ComputeTurbulentViscosity_8cpp.html#a730dd933a41b48fe17b15e46d4dce964',1,'ComputeTurbulentViscosity.cpp']]], - ['computeturbulentviscositypbl_2819',['ComputeTurbulentViscosityPBL',['../ComputeTurbulentViscosity_8cpp.html#aac21239e5369ac8cdfcc2a3d4f292eaa',1,'ComputeTurbulentViscosityPBL(const MultiFab &xvel, const MultiFab &yvel, const MultiFab &cons_in, MultiFab &eddyViscosity, const Geometry &geom, const TurbChoice &turbChoice, std::unique_ptr< ABLMost > &most, int level, const BCRec *bc_ptr, bool, const std::unique_ptr< MultiFab > &z_phys_nd): PBLModels.cpp'],['../PBLModels_8cpp.html#aac21239e5369ac8cdfcc2a3d4f292eaa',1,'ComputeTurbulentViscosityPBL(const MultiFab &xvel, const MultiFab &yvel, const MultiFab &cons_in, MultiFab &eddyViscosity, const Geometry &geom, const TurbChoice &turbChoice, std::unique_ptr< ABLMost > &most, int level, const BCRec *bc_ptr, bool, const std::unique_ptr< MultiFab > &z_phys_nd): PBLModels.cpp']]], - ['computeverticalderivativespbl_2820',['ComputeVerticalDerivativesPBL',['../PBLModels_8H.html#a4f010fa74c87ce3a524f53c2f501255b',1,'PBLModels.H']]], - ['construct_5ferffillpatchers_2821',['Construct_ERFFillPatchers',['../classERF.html#adc284f421c5fd9dd15c0e5cbe4ff5fc8',1,'ERF']]], - ['containerhaselement_2822',['containerHasElement',['../Plotfile_8cpp.html#a1f8554e7b211b0acfc202e8a600e7d67',1,'Plotfile.cpp']]], - ['copy_5fmicro_5fto_5fstate_2823',['Copy_Micro_to_State',['../classSAM.html#a007ed40ac7278996d257b4c0ab6c1320',1,'SAM::Copy_Micro_to_State()'],['../classNullMoist.html#a11a25944d4ddb955f74e355838b9d8b0',1,'NullMoist::Copy_Micro_to_State()'],['../classKessler.html#a747a85d4c8004b299ca49dcb1f221c7c',1,'Kessler::Copy_Micro_to_State()'],['../classNullSurf.html#a45d066ae7b9d2435f5477e35dd75bcfb',1,'NullSurf::Copy_Micro_to_State()']]], - ['copy_5fstate_5fto_5fmicro_2824',['Copy_State_to_Micro',['../classSAM.html#a1df931f91be89514c09f69f24cfeca53',1,'SAM::Copy_State_to_Micro()'],['../classNullMoist.html#aacb06ee696c6870e899d1bc26aa9933e',1,'NullMoist::Copy_State_to_Micro()'],['../classKessler.html#a18f83fc4dff53c8c29ee9ee974e65ac2',1,'Kessler::Copy_State_to_Micro()'],['../classNullSurf.html#a1c31c18677e12226716217ca87cd526c',1,'NullSurf::Copy_State_to_Micro()']]], - ['create_2825',['create',['../classncutils_1_1NCFile.html#a47bdccee2cc22a735ca715d9c88e4f6b',1,'ncutils::NCFile']]], - ['create_5fpar_2826',['create_par',['../classncutils_1_1NCFile.html#a6607bd5f3f75b451e2436ff713931f19',1,'ncutils::NCFile']]], - ['custom_5fflux_2827',['custom_flux',['../structcustom__flux.html#aa9715fd8b84d6df19fa17c89a703210a',1,'custom_flux']]] + ['calc_5fhltalt_2755',['calc_hltalt',['../classWaterVaporSat.html#a071cc1a28405ce131d1c1bcb216d471a',1,'WaterVaporSat']]], + ['calc_5fpsi_5fh_2756',['calc_psi_h',['../structsimilarity__funs.html#a7dcb32f637eab66d2314902d03289bc2',1,'similarity_funs']]], + ['calc_5fpsi_5fm_2757',['calc_psi_m',['../structsimilarity__funs.html#a21cb206b0dd78dc2ac7211de8dbcb8d2',1,'similarity_funs']]], + ['calc_5frho_5fp_2758',['calc_rho_p',['../structInputSoundingData.html#af913103d9ecab49f09b2b107832d265f',1,'InputSoundingData::calc_rho_p()'],['../Metgrid__utils_8H.html#ae984892835c7947f18fca2b597c52d11',1,'calc_rho_p(): Metgrid_utils.H']]], + ['calc_5ftpi_5famp_2759',['calc_tpi_amp',['../structTurbulentPerturbation.html#a6690a1ccf037f5cf892e72724c21b3a5',1,'TurbulentPerturbation']]], + ['calc_5ftpi_5fmeanmag_5fperbox_2760',['calc_tpi_meanMag_perBox',['../structTurbulentPerturbation.html#ac2f49dd6a95ab0bb291fa4977d9682e5',1,'TurbulentPerturbation']]], + ['calc_5ftpi_5fupdate_2761',['calc_tpi_update',['../structTurbulentPerturbation.html#a5e6200f8b6bea3c4944dccc6c7285102',1,'TurbulentPerturbation']]], + ['calculate_5fheating_5frate_2762',['calculate_heating_rate',['../classRadiation.html#ad37acecc5f023e2da167f49e09247233',1,'Radiation']]], + ['centered2_2763',['CENTERED2',['../structCENTERED2.html#a09644816e71e1ade052d277199a8d785',1,'CENTERED2']]], + ['centered4_2764',['CENTERED4',['../structCENTERED4.html#a36a14bbf9f418feee5e1af3685e1b4fb',1,'CENTERED4']]], + ['centered6_2765',['CENTERED6',['../structCENTERED6.html#acedba4c2b029f363a47c32ad0c6f30e8',1,'CENTERED6']]], + ['cif_2766',['CIF',['../classCIF.html#a0e65a3004e88fe6f772690a89a87256f',1,'CIF::CIF(F &&f, bool a_active)'],['../classCIF.html#aeda8119c592d6acaf71927b7d8fe3887',1,'CIF::CIF(const CIF &rhs)=default'],['../classCIF.html#aeb3766fcdd40058f9116d815743381c9',1,'CIF::CIF(CIF &&rhs) noexcept=default']]], + ['clear_2767',['clear',['../structTimeInterpolatedData.html#a68d1abba77684ee584ba484a185a44e2',1,'TimeInterpolatedData']]], + ['clearlevel_2768',['ClearLevel',['../classERF.html#ac44e400a7ce68e18fa44e9416cb1344e',1,'ERF']]], + ['close_2769',['close',['../classncutils_1_1NCFile.html#af2c4a20c38edb3fae69087a80875b8b9',1,'ncutils::NCFile']]], + ['closest_5findex_2770',['closest_index',['../ERF__ReadBndryPlanes_8cpp.html#adc5227730afe35653b2dfa88898eb00a',1,'ERF_ReadBndryPlanes.cpp']]], + ['cloud_2771',['Cloud',['../classSAM.html#a48d25f57da2ba1d7ddb503ede0b8d998',1,'SAM']]], + ['cloud_5ffraction_2772',['cloud_fraction',['../classERF.html#a0f6effb7eeed11385b20e4bbf516b459',1,'ERF']]], + ['cloudradprops_2773',['CloudRadProps',['../classCloudRadProps.html#aade37d67dde6092189402829442285d4',1,'CloudRadProps']]], + ['combine_5fproperties_2774',['combine_properties',['../classOptics.html#a6cbf46804754b07ab0ccf03e6db25207',1,'Optics']]], + ['compute_5fa_2775',['compute_A',['../AdvanceFitch_8cpp.html#a7b6c67da0ff16af60b10f434632b06ce',1,'AdvanceFitch.cpp']]], + ['compute_5faijk_2776',['compute_Aijk',['../AdvanceFitch_8cpp.html#a68e0a40af0744df9f7e79d181225f615',1,'AdvanceFitch.cpp']]], + ['compute_5faverages_2777',['compute_averages',['../classMOSTAverage.html#a7a28005871bb8abb49f44c3976133a4f',1,'MOSTAverage::compute_averages()'],['../classPlaneAverage.html#a0b4bb610551a2f07eb05b8e8b7d91820',1,'PlaneAverage::compute_averages(const IndexSelector &idxOp, const amrex::MultiFab &mfab)'],['../classPlaneAverage.html#a603aee4caf3a370d06bee77fddb0e33e',1,'PlaneAverage::compute_averages(const IndexSelector &idxOp, const amrex::MultiFab &mfab)']]], + ['compute_5fcoefficients_2778',['Compute_Coefficients',['../classSAM.html#a77dd99de0896cf9f9bf8299c2c80bc40',1,'SAM']]], + ['compute_5ffluxes_2779',['compute_fluxes',['../classABLMost.html#a829339fc8e70a5dff8b7c85f3c2e4138',1,'ABLMost']]], + ['compute_5fh_5feta_5fatcellcenter_2780',['Compute_h_eta_AtCellCenter',['../TerrainMetrics_8H.html#a43b431cbd97421014ff80245883e06d2',1,'TerrainMetrics.H']]], + ['compute_5fh_5feta_5fatedgecenteri_2781',['Compute_h_eta_AtEdgeCenterI',['../TerrainMetrics_8H.html#aed973861215c4eb0697f7a83b37016a9',1,'TerrainMetrics.H']]], + ['compute_5fh_5feta_5fatedgecenterj_2782',['Compute_h_eta_AtEdgeCenterJ',['../TerrainMetrics_8H.html#a0251c09947155307e047f79fccdbd463',1,'TerrainMetrics.H']]], + ['compute_5fh_5feta_5fatedgecenterk_2783',['Compute_h_eta_AtEdgeCenterK',['../TerrainMetrics_8H.html#ac1434a53d9966d992133433473bc629a',1,'TerrainMetrics.H']]], + ['compute_5fh_5feta_5fatiface_2784',['Compute_h_eta_AtIface',['../TerrainMetrics_8H.html#ad06b0ae003cb3d59227ce85a5fa8a669',1,'TerrainMetrics.H']]], + ['compute_5fh_5feta_5fatjface_2785',['Compute_h_eta_AtJface',['../TerrainMetrics_8H.html#ae609a5c1f84347b66e9a8b712271c4ce',1,'TerrainMetrics.H']]], + ['compute_5fh_5feta_5fatkface_2786',['Compute_h_eta_AtKface',['../TerrainMetrics_8H.html#af2b7bda0da3e8024e9b02b6d69c366fe',1,'TerrainMetrics.H']]], + ['compute_5fh_5fxi_5fatcellcenter_2787',['Compute_h_xi_AtCellCenter',['../TerrainMetrics_8H.html#ada44020dc4ec27c5bebf8fd82d336cee',1,'TerrainMetrics.H']]], + ['compute_5fh_5fxi_5fatedgecenteri_2788',['Compute_h_xi_AtEdgeCenterI',['../TerrainMetrics_8H.html#ad56aa9e0cc7428ea33d4ac90d91c1f56',1,'TerrainMetrics.H']]], + ['compute_5fh_5fxi_5fatedgecenterj_2789',['Compute_h_xi_AtEdgeCenterJ',['../TerrainMetrics_8H.html#a1582797e6ac6cf0c1e0b94a619bc13b8',1,'TerrainMetrics.H']]], + ['compute_5fh_5fxi_5fatedgecenterk_2790',['Compute_h_xi_AtEdgeCenterK',['../TerrainMetrics_8H.html#a07e83bf0f142a953679c9edfa42b398d',1,'TerrainMetrics.H']]], + ['compute_5fh_5fxi_5fatiface_2791',['Compute_h_xi_AtIface',['../TerrainMetrics_8H.html#a2116df83b61a39fb50b9a2d7474c00d7',1,'TerrainMetrics.H']]], + ['compute_5fh_5fxi_5fatjface_2792',['Compute_h_xi_AtJface',['../TerrainMetrics_8H.html#a9ec5ec17f16954e56733db6dd98fe07d',1,'TerrainMetrics.H']]], + ['compute_5fh_5fxi_5fatkface_2793',['Compute_h_xi_AtKface',['../TerrainMetrics_8H.html#aba0de207695f9674a9e0678a19f22677',1,'TerrainMetrics.H']]], + ['compute_5fh_5fzeta_5fatcellcenter_2794',['Compute_h_zeta_AtCellCenter',['../TerrainMetrics_8H.html#a32eeeb066c70da970aa6a60918515987',1,'TerrainMetrics.H']]], + ['compute_5fh_5fzeta_5fatedgecenteri_2795',['Compute_h_zeta_AtEdgeCenterI',['../TerrainMetrics_8H.html#a3e3ceccddeb3cca9d9e4573af2311a5e',1,'TerrainMetrics.H']]], + ['compute_5fh_5fzeta_5fatedgecenterj_2796',['Compute_h_zeta_AtEdgeCenterJ',['../TerrainMetrics_8H.html#a21aac76e0b284b33e302526e1f292c76',1,'TerrainMetrics.H']]], + ['compute_5fh_5fzeta_5fatedgecenterk_2797',['Compute_h_zeta_AtEdgeCenterK',['../TerrainMetrics_8H.html#a2b9e684355ee8d6dad22950c8c51716b',1,'TerrainMetrics.H']]], + ['compute_5fh_5fzeta_5fatiface_2798',['Compute_h_zeta_AtIface',['../TerrainMetrics_8H.html#a8d96671d41364f1e24391375a2bc0f1e',1,'TerrainMetrics.H']]], + ['compute_5fh_5fzeta_5fatjface_2799',['Compute_h_zeta_AtJface',['../TerrainMetrics_8H.html#ada12bcb6beb3fa0d00dbdacb37f3c60f',1,'TerrainMetrics.H']]], + ['compute_5fh_5fzeta_5fatkface_2800',['Compute_h_zeta_AtKface',['../TerrainMetrics_8H.html#a48f57e72ac183fdf1a984f58f3d24ee0',1,'TerrainMetrics.H']]], + ['compute_5finterior_5fghost_5fbxs_5fxy_2801',['compute_interior_ghost_bxs_xy',['../Utils_8H.html#aaa3f051b9681a4e20d0d88b3715d8897',1,'compute_interior_ghost_bxs_xy(const amrex::Box &bx, const amrex::Box &domain, const int &width, const int &set_width, amrex::Box &bx_xlo, amrex::Box &bx_xhi, amrex::Box &bx_ylo, amrex::Box &bx_yhi, const amrex::IntVect &ng_vect=amrex::IntVect(0, 0, 0), const bool get_int_ng=false): Utils.H'],['../InteriorGhostCells_8cpp.html#a58aa7f6d6812d4dea186477114d1a47c',1,'compute_interior_ghost_bxs_xy(const Box &bx, const Box &domain, const int &width, const int &set_width, Box &bx_xlo, Box &bx_xhi, Box &bx_ylo, Box &bx_yhi, const IntVect &ng_vect, const bool get_int_ng): InteriorGhostCells.cpp']]], + ['compute_5fmost_5fbcs_2802',['compute_most_bcs',['../classABLMost.html#afb930118bc66bba7376f0fe2abd85be3',1,'ABLMost::compute_most_bcs(const int &lev, const amrex::Vector< amrex::MultiFab * > &mfs, amrex::MultiFab *xzmom_flux, amrex::MultiFab *zxmom_flux, amrex::MultiFab *yzmom_flux, amrex::MultiFab *zymom_flux, amrex::MultiFab *heat_flux, amrex::MultiFab *qv_flux, amrex::MultiFab *z_phys, const amrex::Real &dz_no_terrain, const FluxCalc &flux_comp)'],['../classABLMost.html#a64b906be4c2e1328177633f682fab5dd',1,'ABLMost::compute_most_bcs(const int &lev, const Vector< MultiFab * > &mfs, MultiFab *xzmom_flux, MultiFab *zxmom_flux, MultiFab *yzmom_flux, MultiFab *zymom_flux, MultiFab *heat_flux, MultiFab *qv_flux, MultiFab *z_phys, const Real &dz_no_terrain, const FluxCalc &flux_comp)']]], + ['compute_5fplane_5faverages_2803',['compute_plane_averages',['../classMOSTAverage.html#ab85828af24cd22d737931c51862389e4',1,'MOSTAverage']]], + ['compute_5fq_5fflux_2804',['compute_q_flux',['../structdonelan__flux.html#adb397919f3dc33f33d8bdc7b99c52efc',1,'donelan_flux::compute_q_flux()'],['../structcustom__flux.html#ae9e13bc10b4594df556671d9a042b48b',1,'custom_flux::compute_q_flux()'],['../structmoeng__flux.html#a5d40e64bd085af2f4c63cfa1e9e20aa6',1,'moeng_flux::compute_q_flux()']]], + ['compute_5fregion_5faverages_2805',['compute_region_averages',['../classMOSTAverage.html#aaea0b00766b3cdeefd2b54bade8a86bd',1,'MOSTAverage']]], + ['compute_5ft_5fflux_2806',['compute_t_flux',['../structmoeng__flux.html#a946d89f0b1c8287c83bea9ff628bdb1e',1,'moeng_flux::compute_t_flux()'],['../structcustom__flux.html#abb193ac77724a6452a6068c3b5954081',1,'custom_flux::compute_t_flux()'],['../structdonelan__flux.html#a999e3bdb322d29fcdfbd51047fb32ee0',1,'donelan_flux::compute_t_flux()']]], + ['compute_5fu_5fflux_2807',['compute_u_flux',['../structcustom__flux.html#a6ab8b167f190f9b0c4c6adb05acfff40',1,'custom_flux::compute_u_flux()'],['../structdonelan__flux.html#a44a032acc6bd6f42ff90f5a0ac14f4cf',1,'donelan_flux::compute_u_flux()'],['../structmoeng__flux.html#a2451f21fea8f87cec2e5f626c36489cb',1,'moeng_flux::compute_u_flux()']]], + ['compute_5fv_5fflux_2808',['compute_v_flux',['../structcustom__flux.html#a2fe8dd883e33e274f6e44f9c0c5cf118',1,'custom_flux::compute_v_flux()'],['../structdonelan__flux.html#ad2da09025b821f79782fa580010c4df2',1,'donelan_flux::compute_v_flux()'],['../structmoeng__flux.html#a5ec0786b043f57c8c41edfd677dde8c9',1,'moeng_flux::compute_v_flux()']]], + ['compute_5fzrel_5fatcellcenter_2809',['Compute_Zrel_AtCellCenter',['../TerrainMetrics_8H.html#a41f9b3a5604791daf44935b10a55a565',1,'TerrainMetrics.H']]], + ['computedt_2810',['ComputeDt',['../classERF.html#aa38639155e79bab8a0c283aa6e7afa81',1,'ERF']]], + ['computefluxes_2811',['ComputeFluxes',['../classSLM.html#aaafd49733163332a7f9616374d103cbb',1,'SLM::ComputeFluxes()'],['../classMM5.html#a109a5f7a252a6ab6c8e5373ca68c32fb',1,'MM5::ComputeFluxes()']]], + ['computeghostcells_2812',['ComputeGhostCells',['../classERF.html#ae68b1f54d196d0a4b19716d65a59d4c5',1,'ERF']]], + ['computeqkesourceterms_2813',['ComputeQKESourceTerms',['../PBLModels_8H.html#a4ce76ae2ddb12da46b999c3c58201cdd',1,'PBLModels.H']]], + ['computesmnsmn_2814',['ComputeSmnSmn',['../EddyViscosity_8H.html#a1d775f0ce64d37053b33d514438ee856',1,'EddyViscosity.H']]], + ['computestrain_5fn_2815',['ComputeStrain_N',['../ComputeStrain__N_8cpp.html#a72f6c981375a19d6e96b875837b57ae0',1,'ComputeStrain_N(Box bxcc, Box tbxxy, Box tbxxz, Box tbxyz, Box domain, const Array4< const Real > &u, const Array4< const Real > &v, const Array4< const Real > &w, Array4< Real > &tau11, Array4< Real > &tau22, Array4< Real > &tau33, Array4< Real > &tau12, Array4< Real > &tau13, Array4< Real > &tau23, const BCRec *bc_ptr, const GpuArray< Real, AMREX_SPACEDIM > &dxInv, const Array4< const Real > &mf_m, const Array4< const Real > &mf_u, const Array4< const Real > &mf_v): ComputeStrain_N.cpp'],['../Diffusion_8H.html#a6338bbbd04537c72c5a57e8a6a52d3c0',1,'ComputeStrain_N(amrex::Box bxcc, amrex::Box tbxxy, amrex::Box tbxxz, amrex::Box tbxyz, amrex::Box domain, const amrex::Array4< const amrex::Real > &u, const amrex::Array4< const amrex::Real > &v, const amrex::Array4< const amrex::Real > &w, amrex::Array4< amrex::Real > &tau11, amrex::Array4< amrex::Real > &tau22, amrex::Array4< amrex::Real > &tau33, amrex::Array4< amrex::Real > &tau12, amrex::Array4< amrex::Real > &tau13, amrex::Array4< amrex::Real > &tau23, const amrex::BCRec *bc_ptr, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxInv, const amrex::Array4< const amrex::Real > &mf_m, const amrex::Array4< const amrex::Real > &mf_u, const amrex::Array4< const amrex::Real > &mf_v): Diffusion.H']]], + ['computestrain_5ft_2816',['ComputeStrain_T',['../ComputeStrain__T_8cpp.html#ab4855711550192d6649ce1163e4cc697',1,'ComputeStrain_T(Box bxcc, Box tbxxy, Box tbxxz, Box tbxyz, Box domain, const Array4< const Real > &u, const Array4< const Real > &v, const Array4< const Real > &w, Array4< Real > &tau11, Array4< Real > &tau22, Array4< Real > &tau33, Array4< Real > &tau12, Array4< Real > &tau13, Array4< Real > &tau21, Array4< Real > &tau23, Array4< Real > &tau31, Array4< Real > &tau32, const Array4< const Real > &z_nd, const Array4< const Real > &detJ, const BCRec *bc_ptr, const GpuArray< Real, AMREX_SPACEDIM > &dxInv, const Array4< const Real > &, const Array4< const Real > &mf_u, const Array4< const Real > &mf_v): ComputeStrain_T.cpp'],['../Diffusion_8H.html#a1c7f3e532227403ddafd0ebde7365262',1,'ComputeStrain_T(amrex::Box bxcc, amrex::Box tbxxy, amrex::Box tbxxz, amrex::Box tbxyz, amrex::Box domain, const amrex::Array4< const amrex::Real > &u, const amrex::Array4< const amrex::Real > &v, const amrex::Array4< const amrex::Real > &w, amrex::Array4< amrex::Real > &tau11, amrex::Array4< amrex::Real > &tau22, amrex::Array4< amrex::Real > &tau33, amrex::Array4< amrex::Real > &tau12, amrex::Array4< amrex::Real > &tau13, amrex::Array4< amrex::Real > &tau21, amrex::Array4< amrex::Real > &tau23, amrex::Array4< amrex::Real > &tau31, amrex::Array4< amrex::Real > &tau32, const amrex::Array4< const amrex::Real > &z_nd, const amrex::Array4< const amrex::Real > &detJ, const amrex::BCRec *bc_ptr, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxInv, const amrex::Array4< const amrex::Real > &mf_m, const amrex::Array4< const amrex::Real > &mf_u, const amrex::Array4< const amrex::Real > &mf_v): Diffusion.H']]], + ['computestressconsvisc_5fn_2817',['ComputeStressConsVisc_N',['../Diffusion_8H.html#a094da213d571d4c5be5c1f8a355be78f',1,'ComputeStressConsVisc_N(amrex::Box bxcc, amrex::Box tbxxy, amrex::Box tbxxz, amrex::Box tbxyz, amrex::Real mu_eff, const amrex::Array4< const amrex::Real > &cell_data, amrex::Array4< amrex::Real > &tau11, amrex::Array4< amrex::Real > &tau22, amrex::Array4< amrex::Real > &tau33, amrex::Array4< amrex::Real > &tau12, amrex::Array4< amrex::Real > &tau13, amrex::Array4< amrex::Real > &tau23, const amrex::Array4< const amrex::Real > &er_arr): Diffusion.H'],['../ComputeStress__N_8cpp.html#a90e3a746cdb875f5eb328b01d5168506',1,'ComputeStressConsVisc_N(Box bxcc, Box tbxxy, Box tbxxz, Box tbxyz, Real mu_eff, const Array4< const Real > &cell_data, Array4< Real > &tau11, Array4< Real > &tau22, Array4< Real > &tau33, Array4< Real > &tau12, Array4< Real > &tau13, Array4< Real > &tau23, const Array4< const Real > &er_arr): ComputeStress_N.cpp']]], + ['computestressconsvisc_5ft_2818',['ComputeStressConsVisc_T',['../ComputeStress__T_8cpp.html#af10fca5e9a1f97c4743e76cc935230bd',1,'ComputeStressConsVisc_T(Box bxcc, Box tbxxy, Box tbxxz, Box tbxyz, Real mu_eff, const Array4< const Real > &cell_data, Array4< Real > &tau11, Array4< Real > &tau22, Array4< Real > &tau33, Array4< Real > &tau12, Array4< Real > &tau13, Array4< Real > &tau21, Array4< Real > &tau23, Array4< Real > &tau31, Array4< Real > &tau32, const Array4< const Real > &er_arr, const Array4< const Real > &z_nd, const Array4< const Real > &detJ, const GpuArray< Real, AMREX_SPACEDIM > &dxInv): ComputeStress_T.cpp'],['../Diffusion_8H.html#a61297def6144337bbf34010d410f4e4a',1,'ComputeStressConsVisc_T(amrex::Box bxcc, amrex::Box tbxxy, amrex::Box tbxxz, amrex::Box tbxyz, amrex::Real mu_eff, const amrex::Array4< const amrex::Real > &cell_data, amrex::Array4< amrex::Real > &tau11, amrex::Array4< amrex::Real > &tau22, amrex::Array4< amrex::Real > &tau33, amrex::Array4< amrex::Real > &tau12, amrex::Array4< amrex::Real > &tau13, amrex::Array4< amrex::Real > &tau21, amrex::Array4< amrex::Real > &tau23, amrex::Array4< amrex::Real > &tau31, amrex::Array4< amrex::Real > &tau32, const amrex::Array4< const amrex::Real > &er_arr, const amrex::Array4< const amrex::Real > &z_nd, const amrex::Array4< const amrex::Real > &detJ, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxInv): Diffusion.H']]], + ['computestressvarvisc_5fn_2819',['ComputeStressVarVisc_N',['../ComputeStress__N_8cpp.html#a3ccb3579df8fa971a01bc7504db45a1e',1,'ComputeStressVarVisc_N(Box bxcc, Box tbxxy, Box tbxxz, Box tbxyz, Real mu_eff, const Array4< const Real > &mu_turb, const Array4< const Real > &cell_data, Array4< Real > &tau11, Array4< Real > &tau22, Array4< Real > &tau33, Array4< Real > &tau12, Array4< Real > &tau13, Array4< Real > &tau23, const Array4< const Real > &er_arr): ComputeStress_N.cpp'],['../Diffusion_8H.html#af89bc368023b73bc1d4e3844d74b8ec2',1,'ComputeStressVarVisc_N(amrex::Box bxcc, amrex::Box tbxxy, amrex::Box tbxxz, amrex::Box tbxyz, amrex::Real mu_eff, const amrex::Array4< const amrex::Real > &mu_turb, const amrex::Array4< const amrex::Real > &cell_data, amrex::Array4< amrex::Real > &tau11, amrex::Array4< amrex::Real > &tau22, amrex::Array4< amrex::Real > &tau33, amrex::Array4< amrex::Real > &tau12, amrex::Array4< amrex::Real > &tau13, amrex::Array4< amrex::Real > &tau23, const amrex::Array4< const amrex::Real > &er_arr): Diffusion.H']]], + ['computestressvarvisc_5ft_2820',['ComputeStressVarVisc_T',['../ComputeStress__T_8cpp.html#a25509867afb4acb014b0eae79da251ae',1,'ComputeStressVarVisc_T(Box bxcc, Box tbxxy, Box tbxxz, Box tbxyz, Real mu_eff, const Array4< const Real > &mu_turb, const Array4< const Real > &cell_data, Array4< Real > &tau11, Array4< Real > &tau22, Array4< Real > &tau33, Array4< Real > &tau12, Array4< Real > &tau13, Array4< Real > &tau21, Array4< Real > &tau23, Array4< Real > &tau31, Array4< Real > &tau32, const Array4< const Real > &er_arr, const Array4< const Real > &z_nd, const Array4< const Real > &detJ, const GpuArray< Real, AMREX_SPACEDIM > &dxInv): ComputeStress_T.cpp'],['../Diffusion_8H.html#a4151c371e6c66295da065ed9ed323dbe',1,'ComputeStressVarVisc_T(amrex::Box bxcc, amrex::Box tbxxy, amrex::Box tbxxz, amrex::Box tbxyz, amrex::Real mu_eff, const amrex::Array4< const amrex::Real > &mu_turb, const amrex::Array4< const amrex::Real > &cell_data, amrex::Array4< amrex::Real > &tau11, amrex::Array4< amrex::Real > &tau22, amrex::Array4< amrex::Real > &tau33, amrex::Array4< amrex::Real > &tau12, amrex::Array4< amrex::Real > &tau13, amrex::Array4< amrex::Real > &tau21, amrex::Array4< amrex::Real > &tau23, amrex::Array4< amrex::Real > &tau31, amrex::Array4< amrex::Real > &tau32, const amrex::Array4< const amrex::Real > &er_arr, const amrex::Array4< const amrex::Real > &z_nd, const amrex::Array4< const amrex::Real > &detJ, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxInv): Diffusion.H']]], + ['computetsurf_2821',['ComputeTsurf',['../classSLM.html#a0db509945fed4bf6ffae276c1c183707',1,'SLM::ComputeTsurf()'],['../classMM5.html#a9fc8c9cf8b165b28583be7bb7e8ac7c3',1,'MM5::ComputeTsurf()']]], + ['computeturbulentviscosity_2822',['ComputeTurbulentViscosity',['../ComputeTurbulentViscosity_8cpp.html#a9bf385bbd3f90411b7189fedab606be9',1,'ComputeTurbulentViscosity(const MultiFab &xvel, const MultiFab &yvel, const MultiFab &Tau11, const MultiFab &Tau22, const MultiFab &Tau33, const MultiFab &Tau12, const MultiFab &Tau13, const MultiFab &Tau23, const MultiFab &cons_in, MultiFab &eddyViscosity, MultiFab &Hfx1, MultiFab &Hfx2, MultiFab &Hfx3, MultiFab &Diss, const Geometry &geom, const MultiFab &mapfac_u, const MultiFab &mapfac_v, const std::unique_ptr< MultiFab > &z_phys_nd, const TurbChoice &turbChoice, const Real const_grav, std::unique_ptr< ABLMost > &most, const bool &exp_most, int level, const BCRec *bc_ptr, bool vert_only): ComputeTurbulentViscosity.cpp'],['../EddyViscosity_8H.html#af02f807d706dfd8fe799cd67d8d785e8',1,'ComputeTurbulentViscosity(const amrex::MultiFab &xvel, const amrex::MultiFab &yvel, const amrex::MultiFab &Tau11, const amrex::MultiFab &Tau22, const amrex::MultiFab &Tau33, const amrex::MultiFab &Tau12, const amrex::MultiFab &Tau13, const amrex::MultiFab &Tau23, const amrex::MultiFab &cons_in, amrex::MultiFab &eddyViscosity, amrex::MultiFab &Hfx1, amrex::MultiFab &Hfx2, amrex::MultiFab &Hfx3, amrex::MultiFab &Diss, const amrex::Geometry &geom, const amrex::MultiFab &mapfac_u, const amrex::MultiFab &mapfac_v, const std::unique_ptr< amrex::MultiFab > &z_phys_nd, const TurbChoice &turbChoice, const amrex::Real const_grav, std::unique_ptr< ABLMost > &most, const bool &exp_most, int level, const amrex::BCRec *bc_ptr, bool vert_only=false): EddyViscosity.H']]], + ['computeturbulentviscosityles_2823',['ComputeTurbulentViscosityLES',['../ComputeTurbulentViscosity_8cpp.html#a730dd933a41b48fe17b15e46d4dce964',1,'ComputeTurbulentViscosity.cpp']]], + ['computeturbulentviscositypbl_2824',['ComputeTurbulentViscosityPBL',['../ComputeTurbulentViscosity_8cpp.html#aac21239e5369ac8cdfcc2a3d4f292eaa',1,'ComputeTurbulentViscosityPBL(const MultiFab &xvel, const MultiFab &yvel, const MultiFab &cons_in, MultiFab &eddyViscosity, const Geometry &geom, const TurbChoice &turbChoice, std::unique_ptr< ABLMost > &most, int level, const BCRec *bc_ptr, bool, const std::unique_ptr< MultiFab > &z_phys_nd): PBLModels.cpp'],['../PBLModels_8cpp.html#aac21239e5369ac8cdfcc2a3d4f292eaa',1,'ComputeTurbulentViscosityPBL(const MultiFab &xvel, const MultiFab &yvel, const MultiFab &cons_in, MultiFab &eddyViscosity, const Geometry &geom, const TurbChoice &turbChoice, std::unique_ptr< ABLMost > &most, int level, const BCRec *bc_ptr, bool, const std::unique_ptr< MultiFab > &z_phys_nd): PBLModels.cpp']]], + ['computeverticalderivativespbl_2825',['ComputeVerticalDerivativesPBL',['../PBLModels_8H.html#a4f010fa74c87ce3a524f53c2f501255b',1,'PBLModels.H']]], + ['construct_5ferffillpatchers_2826',['Construct_ERFFillPatchers',['../classERF.html#adc284f421c5fd9dd15c0e5cbe4ff5fc8',1,'ERF']]], + ['containerhaselement_2827',['containerHasElement',['../Plotfile_8cpp.html#a1f8554e7b211b0acfc202e8a600e7d67',1,'Plotfile.cpp']]], + ['copy_5fmicro_5fto_5fstate_2828',['Copy_Micro_to_State',['../classSAM.html#a007ed40ac7278996d257b4c0ab6c1320',1,'SAM::Copy_Micro_to_State()'],['../classNullMoist.html#a11a25944d4ddb955f74e355838b9d8b0',1,'NullMoist::Copy_Micro_to_State()'],['../classKessler.html#a747a85d4c8004b299ca49dcb1f221c7c',1,'Kessler::Copy_Micro_to_State()'],['../classNullSurf.html#a45d066ae7b9d2435f5477e35dd75bcfb',1,'NullSurf::Copy_Micro_to_State()']]], + ['copy_5fstate_5fto_5fmicro_2829',['Copy_State_to_Micro',['../classSAM.html#a1df931f91be89514c09f69f24cfeca53',1,'SAM::Copy_State_to_Micro()'],['../classNullMoist.html#aacb06ee696c6870e899d1bc26aa9933e',1,'NullMoist::Copy_State_to_Micro()'],['../classKessler.html#a18f83fc4dff53c8c29ee9ee974e65ac2',1,'Kessler::Copy_State_to_Micro()'],['../classNullSurf.html#a1c31c18677e12226716217ca87cd526c',1,'NullSurf::Copy_State_to_Micro()']]], + ['create_2830',['create',['../classncutils_1_1NCFile.html#a47bdccee2cc22a735ca715d9c88e4f6b',1,'ncutils::NCFile']]], + ['create_5fpar_2831',['create_par',['../classncutils_1_1NCFile.html#a6607bd5f3f75b451e2436ff713931f19',1,'ncutils::NCFile']]], + ['custom_5fflux_2832',['custom_flux',['../structcustom__flux.html#aa9715fd8b84d6df19fa17c89a703210a',1,'custom_flux']]] ]; diff --git a/search/functions_3.js b/search/functions_3.js index bdf9ab898b..bc77a6ae4b 100644 --- a/search/functions_3.js +++ b/search/functions_3.js @@ -1,26 +1,26 @@ var searchData= [ - ['datalog_2828',['DataLog',['../classERF.html#aa2c3ee1910008b828b9da79ccdfe3871',1,'ERF']]], - ['datalogname_2829',['DataLogName',['../classERF.html#a16e1f6b8bbb05ae738daf2abe626c159',1,'ERF']]], - ['debug_2830',['debug',['../structTurbulentPerturbation.html#aa3eb5d1c48589a8c49d77c8889124657',1,'TurbulentPerturbation']]], - ['def_5farray_2831',['def_array',['../classncutils_1_1NCGroup.html#acf969a6598527e2d00a84d35e0522fa1',1,'ncutils::NCGroup']]], - ['def_5fdim_2832',['def_dim',['../classncutils_1_1NCGroup.html#a8c9376a217f29012f565a13f131bea84',1,'ncutils::NCGroup']]], - ['def_5fvar_2833',['def_var',['../classncutils_1_1NCGroup.html#ae640d6aef18835f643e3cbaacb43e682',1,'ncutils::NCGroup']]], - ['define_2834',['Define',['../classEulerianMicrophysics.html#a444c916c5bb1167ea1efc9f2b9595436',1,'EulerianMicrophysics::Define()'],['../classSAM.html#aba6460f2d34882d6b512574106e44531',1,'SAM::Define()'],['../classNullMoist.html#aab112947c592c330b45a2d7e5529ec07',1,'NullMoist::Define()'],['../classMicrophysics.html#a380240aa9ec93af02a9b27ba1be4172a',1,'Microphysics::Define()'],['../classKessler.html#a5e989e5755fb57a853e2f1f0ec4c49e8',1,'Kessler::Define()'],['../classSLM.html#aa6b96866fc326fe740b163be0141ff56',1,'SLM::Define()'],['../classNullSurf.html#a5aec888a24181ce049b48ed10817489c',1,'NullSurf::Define()'],['../classMM5.html#aca75345d5bf1a5ef4ce434047cc70437',1,'MM5::Define()'],['../classLandSurface.html#ae2087847b83c6a9e4453ccaa110134ce',1,'LandSurface::Define()'],['../classERFFillPatcher.html#a3dcdf3322c58c07eec765f6e3413ba68',1,'ERFFillPatcher::Define()']]], - ['define_5ferffillpatchers_2835',['Define_ERFFillPatchers',['../classERF.html#ac0951404aa6802aad7a3be6b7375dfa2',1,'ERF']]], - ['define_5flevel_5fdata_2836',['define_level_data',['../classReadBndryPlanes.html#a16ed881bb428b7abb89e4284b356c8d6',1,'ReadBndryPlanes']]], - ['deriv_5foutputs_2837',['deriv_outputs',['../classWaterVaporSat.html#a9d72a29e54869f42ec419639d6c3d70f',1,'WaterVaporSat']]], - ['derive_5fdiag_5fprofiles_2838',['derive_diag_profiles',['../classERF.html#ab5b66549344d8b04b126fa0ef16c7ca2',1,'ERF']]], - ['derive_5fdiag_5fprofiles_5fstag_2839',['derive_diag_profiles_stag',['../classERF.html#a8b93b715895b00e86e7db653d2a7284a',1,'ERF']]], - ['derive_5fstress_5fprofiles_2840',['derive_stress_profiles',['../classERF.html#ad7886dcab90f37a8fcc91ede0c68b6cb',1,'ERF']]], - ['derive_5fstress_5fprofiles_5fstag_2841',['derive_stress_profiles_stag',['../classERF.html#ae09680325ba108583147eb2e254a266e',1,'ERF']]], - ['derive_5fupwp_2842',['derive_upwp',['../classERF.html#af1981699bedbbfd6785f26ca340a74d8',1,'ERF']]], - ['diffusionsrcformom_5fn_2843',['DiffusionSrcForMom_N',['../DiffusionSrcForMom__N_8cpp.html#a426fe9fce28e7c29e11b29197e98f6a4',1,'DiffusionSrcForMom_N(const Box &bxx, const Box &bxy, const Box &bxz, const Array4< Real > &rho_u_rhs, const Array4< Real > &rho_v_rhs, const Array4< Real > &rho_w_rhs, const Array4< const Real > &tau11, const Array4< const Real > &tau22, const Array4< const Real > &tau33, const Array4< const Real > &tau12, const Array4< const Real > &tau13, const Array4< const Real > &tau23, const GpuArray< Real, AMREX_SPACEDIM > &dxInv, const Array4< const Real > &mf_m, const Array4< const Real > &, const Array4< const Real > &): DiffusionSrcForMom_N.cpp'],['../Diffusion_8H.html#a1385ec02c8aa1a6916f0827a359efa2b',1,'DiffusionSrcForMom_N(const amrex::Box &bxx, const amrex::Box &bxy, const amrex::Box &bxz, const amrex::Array4< amrex::Real > &rho_u_rhs, const amrex::Array4< amrex::Real > &rho_v_rhs, const amrex::Array4< amrex::Real > &rho_w_rhs, const amrex::Array4< const amrex::Real > &tau11, const amrex::Array4< const amrex::Real > &tau22, const amrex::Array4< const amrex::Real > &tau33, const amrex::Array4< const amrex::Real > &tau12, const amrex::Array4< const amrex::Real > &tau13, const amrex::Array4< const amrex::Real > &tau23, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxInv, const amrex::Array4< const amrex::Real > &mf_m, const amrex::Array4< const amrex::Real > &mf_u, const amrex::Array4< const amrex::Real > &mf_v): Diffusion.H']]], - ['diffusionsrcformom_5ft_2844',['DiffusionSrcForMom_T',['../DiffusionSrcForMom__T_8cpp.html#abd43ffde58dc80eec337c1fa12a0e2cf',1,'DiffusionSrcForMom_T(const Box &bxx, const Box &bxy, const Box &bxz, const Array4< Real > &rho_u_rhs, const Array4< Real > &rho_v_rhs, const Array4< Real > &rho_w_rhs, const Array4< const Real > &tau11, const Array4< const Real > &tau22, const Array4< const Real > &tau33, const Array4< const Real > &tau12, const Array4< const Real > &tau13, const Array4< const Real > &tau21, const Array4< const Real > &tau23, const Array4< const Real > &tau31, const Array4< const Real > &tau32, const Array4< const Real > &detJ, const GpuArray< Real, AMREX_SPACEDIM > &dxInv, const Array4< const Real > &mf_m, const Array4< const Real > &, const Array4< const Real > &): DiffusionSrcForMom_T.cpp'],['../Diffusion_8H.html#a9c81dadeb1784c3274f6f8c9a9d1bcb7',1,'DiffusionSrcForMom_T(const amrex::Box &bxx, const amrex::Box &bxy, const amrex::Box &bxz, const amrex::Array4< amrex::Real > &rho_u_rhs, const amrex::Array4< amrex::Real > &rho_v_rhs, const amrex::Array4< amrex::Real > &rho_w_rhs, const amrex::Array4< const amrex::Real > &tau11, const amrex::Array4< const amrex::Real > &tau22, const amrex::Array4< const amrex::Real > &tau33, const amrex::Array4< const amrex::Real > &tau12, const amrex::Array4< const amrex::Real > &tau13, const amrex::Array4< const amrex::Real > &tau21, const amrex::Array4< const amrex::Real > &tau23, const amrex::Array4< const amrex::Real > &tau31, const amrex::Array4< const amrex::Real > &tau32, const amrex::Array4< const amrex::Real > &detJ, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxInv, const amrex::Array4< const amrex::Real > &mf_m, const amrex::Array4< const amrex::Real > &mf_u, const amrex::Array4< const amrex::Real > &mf_v): Diffusion.H']]], - ['diffusionsrcforstate_5fn_2845',['DiffusionSrcForState_N',['../DiffusionSrcForState__N_8cpp.html#ae2f29294ba4e0edf0c7806af70304a5d',1,'DiffusionSrcForState_N(const Box &bx, const Box &domain, int start_comp, int num_comp, const bool &exp_most, const Array4< const Real > &u, const Array4< const Real > &v, const Array4< const Real > &cell_data, const Array4< const Real > &cell_prim, const Array4< Real > &cell_rhs, const Array4< Real > &xflux, const Array4< Real > &yflux, const Array4< Real > &zflux, const GpuArray< Real, AMREX_SPACEDIM > &cellSizeInv, const Array4< const Real > &SmnSmn_a, const Array4< const Real > &mf_m, const Array4< const Real > &mf_u, const Array4< const Real > &mf_v, Array4< Real > &hfx_z, Array4< Real > &qfx1_z, Array4< Real > &qfx2_z, Array4< Real > &diss, const Array4< const Real > &mu_turb, const DiffChoice &diffChoice, const TurbChoice &turbChoice, const Array4< const Real > &tm_arr, const GpuArray< Real, AMREX_SPACEDIM > grav_gpu, const BCRec *bc_ptr, const bool use_most): DiffusionSrcForState_N.cpp'],['../Diffusion_8H.html#af2252447959ccdb007b0b579773b67d2',1,'DiffusionSrcForState_N(const amrex::Box &bx, const amrex::Box &domain, int start_comp, int num_comp, const bool &exp_most, const amrex::Array4< const amrex::Real > &u, const amrex::Array4< const amrex::Real > &v, const amrex::Array4< const amrex::Real > &cell_data, const amrex::Array4< const amrex::Real > &cell_prim, const amrex::Array4< amrex::Real > &cell_rhs, const amrex::Array4< amrex::Real > &xflux, const amrex::Array4< amrex::Real > &yflux, const amrex::Array4< amrex::Real > &zflux, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &cellSizeInv, const amrex::Array4< const amrex::Real > &SmnSmn_a, const amrex::Array4< const amrex::Real > &mf_m, const amrex::Array4< const amrex::Real > &mf_u, const amrex::Array4< const amrex::Real > &mf_v, amrex::Array4< amrex::Real > &hfx_z, amrex::Array4< amrex::Real > &qfx1_z, amrex::Array4< amrex::Real > &qfx2_z, amrex::Array4< amrex::Real > &diss, const amrex::Array4< const amrex::Real > &mu_turb, const DiffChoice &diffChoice, const TurbChoice &turbChoice, const amrex::Array4< const amrex::Real > &tm_arr, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > grav_gpu, const amrex::BCRec *bc_ptr, const bool use_most): Diffusion.H']]], - ['diffusionsrcforstate_5ft_2846',['DiffusionSrcForState_T',['../DiffusionSrcForState__T_8cpp.html#a83e088493f24d2c2cad02b63accde307',1,'DiffusionSrcForState_T(const Box &bx, const Box &domain, int start_comp, int num_comp, const bool &exp_most, const Array4< const Real > &u, const Array4< const Real > &v, const Array4< const Real > &cell_data, const Array4< const Real > &cell_prim, const Array4< Real > &cell_rhs, const Array4< Real > &xflux, const Array4< Real > &yflux, const Array4< Real > &zflux, const Array4< const Real > &z_nd, const Array4< const Real > &ax, const Array4< const Real > &ay, const Array4< const Real > &az, const Array4< const Real > &detJ, const GpuArray< Real, AMREX_SPACEDIM > &cellSizeInv, const Array4< const Real > &SmnSmn_a, const Array4< const Real > &mf_m, const Array4< const Real > &mf_u, const Array4< const Real > &mf_v, Array4< Real > &hfx_z, Array4< Real > &, Array4< Real > &, Array4< Real > &diss, const Array4< const Real > &mu_turb, const DiffChoice &diffChoice, const TurbChoice &turbChoice, const Array4< const Real > &tm_arr, const GpuArray< Real, AMREX_SPACEDIM > grav_gpu, const BCRec *bc_ptr, const bool use_most): DiffusionSrcForState_T.cpp'],['../Diffusion_8H.html#af76d7ad7f63df447e9220d8800da84f7',1,'DiffusionSrcForState_T(const amrex::Box &bx, const amrex::Box &domain, int start_comp, int num_comp, const bool &exp_most, const amrex::Array4< const amrex::Real > &u, const amrex::Array4< const amrex::Real > &v, const amrex::Array4< const amrex::Real > &cell_data, const amrex::Array4< const amrex::Real > &cell_prim, const amrex::Array4< amrex::Real > &cell_rhs, const amrex::Array4< amrex::Real > &xflux, const amrex::Array4< amrex::Real > &yflux, const amrex::Array4< amrex::Real > &zflux, const amrex::Array4< const amrex::Real > &z_nd, const amrex::Array4< const amrex::Real > &ax, const amrex::Array4< const amrex::Real > &ay, const amrex::Array4< const amrex::Real > &az, const amrex::Array4< const amrex::Real > &detJ, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxInv, const amrex::Array4< const amrex::Real > &SmnSmn_a, const amrex::Array4< const amrex::Real > &mf_m, const amrex::Array4< const amrex::Real > &mf_u, const amrex::Array4< const amrex::Real > &mf_v, amrex::Array4< amrex::Real > &hfx_z, amrex::Array4< amrex::Real > &qfx1_z, amrex::Array4< amrex::Real > &qfx2_z, amrex::Array4< amrex::Real > &diss, const amrex::Array4< const amrex::Real > &mu_turb, const DiffChoice &diffChoice, const TurbChoice &turbChoice, const amrex::Array4< const amrex::Real > &tm_arr, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > grav_gpu, const amrex::BCRec *bc_ptr, const bool use_most): Diffusion.H']]], - ['dim_2847',['dim',['../classncutils_1_1NCGroup.html#addc8bbac9a2cfa8d9c49497b7da0310f',1,'ncutils::NCGroup']]], - ['display_2848',['display',['../structTurbChoice.html#ad2a82c43ca82f364c70ae5e61f0cd84f',1,'TurbChoice::display()'],['../structSpongeChoice.html#a66fd55eceebbe3e97e31325cc55369de',1,'SpongeChoice::display()'],['../structDiffChoice.html#adc2925cf95fd6058bb83e1748fd1b765',1,'DiffChoice::display()'],['../structSolverChoice.html#a9d26abef2007eb7c93180b0a6699cf8e',1,'SolverChoice::display()'],['../structAdvChoice.html#a15e63c1b409b5e09359441b5b5d7d00c',1,'AdvChoice::display()']]], - ['donelan_5fflux_2849',['donelan_flux',['../structdonelan__flux.html#a804902863523b5f641c44aadc3602e97',1,'donelan_flux']]], - ['dx_2850',['dx',['../classPlaneAverage.html#abf7bfae5c1b6fed56ff09fd06368b12c',1,'PlaneAverage']]] + ['datalog_2833',['DataLog',['../classERF.html#aa2c3ee1910008b828b9da79ccdfe3871',1,'ERF']]], + ['datalogname_2834',['DataLogName',['../classERF.html#a16e1f6b8bbb05ae738daf2abe626c159',1,'ERF']]], + ['debug_2835',['debug',['../structTurbulentPerturbation.html#aa3eb5d1c48589a8c49d77c8889124657',1,'TurbulentPerturbation']]], + ['def_5farray_2836',['def_array',['../classncutils_1_1NCGroup.html#acf969a6598527e2d00a84d35e0522fa1',1,'ncutils::NCGroup']]], + ['def_5fdim_2837',['def_dim',['../classncutils_1_1NCGroup.html#a8c9376a217f29012f565a13f131bea84',1,'ncutils::NCGroup']]], + ['def_5fvar_2838',['def_var',['../classncutils_1_1NCGroup.html#ae640d6aef18835f643e3cbaacb43e682',1,'ncutils::NCGroup']]], + ['define_2839',['Define',['../classEulerianMicrophysics.html#a444c916c5bb1167ea1efc9f2b9595436',1,'EulerianMicrophysics::Define()'],['../classSAM.html#aba6460f2d34882d6b512574106e44531',1,'SAM::Define()'],['../classNullMoist.html#aab112947c592c330b45a2d7e5529ec07',1,'NullMoist::Define()'],['../classMicrophysics.html#a380240aa9ec93af02a9b27ba1be4172a',1,'Microphysics::Define()'],['../classKessler.html#a5e989e5755fb57a853e2f1f0ec4c49e8',1,'Kessler::Define()'],['../classSLM.html#aa6b96866fc326fe740b163be0141ff56',1,'SLM::Define()'],['../classNullSurf.html#a5aec888a24181ce049b48ed10817489c',1,'NullSurf::Define()'],['../classMM5.html#aca75345d5bf1a5ef4ce434047cc70437',1,'MM5::Define()'],['../classLandSurface.html#ae2087847b83c6a9e4453ccaa110134ce',1,'LandSurface::Define()'],['../classERFFillPatcher.html#a3dcdf3322c58c07eec765f6e3413ba68',1,'ERFFillPatcher::Define()']]], + ['define_5ferffillpatchers_2840',['Define_ERFFillPatchers',['../classERF.html#ac0951404aa6802aad7a3be6b7375dfa2',1,'ERF']]], + ['define_5flevel_5fdata_2841',['define_level_data',['../classReadBndryPlanes.html#a16ed881bb428b7abb89e4284b356c8d6',1,'ReadBndryPlanes']]], + ['deriv_5foutputs_2842',['deriv_outputs',['../classWaterVaporSat.html#a9d72a29e54869f42ec419639d6c3d70f',1,'WaterVaporSat']]], + ['derive_5fdiag_5fprofiles_2843',['derive_diag_profiles',['../classERF.html#ab5b66549344d8b04b126fa0ef16c7ca2',1,'ERF']]], + ['derive_5fdiag_5fprofiles_5fstag_2844',['derive_diag_profiles_stag',['../classERF.html#a8b93b715895b00e86e7db653d2a7284a',1,'ERF']]], + ['derive_5fstress_5fprofiles_2845',['derive_stress_profiles',['../classERF.html#ad7886dcab90f37a8fcc91ede0c68b6cb',1,'ERF']]], + ['derive_5fstress_5fprofiles_5fstag_2846',['derive_stress_profiles_stag',['../classERF.html#ae09680325ba108583147eb2e254a266e',1,'ERF']]], + ['derive_5fupwp_2847',['derive_upwp',['../classERF.html#af1981699bedbbfd6785f26ca340a74d8',1,'ERF']]], + ['diffusionsrcformom_5fn_2848',['DiffusionSrcForMom_N',['../DiffusionSrcForMom__N_8cpp.html#a426fe9fce28e7c29e11b29197e98f6a4',1,'DiffusionSrcForMom_N(const Box &bxx, const Box &bxy, const Box &bxz, const Array4< Real > &rho_u_rhs, const Array4< Real > &rho_v_rhs, const Array4< Real > &rho_w_rhs, const Array4< const Real > &tau11, const Array4< const Real > &tau22, const Array4< const Real > &tau33, const Array4< const Real > &tau12, const Array4< const Real > &tau13, const Array4< const Real > &tau23, const GpuArray< Real, AMREX_SPACEDIM > &dxInv, const Array4< const Real > &mf_m, const Array4< const Real > &, const Array4< const Real > &): DiffusionSrcForMom_N.cpp'],['../Diffusion_8H.html#a1385ec02c8aa1a6916f0827a359efa2b',1,'DiffusionSrcForMom_N(const amrex::Box &bxx, const amrex::Box &bxy, const amrex::Box &bxz, const amrex::Array4< amrex::Real > &rho_u_rhs, const amrex::Array4< amrex::Real > &rho_v_rhs, const amrex::Array4< amrex::Real > &rho_w_rhs, const amrex::Array4< const amrex::Real > &tau11, const amrex::Array4< const amrex::Real > &tau22, const amrex::Array4< const amrex::Real > &tau33, const amrex::Array4< const amrex::Real > &tau12, const amrex::Array4< const amrex::Real > &tau13, const amrex::Array4< const amrex::Real > &tau23, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxInv, const amrex::Array4< const amrex::Real > &mf_m, const amrex::Array4< const amrex::Real > &mf_u, const amrex::Array4< const amrex::Real > &mf_v): Diffusion.H']]], + ['diffusionsrcformom_5ft_2849',['DiffusionSrcForMom_T',['../DiffusionSrcForMom__T_8cpp.html#abd43ffde58dc80eec337c1fa12a0e2cf',1,'DiffusionSrcForMom_T(const Box &bxx, const Box &bxy, const Box &bxz, const Array4< Real > &rho_u_rhs, const Array4< Real > &rho_v_rhs, const Array4< Real > &rho_w_rhs, const Array4< const Real > &tau11, const Array4< const Real > &tau22, const Array4< const Real > &tau33, const Array4< const Real > &tau12, const Array4< const Real > &tau13, const Array4< const Real > &tau21, const Array4< const Real > &tau23, const Array4< const Real > &tau31, const Array4< const Real > &tau32, const Array4< const Real > &detJ, const GpuArray< Real, AMREX_SPACEDIM > &dxInv, const Array4< const Real > &mf_m, const Array4< const Real > &, const Array4< const Real > &): DiffusionSrcForMom_T.cpp'],['../Diffusion_8H.html#a9c81dadeb1784c3274f6f8c9a9d1bcb7',1,'DiffusionSrcForMom_T(const amrex::Box &bxx, const amrex::Box &bxy, const amrex::Box &bxz, const amrex::Array4< amrex::Real > &rho_u_rhs, const amrex::Array4< amrex::Real > &rho_v_rhs, const amrex::Array4< amrex::Real > &rho_w_rhs, const amrex::Array4< const amrex::Real > &tau11, const amrex::Array4< const amrex::Real > &tau22, const amrex::Array4< const amrex::Real > &tau33, const amrex::Array4< const amrex::Real > &tau12, const amrex::Array4< const amrex::Real > &tau13, const amrex::Array4< const amrex::Real > &tau21, const amrex::Array4< const amrex::Real > &tau23, const amrex::Array4< const amrex::Real > &tau31, const amrex::Array4< const amrex::Real > &tau32, const amrex::Array4< const amrex::Real > &detJ, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxInv, const amrex::Array4< const amrex::Real > &mf_m, const amrex::Array4< const amrex::Real > &mf_u, const amrex::Array4< const amrex::Real > &mf_v): Diffusion.H']]], + ['diffusionsrcforstate_5fn_2850',['DiffusionSrcForState_N',['../DiffusionSrcForState__N_8cpp.html#ae2f29294ba4e0edf0c7806af70304a5d',1,'DiffusionSrcForState_N(const Box &bx, const Box &domain, int start_comp, int num_comp, const bool &exp_most, const Array4< const Real > &u, const Array4< const Real > &v, const Array4< const Real > &cell_data, const Array4< const Real > &cell_prim, const Array4< Real > &cell_rhs, const Array4< Real > &xflux, const Array4< Real > &yflux, const Array4< Real > &zflux, const GpuArray< Real, AMREX_SPACEDIM > &cellSizeInv, const Array4< const Real > &SmnSmn_a, const Array4< const Real > &mf_m, const Array4< const Real > &mf_u, const Array4< const Real > &mf_v, Array4< Real > &hfx_z, Array4< Real > &qfx1_z, Array4< Real > &qfx2_z, Array4< Real > &diss, const Array4< const Real > &mu_turb, const DiffChoice &diffChoice, const TurbChoice &turbChoice, const Array4< const Real > &tm_arr, const GpuArray< Real, AMREX_SPACEDIM > grav_gpu, const BCRec *bc_ptr, const bool use_most): DiffusionSrcForState_N.cpp'],['../Diffusion_8H.html#af2252447959ccdb007b0b579773b67d2',1,'DiffusionSrcForState_N(const amrex::Box &bx, const amrex::Box &domain, int start_comp, int num_comp, const bool &exp_most, const amrex::Array4< const amrex::Real > &u, const amrex::Array4< const amrex::Real > &v, const amrex::Array4< const amrex::Real > &cell_data, const amrex::Array4< const amrex::Real > &cell_prim, const amrex::Array4< amrex::Real > &cell_rhs, const amrex::Array4< amrex::Real > &xflux, const amrex::Array4< amrex::Real > &yflux, const amrex::Array4< amrex::Real > &zflux, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &cellSizeInv, const amrex::Array4< const amrex::Real > &SmnSmn_a, const amrex::Array4< const amrex::Real > &mf_m, const amrex::Array4< const amrex::Real > &mf_u, const amrex::Array4< const amrex::Real > &mf_v, amrex::Array4< amrex::Real > &hfx_z, amrex::Array4< amrex::Real > &qfx1_z, amrex::Array4< amrex::Real > &qfx2_z, amrex::Array4< amrex::Real > &diss, const amrex::Array4< const amrex::Real > &mu_turb, const DiffChoice &diffChoice, const TurbChoice &turbChoice, const amrex::Array4< const amrex::Real > &tm_arr, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > grav_gpu, const amrex::BCRec *bc_ptr, const bool use_most): Diffusion.H']]], + ['diffusionsrcforstate_5ft_2851',['DiffusionSrcForState_T',['../DiffusionSrcForState__T_8cpp.html#a83e088493f24d2c2cad02b63accde307',1,'DiffusionSrcForState_T(const Box &bx, const Box &domain, int start_comp, int num_comp, const bool &exp_most, const Array4< const Real > &u, const Array4< const Real > &v, const Array4< const Real > &cell_data, const Array4< const Real > &cell_prim, const Array4< Real > &cell_rhs, const Array4< Real > &xflux, const Array4< Real > &yflux, const Array4< Real > &zflux, const Array4< const Real > &z_nd, const Array4< const Real > &ax, const Array4< const Real > &ay, const Array4< const Real > &az, const Array4< const Real > &detJ, const GpuArray< Real, AMREX_SPACEDIM > &cellSizeInv, const Array4< const Real > &SmnSmn_a, const Array4< const Real > &mf_m, const Array4< const Real > &mf_u, const Array4< const Real > &mf_v, Array4< Real > &hfx_z, Array4< Real > &, Array4< Real > &, Array4< Real > &diss, const Array4< const Real > &mu_turb, const DiffChoice &diffChoice, const TurbChoice &turbChoice, const Array4< const Real > &tm_arr, const GpuArray< Real, AMREX_SPACEDIM > grav_gpu, const BCRec *bc_ptr, const bool use_most): DiffusionSrcForState_T.cpp'],['../Diffusion_8H.html#af76d7ad7f63df447e9220d8800da84f7',1,'DiffusionSrcForState_T(const amrex::Box &bx, const amrex::Box &domain, int start_comp, int num_comp, const bool &exp_most, const amrex::Array4< const amrex::Real > &u, const amrex::Array4< const amrex::Real > &v, const amrex::Array4< const amrex::Real > &cell_data, const amrex::Array4< const amrex::Real > &cell_prim, const amrex::Array4< amrex::Real > &cell_rhs, const amrex::Array4< amrex::Real > &xflux, const amrex::Array4< amrex::Real > &yflux, const amrex::Array4< amrex::Real > &zflux, const amrex::Array4< const amrex::Real > &z_nd, const amrex::Array4< const amrex::Real > &ax, const amrex::Array4< const amrex::Real > &ay, const amrex::Array4< const amrex::Real > &az, const amrex::Array4< const amrex::Real > &detJ, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxInv, const amrex::Array4< const amrex::Real > &SmnSmn_a, const amrex::Array4< const amrex::Real > &mf_m, const amrex::Array4< const amrex::Real > &mf_u, const amrex::Array4< const amrex::Real > &mf_v, amrex::Array4< amrex::Real > &hfx_z, amrex::Array4< amrex::Real > &qfx1_z, amrex::Array4< amrex::Real > &qfx2_z, amrex::Array4< amrex::Real > &diss, const amrex::Array4< const amrex::Real > &mu_turb, const DiffChoice &diffChoice, const TurbChoice &turbChoice, const amrex::Array4< const amrex::Real > &tm_arr, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > grav_gpu, const amrex::BCRec *bc_ptr, const bool use_most): Diffusion.H']]], + ['dim_2852',['dim',['../classncutils_1_1NCGroup.html#addc8bbac9a2cfa8d9c49497b7da0310f',1,'ncutils::NCGroup']]], + ['display_2853',['display',['../structTurbChoice.html#ad2a82c43ca82f364c70ae5e61f0cd84f',1,'TurbChoice::display()'],['../structSpongeChoice.html#a66fd55eceebbe3e97e31325cc55369de',1,'SpongeChoice::display()'],['../structDiffChoice.html#adc2925cf95fd6058bb83e1748fd1b765',1,'DiffChoice::display()'],['../structSolverChoice.html#a9d26abef2007eb7c93180b0a6699cf8e',1,'SolverChoice::display()'],['../structAdvChoice.html#a15e63c1b409b5e09359441b5b5d7d00c',1,'AdvChoice::display()']]], + ['donelan_5fflux_2854',['donelan_flux',['../structdonelan__flux.html#a804902863523b5f641c44aadc3602e97',1,'donelan_flux']]], + ['dx_2855',['dx',['../classPlaneAverage.html#abf7bfae5c1b6fed56ff09fd06368b12c',1,'PlaneAverage']]] ]; diff --git a/search/functions_4.js b/search/functions_4.js index 0ae7e98b54..a5378f1fce 100644 --- a/search/functions_4.js +++ b/search/functions_4.js @@ -1,56 +1,56 @@ var searchData= [ - ['ec_5fice_5foptics_5flw_2851',['ec_ice_optics_lw',['../classEbertCurry.html#ae258a04b9aaba9ca0052793a2d57f05e',1,'EbertCurry']]], - ['ec_5fice_5foptics_5fsw_2852',['ec_ice_optics_sw',['../classEbertCurry.html#aed435ba6c3e2c62f6ba2d8111c7c2f08',1,'EbertCurry']]], - ['efficientadvtype_2853',['EfficientAdvType',['../Advection_8H.html#aff14fe9e4f76b499843517b2c41c0fbb',1,'Advection.H']]], - ['enter_5fdef_5fmode_2854',['enter_def_mode',['../classncutils_1_1NCGroup.html#aef6b6e2be36e6179a001d9873e94df82',1,'ncutils::NCGroup']]], - ['erf_2855',['ERF',['../classERF.html#a30129012dd367825e5e4fd1406694f58',1,'ERF::ERF()'],['../classERF.html#a13fc8f3a00573ee7735c3228316164a9',1,'ERF::ERF(ERF &&) noexcept=delete'],['../classERF.html#af4f5db4e6643e9ebc8ffeebcbca3978a',1,'ERF::ERF(const ERF &other)=delete']]], - ['erf_5fderke_2856',['erf_derKE',['../namespacederived.html#aeaeabd5f649796984f61651a6733e96b',1,'derived::erf_derKE(const amrex::Box &bx, amrex::FArrayBox &derfab, int dcomp, int ncomp, const amrex::FArrayBox &datfab, const amrex::Geometry &geomdata, amrex::Real time, const int *bcrec, const int level)'],['../namespacederived.html#acc3f245c73a0826afc9e7626f12126d3',1,'derived::erf_derKE(const Box &bx, FArrayBox &derfab, int, int, const FArrayBox &datfab, const Geometry &, Real, const int *, const int)']]], - ['erf_5fdermagvel_2857',['erf_dermagvel',['../namespacederived.html#a5186c6ea33e82af321f529242a615dc2',1,'derived']]], - ['erf_5fdermoisttemp_2858',['erf_dermoisttemp',['../namespacederived.html#a7292c8c78a618eb0f6ca6a5356705362',1,'derived::erf_dermoisttemp(const amrex::Box &bx, amrex::FArrayBox &derfab, int dcomp, int ncomp, const amrex::FArrayBox &datfab, const amrex::Geometry &geomdata, amrex::Real time, const int *bcrec, const int level)'],['../namespacederived.html#add1791d7423c133ba6e7ab55975cf34f',1,'derived::erf_dermoisttemp(const Box &bx, FArrayBox &derfab, int, int, const FArrayBox &datfab, const Geometry &, Real, const int *, const int)']]], - ['erf_5fdernull_2859',['erf_dernull',['../namespacederived.html#a7fb98e12fceaa6f691dfef83db453757',1,'derived::erf_dernull(const Box &, FArrayBox &, int, int, const FArrayBox &, const Geometry &, Real, const int *, const int)'],['../namespacederived.html#a7128ad75cf0f6b317ae8689bd7eb1597',1,'derived::erf_dernull(const amrex::Box &bx, amrex::FArrayBox &derfab, int dcomp, int ncomp, const amrex::FArrayBox &datfab, const amrex::Geometry &geomdata, amrex::Real time, const int *bcrec, const int level)']]], - ['erf_5fderqke_2860',['erf_derQKE',['../namespacederived.html#ad3b06be920cca917ee17183db46d77ba',1,'derived::erf_derQKE(const Box &bx, FArrayBox &derfab, int, int, const FArrayBox &datfab, const Geometry &, Real, const int *, const int)'],['../namespacederived.html#a268588c6b7dfb634a44ff9b66e852807',1,'derived::erf_derQKE(const amrex::Box &bx, amrex::FArrayBox &derfab, int dcomp, int ncomp, const amrex::FArrayBox &datfab, const amrex::Geometry &geomdata, amrex::Real time, const int *bcrec, const int level)']]], - ['erf_5fderrhodivide_2861',['erf_derrhodivide',['../namespacederived.html#a9935603239fe8510b11179da8e76c39c',1,'derived::erf_derrhodivide(const amrex::Box &bx, amrex::FArrayBox &derfab, const amrex::FArrayBox &datfab, const int scalar_index)'],['../namespacederived.html#a3786c6a8399bc2508bc129337c446af1',1,'derived::erf_derrhodivide(const Box &bx, FArrayBox &derfab, const FArrayBox &datfab, const int scalar_index)']]], - ['erf_5fderscalar_2862',['erf_derscalar',['../namespacederived.html#a13666be87e55d1759f57322b33f7e495',1,'derived::erf_derscalar(const amrex::Box &bx, amrex::FArrayBox &derfab, int dcomp, int ncomp, const amrex::FArrayBox &datfab, const amrex::Geometry &geomdata, amrex::Real time, const int *bcrec, const int level)'],['../namespacederived.html#a37560f4d3e2c7c10f64d41db2ce76a06',1,'derived::erf_derscalar(const Box &bx, FArrayBox &derfab, int, int, const FArrayBox &datfab, const Geometry &, Real, const int *, const int)']]], - ['erf_5fdersoundspeed_2863',['erf_dersoundspeed',['../namespacederived.html#abec1266940e40d642fca2aa685b7f314',1,'derived::erf_dersoundspeed(const amrex::Box &bx, amrex::FArrayBox &derfab, int dcomp, int ncomp, const amrex::FArrayBox &datfab, const amrex::Geometry &geomdata, amrex::Real time, const int *bcrec, const int level)'],['../namespacederived.html#afe57e0f13e2e24c73d0ed373a9cd0d09',1,'derived::erf_dersoundspeed(const Box &bx, FArrayBox &derfab, int, int, const FArrayBox &datfab, const Geometry &, Real, const int *, const int)']]], - ['erf_5fdertemp_2864',['erf_dertemp',['../namespacederived.html#a37ac1508c4001f9f1e38ca507dd15f31',1,'derived::erf_dertemp(const amrex::Box &bx, amrex::FArrayBox &derfab, int dcomp, int ncomp, const amrex::FArrayBox &datfab, const amrex::Geometry &geomdata, amrex::Real time, const int *bcrec, const int level)'],['../namespacederived.html#a8d96f91847cec51636c122ab27a5f8a2',1,'derived::erf_dertemp(const Box &bx, FArrayBox &derfab, int, int, const FArrayBox &datfab, const Geometry &, Real, const int *, const int)']]], - ['erf_5fdertheta_2865',['erf_dertheta',['../namespacederived.html#af5e075e5b8b2e3964ae6af3f5f06f497',1,'derived::erf_dertheta(const amrex::Box &bx, amrex::FArrayBox &derfab, int dcomp, int ncomp, const amrex::FArrayBox &datfab, const amrex::Geometry &geomdata, amrex::Real time, const int *bcrec, const int level)'],['../namespacederived.html#adc3c787125484205e4fc7cd85c25ab6c',1,'derived::erf_dertheta(const Box &bx, FArrayBox &derfab, int, int, const FArrayBox &datfab, const Geometry &, Real, const int *, const int)']]], - ['erf_5fdervortx_2866',['erf_dervortx',['../namespacederived.html#a0a37dd4fa4a044e34891e6222d06654c',1,'derived']]], - ['erf_5fdervorty_2867',['erf_dervorty',['../namespacederived.html#a2a85aedf7c75ca416dbb931559c4b21e',1,'derived']]], - ['erf_5fdervortz_2868',['erf_dervortz',['../namespacederived.html#a8bc196f7dfb365c426b0b7e720e479e2',1,'derived']]], - ['erf_5fdtesati_2869',['erf_dtesati',['../Microphysics__Utils_8H.html#a45320981110c862bac93f657781eb79f',1,'Microphysics_Utils.H']]], - ['erf_5fdtesatw_2870',['erf_dtesatw',['../Microphysics__Utils_8H.html#a2e94fb836d3c733ebac8263bfa479ca8',1,'Microphysics_Utils.H']]], - ['erf_5fdtqsati_2871',['erf_dtqsati',['../Microphysics__Utils_8H.html#a7baba5d74922033bf93526933a0d77ec',1,'Microphysics_Utils.H']]], - ['erf_5fdtqsatw_2872',['erf_dtqsatw',['../Microphysics__Utils_8H.html#a41126403c4da6ee876e9e391f3f67699',1,'Microphysics_Utils.H']]], - ['erf_5fenforce_5fhse_2873',['erf_enforce_hse',['../classERF.html#add029fcf0244ea86d2e0b419a2c6ef52',1,'ERF']]], - ['erf_5fesati_2874',['erf_esati',['../Microphysics__Utils_8H.html#a4ea516e89f4e87b4ffc305504e8f0bf1',1,'Microphysics_Utils.H']]], - ['erf_5fesatw_2875',['erf_esatw',['../Microphysics__Utils_8H.html#a16a390366e7e68ca35fdac4cad824428',1,'Microphysics_Utils.H']]], - ['erf_5ffast_5frhs_5fmt_2876',['erf_fast_rhs_MT',['../ERF__fast__rhs__MT_8cpp.html#ab4d94ede74fb532475b186ed1cbbbfed',1,'erf_fast_rhs_MT(int step, int nrk, int level, int finest_level, Vector< MultiFab > &S_slow_rhs, const Vector< MultiFab > &S_prev, Vector< MultiFab > &S_stg_data, const MultiFab &S_stg_prim, const MultiFab &pi_stage, const MultiFab &fast_coeffs, Vector< MultiFab > &S_data, Vector< MultiFab > &S_scratch, const Geometry geom, const Real gravity, const bool use_lagged_delta_rt, MultiFab &Omega, std::unique_ptr< MultiFab > &z_t_rk, const MultiFab *z_t_pert, std::unique_ptr< MultiFab > &z_phys_nd_old, std::unique_ptr< MultiFab > &z_phys_nd_new, std::unique_ptr< MultiFab > &z_phys_nd_stg, std::unique_ptr< MultiFab > &detJ_cc_old, std::unique_ptr< MultiFab > &detJ_cc_new, std::unique_ptr< MultiFab > &detJ_cc_stg, const Real dtau, const Real beta_s, const Real facinv, std::unique_ptr< MultiFab > &mapfac_m, std::unique_ptr< MultiFab > &mapfac_u, std::unique_ptr< MultiFab > &mapfac_v, YAFluxRegister *fr_as_crse, YAFluxRegister *fr_as_fine, bool l_use_moisture, bool l_reflux): ERF_fast_rhs_MT.cpp'],['../TI__fast__headers_8H.html#abdacd58e8e0a4cb99d45bf970cfadfea',1,'erf_fast_rhs_MT(int step, int nrk, int level, int finest_level, amrex::Vector< amrex::MultiFab > &S_slow_rhs, const amrex::Vector< amrex::MultiFab > &S_prev, amrex::Vector< amrex::MultiFab > &S_stg_data, const amrex::MultiFab &S_stg_prim, const amrex::MultiFab &pi_stage, const amrex::MultiFab &fast_coeffs, amrex::Vector< amrex::MultiFab > &S_data, amrex::Vector< amrex::MultiFab > &S_scratch, const amrex::Geometry geom, const amrex::Real gravity, const bool use_lagged_delta_rt, amrex::MultiFab &Omega, std::unique_ptr< amrex::MultiFab > &z_t_rk, const amrex::MultiFab *z_t_pert, std::unique_ptr< amrex::MultiFab > &z_phys_nd_old, std::unique_ptr< amrex::MultiFab > &z_phys_nd_new, std::unique_ptr< amrex::MultiFab > &z_phys_nd_stg, std::unique_ptr< amrex::MultiFab > &detJ_cc_old, std::unique_ptr< amrex::MultiFab > &detJ_cc_new, std::unique_ptr< amrex::MultiFab > &detJ_cc_stg, const amrex::Real dtau, const amrex::Real beta_s, const amrex::Real facinv, std::unique_ptr< amrex::MultiFab > &mapfac_m, std::unique_ptr< amrex::MultiFab > &mapfac_u, std::unique_ptr< amrex::MultiFab > &mapfac_v, amrex::YAFluxRegister *fr_as_crse, amrex::YAFluxRegister *fr_as_fine, bool l_use_moisture, bool l_reflux): TI_fast_headers.H']]], - ['erf_5ffast_5frhs_5fn_2877',['erf_fast_rhs_N',['../TI__fast__headers_8H.html#a5f53a08aa97926523055fe74b41141ce',1,'erf_fast_rhs_N(int step, int nrk, int level, int finest_level, amrex::Vector< amrex::MultiFab > &S_slow_rhs, const amrex::Vector< amrex::MultiFab > &S_prev, amrex::Vector< amrex::MultiFab > &S_stage_data, const amrex::MultiFab &S_stage_prim, const amrex::MultiFab &pi_stage, const amrex::MultiFab &fast_coeffs, amrex::Vector< amrex::MultiFab > &S_data, amrex::Vector< amrex::MultiFab > &S_scratch, const amrex::Geometry geom, const amrex::Real gravity, const amrex::Real dtau, const amrex::Real beta_s, const amrex::Real facinv, std::unique_ptr< amrex::MultiFab > &mapfac_m, std::unique_ptr< amrex::MultiFab > &mapfac_u, std::unique_ptr< amrex::MultiFab > &mapfac_v, amrex::YAFluxRegister *fr_as_crse, amrex::YAFluxRegister *fr_as_fine, bool l_use_moisture, bool l_reflux): TI_fast_headers.H'],['../ERF__fast__rhs__N_8cpp.html#aec6e78f7c7efa8a0108529be2516cfcc',1,'erf_fast_rhs_N(int step, int nrk, int level, int finest_level, Vector< MultiFab > &S_slow_rhs, const Vector< MultiFab > &S_prev, Vector< MultiFab > &S_stage_data, const MultiFab &S_stage_prim, const MultiFab &pi_stage, const MultiFab &fast_coeffs, Vector< MultiFab > &S_data, Vector< MultiFab > &S_scratch, const Geometry geom, const Real gravity, const Real dtau, const Real beta_s, const Real facinv, std::unique_ptr< MultiFab > &mapfac_m, std::unique_ptr< MultiFab > &mapfac_u, std::unique_ptr< MultiFab > &mapfac_v, YAFluxRegister *fr_as_crse, YAFluxRegister *fr_as_fine, bool l_use_moisture, bool l_reflux): ERF_fast_rhs_N.cpp']]], - ['erf_5ffast_5frhs_5ft_2878',['erf_fast_rhs_T',['../ERF__fast__rhs__T_8cpp.html#ae4a7d29a6d504859aace287598d99eb1',1,'erf_fast_rhs_T(int step, int nrk, int level, int finest_level, Vector< MultiFab > &S_slow_rhs, const Vector< MultiFab > &S_prev, Vector< MultiFab > &S_stage_data, const MultiFab &S_stage_prim, const MultiFab &pi_stage, const MultiFab &fast_coeffs, Vector< MultiFab > &S_data, Vector< MultiFab > &S_scratch, const Geometry geom, const Real gravity, MultiFab &Omega, std::unique_ptr< MultiFab > &z_phys_nd, std::unique_ptr< MultiFab > &detJ_cc, const Real dtau, const Real beta_s, const Real facinv, std::unique_ptr< MultiFab > &mapfac_m, std::unique_ptr< MultiFab > &mapfac_u, std::unique_ptr< MultiFab > &mapfac_v, YAFluxRegister *fr_as_crse, YAFluxRegister *fr_as_fine, bool l_use_moisture, bool l_reflux): ERF_fast_rhs_T.cpp'],['../TI__fast__headers_8H.html#af993ea724f392520e7240055ecbe58bb',1,'erf_fast_rhs_T(int step, int nrk, int level, int finest_level, amrex::Vector< amrex::MultiFab > &S_slow_rhs, const amrex::Vector< amrex::MultiFab > &S_prev, amrex::Vector< amrex::MultiFab > &S_stage_data, const amrex::MultiFab &S_stage_prim, const amrex::MultiFab &pi_stage, const amrex::MultiFab &fast_coeffs, amrex::Vector< amrex::MultiFab > &S_data, amrex::Vector< amrex::MultiFab > &S_scratch, const amrex::Geometry geom, const amrex::Real gravity, amrex::MultiFab &Omega, std::unique_ptr< amrex::MultiFab > &z_phys_nd, std::unique_ptr< amrex::MultiFab > &detJ_cc, const amrex::Real dtau, const amrex::Real beta_s, const amrex::Real facinv, std::unique_ptr< amrex::MultiFab > &mapfac_m, std::unique_ptr< amrex::MultiFab > &mapfac_u, std::unique_ptr< amrex::MultiFab > &mapfac_v, amrex::YAFluxRegister *fr_as_crse, amrex::YAFluxRegister *fr_as_fine, bool l_use_moisture, bool l_reflux): TI_fast_headers.H']]], - ['erf_5fgammafff_2879',['erf_gammafff',['../Microphysics__Utils_8H.html#abd125e107924437493cbcbac9a97c017',1,'Microphysics_Utils.H']]], - ['erf_5finit_5fdens_5fhse_2880',['erf_init_dens_hse',['../classProblemBase.html#aef7d3d9788867d83e6ec8b2c9499de56',1,'ProblemBase::erf_init_dens_hse()'],['../init__density__hse__dry_8H.html#a2e1d042f9d82e4b78d00e99ab25e9311',1,'erf_init_dens_hse(amrex::MultiFab &rho_hse, std::unique_ptr< amrex::MultiFab > &z_phys_nd, std::unique_ptr< amrex::MultiFab > &z_phys_cc, amrex::Geometry const &geom) override: init_density_hse_dry.H'],['../init__constant__density__hse_8H.html#aa310c5ff8cdad11f3adfeeff0f5ad046',1,'erf_init_dens_hse(amrex::MultiFab &rho_hse, std::unique_ptr< amrex::MultiFab > &, std::unique_ptr< amrex::MultiFab > &, amrex::Geometry const &) override: init_constant_density_hse.H']]], - ['erf_5finit_5fdens_5fhse_5fmoist_2881',['erf_init_dens_hse_moist',['../classProblemBase.html#ad1a7277d332001542789e488458096b9',1,'ProblemBase']]], - ['erf_5finit_5frayleigh_2882',['erf_init_rayleigh',['../init__rayleigh__damping_8H.html#a3e175bfe4dac6bfbd6e929f9c5d75fda',1,'erf_init_rayleigh(): init_rayleigh_damping.H'],['../classProblemBase.html#ae29f0d7569a8538739692f98e6194286',1,'ProblemBase::erf_init_rayleigh()']]], - ['erf_5fmake_5ftau_5fterms_2883',['erf_make_tau_terms',['../ERF__make__tau__terms_8cpp.html#aeb0929ca1a4b2e5eb9719d51a5c18ab0',1,'erf_make_tau_terms(int level, int nrk, const Vector< BCRec > &domain_bcs_type_h, std::unique_ptr< MultiFab > &z_phys_nd, Vector< MultiFab > &S_data, const MultiFab &xvel, const MultiFab &yvel, const MultiFab &zvel, MultiFab &Omega, MultiFab *Tau11, MultiFab *Tau22, MultiFab *Tau33, MultiFab *Tau12, MultiFab *Tau13, MultiFab *Tau21, MultiFab *Tau23, MultiFab *Tau31, MultiFab *Tau32, MultiFab *SmnSmn, MultiFab *eddyDiffs, const Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< ABLMost > &most, std::unique_ptr< MultiFab > &detJ, std::unique_ptr< MultiFab > &mapfac_m, std::unique_ptr< MultiFab > &mapfac_u, std::unique_ptr< MultiFab > &mapfac_v): ERF_make_tau_terms.cpp'],['../TI__slow__headers_8H.html#ad74a233fd3d7215b3c204ec66109e977',1,'erf_make_tau_terms(int level, int nrk, const amrex::Vector< amrex::BCRec > &domain_bcs_type, std::unique_ptr< amrex::MultiFab > &z_phys_nd, amrex::Vector< amrex::MultiFab > &S_data, const amrex::MultiFab &xvel, const amrex::MultiFab &yvel, const amrex::MultiFab &zvel, amrex::MultiFab &Omega, amrex::MultiFab *Tau11, amrex::MultiFab *Tau22, amrex::MultiFab *Tau33, amrex::MultiFab *Tau12, amrex::MultiFab *Tau13, amrex::MultiFab *Tau21, amrex::MultiFab *Tau23, amrex::MultiFab *Tau31, amrex::MultiFab *Tau32, amrex::MultiFab *SmnSmn, amrex::MultiFab *eddyDiffs, const amrex::Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< ABLMost > &most, std::unique_ptr< amrex::MultiFab > &dJ, std::unique_ptr< amrex::MultiFab > &mapfac_m, std::unique_ptr< amrex::MultiFab > &mapfac_u, std::unique_ptr< amrex::MultiFab > &mapfac_v): TI_slow_headers.H']]], - ['erf_5fqsati_2884',['erf_qsati',['../Microphysics__Utils_8H.html#ac39ef2a869ef543f708d5ed7da4754d3',1,'Microphysics_Utils.H']]], - ['erf_5fqsatw_2885',['erf_qsatw',['../Microphysics__Utils_8H.html#a8e4b0c6ed8b95c2040dc0c9e8fcb8615',1,'Microphysics_Utils.H']]], - ['erf_5fslow_5frhs_5fpost_2886',['erf_slow_rhs_post',['../ERF__slow__rhs__post_8cpp.html#aac3319866aabf87a68fb81ce2f04a1ff',1,'erf_slow_rhs_post(int level, int finest_level, int nrk, Real dt, Vector< MultiFab > &S_rhs, Vector< MultiFab > &S_old, Vector< MultiFab > &S_new, Vector< MultiFab > &S_data, const MultiFab &S_prim, Vector< MultiFab > &S_scratch, const MultiFab &xvel, const MultiFab &yvel, const MultiFab &, const MultiFab &source, const MultiFab *SmnSmn, const MultiFab *eddyDiffs, MultiFab *Hfx3, MultiFab *Q1fx3, MultiFab *Q2fx3, MultiFab *Diss, const Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< ABLMost > &most, const Gpu::DeviceVector< BCRec > &domain_bcs_type_d, const Vector< BCRec > &domain_bcs_type_h, std::unique_ptr< MultiFab > &z_phys_nd, std::unique_ptr< MultiFab > &ax, std::unique_ptr< MultiFab > &ay, std::unique_ptr< MultiFab > &az, std::unique_ptr< MultiFab > &detJ, std::unique_ptr< MultiFab > &detJ_new, std::unique_ptr< MultiFab > &mapfac_m, std::unique_ptr< MultiFab > &mapfac_u, std::unique_ptr< MultiFab > &mapfac_v, YAFluxRegister *fr_as_crse, YAFluxRegister *fr_as_fine): ERF_slow_rhs_post.cpp'],['../TI__slow__headers_8H.html#adcc4119e9ba991c0074a59ea914a9996',1,'erf_slow_rhs_post(int level, int finest_level, int nrk, amrex::Real dt, amrex::Vector< amrex::MultiFab > &S_rhs, amrex::Vector< amrex::MultiFab > &S_old, amrex::Vector< amrex::MultiFab > &S_new, amrex::Vector< amrex::MultiFab > &S_data, const amrex::MultiFab &S_prim, amrex::Vector< amrex::MultiFab > &S_scratch, const amrex::MultiFab &xvel, const amrex::MultiFab &yvel, const amrex::MultiFab &zvel, const amrex::MultiFab &source, const amrex::MultiFab *SmnSmn, const amrex::MultiFab *eddyDiffs, amrex::MultiFab *Hfx3, amrex::MultiFab *Q1fx3, amrex::MultiFab *Q2fx3, amrex::MultiFab *Diss, const amrex::Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< ABLMost > &most, const amrex::Gpu::DeviceVector< amrex::BCRec > &domain_bcs_type_d, const amrex::Vector< amrex::BCRec > &domain_bcs_type, std::unique_ptr< amrex::MultiFab > &z_phys_nd, std::unique_ptr< amrex::MultiFab > &ax, std::unique_ptr< amrex::MultiFab > &ay, std::unique_ptr< amrex::MultiFab > &az, std::unique_ptr< amrex::MultiFab > &dJ_old, std::unique_ptr< amrex::MultiFab > &dJ_new, std::unique_ptr< amrex::MultiFab > &mapfac_m, std::unique_ptr< amrex::MultiFab > &mapfac_u, std::unique_ptr< amrex::MultiFab > &mapfac_v, amrex::YAFluxRegister *fr_as_crse, amrex::YAFluxRegister *fr_as_fine): TI_slow_headers.H']]], - ['erf_5fslow_5frhs_5fpre_2887',['erf_slow_rhs_pre',['../ERF__slow__rhs__pre_8cpp.html#ad018745b333f31583ebb5940d370ea6b',1,'erf_slow_rhs_pre(int level, int finest_level, int nrk, Real dt, Vector< MultiFab > &S_rhs, Vector< MultiFab > &S_old, Vector< MultiFab > &S_data, const MultiFab &S_prim, Vector< MultiFab > &S_scratch, const MultiFab &xvel, const MultiFab &yvel, const MultiFab &zvel, std::unique_ptr< MultiFab > &z_t_mf, MultiFab &Omega, const MultiFab &cc_src, const MultiFab &xmom_src, const MultiFab &ymom_src, const MultiFab &zmom_src, MultiFab *Tau11, MultiFab *Tau22, MultiFab *Tau33, MultiFab *Tau12, MultiFab *Tau13, MultiFab *Tau21, MultiFab *Tau23, MultiFab *Tau31, MultiFab *Tau32, MultiFab *SmnSmn, MultiFab *eddyDiffs, MultiFab *Hfx3, MultiFab *Q1fx3, MultiFab *Q2fx3, MultiFab *Diss, const Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< ABLMost > &most, const Gpu::DeviceVector< BCRec > &domain_bcs_type_d, const Vector< BCRec > &domain_bcs_type_h, std::unique_ptr< MultiFab > &z_phys_nd, std::unique_ptr< MultiFab > &ax, std::unique_ptr< MultiFab > &ay, std::unique_ptr< MultiFab > &az, std::unique_ptr< MultiFab > &detJ, const MultiFab *p0, std::unique_ptr< MultiFab > &mapfac_m, std::unique_ptr< MultiFab > &mapfac_u, std::unique_ptr< MultiFab > &mapfac_v, YAFluxRegister *fr_as_crse, YAFluxRegister *fr_as_fine): ERF_slow_rhs_pre.cpp'],['../TI__slow__headers_8H.html#ae97ca7001946dab01dba29e1eaa9a448',1,'erf_slow_rhs_pre(int level, int finest_level, int nrk, amrex::Real dt, amrex::Vector< amrex::MultiFab > &S_rhs, amrex::Vector< amrex::MultiFab > &S_old, amrex::Vector< amrex::MultiFab > &S_data, const amrex::MultiFab &S_prim, amrex::Vector< amrex::MultiFab > &S_scratch, const amrex::MultiFab &xvel, const amrex::MultiFab &yvel, const amrex::MultiFab &zvel, std::unique_ptr< amrex::MultiFab > &z_t, amrex::MultiFab &Omega, const amrex::MultiFab &cc_src, const amrex::MultiFab &xmom_src, const amrex::MultiFab &ymom_src, const amrex::MultiFab &zmom_src, amrex::MultiFab *Tau11, amrex::MultiFab *Tau22, amrex::MultiFab *Tau33, amrex::MultiFab *Tau12, amrex::MultiFab *Tau13, amrex::MultiFab *Tau21, amrex::MultiFab *Tau23, amrex::MultiFab *Tau31, amrex::MultiFab *Tau32, amrex::MultiFab *SmnSmn, amrex::MultiFab *eddyDiffs, amrex::MultiFab *Hfx3, amrex::MultiFab *Q1fx3, amrex::MultiFab *Q2fx3, amrex::MultiFab *Diss, const amrex::Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< ABLMost > &most, const amrex::Gpu::DeviceVector< amrex::BCRec > &domain_bcs_type_d, const amrex::Vector< amrex::BCRec > &domain_bcs_type, std::unique_ptr< amrex::MultiFab > &z_phys_nd, std::unique_ptr< amrex::MultiFab > &ax, std::unique_ptr< amrex::MultiFab > &ay, std::unique_ptr< amrex::MultiFab > &az, std::unique_ptr< amrex::MultiFab > &dJ, const amrex::MultiFab *p0, std::unique_ptr< amrex::MultiFab > &mapfac_m, std::unique_ptr< amrex::MultiFab > &mapfac_u, std::unique_ptr< amrex::MultiFab > &mapfac_v, amrex::YAFluxRegister *fr_as_crse, amrex::YAFluxRegister *fr_as_fine): TI_slow_headers.H']]], - ['erffillpatcher_2888',['ERFFillPatcher',['../classERFFillPatcher.html#a4236a9ab8003847e327495ff170a9a7a',1,'ERFFillPatcher']]], - ['erfphysbcfunct_5fcons_2889',['ERFPhysBCFunct_cons',['../classERFPhysBCFunct__cons.html#a12eafafca9393d7099b88368845a9cf7',1,'ERFPhysBCFunct_cons']]], - ['erfphysbcfunct_5fu_2890',['ERFPhysBCFunct_u',['../classERFPhysBCFunct__u.html#a17013b7ca9ae16f9f0f41783ed6c7f94',1,'ERFPhysBCFunct_u']]], - ['erfphysbcfunct_5fv_2891',['ERFPhysBCFunct_v',['../classERFPhysBCFunct__v.html#a0f49b867bd8b6ed700f545dd3f023b95',1,'ERFPhysBCFunct_v']]], - ['erfphysbcfunct_5fw_2892',['ERFPhysBCFunct_w',['../classERFPhysBCFunct__w.html#a7377738d5511aaf90cbd3615f9485a73',1,'ERFPhysBCFunct_w']]], - ['erfphysbcfunct_5fw_5fno_5fterrain_2893',['ERFPhysBCFunct_w_no_terrain',['../classERFPhysBCFunct__w__no__terrain.html#a349901fd3b5c9c03f6b318a2d6a4c41b',1,'ERFPhysBCFunct_w_no_terrain']]], - ['errorest_2894',['ErrorEst',['../classERF.html#a18e6dbbf968b4492e78aa427791620f4',1,'ERF']]], - ['esttimestep_2895',['estTimeStep',['../classERF.html#a6b1d727e63de2e49aa4f8e00b0dda1d5',1,'ERF']]], - ['eulerianmicrophysics_2896',['EulerianMicrophysics',['../classEulerianMicrophysics.html#af78c2f059431d49deec9f570ada4daaa',1,'EulerianMicrophysics::EulerianMicrophysics()'],['../classEulerianMicrophysics.html#a26a985c76efcd1dd68b5c853bbd264f6',1,'EulerianMicrophysics::EulerianMicrophysics(const int &nlev, const MoistureType &a_model_type)']]], - ['evaluate_2897',['Evaluate',['../structWENO__Z5.html#a06568f71bdf16e718756dcd66a26fd97',1,'WENO_Z5::Evaluate()'],['../structWENO__MZQ3.html#a8dcc9655166c1217b7056f244d4cfde2',1,'WENO_MZQ3::Evaluate()'],['../structWENO__Z3.html#aa6c2eefc18b5f0365c0357ee4f066080',1,'WENO_Z3::Evaluate()'],['../structWENO5.html#ae77d5f8032cf91c84551f51170ec9111',1,'WENO5::Evaluate()'],['../structWENO3.html#a6a48e6b00e04466ca779a2b3ee62770b',1,'WENO3::Evaluate()'],['../structUPWINDALL.html#a781c3531bb77c6282c88c9cc3d64c722',1,'UPWINDALL::Evaluate()'],['../structCENTERED6.html#aacd79f8ed62a166d5f4d44a20d09fc13',1,'CENTERED6::Evaluate()'],['../structUPWIND5.html#a267b7805b0761e01b0532a986307b79d',1,'UPWIND5::Evaluate()'],['../structCENTERED4.html#ae67620f7c851fbadb31ff439601ac7fe',1,'CENTERED4::Evaluate()'],['../structUPWIND3.html#a247a547b52d1bf118e8a9cb44d46b744',1,'UPWIND3::Evaluate()'],['../structCENTERED2.html#a1f9232868e37a452630ccfa8ec34be91',1,'CENTERED2::Evaluate()']]], - ['evolve_2898',['Evolve',['../classERF.html#a0be12798b46f52fa4b5a995f147c3f96',1,'ERF']]], - ['ewp_2899',['EWP',['../classEWP.html#a4c32d700e8ba91dfbc07c332ad91ca71',1,'EWP']]], - ['exit_5fdef_5fmode_2900',['exit_def_mode',['../classncutils_1_1NCGroup.html#a3a4ebd106195be96fb41bb3bfde83143',1,'ncutils::NCGroup']]], - ['exp_5finterpol_2901',['exp_interpol',['../classPhysProp.html#a9bc40a34bf3b039dd0d8ad87678e23d1',1,'PhysProp']]], - ['expand_5fday_5ffluxes_2902',['expand_day_fluxes',['../namespaceinternal.html#a154efe747ea48707745d01843ac5eb71',1,'internal']]], - ['export_5fsurface_5ffluxes_2903',['export_surface_fluxes',['../classRadiation.html#a2115945b42eb2b2c6844049b2edc74ca',1,'Radiation']]] + ['ec_5fice_5foptics_5flw_2856',['ec_ice_optics_lw',['../classEbertCurry.html#ae258a04b9aaba9ca0052793a2d57f05e',1,'EbertCurry']]], + ['ec_5fice_5foptics_5fsw_2857',['ec_ice_optics_sw',['../classEbertCurry.html#aed435ba6c3e2c62f6ba2d8111c7c2f08',1,'EbertCurry']]], + ['efficientadvtype_2858',['EfficientAdvType',['../Advection_8H.html#aff14fe9e4f76b499843517b2c41c0fbb',1,'Advection.H']]], + ['enter_5fdef_5fmode_2859',['enter_def_mode',['../classncutils_1_1NCGroup.html#aef6b6e2be36e6179a001d9873e94df82',1,'ncutils::NCGroup']]], + ['erf_2860',['ERF',['../classERF.html#a30129012dd367825e5e4fd1406694f58',1,'ERF::ERF()'],['../classERF.html#a13fc8f3a00573ee7735c3228316164a9',1,'ERF::ERF(ERF &&) noexcept=delete'],['../classERF.html#af4f5db4e6643e9ebc8ffeebcbca3978a',1,'ERF::ERF(const ERF &other)=delete']]], + ['erf_5fderke_2861',['erf_derKE',['../namespacederived.html#aeaeabd5f649796984f61651a6733e96b',1,'derived::erf_derKE(const amrex::Box &bx, amrex::FArrayBox &derfab, int dcomp, int ncomp, const amrex::FArrayBox &datfab, const amrex::Geometry &geomdata, amrex::Real time, const int *bcrec, const int level)'],['../namespacederived.html#acc3f245c73a0826afc9e7626f12126d3',1,'derived::erf_derKE(const Box &bx, FArrayBox &derfab, int, int, const FArrayBox &datfab, const Geometry &, Real, const int *, const int)']]], + ['erf_5fdermagvel_2862',['erf_dermagvel',['../namespacederived.html#a5186c6ea33e82af321f529242a615dc2',1,'derived']]], + ['erf_5fdermoisttemp_2863',['erf_dermoisttemp',['../namespacederived.html#a7292c8c78a618eb0f6ca6a5356705362',1,'derived::erf_dermoisttemp(const amrex::Box &bx, amrex::FArrayBox &derfab, int dcomp, int ncomp, const amrex::FArrayBox &datfab, const amrex::Geometry &geomdata, amrex::Real time, const int *bcrec, const int level)'],['../namespacederived.html#add1791d7423c133ba6e7ab55975cf34f',1,'derived::erf_dermoisttemp(const Box &bx, FArrayBox &derfab, int, int, const FArrayBox &datfab, const Geometry &, Real, const int *, const int)']]], + ['erf_5fdernull_2864',['erf_dernull',['../namespacederived.html#a7fb98e12fceaa6f691dfef83db453757',1,'derived::erf_dernull(const Box &, FArrayBox &, int, int, const FArrayBox &, const Geometry &, Real, const int *, const int)'],['../namespacederived.html#a7128ad75cf0f6b317ae8689bd7eb1597',1,'derived::erf_dernull(const amrex::Box &bx, amrex::FArrayBox &derfab, int dcomp, int ncomp, const amrex::FArrayBox &datfab, const amrex::Geometry &geomdata, amrex::Real time, const int *bcrec, const int level)']]], + ['erf_5fderqke_2865',['erf_derQKE',['../namespacederived.html#ad3b06be920cca917ee17183db46d77ba',1,'derived::erf_derQKE(const Box &bx, FArrayBox &derfab, int, int, const FArrayBox &datfab, const Geometry &, Real, const int *, const int)'],['../namespacederived.html#a268588c6b7dfb634a44ff9b66e852807',1,'derived::erf_derQKE(const amrex::Box &bx, amrex::FArrayBox &derfab, int dcomp, int ncomp, const amrex::FArrayBox &datfab, const amrex::Geometry &geomdata, amrex::Real time, const int *bcrec, const int level)']]], + ['erf_5fderrhodivide_2866',['erf_derrhodivide',['../namespacederived.html#a9935603239fe8510b11179da8e76c39c',1,'derived::erf_derrhodivide(const amrex::Box &bx, amrex::FArrayBox &derfab, const amrex::FArrayBox &datfab, const int scalar_index)'],['../namespacederived.html#a3786c6a8399bc2508bc129337c446af1',1,'derived::erf_derrhodivide(const Box &bx, FArrayBox &derfab, const FArrayBox &datfab, const int scalar_index)']]], + ['erf_5fderscalar_2867',['erf_derscalar',['../namespacederived.html#a13666be87e55d1759f57322b33f7e495',1,'derived::erf_derscalar(const amrex::Box &bx, amrex::FArrayBox &derfab, int dcomp, int ncomp, const amrex::FArrayBox &datfab, const amrex::Geometry &geomdata, amrex::Real time, const int *bcrec, const int level)'],['../namespacederived.html#a37560f4d3e2c7c10f64d41db2ce76a06',1,'derived::erf_derscalar(const Box &bx, FArrayBox &derfab, int, int, const FArrayBox &datfab, const Geometry &, Real, const int *, const int)']]], + ['erf_5fdersoundspeed_2868',['erf_dersoundspeed',['../namespacederived.html#abec1266940e40d642fca2aa685b7f314',1,'derived::erf_dersoundspeed(const amrex::Box &bx, amrex::FArrayBox &derfab, int dcomp, int ncomp, const amrex::FArrayBox &datfab, const amrex::Geometry &geomdata, amrex::Real time, const int *bcrec, const int level)'],['../namespacederived.html#afe57e0f13e2e24c73d0ed373a9cd0d09',1,'derived::erf_dersoundspeed(const Box &bx, FArrayBox &derfab, int, int, const FArrayBox &datfab, const Geometry &, Real, const int *, const int)']]], + ['erf_5fdertemp_2869',['erf_dertemp',['../namespacederived.html#a37ac1508c4001f9f1e38ca507dd15f31',1,'derived::erf_dertemp(const amrex::Box &bx, amrex::FArrayBox &derfab, int dcomp, int ncomp, const amrex::FArrayBox &datfab, const amrex::Geometry &geomdata, amrex::Real time, const int *bcrec, const int level)'],['../namespacederived.html#a8d96f91847cec51636c122ab27a5f8a2',1,'derived::erf_dertemp(const Box &bx, FArrayBox &derfab, int, int, const FArrayBox &datfab, const Geometry &, Real, const int *, const int)']]], + ['erf_5fdertheta_2870',['erf_dertheta',['../namespacederived.html#af5e075e5b8b2e3964ae6af3f5f06f497',1,'derived::erf_dertheta(const amrex::Box &bx, amrex::FArrayBox &derfab, int dcomp, int ncomp, const amrex::FArrayBox &datfab, const amrex::Geometry &geomdata, amrex::Real time, const int *bcrec, const int level)'],['../namespacederived.html#adc3c787125484205e4fc7cd85c25ab6c',1,'derived::erf_dertheta(const Box &bx, FArrayBox &derfab, int, int, const FArrayBox &datfab, const Geometry &, Real, const int *, const int)']]], + ['erf_5fdervortx_2871',['erf_dervortx',['../namespacederived.html#a0a37dd4fa4a044e34891e6222d06654c',1,'derived']]], + ['erf_5fdervorty_2872',['erf_dervorty',['../namespacederived.html#a2a85aedf7c75ca416dbb931559c4b21e',1,'derived']]], + ['erf_5fdervortz_2873',['erf_dervortz',['../namespacederived.html#a8bc196f7dfb365c426b0b7e720e479e2',1,'derived']]], + ['erf_5fdtesati_2874',['erf_dtesati',['../Microphysics__Utils_8H.html#a45320981110c862bac93f657781eb79f',1,'Microphysics_Utils.H']]], + ['erf_5fdtesatw_2875',['erf_dtesatw',['../Microphysics__Utils_8H.html#a2e94fb836d3c733ebac8263bfa479ca8',1,'Microphysics_Utils.H']]], + ['erf_5fdtqsati_2876',['erf_dtqsati',['../Microphysics__Utils_8H.html#a7baba5d74922033bf93526933a0d77ec',1,'Microphysics_Utils.H']]], + ['erf_5fdtqsatw_2877',['erf_dtqsatw',['../Microphysics__Utils_8H.html#a41126403c4da6ee876e9e391f3f67699',1,'Microphysics_Utils.H']]], + ['erf_5fenforce_5fhse_2878',['erf_enforce_hse',['../classERF.html#add029fcf0244ea86d2e0b419a2c6ef52',1,'ERF']]], + ['erf_5fesati_2879',['erf_esati',['../Microphysics__Utils_8H.html#a4ea516e89f4e87b4ffc305504e8f0bf1',1,'Microphysics_Utils.H']]], + ['erf_5fesatw_2880',['erf_esatw',['../Microphysics__Utils_8H.html#a16a390366e7e68ca35fdac4cad824428',1,'Microphysics_Utils.H']]], + ['erf_5ffast_5frhs_5fmt_2881',['erf_fast_rhs_MT',['../ERF__fast__rhs__MT_8cpp.html#ab4d94ede74fb532475b186ed1cbbbfed',1,'erf_fast_rhs_MT(int step, int nrk, int level, int finest_level, Vector< MultiFab > &S_slow_rhs, const Vector< MultiFab > &S_prev, Vector< MultiFab > &S_stg_data, const MultiFab &S_stg_prim, const MultiFab &pi_stage, const MultiFab &fast_coeffs, Vector< MultiFab > &S_data, Vector< MultiFab > &S_scratch, const Geometry geom, const Real gravity, const bool use_lagged_delta_rt, MultiFab &Omega, std::unique_ptr< MultiFab > &z_t_rk, const MultiFab *z_t_pert, std::unique_ptr< MultiFab > &z_phys_nd_old, std::unique_ptr< MultiFab > &z_phys_nd_new, std::unique_ptr< MultiFab > &z_phys_nd_stg, std::unique_ptr< MultiFab > &detJ_cc_old, std::unique_ptr< MultiFab > &detJ_cc_new, std::unique_ptr< MultiFab > &detJ_cc_stg, const Real dtau, const Real beta_s, const Real facinv, std::unique_ptr< MultiFab > &mapfac_m, std::unique_ptr< MultiFab > &mapfac_u, std::unique_ptr< MultiFab > &mapfac_v, YAFluxRegister *fr_as_crse, YAFluxRegister *fr_as_fine, bool l_use_moisture, bool l_reflux): ERF_fast_rhs_MT.cpp'],['../TI__fast__headers_8H.html#abdacd58e8e0a4cb99d45bf970cfadfea',1,'erf_fast_rhs_MT(int step, int nrk, int level, int finest_level, amrex::Vector< amrex::MultiFab > &S_slow_rhs, const amrex::Vector< amrex::MultiFab > &S_prev, amrex::Vector< amrex::MultiFab > &S_stg_data, const amrex::MultiFab &S_stg_prim, const amrex::MultiFab &pi_stage, const amrex::MultiFab &fast_coeffs, amrex::Vector< amrex::MultiFab > &S_data, amrex::Vector< amrex::MultiFab > &S_scratch, const amrex::Geometry geom, const amrex::Real gravity, const bool use_lagged_delta_rt, amrex::MultiFab &Omega, std::unique_ptr< amrex::MultiFab > &z_t_rk, const amrex::MultiFab *z_t_pert, std::unique_ptr< amrex::MultiFab > &z_phys_nd_old, std::unique_ptr< amrex::MultiFab > &z_phys_nd_new, std::unique_ptr< amrex::MultiFab > &z_phys_nd_stg, std::unique_ptr< amrex::MultiFab > &detJ_cc_old, std::unique_ptr< amrex::MultiFab > &detJ_cc_new, std::unique_ptr< amrex::MultiFab > &detJ_cc_stg, const amrex::Real dtau, const amrex::Real beta_s, const amrex::Real facinv, std::unique_ptr< amrex::MultiFab > &mapfac_m, std::unique_ptr< amrex::MultiFab > &mapfac_u, std::unique_ptr< amrex::MultiFab > &mapfac_v, amrex::YAFluxRegister *fr_as_crse, amrex::YAFluxRegister *fr_as_fine, bool l_use_moisture, bool l_reflux): TI_fast_headers.H']]], + ['erf_5ffast_5frhs_5fn_2882',['erf_fast_rhs_N',['../TI__fast__headers_8H.html#a5f53a08aa97926523055fe74b41141ce',1,'erf_fast_rhs_N(int step, int nrk, int level, int finest_level, amrex::Vector< amrex::MultiFab > &S_slow_rhs, const amrex::Vector< amrex::MultiFab > &S_prev, amrex::Vector< amrex::MultiFab > &S_stage_data, const amrex::MultiFab &S_stage_prim, const amrex::MultiFab &pi_stage, const amrex::MultiFab &fast_coeffs, amrex::Vector< amrex::MultiFab > &S_data, amrex::Vector< amrex::MultiFab > &S_scratch, const amrex::Geometry geom, const amrex::Real gravity, const amrex::Real dtau, const amrex::Real beta_s, const amrex::Real facinv, std::unique_ptr< amrex::MultiFab > &mapfac_m, std::unique_ptr< amrex::MultiFab > &mapfac_u, std::unique_ptr< amrex::MultiFab > &mapfac_v, amrex::YAFluxRegister *fr_as_crse, amrex::YAFluxRegister *fr_as_fine, bool l_use_moisture, bool l_reflux): TI_fast_headers.H'],['../ERF__fast__rhs__N_8cpp.html#aec6e78f7c7efa8a0108529be2516cfcc',1,'erf_fast_rhs_N(int step, int nrk, int level, int finest_level, Vector< MultiFab > &S_slow_rhs, const Vector< MultiFab > &S_prev, Vector< MultiFab > &S_stage_data, const MultiFab &S_stage_prim, const MultiFab &pi_stage, const MultiFab &fast_coeffs, Vector< MultiFab > &S_data, Vector< MultiFab > &S_scratch, const Geometry geom, const Real gravity, const Real dtau, const Real beta_s, const Real facinv, std::unique_ptr< MultiFab > &mapfac_m, std::unique_ptr< MultiFab > &mapfac_u, std::unique_ptr< MultiFab > &mapfac_v, YAFluxRegister *fr_as_crse, YAFluxRegister *fr_as_fine, bool l_use_moisture, bool l_reflux): ERF_fast_rhs_N.cpp']]], + ['erf_5ffast_5frhs_5ft_2883',['erf_fast_rhs_T',['../ERF__fast__rhs__T_8cpp.html#ae4a7d29a6d504859aace287598d99eb1',1,'erf_fast_rhs_T(int step, int nrk, int level, int finest_level, Vector< MultiFab > &S_slow_rhs, const Vector< MultiFab > &S_prev, Vector< MultiFab > &S_stage_data, const MultiFab &S_stage_prim, const MultiFab &pi_stage, const MultiFab &fast_coeffs, Vector< MultiFab > &S_data, Vector< MultiFab > &S_scratch, const Geometry geom, const Real gravity, MultiFab &Omega, std::unique_ptr< MultiFab > &z_phys_nd, std::unique_ptr< MultiFab > &detJ_cc, const Real dtau, const Real beta_s, const Real facinv, std::unique_ptr< MultiFab > &mapfac_m, std::unique_ptr< MultiFab > &mapfac_u, std::unique_ptr< MultiFab > &mapfac_v, YAFluxRegister *fr_as_crse, YAFluxRegister *fr_as_fine, bool l_use_moisture, bool l_reflux): ERF_fast_rhs_T.cpp'],['../TI__fast__headers_8H.html#af993ea724f392520e7240055ecbe58bb',1,'erf_fast_rhs_T(int step, int nrk, int level, int finest_level, amrex::Vector< amrex::MultiFab > &S_slow_rhs, const amrex::Vector< amrex::MultiFab > &S_prev, amrex::Vector< amrex::MultiFab > &S_stage_data, const amrex::MultiFab &S_stage_prim, const amrex::MultiFab &pi_stage, const amrex::MultiFab &fast_coeffs, amrex::Vector< amrex::MultiFab > &S_data, amrex::Vector< amrex::MultiFab > &S_scratch, const amrex::Geometry geom, const amrex::Real gravity, amrex::MultiFab &Omega, std::unique_ptr< amrex::MultiFab > &z_phys_nd, std::unique_ptr< amrex::MultiFab > &detJ_cc, const amrex::Real dtau, const amrex::Real beta_s, const amrex::Real facinv, std::unique_ptr< amrex::MultiFab > &mapfac_m, std::unique_ptr< amrex::MultiFab > &mapfac_u, std::unique_ptr< amrex::MultiFab > &mapfac_v, amrex::YAFluxRegister *fr_as_crse, amrex::YAFluxRegister *fr_as_fine, bool l_use_moisture, bool l_reflux): TI_fast_headers.H']]], + ['erf_5fgammafff_2884',['erf_gammafff',['../Microphysics__Utils_8H.html#abd125e107924437493cbcbac9a97c017',1,'Microphysics_Utils.H']]], + ['erf_5finit_5fdens_5fhse_2885',['erf_init_dens_hse',['../classProblemBase.html#aef7d3d9788867d83e6ec8b2c9499de56',1,'ProblemBase::erf_init_dens_hse()'],['../init__density__hse__dry_8H.html#a2e1d042f9d82e4b78d00e99ab25e9311',1,'erf_init_dens_hse(amrex::MultiFab &rho_hse, std::unique_ptr< amrex::MultiFab > &z_phys_nd, std::unique_ptr< amrex::MultiFab > &z_phys_cc, amrex::Geometry const &geom) override: init_density_hse_dry.H'],['../init__constant__density__hse_8H.html#aa310c5ff8cdad11f3adfeeff0f5ad046',1,'erf_init_dens_hse(amrex::MultiFab &rho_hse, std::unique_ptr< amrex::MultiFab > &, std::unique_ptr< amrex::MultiFab > &, amrex::Geometry const &) override: init_constant_density_hse.H']]], + ['erf_5finit_5fdens_5fhse_5fmoist_2886',['erf_init_dens_hse_moist',['../classProblemBase.html#ad1a7277d332001542789e488458096b9',1,'ProblemBase']]], + ['erf_5finit_5frayleigh_2887',['erf_init_rayleigh',['../init__rayleigh__damping_8H.html#a3e175bfe4dac6bfbd6e929f9c5d75fda',1,'erf_init_rayleigh(): init_rayleigh_damping.H'],['../classProblemBase.html#ae29f0d7569a8538739692f98e6194286',1,'ProblemBase::erf_init_rayleigh()']]], + ['erf_5fmake_5ftau_5fterms_2888',['erf_make_tau_terms',['../ERF__make__tau__terms_8cpp.html#aeb0929ca1a4b2e5eb9719d51a5c18ab0',1,'erf_make_tau_terms(int level, int nrk, const Vector< BCRec > &domain_bcs_type_h, std::unique_ptr< MultiFab > &z_phys_nd, Vector< MultiFab > &S_data, const MultiFab &xvel, const MultiFab &yvel, const MultiFab &zvel, MultiFab &Omega, MultiFab *Tau11, MultiFab *Tau22, MultiFab *Tau33, MultiFab *Tau12, MultiFab *Tau13, MultiFab *Tau21, MultiFab *Tau23, MultiFab *Tau31, MultiFab *Tau32, MultiFab *SmnSmn, MultiFab *eddyDiffs, const Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< ABLMost > &most, std::unique_ptr< MultiFab > &detJ, std::unique_ptr< MultiFab > &mapfac_m, std::unique_ptr< MultiFab > &mapfac_u, std::unique_ptr< MultiFab > &mapfac_v): ERF_make_tau_terms.cpp'],['../TI__slow__headers_8H.html#ad74a233fd3d7215b3c204ec66109e977',1,'erf_make_tau_terms(int level, int nrk, const amrex::Vector< amrex::BCRec > &domain_bcs_type, std::unique_ptr< amrex::MultiFab > &z_phys_nd, amrex::Vector< amrex::MultiFab > &S_data, const amrex::MultiFab &xvel, const amrex::MultiFab &yvel, const amrex::MultiFab &zvel, amrex::MultiFab &Omega, amrex::MultiFab *Tau11, amrex::MultiFab *Tau22, amrex::MultiFab *Tau33, amrex::MultiFab *Tau12, amrex::MultiFab *Tau13, amrex::MultiFab *Tau21, amrex::MultiFab *Tau23, amrex::MultiFab *Tau31, amrex::MultiFab *Tau32, amrex::MultiFab *SmnSmn, amrex::MultiFab *eddyDiffs, const amrex::Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< ABLMost > &most, std::unique_ptr< amrex::MultiFab > &dJ, std::unique_ptr< amrex::MultiFab > &mapfac_m, std::unique_ptr< amrex::MultiFab > &mapfac_u, std::unique_ptr< amrex::MultiFab > &mapfac_v): TI_slow_headers.H']]], + ['erf_5fqsati_2889',['erf_qsati',['../Microphysics__Utils_8H.html#ac39ef2a869ef543f708d5ed7da4754d3',1,'Microphysics_Utils.H']]], + ['erf_5fqsatw_2890',['erf_qsatw',['../Microphysics__Utils_8H.html#a8e4b0c6ed8b95c2040dc0c9e8fcb8615',1,'Microphysics_Utils.H']]], + ['erf_5fslow_5frhs_5fpost_2891',['erf_slow_rhs_post',['../ERF__slow__rhs__post_8cpp.html#aac3319866aabf87a68fb81ce2f04a1ff',1,'erf_slow_rhs_post(int level, int finest_level, int nrk, Real dt, Vector< MultiFab > &S_rhs, Vector< MultiFab > &S_old, Vector< MultiFab > &S_new, Vector< MultiFab > &S_data, const MultiFab &S_prim, Vector< MultiFab > &S_scratch, const MultiFab &xvel, const MultiFab &yvel, const MultiFab &, const MultiFab &source, const MultiFab *SmnSmn, const MultiFab *eddyDiffs, MultiFab *Hfx3, MultiFab *Q1fx3, MultiFab *Q2fx3, MultiFab *Diss, const Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< ABLMost > &most, const Gpu::DeviceVector< BCRec > &domain_bcs_type_d, const Vector< BCRec > &domain_bcs_type_h, std::unique_ptr< MultiFab > &z_phys_nd, std::unique_ptr< MultiFab > &ax, std::unique_ptr< MultiFab > &ay, std::unique_ptr< MultiFab > &az, std::unique_ptr< MultiFab > &detJ, std::unique_ptr< MultiFab > &detJ_new, std::unique_ptr< MultiFab > &mapfac_m, std::unique_ptr< MultiFab > &mapfac_u, std::unique_ptr< MultiFab > &mapfac_v, YAFluxRegister *fr_as_crse, YAFluxRegister *fr_as_fine): ERF_slow_rhs_post.cpp'],['../TI__slow__headers_8H.html#adcc4119e9ba991c0074a59ea914a9996',1,'erf_slow_rhs_post(int level, int finest_level, int nrk, amrex::Real dt, amrex::Vector< amrex::MultiFab > &S_rhs, amrex::Vector< amrex::MultiFab > &S_old, amrex::Vector< amrex::MultiFab > &S_new, amrex::Vector< amrex::MultiFab > &S_data, const amrex::MultiFab &S_prim, amrex::Vector< amrex::MultiFab > &S_scratch, const amrex::MultiFab &xvel, const amrex::MultiFab &yvel, const amrex::MultiFab &zvel, const amrex::MultiFab &source, const amrex::MultiFab *SmnSmn, const amrex::MultiFab *eddyDiffs, amrex::MultiFab *Hfx3, amrex::MultiFab *Q1fx3, amrex::MultiFab *Q2fx3, amrex::MultiFab *Diss, const amrex::Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< ABLMost > &most, const amrex::Gpu::DeviceVector< amrex::BCRec > &domain_bcs_type_d, const amrex::Vector< amrex::BCRec > &domain_bcs_type, std::unique_ptr< amrex::MultiFab > &z_phys_nd, std::unique_ptr< amrex::MultiFab > &ax, std::unique_ptr< amrex::MultiFab > &ay, std::unique_ptr< amrex::MultiFab > &az, std::unique_ptr< amrex::MultiFab > &dJ_old, std::unique_ptr< amrex::MultiFab > &dJ_new, std::unique_ptr< amrex::MultiFab > &mapfac_m, std::unique_ptr< amrex::MultiFab > &mapfac_u, std::unique_ptr< amrex::MultiFab > &mapfac_v, amrex::YAFluxRegister *fr_as_crse, amrex::YAFluxRegister *fr_as_fine): TI_slow_headers.H']]], + ['erf_5fslow_5frhs_5fpre_2892',['erf_slow_rhs_pre',['../ERF__slow__rhs__pre_8cpp.html#ad018745b333f31583ebb5940d370ea6b',1,'erf_slow_rhs_pre(int level, int finest_level, int nrk, Real dt, Vector< MultiFab > &S_rhs, Vector< MultiFab > &S_old, Vector< MultiFab > &S_data, const MultiFab &S_prim, Vector< MultiFab > &S_scratch, const MultiFab &xvel, const MultiFab &yvel, const MultiFab &zvel, std::unique_ptr< MultiFab > &z_t_mf, MultiFab &Omega, const MultiFab &cc_src, const MultiFab &xmom_src, const MultiFab &ymom_src, const MultiFab &zmom_src, MultiFab *Tau11, MultiFab *Tau22, MultiFab *Tau33, MultiFab *Tau12, MultiFab *Tau13, MultiFab *Tau21, MultiFab *Tau23, MultiFab *Tau31, MultiFab *Tau32, MultiFab *SmnSmn, MultiFab *eddyDiffs, MultiFab *Hfx3, MultiFab *Q1fx3, MultiFab *Q2fx3, MultiFab *Diss, const Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< ABLMost > &most, const Gpu::DeviceVector< BCRec > &domain_bcs_type_d, const Vector< BCRec > &domain_bcs_type_h, std::unique_ptr< MultiFab > &z_phys_nd, std::unique_ptr< MultiFab > &ax, std::unique_ptr< MultiFab > &ay, std::unique_ptr< MultiFab > &az, std::unique_ptr< MultiFab > &detJ, const MultiFab *p0, std::unique_ptr< MultiFab > &mapfac_m, std::unique_ptr< MultiFab > &mapfac_u, std::unique_ptr< MultiFab > &mapfac_v, YAFluxRegister *fr_as_crse, YAFluxRegister *fr_as_fine): ERF_slow_rhs_pre.cpp'],['../TI__slow__headers_8H.html#ae97ca7001946dab01dba29e1eaa9a448',1,'erf_slow_rhs_pre(int level, int finest_level, int nrk, amrex::Real dt, amrex::Vector< amrex::MultiFab > &S_rhs, amrex::Vector< amrex::MultiFab > &S_old, amrex::Vector< amrex::MultiFab > &S_data, const amrex::MultiFab &S_prim, amrex::Vector< amrex::MultiFab > &S_scratch, const amrex::MultiFab &xvel, const amrex::MultiFab &yvel, const amrex::MultiFab &zvel, std::unique_ptr< amrex::MultiFab > &z_t, amrex::MultiFab &Omega, const amrex::MultiFab &cc_src, const amrex::MultiFab &xmom_src, const amrex::MultiFab &ymom_src, const amrex::MultiFab &zmom_src, amrex::MultiFab *Tau11, amrex::MultiFab *Tau22, amrex::MultiFab *Tau33, amrex::MultiFab *Tau12, amrex::MultiFab *Tau13, amrex::MultiFab *Tau21, amrex::MultiFab *Tau23, amrex::MultiFab *Tau31, amrex::MultiFab *Tau32, amrex::MultiFab *SmnSmn, amrex::MultiFab *eddyDiffs, amrex::MultiFab *Hfx3, amrex::MultiFab *Q1fx3, amrex::MultiFab *Q2fx3, amrex::MultiFab *Diss, const amrex::Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< ABLMost > &most, const amrex::Gpu::DeviceVector< amrex::BCRec > &domain_bcs_type_d, const amrex::Vector< amrex::BCRec > &domain_bcs_type, std::unique_ptr< amrex::MultiFab > &z_phys_nd, std::unique_ptr< amrex::MultiFab > &ax, std::unique_ptr< amrex::MultiFab > &ay, std::unique_ptr< amrex::MultiFab > &az, std::unique_ptr< amrex::MultiFab > &dJ, const amrex::MultiFab *p0, std::unique_ptr< amrex::MultiFab > &mapfac_m, std::unique_ptr< amrex::MultiFab > &mapfac_u, std::unique_ptr< amrex::MultiFab > &mapfac_v, amrex::YAFluxRegister *fr_as_crse, amrex::YAFluxRegister *fr_as_fine): TI_slow_headers.H']]], + ['erffillpatcher_2893',['ERFFillPatcher',['../classERFFillPatcher.html#a4236a9ab8003847e327495ff170a9a7a',1,'ERFFillPatcher']]], + ['erfphysbcfunct_5fcons_2894',['ERFPhysBCFunct_cons',['../classERFPhysBCFunct__cons.html#a12eafafca9393d7099b88368845a9cf7',1,'ERFPhysBCFunct_cons']]], + ['erfphysbcfunct_5fu_2895',['ERFPhysBCFunct_u',['../classERFPhysBCFunct__u.html#a17013b7ca9ae16f9f0f41783ed6c7f94',1,'ERFPhysBCFunct_u']]], + ['erfphysbcfunct_5fv_2896',['ERFPhysBCFunct_v',['../classERFPhysBCFunct__v.html#a0f49b867bd8b6ed700f545dd3f023b95',1,'ERFPhysBCFunct_v']]], + ['erfphysbcfunct_5fw_2897',['ERFPhysBCFunct_w',['../classERFPhysBCFunct__w.html#a7377738d5511aaf90cbd3615f9485a73',1,'ERFPhysBCFunct_w']]], + ['erfphysbcfunct_5fw_5fno_5fterrain_2898',['ERFPhysBCFunct_w_no_terrain',['../classERFPhysBCFunct__w__no__terrain.html#a349901fd3b5c9c03f6b318a2d6a4c41b',1,'ERFPhysBCFunct_w_no_terrain']]], + ['errorest_2899',['ErrorEst',['../classERF.html#a18e6dbbf968b4492e78aa427791620f4',1,'ERF']]], + ['esttimestep_2900',['estTimeStep',['../classERF.html#a6b1d727e63de2e49aa4f8e00b0dda1d5',1,'ERF']]], + ['eulerianmicrophysics_2901',['EulerianMicrophysics',['../classEulerianMicrophysics.html#af78c2f059431d49deec9f570ada4daaa',1,'EulerianMicrophysics::EulerianMicrophysics()'],['../classEulerianMicrophysics.html#a26a985c76efcd1dd68b5c853bbd264f6',1,'EulerianMicrophysics::EulerianMicrophysics(const int &nlev, const MoistureType &a_model_type)']]], + ['evaluate_2902',['Evaluate',['../structWENO__Z5.html#a06568f71bdf16e718756dcd66a26fd97',1,'WENO_Z5::Evaluate()'],['../structWENO__MZQ3.html#a8dcc9655166c1217b7056f244d4cfde2',1,'WENO_MZQ3::Evaluate()'],['../structWENO__Z3.html#aa6c2eefc18b5f0365c0357ee4f066080',1,'WENO_Z3::Evaluate()'],['../structWENO5.html#ae77d5f8032cf91c84551f51170ec9111',1,'WENO5::Evaluate()'],['../structWENO3.html#a6a48e6b00e04466ca779a2b3ee62770b',1,'WENO3::Evaluate()'],['../structUPWINDALL.html#a781c3531bb77c6282c88c9cc3d64c722',1,'UPWINDALL::Evaluate()'],['../structCENTERED6.html#aacd79f8ed62a166d5f4d44a20d09fc13',1,'CENTERED6::Evaluate()'],['../structUPWIND5.html#a267b7805b0761e01b0532a986307b79d',1,'UPWIND5::Evaluate()'],['../structCENTERED4.html#ae67620f7c851fbadb31ff439601ac7fe',1,'CENTERED4::Evaluate()'],['../structUPWIND3.html#a247a547b52d1bf118e8a9cb44d46b744',1,'UPWIND3::Evaluate()'],['../structCENTERED2.html#a1f9232868e37a452630ccfa8ec34be91',1,'CENTERED2::Evaluate()']]], + ['evolve_2903',['Evolve',['../classERF.html#a0be12798b46f52fa4b5a995f147c3f96',1,'ERF']]], + ['ewp_2904',['EWP',['../classEWP.html#a4c32d700e8ba91dfbc07c332ad91ca71',1,'EWP']]], + ['exit_5fdef_5fmode_2905',['exit_def_mode',['../classncutils_1_1NCGroup.html#a3a4ebd106195be96fb41bb3bfde83143',1,'ncutils::NCGroup']]], + ['exp_5finterpol_2906',['exp_interpol',['../classPhysProp.html#a9bc40a34bf3b039dd0d8ad87678e23d1',1,'PhysProp']]], + ['expand_5fday_5ffluxes_2907',['expand_day_fluxes',['../namespaceinternal.html#a154efe747ea48707745d01843ac5eb71',1,'internal']]], + ['export_5fsurface_5ffluxes_2908',['export_surface_fluxes',['../classRadiation.html#a2115945b42eb2b2c6844049b2edc74ca',1,'Radiation']]] ]; diff --git a/search/functions_5.js b/search/functions_5.js index f8f317efb6..d7161f10ff 100644 --- a/search/functions_5.js +++ b/search/functions_5.js @@ -1,24 +1,24 @@ var searchData= [ - ['factory_2904',['Factory',['../classERF.html#add33a9ec6db918b2ef03de4a92adc764',1,'ERF']]], - ['field_2905',['field',['../classPlaneAverage.html#a027673d7c6dd35a1b45cd1fa8f2b4cb5',1,'PlaneAverage']]], - ['fill_2906',['Fill',['../classERFFillPatcher.html#a045ae741822ced1684eddf019cd7f219',1,'ERFFillPatcher']]], - ['fill_5ffab_5ffrom_5farrays_2907',['fill_fab_from_arrays',['../NCWpsFile_8H.html#a64f2a31eac0693c65ffb19e37014426a',1,'NCWpsFile.H']]], - ['fill_5ffrom_5fbndryregs_2908',['fill_from_bndryregs',['../classERF.html#a2135641de33dea5057799569c74cac42',1,'ERF']]], - ['fill_5fnturb_5fmultifab_2909',['fill_Nturb_multifab',['../classWindFarm.html#ad1f03a5472c55db1f73bec1f100bbee6',1,'WindFarm']]], - ['fill_5frhs_2910',['fill_rhs',['../classERF.html#a76600d7a4a0451c9727d2cc57dae4220',1,'ERF']]], - ['fillbdyccvels_2911',['FillBdyCCVels',['../classERF.html#a19c8017ca1ff0eead61abd7e0ce62232',1,'ERF']]], - ['fillcoarsepatch_2912',['FillCoarsePatch',['../classERF.html#ac4497025ab94461899960ee067c2c72a',1,'ERF']]], - ['fillintermediatepatch_2913',['FillIntermediatePatch',['../classERF.html#a5434c771d76cf50e4a0dd9e1b0eb27fc',1,'ERF']]], - ['fillpatch_2914',['FillPatch',['../classERF.html#a8de69f537859f576fba1d94844cfbd33',1,'ERF']]], - ['fillpatchblocks_2915',['FillPatchBlocks',['../classMultiBlockContainer.html#a92e9b71087c94076b01f13b6cb6fcec5',1,'MultiBlockContainer']]], - ['fillpatchmoistvars_2916',['FillPatchMoistVars',['../classERF.html#afb39caf6b6949138c0c3c4a067648321',1,'ERF']]], - ['fillrelax_2917',['FillRelax',['../classERFFillPatcher.html#a69bc23658f5c545f654c7ddd0cabb105',1,'ERFFillPatcher']]], - ['fillset_2918',['FillSet',['../classERFFillPatcher.html#ae6ce0e1d59fc62d812c779d536a95c58',1,'ERFFillPatcher']]], - ['finalize_2919',['finalize',['../classOptics.html#ad044034219080c4d8bc696c4c259cb4d',1,'Optics::finalize()'],['../classRrtmgp.html#aba1f5f9d2655e0df2747c8d8efedecdf',1,'Rrtmgp::finalize()']]], - ['findsp_2920',['findsp',['../classWaterVaporSat.html#a5030f00a3a80f34dc58025cb42e14aa4',1,'WaterVaporSat']]], - ['fine_5fcompute_5finterior_5fghost_5frhs_2921',['fine_compute_interior_ghost_rhs',['../InteriorGhostCells_8cpp.html#ae5ff4686584e657be0c2b4a10dd39553',1,'fine_compute_interior_ghost_rhs(const Real &time, const Real &delta_t, const int &width, const int &set_width, const Geometry &geom, ERFFillPatcher *FPr_c, ERFFillPatcher *FPr_u, ERFFillPatcher *FPr_v, ERFFillPatcher *FPr_w, Vector< BCRec > &domain_bcs_type, Vector< MultiFab > &S_rhs_f, Vector< MultiFab > &S_data_f): InteriorGhostCells.cpp'],['../Utils_8H.html#a666ef6030bc3baa94198a32754fc65f2',1,'fine_compute_interior_ghost_rhs(const amrex::Real &time, const amrex::Real &delta_t, const int &width, const int &set_width, const amrex::Geometry &geom, ERFFillPatcher *FPr_c, ERFFillPatcher *FPr_u, ERFFillPatcher *FPr_v, ERFFillPatcher *FPr_w, amrex::Vector< amrex::BCRec > &domain_bcs_type, amrex::Vector< amrex::MultiFab > &S_rhs_f, amrex::Vector< amrex::MultiFab > &S_data_f): Utils.H']]], - ['fitch_2922',['Fitch',['../classFitch.html#a3682b755760d9e2543182ffbc0f3a618',1,'Fitch']]], - ['flowerif_2923',['FlowerIF',['../classFlowerIF.html#ac38f4d1d1e3825fb2009aa292a577b59',1,'FlowerIF']]], - ['full_5fname_2924',['full_name',['../classncutils_1_1NCGroup.html#a56f4429492300eabd16fa0d4bd55b8c7',1,'ncutils::NCGroup']]] + ['factory_2909',['Factory',['../classERF.html#add33a9ec6db918b2ef03de4a92adc764',1,'ERF']]], + ['field_2910',['field',['../classPlaneAverage.html#a027673d7c6dd35a1b45cd1fa8f2b4cb5',1,'PlaneAverage']]], + ['fill_2911',['Fill',['../classERFFillPatcher.html#a045ae741822ced1684eddf019cd7f219',1,'ERFFillPatcher']]], + ['fill_5ffab_5ffrom_5farrays_2912',['fill_fab_from_arrays',['../NCWpsFile_8H.html#a64f2a31eac0693c65ffb19e37014426a',1,'NCWpsFile.H']]], + ['fill_5ffrom_5fbndryregs_2913',['fill_from_bndryregs',['../classERF.html#a2135641de33dea5057799569c74cac42',1,'ERF']]], + ['fill_5fnturb_5fmultifab_2914',['fill_Nturb_multifab',['../classWindFarm.html#ad1f03a5472c55db1f73bec1f100bbee6',1,'WindFarm']]], + ['fill_5frhs_2915',['fill_rhs',['../classERF.html#a76600d7a4a0451c9727d2cc57dae4220',1,'ERF']]], + ['fillbdyccvels_2916',['FillBdyCCVels',['../classERF.html#a19c8017ca1ff0eead61abd7e0ce62232',1,'ERF']]], + ['fillcoarsepatch_2917',['FillCoarsePatch',['../classERF.html#ac4497025ab94461899960ee067c2c72a',1,'ERF']]], + ['fillintermediatepatch_2918',['FillIntermediatePatch',['../classERF.html#a5434c771d76cf50e4a0dd9e1b0eb27fc',1,'ERF']]], + ['fillpatch_2919',['FillPatch',['../classERF.html#a8de69f537859f576fba1d94844cfbd33',1,'ERF']]], + ['fillpatchblocks_2920',['FillPatchBlocks',['../classMultiBlockContainer.html#a92e9b71087c94076b01f13b6cb6fcec5',1,'MultiBlockContainer']]], + ['fillpatchmoistvars_2921',['FillPatchMoistVars',['../classERF.html#afb39caf6b6949138c0c3c4a067648321',1,'ERF']]], + ['fillrelax_2922',['FillRelax',['../classERFFillPatcher.html#a69bc23658f5c545f654c7ddd0cabb105',1,'ERFFillPatcher']]], + ['fillset_2923',['FillSet',['../classERFFillPatcher.html#ae6ce0e1d59fc62d812c779d536a95c58',1,'ERFFillPatcher']]], + ['finalize_2924',['finalize',['../classOptics.html#ad044034219080c4d8bc696c4c259cb4d',1,'Optics::finalize()'],['../classRrtmgp.html#aba1f5f9d2655e0df2747c8d8efedecdf',1,'Rrtmgp::finalize()']]], + ['findsp_2925',['findsp',['../classWaterVaporSat.html#a5030f00a3a80f34dc58025cb42e14aa4',1,'WaterVaporSat']]], + ['fine_5fcompute_5finterior_5fghost_5frhs_2926',['fine_compute_interior_ghost_rhs',['../InteriorGhostCells_8cpp.html#ae5ff4686584e657be0c2b4a10dd39553',1,'fine_compute_interior_ghost_rhs(const Real &time, const Real &delta_t, const int &width, const int &set_width, const Geometry &geom, ERFFillPatcher *FPr_c, ERFFillPatcher *FPr_u, ERFFillPatcher *FPr_v, ERFFillPatcher *FPr_w, Vector< BCRec > &domain_bcs_type, Vector< MultiFab > &S_rhs_f, Vector< MultiFab > &S_data_f): InteriorGhostCells.cpp'],['../Utils_8H.html#a666ef6030bc3baa94198a32754fc65f2',1,'fine_compute_interior_ghost_rhs(const amrex::Real &time, const amrex::Real &delta_t, const int &width, const int &set_width, const amrex::Geometry &geom, ERFFillPatcher *FPr_c, ERFFillPatcher *FPr_u, ERFFillPatcher *FPr_v, ERFFillPatcher *FPr_w, amrex::Vector< amrex::BCRec > &domain_bcs_type, amrex::Vector< amrex::MultiFab > &S_rhs_f, amrex::Vector< amrex::MultiFab > &S_data_f): Utils.H']]], + ['fitch_2927',['Fitch',['../classFitch.html#a3682b755760d9e2543182ffbc0f3a618',1,'Fitch']]], + ['flowerif_2928',['FlowerIF',['../classFlowerIF.html#ac38f4d1d1e3825fb2009aa292a577b59',1,'FlowerIF']]], + ['full_5fname_2929',['full_name',['../classncutils_1_1NCGroup.html#a56f4429492300eabd16fa0d4bd55b8c7',1,'ncutils::NCGroup']]] ]; diff --git a/search/functions_6.js b/search/functions_6.js index e14fe59f87..44beaf135a 100644 --- a/search/functions_6.js +++ b/search/functions_6.js @@ -1,155 +1,155 @@ var searchData= [ - ['gam_5fliquid_5flw_2925',['gam_liquid_lw',['../classCloudRadProps.html#a5772a63dc315f019d951785ebdb9c13d',1,'CloudRadProps']]], - ['gam_5fliquid_5fsw_2926',['gam_liquid_sw',['../classCloudRadProps.html#a2890fa11a8f395809fe215447e339c20',1,'CloudRadProps']]], - ['gammadist_5fliq_5foptics_5flw_2927',['gammadist_liq_optics_lw',['../classCloudRadProps.html#a31a396f1997438a7cbb347767dca311a',1,'CloudRadProps']]], - ['gammadist_5fliq_5foptics_5fsw_2928',['gammadist_liq_optics_sw',['../classCloudRadProps.html#adcaf1c142347cdcd3b761af9c7ee5c56',1,'CloudRadProps']]], - ['get_2929',['get',['../structncutils_1_1NCVar.html#ab39527f40ff0417de3c1ff8c441ced93',1,'ncutils::NCVar::get(float *) const'],['../structncutils_1_1NCVar.html#ac88fd209afde1f05e4f8f62e4c628bba',1,'ncutils::NCVar::get(double *) const'],['../structncutils_1_1NCVar.html#ad73293d8faae951e5f91cc3ba49d0f8c',1,'ncutils::NCVar::get(char *, const std::vector< size_t > &, const std::vector< size_t > &, const std::vector< ptrdiff_t > &) const'],['../structncutils_1_1NCVar.html#a7fe596943d518530da29a356d393090d',1,'ncutils::NCVar::get(char *, const std::vector< size_t > &, const std::vector< size_t > &) const'],['../structncutils_1_1NCVar.html#ab994c2ebc61623888b2e3fc6bf399bff',1,'ncutils::NCVar::get(int *, const std::vector< size_t > &, const std::vector< size_t > &, const std::vector< ptrdiff_t > &) const'],['../structncutils_1_1NCVar.html#a0a1082e40bee181e99e04ca81311bb70',1,'ncutils::NCVar::get(int *, const std::vector< size_t > &, const std::vector< size_t > &) const'],['../structncutils_1_1NCVar.html#ad6fc629cd035e5779e9e891fd37e68ae',1,'ncutils::NCVar::get(float *, const std::vector< size_t > &, const std::vector< size_t > &) const'],['../structncutils_1_1NCVar.html#ab3b5bad54cdc792e734690fcb5f4ecec',1,'ncutils::NCVar::get(double *, const std::vector< size_t > &, const std::vector< size_t > &, const std::vector< ptrdiff_t > &) const'],['../structncutils_1_1NCVar.html#a533478371e0bd09a6f4944bf5fe00684',1,'ncutils::NCVar::get(double *, const std::vector< size_t > &, const std::vector< size_t > &) const'],['../structncutils_1_1NCVar.html#a0a7990c37360c27e7ba2fb47617f5255',1,'ncutils::NCVar::get(int *) const'],['../structncutils_1_1NCVar.html#af036d4858171a98b8a951348a654a36c',1,'ncutils::NCVar::get(float *, const std::vector< size_t > &, const std::vector< size_t > &, const std::vector< ptrdiff_t > &) const']]], - ['get_5fabsplw_2930',['get_absplw',['../classPhysProp.html#a3f23e348e84101f927619a7eabc51a6e',1,'PhysProp']]], - ['get_5fabspsw_2931',['get_abspsw',['../classPhysProp.html#acf3cee48b7815ac002ea675876c52626',1,'PhysProp']]], - ['get_5faer_5flw_5fabs_2932',['get_aer_lw_abs',['../classMamConstituents.html#abced5d5167a48eec9a0923e2acab5ad3',1,'MamConstituents']]], - ['get_5faer_5flw_5fhygro_5fabs_2933',['get_aer_lw_hygro_abs',['../classMamConstituents.html#a615c6fe6e689806ebea977248a801859',1,'MamConstituents']]], - ['get_5faer_5fmu_2934',['get_aer_mu',['../classMamConstituents.html#a45a7f8dfd5b8b6f26fa5c5dd7628bfe9',1,'MamConstituents']]], - ['get_5faer_5fopticstype_2935',['get_aer_opticstype',['../classMamConstituents.html#a00c16dcafa756dac9f1e3191c39cf45a',1,'MamConstituents']]], - ['get_5faer_5fr_5flw_5fabs_2936',['get_aer_r_lw_abs',['../classMamConstituents.html#aa9738a1eeff88e7f5985c7ec990f37fd',1,'MamConstituents']]], - ['get_5faer_5fr_5fsw_5fascat_2937',['get_aer_r_sw_ascat',['../classMamConstituents.html#abea6b6de83d265c3d1ff0c0ef625dfac',1,'MamConstituents']]], - ['get_5faer_5fr_5fsw_5fext_2938',['get_aer_r_sw_ext',['../classMamConstituents.html#afd11f880a3bfdd56a327b33802cb9e5d',1,'MamConstituents']]], - ['get_5faer_5fr_5fsw_5fscat_2939',['get_aer_r_sw_scat',['../classMamConstituents.html#a5d379f3c6f64728cb5e2d983096e2320',1,'MamConstituents']]], - ['get_5faer_5frefindex_5faer_5flw_2940',['get_aer_refindex_aer_lw',['../classMamConstituents.html#ac97d69a81650adf8b2db593789a5c64f',1,'MamConstituents']]], - ['get_5faer_5frefindex_5faer_5fsw_2941',['get_aer_refindex_aer_sw',['../classMamConstituents.html#aed5b213b0f2621eee2983eff283ba7ad',1,'MamConstituents']]], - ['get_5faer_5fsw_5fhygro_5fasm_2942',['get_aer_sw_hygro_asm',['../classMamConstituents.html#a80a18aa331fc8986442ec2c1d19c0fc3',1,'MamConstituents']]], - ['get_5faer_5fsw_5fhygro_5fext_2943',['get_aer_sw_hygro_ext',['../classMamConstituents.html#a4b5f7c567835d54155d36cb7b7dd1016',1,'MamConstituents']]], - ['get_5faer_5fsw_5fhygro_5fssa_2944',['get_aer_sw_hygro_ssa',['../classMamConstituents.html#a55f18bc19313997a05e90bda52aca5ff',1,'MamConstituents']]], - ['get_5faer_5fsw_5fnonhygro_5fascat_2945',['get_aer_sw_nonhygro_ascat',['../classMamConstituents.html#a563e58d03a7787ca3a40c602591de716',1,'MamConstituents']]], - ['get_5faer_5fsw_5fnonhygro_5fasm_2946',['get_aer_sw_nonhygro_asm',['../classMamConstituents.html#a82c89926169f83caec2e2cb1b17c98dd',1,'MamConstituents']]], - ['get_5faer_5fsw_5fnonhygro_5fext_2947',['get_aer_sw_nonhygro_ext',['../classMamConstituents.html#a6253e342c1dfeac6b7516ed20182d621',1,'MamConstituents']]], - ['get_5faer_5fsw_5fnonhygro_5fscat_2948',['get_aer_sw_nonhygro_scat',['../classMamConstituents.html#ad441f881bce9bd57dcf87f906935e315',1,'MamConstituents']]], - ['get_5faer_5fsw_5fnonhygro_5fssa_2949',['get_aer_sw_nonhygro_ssa',['../classMamConstituents.html#a25c7c70ec61cb1fc2ed73020c483bc01',1,'MamConstituents']]], - ['get_5faername_2950',['get_aername',['../classMamConstituents.html#a06375fcfa88eed7c0b24a217a75ab454',1,'MamConstituents::get_aername()'],['../classPhysProp.html#a30b4a5030a225ee8dfc03334e562717a',1,'PhysProp::get_aername()']]], - ['get_5faero_5fnames_2951',['get_aero_names',['../classMamConstituents.html#a0fa8127d10ddf551b969208d28ec180e',1,'MamConstituents']]], - ['get_5fasmpsw_2952',['get_asmpsw',['../classPhysProp.html#a5d16e675e5880eae84501e11beb0771f',1,'PhysProp']]], - ['get_5fattr_2953',['get_attr',['../structncutils_1_1NCVar.html#a774b3bda4e9dc903ecfa35af38e863c6',1,'ncutils::NCVar::get_attr(const std::string &name) const'],['../structncutils_1_1NCVar.html#aa5b83489bee14205286a757e0789ddbd',1,'ncutils::NCVar::get_attr(const std::string &name, std::vector< double > &value) const'],['../structncutils_1_1NCVar.html#af09b0c94dceb8666a7be0d6167bfc4b4',1,'ncutils::NCVar::get_attr(const std::string &name, std::vector< float > &value) const'],['../structncutils_1_1NCVar.html#a720f935c1949f56e31eb057dbc1e7ea6',1,'ncutils::NCVar::get_attr(const std::string &name, std::vector< int > &value) const'],['../classncutils_1_1NCGroup.html#a2f10bc405d66f794c4e8a8fd71dc718d',1,'ncutils::NCGroup::get_attr(const std::string &name) const'],['../classncutils_1_1NCGroup.html#a0f24e998915e60b177d036595f0f2734',1,'ncutils::NCGroup::get_attr(const std::string &name, std::vector< double > &value) const'],['../classncutils_1_1NCGroup.html#ac25f1ca78fc2cd66e7b80fdcc30f512f',1,'ncutils::NCGroup::get_attr(const std::string &name, std::vector< float > &value) const'],['../classncutils_1_1NCGroup.html#ac5beadfdf8519b384504dc82f6bdecc5',1,'ncutils::NCGroup::get_attr(const std::string &name, std::vector< int > &value) const']]], - ['get_5faverage_2954',['get_average',['../classMOSTAverage.html#aa52cd2c83e24eef47d6a409b7bcf4c81',1,'MOSTAverage']]], - ['get_5fcloud_5foptics_5flw_2955',['get_cloud_optics_lw',['../classOptics.html#af5f3fa679301f0ead8b8155626b2e710',1,'Optics']]], - ['get_5fcloud_5foptics_5fsw_2956',['get_cloud_optics_sw',['../classOptics.html#aee82856b88240c428aefc6f47bf9500c',1,'Optics']]], - ['get_5fdata_2957',['get_data',['../structNDArray.html#aa1c5762c2de2f4286d4f341b618df1e5',1,'NDArray']]], - ['get_5fdata_5fptr_2958',['Get_Data_Ptr',['../classLandSurface.html#af125bc0c5860b3564afdfce10ec253ea',1,'LandSurface']]], - ['get_5fdata_5fsize_2959',['Get_Data_Size',['../classLandSurface.html#a2652af07555cc98d15d3516371fa42e6',1,'LandSurface']]], - ['get_5fdensity_5faer_2960',['get_density_aer',['../classMamConstituents.html#a2c87a154e21ee4b762e5b86a118c9d99',1,'MamConstituents::get_density_aer()'],['../classPhysProp.html#a2d695487896685188cfc27622d7d8b92',1,'PhysProp::get_density_aer(int &id, real &density_aer)']]], - ['get_5fdgnum_2961',['get_dgnum',['../classPhysProp.html#a3c87348b9c02ab110724574c78c47828',1,'PhysProp']]], - ['get_5fdgnumhi_2962',['get_dgnumhi',['../classPhysProp.html#a6c96e25dea777230786bac835967cca4',1,'PhysProp']]], - ['get_5fdgnumlo_2963',['get_dgnumlo',['../classPhysProp.html#a18f5b5ef7efc62872920880ae0387abb',1,'PhysProp']]], - ['get_5fdispersion_5faer_2964',['get_dispersion_aer',['../classMamConstituents.html#ae0eb743aa6313e75108c9793e87ec247',1,'MamConstituents::get_dispersion_aer()'],['../classPhysProp.html#a85cfc46f9dba253c1680a8098a862c7a',1,'PhysProp::get_dispersion_aer(int &id, real &dispersion_aer)']]], - ['get_5fdryrad_5faer_2965',['get_dryrad_aer',['../classPhysProp.html#a00e635f7c927cf65fb9849888954c5a8',1,'PhysProp::get_dryrad_aer()'],['../classMamConstituents.html#a94cc78290a0a92bf8160d0320c661d9a',1,'MamConstituents::get_dryrad_aer()']]], - ['get_5fextpsw_2966',['get_extpsw',['../classPhysProp.html#a7736eb5e1fc41ef331f9562daacf2a19',1,'PhysProp']]], - ['get_5fflux_5fptr_2967',['Get_Flux_Ptr',['../classLandSurface.html#a967a4b0772dc721d0242d38613ac430e',1,'LandSurface']]], - ['get_5fgas_5fnames_2968',['get_gas_names',['../classMamConstituents.html#abb525061b723e29201646eb76f460672',1,'MamConstituents']]], - ['get_5fgas_5fvmr_2969',['get_gas_vmr',['../classRadiation.html#a17087b1575e1d891f0617b22ca78bec3',1,'Radiation']]], - ['get_5fgpoint_5fbands_5flw_2970',['get_gpoint_bands_lw',['../classRrtmgp.html#a3599409b29ca122c0ac8e360097d6551',1,'Rrtmgp']]], - ['get_5fgpoint_5fbands_5fsw_2971',['get_gpoint_bands_sw',['../classRrtmgp.html#a731fae99697b1f9f94847726d59fb77e',1,'Rrtmgp']]], - ['get_5fhygro_5faer_2972',['get_hygro_aer',['../classMamConstituents.html#ad1737cb1bc9e819f593ad262d5f2a764',1,'MamConstituents::get_hygro_aer()'],['../classPhysProp.html#a484174f1c3c34929564175635ac0cea4',1,'PhysProp::get_hygro_aer()']]], - ['get_5fhygro_5frad_5fprops_2973',['get_hygro_rad_props',['../classAerRadProps.html#a6a1e71160911bbc52d09bdbd73acb219',1,'AerRadProps']]], - ['get_5flsm_5fgeom_2974',['Get_Lsm_Geom',['../classLandSurface.html#a368a57f198d060805dcd615677366c3c',1,'LandSurface']]], - ['get_5flsm_5ftsurf_2975',['get_lsm_tsurf',['../classABLMost.html#ae28fd8a21f4b514875c24fe4b8e85081',1,'ABLMost']]], - ['get_5flw_5fabs_2976',['get_lw_abs',['../classPhysProp.html#aee93d9cfecbcef45bc4ff5c55e924d3c',1,'PhysProp']]], - ['get_5flw_5fhygro_5fabs_2977',['get_lw_hygro_abs',['../classPhysProp.html#ada1267eec64ed72b370c245bdaf28cde',1,'PhysProp']]], - ['get_5flw_5fspectral_5fboundaries_2978',['get_lw_spectral_boundaries',['../classRadConstants.html#a242b8b89c7cd6415af91e2bc35a5fd58',1,'RadConstants']]], - ['get_5flw_5fspectral_5fmidpoints_2979',['get_lw_spectral_midpoints',['../classRadConstants.html#a1ac73a96f506a7f16b7fd7500e1fa592',1,'RadConstants']]], - ['get_5fmac_5favg_2980',['get_mac_avg',['../classABLMost.html#af26cdc6b8c162c14b2db32eb395f0565',1,'ABLMost']]], - ['get_5fmam_5fdensity_5faer_2981',['get_mam_density_aer',['../classMamConstituents.html#a0d5796bba8b3031a99ef09309a2508e5',1,'MamConstituents']]], - ['get_5fmam_5fhygro_5faer_2982',['get_mam_hygro_aer',['../classMamConstituents.html#a53ef55dfb6cfe3f77dcd16d4ccec5237',1,'MamConstituents']]], - ['get_5fmam_5fprops_2983',['get_mam_props',['../classMamConstituents.html#ae8c4861e3d2d79f208f5b78270aa72f6',1,'MamConstituents::get_mam_props(int list_idx, int mode_idx, int spec_idx, real &density_aer, std::string &spectype, real &hygro_aer, real1d &refindex_real_aer_sw, real1d &refindex_im_aer_sw)'],['../classMamConstituents.html#ae437f14b2fa3b6f8eb860517311cd76e',1,'MamConstituents::get_mam_props(int list_idx, int mode_idx, int spec_idx, real &density_aer)']]], - ['get_5fmam_5fprops_5flw_2984',['get_mam_props_lw',['../classMamConstituents.html#a4e30afbc74de6ccb53def99d3d2b89d7',1,'MamConstituents']]], - ['get_5fmam_5fprops_5fsw_2985',['get_mam_props_sw',['../classMamConstituents.html#a93e2f68e7941afb2fa38f23970e27967',1,'MamConstituents']]], - ['get_5fmax_5ftemperature_2986',['get_max_temperature',['../classRrtmgp.html#a54d681da78a4c643e44de12c096429b1',1,'Rrtmgp']]], - ['get_5fmin_5ftemperature_2987',['get_min_temperature',['../classRrtmgp.html#a9f2ab92b47552998f259e3e8cfd1ae25',1,'Rrtmgp']]], - ['get_5fmode_5fnspec_2988',['get_mode_nspec',['../classMamConstituents.html#a00fcbe86b80e26221e3895c920d7cbc2',1,'MamConstituents']]], - ['get_5fmode_5fprops_2989',['get_mode_props',['../classMamConstituents.html#a3bafcd362a064a323c1b6a241a6ece68',1,'MamConstituents::get_mode_props(int list_idx, int mode_idx, real &sigmag, real &rhcrystal, real &rhdeliques)'],['../classMamConstituents.html#ae55ad4c9370b5dfc247eb3bd5127db66',1,'MamConstituents::get_mode_props(int list_idx, int mode_idx, real &sigmag, real2d &refrtablw, real2d &refitablw, real4d &absplw)'],['../classMamConstituents.html#a1dd1ca5edf26c219728b21d5ff2241c4',1,'MamConstituents::get_mode_props(int list_idx, int mode_idx, real &sigmag, real2d &refrtabsw, real2d &refitabsw, real4d &extpsw, real4d &abspsw, real4d &asmpsw)'],['../classMamConstituents.html#a036428179a899d517fc19379ab73e22f',1,'MamConstituents::get_mode_props(int list_idx, int mode_idx, int &ncoef, int &prefr, int &prefi)'],['../classMamConstituents.html#aa358f0971ab4250d2b5b540ca0a5d4ed',1,'MamConstituents::get_mode_props(int list_idx, int mode_idx, real &dgnum, real &dgnumhi, real &dgnumlo, real &sigmag)']]], - ['get_5fmu_2990',['get_mu',['../classPhysProp.html#a8c3737a4e44479924b64bd2fa1bb630e',1,'PhysProp']]], - ['get_5fmu_5flambda_5fweights_2991',['get_mu_lambda_weights',['../classCloudRadProps.html#ab5a9764068553f94a590310ff990a97d',1,'CloudRadProps']]], - ['get_5fnaero_2992',['get_naero',['../classMamConstituents.html#a4bfaf145eff109a2e41fa964735b6f79',1,'MamConstituents']]], - ['get_5fnband_5flw_2993',['get_nband_lw',['../classRrtmgp.html#a63713fbd29d350a8d26ba7cd745439f8',1,'Rrtmgp']]], - ['get_5fnband_5fsw_2994',['get_nband_sw',['../classRrtmgp.html#a3d2da27814d96e130b6f0486b36fc6e9',1,'Rrtmgp']]], - ['get_5fncoef_2995',['get_ncoef',['../classPhysProp.html#a0b992ac96f63e3f2b87797a88a6d2c5e',1,'PhysProp']]], - ['get_5fngas_2996',['get_ngas',['../classMamConstituents.html#aa46c21d9af275e89afd383ca15dd0585',1,'MamConstituents']]], - ['get_5fngpt_5flw_2997',['get_ngpt_lw',['../classRrtmgp.html#a208b68626f3d16b530e053f6f0d99d56',1,'Rrtmgp']]], - ['get_5fngpt_5fsw_2998',['get_ngpt_sw',['../classRrtmgp.html#a6f4be82ac30aabe0107060413c7bd9a1',1,'Rrtmgp']]], - ['get_5fnmodes_2999',['get_nmodes',['../classMamConstituents.html#a6e5af88612848490459d63da05a18360',1,'MamConstituents']]], - ['get_5fnonhygro_5frad_5fprops_3000',['get_nonhygro_rad_props',['../classAerRadProps.html#af6e6827c17d2247b72337a35875ea0e0',1,'AerRadProps']]], - ['get_5fnum_5fto_5fmass_5faer_3001',['get_num_to_mass_aer',['../classMamConstituents.html#ac2399ae888f69972215535a258a2f4fc',1,'MamConstituents::get_num_to_mass_aer()'],['../classPhysProp.html#a913350d86621759ab91c3712cad9215f',1,'PhysProp::get_num_to_mass_aer()']]], - ['get_5fnumber_5fsw_5fbands_3002',['get_number_sw_bands',['../classRadConstants.html#a2ebe3ffd07e9c18b028da947715f3f8f',1,'RadConstants']]], - ['get_5folen_3003',['get_olen',['../classABLMost.html#aef7480dbb43cafff3be93a95240c1ec3',1,'ABLMost']]], - ['get_5fopticstype_3004',['get_opticstype',['../classPhysProp.html#a10da2795ee22a59a6bf00065db618038',1,'PhysProp']]], - ['get_5fpb_5fmag_3005',['get_pb_mag',['../structTurbulentPerturbation.html#a237c085bf6fa265eef471d19bbca613f',1,'TurbulentPerturbation']]], - ['get_5fpb_5fnetzero_3006',['get_pb_netZero',['../structTurbulentPerturbation.html#aa8a048ec67a9e110cef012105dd615cf',1,'TurbulentPerturbation']]], - ['get_5fprefi_3007',['get_prefi',['../classPhysProp.html#a31f4f3ddb1cb5b2d15f1f826ae59af85',1,'PhysProp']]], - ['get_5fprefr_3008',['get_prefr',['../classPhysProp.html#a656181b164401d6423f60acfc8ef7813',1,'PhysProp']]], - ['get_5fqmoist_5fptr_3009',['Get_Qmoist_Ptr',['../classEulerianMicrophysics.html#a416981f230a126387b9a664a5a241e9c',1,'EulerianMicrophysics::Get_Qmoist_Ptr()'],['../classMicrophysics.html#a8edecc53bfdfd0d916d37e3584ebb9ff',1,'Microphysics::Get_Qmoist_Ptr()']]], - ['get_5fqmoist_5fsize_3010',['Get_Qmoist_Size',['../classEulerianMicrophysics.html#ad4983e19f621a55ad7d942c881215c72',1,'EulerianMicrophysics::Get_Qmoist_Size()'],['../classMicrophysics.html#a069e6013efb78d268394868d0cfc6382',1,'Microphysics::Get_Qmoist_Size()']]], - ['get_5fqstate_5fsize_3011',['Get_Qstate_Size',['../classEulerianMicrophysics.html#a3e973738b4e0bbaa7269ab2395322929',1,'EulerianMicrophysics::Get_Qstate_Size()'],['../classMicrophysics.html#a72f6091687c014c5be34275b0975d194',1,'Microphysics::Get_Qstate_Size()']]], - ['get_5fr_5flw_5fabs_3012',['get_r_lw_abs',['../classPhysProp.html#a025a2d9ecc2c4d271d08d0cb75b49f33',1,'PhysProp']]], - ['get_5fr_5fsw_5fascat_3013',['get_r_sw_ascat',['../classPhysProp.html#a4f1f95c6a1c59e037e52668e88b10191',1,'PhysProp']]], - ['get_5fr_5fsw_5fext_3014',['get_r_sw_ext',['../classPhysProp.html#a3b73c4eb2b4d224b99a67053944b5e91',1,'PhysProp']]], - ['get_5fr_5fsw_5fscat_3015',['get_r_sw_scat',['../classPhysProp.html#a8390c01827baf6d2b47eede1766cf548',1,'PhysProp']]], - ['get_5fref_5fim_5faer_5flw_3016',['get_ref_im_aer_lw',['../classPhysProp.html#acf52dbf154af6672eaa9bcf52f73d5c3',1,'PhysProp']]], - ['get_5fref_5fim_5faer_5fsw_3017',['get_ref_im_aer_sw',['../classPhysProp.html#a0c6b02b2894408623fa1a18770e1013f',1,'PhysProp']]], - ['get_5fref_5freal_5faer_5flw_3018',['get_ref_real_aer_lw',['../classPhysProp.html#ac1fffb326bba13fcf21a913a019a715b',1,'PhysProp']]], - ['get_5fref_5freal_5faer_5fsw_3019',['get_ref_real_aer_sw',['../classPhysProp.html#ae549c86a3cd5b8645006f5d39393429e',1,'PhysProp']]], - ['get_5fref_5fsolar_5fband_5firrad_3020',['get_ref_solar_band_irrad',['../classRadConstants.html#ae7b4458f5981571e705ec1e0bfce7958',1,'RadConstants']]], - ['get_5fref_5ftotal_5fsolar_5firrad_3021',['get_ref_total_solar_irrad',['../classRadConstants.html#a424fcb301777b7ff20173ad5e04ce9c7',1,'RadConstants']]], - ['get_5frefitablw_3022',['get_refitablw',['../classPhysProp.html#ac2a203dab2633475c2ae1c2419938a44',1,'PhysProp']]], - ['get_5frefitabsw_3023',['get_refitabsw',['../classPhysProp.html#a7f41249b88ac23b67a77b08f6315d5d3',1,'PhysProp']]], - ['get_5frefrtablw_3024',['get_refrtablw',['../classPhysProp.html#a65e6b3cc24d37ba1a31502109b7b8af4',1,'PhysProp']]], - ['get_5frefrtabsw_3025',['get_refrtabsw',['../classPhysProp.html#a2582929edf17c117af20c4b0005988c4',1,'PhysProp']]], - ['get_5frhcrystal_3026',['get_rhcrystal',['../classPhysProp.html#aafbca319b8c744f5d9c1bded51e79d66',1,'PhysProp']]], - ['get_5frhdeliques_3027',['get_rhdeliques',['../classPhysProp.html#a98643d482d2a30bfeb3cf4fc4b183c61',1,'PhysProp']]], - ['get_5frhs_3028',['get_rhs',['../classMRISplitIntegrator.html#aaf865e066a3c327ff296c99cd0566373',1,'MRISplitIntegrator']]], - ['get_5fsigmag_3029',['get_sigmag',['../classPhysProp.html#ab7161938f929a323e8deab03e78065a4',1,'PhysProp']]], - ['get_5fslow_5ffast_5ftimestep_5fratio_3030',['get_slow_fast_timestep_ratio',['../classMRISplitIntegrator.html#aba63019a6ac3ea9135772dcd91f49c86',1,'MRISplitIntegrator']]], - ['get_5fsolar_5fband_5ffraction_5firrad_3031',['get_solar_band_fraction_irrad',['../classRadConstants.html#ab017176abc1bf3d9b8f3f4250d75b77d',1,'RadConstants']]], - ['get_5fsourcefile_3032',['get_sourcefile',['../classPhysProp.html#a4c454e9b95620757825467640e4dec6b',1,'PhysProp']]], - ['get_5fsw_5fhygro_5fasm_3033',['get_sw_hygro_asm',['../classPhysProp.html#a88a179db56f5d5981ebe32aec54c2b5f',1,'PhysProp']]], - ['get_5fsw_5fhygro_5fext_3034',['get_sw_hygro_ext',['../classPhysProp.html#a0d6fc83cc794bd18f9bd8df70983b44e',1,'PhysProp']]], - ['get_5fsw_5fhygro_5fssa_3035',['get_sw_hygro_ssa',['../classPhysProp.html#afb27495eba78aaf7973ebc6a7b7d3dc5',1,'PhysProp']]], - ['get_5fsw_5fnonhygro_5fascat_3036',['get_sw_nonhygro_ascat',['../classPhysProp.html#a21de4ee0b6f23318467ecadf0490f03d',1,'PhysProp']]], - ['get_5fsw_5fnonhygro_5fasm_3037',['get_sw_nonhygro_asm',['../classPhysProp.html#aa623054605a298be89c3019768e6c974',1,'PhysProp']]], - ['get_5fsw_5fnonhygro_5fext_3038',['get_sw_nonhygro_ext',['../classPhysProp.html#a41916458742151ca9c3e22d3250f3862',1,'PhysProp']]], - ['get_5fsw_5fnonhygro_5fscat_3039',['get_sw_nonhygro_scat',['../classPhysProp.html#a15547827a05a343bfb5079fb03df1d07',1,'PhysProp']]], - ['get_5fsw_5fnonhygro_5fssa_3040',['get_sw_nonhygro_ssa',['../classPhysProp.html#a78c11ff5d667d5eaf5b7388e8c835384',1,'PhysProp']]], - ['get_5fsw_5fspectral_5fboundaries_3041',['get_sw_spectral_boundaries',['../classRadConstants.html#a7d32f7699c2933c60da5163952bfc4cb',1,'RadConstants']]], - ['get_5fsw_5fspectral_5fmidpoints_3042',['get_sw_spectral_midpoints',['../classRadConstants.html#adbfa470ed64a37cb47761a3a8a4678b7',1,'RadConstants']]], - ['get_5ft_5fstar_3043',['get_t_star',['../classABLMost.html#a108ee0811499e80c9d3226bb20da6973',1,'ABLMost']]], - ['get_5ft_5fsurf_3044',['get_t_surf',['../classABLMost.html#aca21d4f7aae064515bfec992b263d6d2',1,'ABLMost']]], - ['get_5ftime_3045',['get_time',['../structTimeInterpolatedData.html#a5b5af3383ee7cba684df54a2cb704d09',1,'TimeInterpolatedData']]], - ['get_5fturb_5floc_3046',['get_turb_loc',['../classNullWindFarm.html#a85f4b30a21138dce73af7ea3769d5580',1,'NullWindFarm']]], - ['get_5fturb_5fspec_3047',['get_turb_spec',['../classNullWindFarm.html#a11fd7bf185b205f71197da8ba41edfb6',1,'NullWindFarm']]], - ['get_5fu_5fstar_3048',['get_u_star',['../classABLMost.html#a0890b6ae8c80d8888effa040af808df0',1,'ABLMost']]], - ['get_5fvar_3049',['get_var',['../structTimeInterpolatedData.html#a65f3edf3f03a779a931f5c58bd438602',1,'TimeInterpolatedData']]], - ['get_5fvarname_3050',['Get_VarName',['../classLandSurface.html#a0e04fe7c9b1f9025e8f4458c4522b1d5',1,'LandSurface']]], - ['get_5fvname_3051',['get_vname',['../structNDArray.html#a4d7550e3c00d13d8397f1cfbdfd2ab48',1,'NDArray']]], - ['get_5fvolcanic_5frad_5fprops_3052',['get_volcanic_rad_props',['../classAerRadProps.html#a74842fff81711719376fc035b86dc1a7',1,'AerRadProps']]], - ['get_5fvolcanic_5fradius_5frad_5fprops_3053',['get_volcanic_radius_rad_props',['../classAerRadProps.html#a55507a56c5808f7480e42f4369cbf5a7',1,'AerRadProps']]], - ['get_5fvshape_3054',['get_vshape',['../structNDArray.html#ad839c3c65bd755311afb6f0dad08f336',1,'NDArray']]], - ['get_5fz0_3055',['get_z0',['../classABLMost.html#a626a97f944cb297c966a2ff7ce0bad97',1,'ABLMost']]], - ['get_5fzref_3056',['get_zref',['../classABLMost.html#ae638411093a2d3cc6cc525d4d7efa7ed',1,'ABLMost::get_zref()'],['../classMOSTAverage.html#a5b590fcba4d5d99178a0f8de14a1f174',1,'MOSTAverage::get_zref()']]], - ['getadvfluxreg_3057',['getAdvFluxReg',['../classERF.html#a4d6d990d8111c170692b1e9cc0e918b8',1,'ERF']]], - ['getcputime_3058',['getCPUTime',['../classERF.html#ae0597da6edf955cd138e52fd00380ff2',1,'ERF']]], - ['getdpdrgivenconstanttheta_3059',['getdPdRgivenConstantTheta',['../EOS_8H.html#a91cb501e961a0d0a6a3c62b5c36702cd',1,'EOS.H']]], - ['getepochtime_3060',['getEpochTime',['../NCWpsFile_8H.html#a370a1cca0113b3529a59c031ff71ffb8',1,'NCWpsFile.H']]], - ['getexnergivenp_3061',['getExnergivenP',['../EOS_8H.html#ab415ab4061cbbea05723267a0bf82c6b',1,'EOS.H']]], - ['getexnergivenrth_3062',['getExnergivenRTh',['../EOS_8H.html#a24b76fd72f051dc593840f006d79fd1a',1,'EOS.H']]], - ['getindx_3063',['getIndx',['../structDirectionSelector.html#a3950b636303028f398441fdc43d66dba',1,'DirectionSelector::getIndx()'],['../structDirectionSelector_3_010_01_4.html#a74c1bd1dca28b374962977ab8e32595e',1,'DirectionSelector< 0 >::getIndx()'],['../structDirectionSelector_3_011_01_4.html#ae5631c2b7917d2bc7cb479a266a61834',1,'DirectionSelector< 1 >::getIndx()'],['../structDirectionSelector_3_012_01_4.html#a5708ddb92c7d49cc9ba821f978251160',1,'DirectionSelector< 2 >::getIndx()']]], - ['getmask_3064',['GetMask',['../classERFFillPatcher.html#a2c0b26e7da60e74734191617c50754e1',1,'ERFFillPatcher']]], - ['getpgivenrth_3065',['getPgivenRTh',['../EOS_8H.html#a08354ab110fb9e873bce9250b4f4b46e',1,'EOS.H']]], - ['getrelaxmaskval_3066',['GetRelaxMaskVal',['../classERFFillPatcher.html#ae36410e2a848977e145b29c755ac8b5d',1,'ERFFillPatcher']]], - ['getrhogiventhetapress_3067',['getRhogivenThetaPress',['../EOS_8H.html#ae6954ba7deb6ec80482087dbbc51f4ed',1,'EOS.H']]], - ['getrhothetagivenp_3068',['getRhoThetagivenP',['../EOS_8H.html#a3cc0ee7727b26e21a97acfc2ad2e6d4d',1,'EOS.H']]], - ['getsetmaskval_3069',['GetSetMaskVal',['../classERFFillPatcher.html#aa1dd4ccdd7812057d8ee529015e3750d',1,'ERFFillPatcher']]], - ['gettgivenrandrth_3070',['getTgivenRandRTh',['../EOS_8H.html#a65cf1718b7a1fcc56cb16685642543da',1,'EOS.H']]], - ['getthgivenpandt_3071',['getThgivenPandT',['../EOS_8H.html#acd37b404bbf95073ffef2a1003dc56c5',1,'EOS.H']]], - ['getthgivenrandt_3072',['getThgivenRandT',['../EOS_8H.html#ad0e28e4df049e6e34fa4a973dd446506',1,'EOS.H']]], - ['goffgratch_5fsvp_5fice_3073',['GoffGratch_svp_ice',['../classSatMethods.html#a9e929b8ac05dbeaa78dc158159f84758',1,'SatMethods']]], - ['goffgratch_5fsvp_5fwater_3074',['GoffGratch_svp_water',['../classSatMethods.html#a264a283910d028a29c374900fc03017f',1,'SatMethods']]], - ['gotonextline_3075',['GotoNextLine',['../classERF.html#aaee255b031e63bd9b5807f6612739dbd',1,'ERF']]], - ['group_3076',['group',['../classncutils_1_1NCGroup.html#a757c592cddc2272a86033fe888232333',1,'ncutils::NCGroup']]] + ['gam_5fliquid_5flw_2930',['gam_liquid_lw',['../classCloudRadProps.html#a5772a63dc315f019d951785ebdb9c13d',1,'CloudRadProps']]], + ['gam_5fliquid_5fsw_2931',['gam_liquid_sw',['../classCloudRadProps.html#a2890fa11a8f395809fe215447e339c20',1,'CloudRadProps']]], + ['gammadist_5fliq_5foptics_5flw_2932',['gammadist_liq_optics_lw',['../classCloudRadProps.html#a31a396f1997438a7cbb347767dca311a',1,'CloudRadProps']]], + ['gammadist_5fliq_5foptics_5fsw_2933',['gammadist_liq_optics_sw',['../classCloudRadProps.html#adcaf1c142347cdcd3b761af9c7ee5c56',1,'CloudRadProps']]], + ['get_2934',['get',['../structncutils_1_1NCVar.html#ab39527f40ff0417de3c1ff8c441ced93',1,'ncutils::NCVar::get(float *) const'],['../structncutils_1_1NCVar.html#ac88fd209afde1f05e4f8f62e4c628bba',1,'ncutils::NCVar::get(double *) const'],['../structncutils_1_1NCVar.html#ad73293d8faae951e5f91cc3ba49d0f8c',1,'ncutils::NCVar::get(char *, const std::vector< size_t > &, const std::vector< size_t > &, const std::vector< ptrdiff_t > &) const'],['../structncutils_1_1NCVar.html#a7fe596943d518530da29a356d393090d',1,'ncutils::NCVar::get(char *, const std::vector< size_t > &, const std::vector< size_t > &) const'],['../structncutils_1_1NCVar.html#ab994c2ebc61623888b2e3fc6bf399bff',1,'ncutils::NCVar::get(int *, const std::vector< size_t > &, const std::vector< size_t > &, const std::vector< ptrdiff_t > &) const'],['../structncutils_1_1NCVar.html#a0a1082e40bee181e99e04ca81311bb70',1,'ncutils::NCVar::get(int *, const std::vector< size_t > &, const std::vector< size_t > &) const'],['../structncutils_1_1NCVar.html#ad6fc629cd035e5779e9e891fd37e68ae',1,'ncutils::NCVar::get(float *, const std::vector< size_t > &, const std::vector< size_t > &) const'],['../structncutils_1_1NCVar.html#ab3b5bad54cdc792e734690fcb5f4ecec',1,'ncutils::NCVar::get(double *, const std::vector< size_t > &, const std::vector< size_t > &, const std::vector< ptrdiff_t > &) const'],['../structncutils_1_1NCVar.html#a533478371e0bd09a6f4944bf5fe00684',1,'ncutils::NCVar::get(double *, const std::vector< size_t > &, const std::vector< size_t > &) const'],['../structncutils_1_1NCVar.html#a0a7990c37360c27e7ba2fb47617f5255',1,'ncutils::NCVar::get(int *) const'],['../structncutils_1_1NCVar.html#af036d4858171a98b8a951348a654a36c',1,'ncutils::NCVar::get(float *, const std::vector< size_t > &, const std::vector< size_t > &, const std::vector< ptrdiff_t > &) const']]], + ['get_5fabsplw_2935',['get_absplw',['../classPhysProp.html#a3f23e348e84101f927619a7eabc51a6e',1,'PhysProp']]], + ['get_5fabspsw_2936',['get_abspsw',['../classPhysProp.html#acf3cee48b7815ac002ea675876c52626',1,'PhysProp']]], + ['get_5faer_5flw_5fabs_2937',['get_aer_lw_abs',['../classMamConstituents.html#abced5d5167a48eec9a0923e2acab5ad3',1,'MamConstituents']]], + ['get_5faer_5flw_5fhygro_5fabs_2938',['get_aer_lw_hygro_abs',['../classMamConstituents.html#a615c6fe6e689806ebea977248a801859',1,'MamConstituents']]], + ['get_5faer_5fmu_2939',['get_aer_mu',['../classMamConstituents.html#a45a7f8dfd5b8b6f26fa5c5dd7628bfe9',1,'MamConstituents']]], + ['get_5faer_5fopticstype_2940',['get_aer_opticstype',['../classMamConstituents.html#a00c16dcafa756dac9f1e3191c39cf45a',1,'MamConstituents']]], + ['get_5faer_5fr_5flw_5fabs_2941',['get_aer_r_lw_abs',['../classMamConstituents.html#aa9738a1eeff88e7f5985c7ec990f37fd',1,'MamConstituents']]], + ['get_5faer_5fr_5fsw_5fascat_2942',['get_aer_r_sw_ascat',['../classMamConstituents.html#abea6b6de83d265c3d1ff0c0ef625dfac',1,'MamConstituents']]], + ['get_5faer_5fr_5fsw_5fext_2943',['get_aer_r_sw_ext',['../classMamConstituents.html#afd11f880a3bfdd56a327b33802cb9e5d',1,'MamConstituents']]], + ['get_5faer_5fr_5fsw_5fscat_2944',['get_aer_r_sw_scat',['../classMamConstituents.html#a5d379f3c6f64728cb5e2d983096e2320',1,'MamConstituents']]], + ['get_5faer_5frefindex_5faer_5flw_2945',['get_aer_refindex_aer_lw',['../classMamConstituents.html#ac97d69a81650adf8b2db593789a5c64f',1,'MamConstituents']]], + ['get_5faer_5frefindex_5faer_5fsw_2946',['get_aer_refindex_aer_sw',['../classMamConstituents.html#aed5b213b0f2621eee2983eff283ba7ad',1,'MamConstituents']]], + ['get_5faer_5fsw_5fhygro_5fasm_2947',['get_aer_sw_hygro_asm',['../classMamConstituents.html#a80a18aa331fc8986442ec2c1d19c0fc3',1,'MamConstituents']]], + ['get_5faer_5fsw_5fhygro_5fext_2948',['get_aer_sw_hygro_ext',['../classMamConstituents.html#a4b5f7c567835d54155d36cb7b7dd1016',1,'MamConstituents']]], + ['get_5faer_5fsw_5fhygro_5fssa_2949',['get_aer_sw_hygro_ssa',['../classMamConstituents.html#a55f18bc19313997a05e90bda52aca5ff',1,'MamConstituents']]], + ['get_5faer_5fsw_5fnonhygro_5fascat_2950',['get_aer_sw_nonhygro_ascat',['../classMamConstituents.html#a563e58d03a7787ca3a40c602591de716',1,'MamConstituents']]], + ['get_5faer_5fsw_5fnonhygro_5fasm_2951',['get_aer_sw_nonhygro_asm',['../classMamConstituents.html#a82c89926169f83caec2e2cb1b17c98dd',1,'MamConstituents']]], + ['get_5faer_5fsw_5fnonhygro_5fext_2952',['get_aer_sw_nonhygro_ext',['../classMamConstituents.html#a6253e342c1dfeac6b7516ed20182d621',1,'MamConstituents']]], + ['get_5faer_5fsw_5fnonhygro_5fscat_2953',['get_aer_sw_nonhygro_scat',['../classMamConstituents.html#ad441f881bce9bd57dcf87f906935e315',1,'MamConstituents']]], + ['get_5faer_5fsw_5fnonhygro_5fssa_2954',['get_aer_sw_nonhygro_ssa',['../classMamConstituents.html#a25c7c70ec61cb1fc2ed73020c483bc01',1,'MamConstituents']]], + ['get_5faername_2955',['get_aername',['../classMamConstituents.html#a06375fcfa88eed7c0b24a217a75ab454',1,'MamConstituents::get_aername()'],['../classPhysProp.html#a30b4a5030a225ee8dfc03334e562717a',1,'PhysProp::get_aername()']]], + ['get_5faero_5fnames_2956',['get_aero_names',['../classMamConstituents.html#a0fa8127d10ddf551b969208d28ec180e',1,'MamConstituents']]], + ['get_5fasmpsw_2957',['get_asmpsw',['../classPhysProp.html#a5d16e675e5880eae84501e11beb0771f',1,'PhysProp']]], + ['get_5fattr_2958',['get_attr',['../structncutils_1_1NCVar.html#a774b3bda4e9dc903ecfa35af38e863c6',1,'ncutils::NCVar::get_attr(const std::string &name) const'],['../structncutils_1_1NCVar.html#aa5b83489bee14205286a757e0789ddbd',1,'ncutils::NCVar::get_attr(const std::string &name, std::vector< double > &value) const'],['../structncutils_1_1NCVar.html#af09b0c94dceb8666a7be0d6167bfc4b4',1,'ncutils::NCVar::get_attr(const std::string &name, std::vector< float > &value) const'],['../structncutils_1_1NCVar.html#a720f935c1949f56e31eb057dbc1e7ea6',1,'ncutils::NCVar::get_attr(const std::string &name, std::vector< int > &value) const'],['../classncutils_1_1NCGroup.html#a2f10bc405d66f794c4e8a8fd71dc718d',1,'ncutils::NCGroup::get_attr(const std::string &name) const'],['../classncutils_1_1NCGroup.html#a0f24e998915e60b177d036595f0f2734',1,'ncutils::NCGroup::get_attr(const std::string &name, std::vector< double > &value) const'],['../classncutils_1_1NCGroup.html#ac25f1ca78fc2cd66e7b80fdcc30f512f',1,'ncutils::NCGroup::get_attr(const std::string &name, std::vector< float > &value) const'],['../classncutils_1_1NCGroup.html#ac5beadfdf8519b384504dc82f6bdecc5',1,'ncutils::NCGroup::get_attr(const std::string &name, std::vector< int > &value) const']]], + ['get_5faverage_2959',['get_average',['../classMOSTAverage.html#aa52cd2c83e24eef47d6a409b7bcf4c81',1,'MOSTAverage']]], + ['get_5fcloud_5foptics_5flw_2960',['get_cloud_optics_lw',['../classOptics.html#af5f3fa679301f0ead8b8155626b2e710',1,'Optics']]], + ['get_5fcloud_5foptics_5fsw_2961',['get_cloud_optics_sw',['../classOptics.html#aee82856b88240c428aefc6f47bf9500c',1,'Optics']]], + ['get_5fdata_2962',['get_data',['../structNDArray.html#aa1c5762c2de2f4286d4f341b618df1e5',1,'NDArray']]], + ['get_5fdata_5fptr_2963',['Get_Data_Ptr',['../classLandSurface.html#af125bc0c5860b3564afdfce10ec253ea',1,'LandSurface']]], + ['get_5fdata_5fsize_2964',['Get_Data_Size',['../classLandSurface.html#a2652af07555cc98d15d3516371fa42e6',1,'LandSurface']]], + ['get_5fdensity_5faer_2965',['get_density_aer',['../classMamConstituents.html#a2c87a154e21ee4b762e5b86a118c9d99',1,'MamConstituents::get_density_aer()'],['../classPhysProp.html#a2d695487896685188cfc27622d7d8b92',1,'PhysProp::get_density_aer(int &id, real &density_aer)']]], + ['get_5fdgnum_2966',['get_dgnum',['../classPhysProp.html#a3c87348b9c02ab110724574c78c47828',1,'PhysProp']]], + ['get_5fdgnumhi_2967',['get_dgnumhi',['../classPhysProp.html#a6c96e25dea777230786bac835967cca4',1,'PhysProp']]], + ['get_5fdgnumlo_2968',['get_dgnumlo',['../classPhysProp.html#a18f5b5ef7efc62872920880ae0387abb',1,'PhysProp']]], + ['get_5fdispersion_5faer_2969',['get_dispersion_aer',['../classMamConstituents.html#ae0eb743aa6313e75108c9793e87ec247',1,'MamConstituents::get_dispersion_aer()'],['../classPhysProp.html#a85cfc46f9dba253c1680a8098a862c7a',1,'PhysProp::get_dispersion_aer(int &id, real &dispersion_aer)']]], + ['get_5fdryrad_5faer_2970',['get_dryrad_aer',['../classPhysProp.html#a00e635f7c927cf65fb9849888954c5a8',1,'PhysProp::get_dryrad_aer()'],['../classMamConstituents.html#a94cc78290a0a92bf8160d0320c661d9a',1,'MamConstituents::get_dryrad_aer()']]], + ['get_5fextpsw_2971',['get_extpsw',['../classPhysProp.html#a7736eb5e1fc41ef331f9562daacf2a19',1,'PhysProp']]], + ['get_5fflux_5fptr_2972',['Get_Flux_Ptr',['../classLandSurface.html#a967a4b0772dc721d0242d38613ac430e',1,'LandSurface']]], + ['get_5fgas_5fnames_2973',['get_gas_names',['../classMamConstituents.html#abb525061b723e29201646eb76f460672',1,'MamConstituents']]], + ['get_5fgas_5fvmr_2974',['get_gas_vmr',['../classRadiation.html#a17087b1575e1d891f0617b22ca78bec3',1,'Radiation']]], + ['get_5fgpoint_5fbands_5flw_2975',['get_gpoint_bands_lw',['../classRrtmgp.html#a3599409b29ca122c0ac8e360097d6551',1,'Rrtmgp']]], + ['get_5fgpoint_5fbands_5fsw_2976',['get_gpoint_bands_sw',['../classRrtmgp.html#a731fae99697b1f9f94847726d59fb77e',1,'Rrtmgp']]], + ['get_5fhygro_5faer_2977',['get_hygro_aer',['../classMamConstituents.html#ad1737cb1bc9e819f593ad262d5f2a764',1,'MamConstituents::get_hygro_aer()'],['../classPhysProp.html#a484174f1c3c34929564175635ac0cea4',1,'PhysProp::get_hygro_aer()']]], + ['get_5fhygro_5frad_5fprops_2978',['get_hygro_rad_props',['../classAerRadProps.html#a6a1e71160911bbc52d09bdbd73acb219',1,'AerRadProps']]], + ['get_5flsm_5fgeom_2979',['Get_Lsm_Geom',['../classLandSurface.html#a368a57f198d060805dcd615677366c3c',1,'LandSurface']]], + ['get_5flsm_5ftsurf_2980',['get_lsm_tsurf',['../classABLMost.html#ae28fd8a21f4b514875c24fe4b8e85081',1,'ABLMost']]], + ['get_5flw_5fabs_2981',['get_lw_abs',['../classPhysProp.html#aee93d9cfecbcef45bc4ff5c55e924d3c',1,'PhysProp']]], + ['get_5flw_5fhygro_5fabs_2982',['get_lw_hygro_abs',['../classPhysProp.html#ada1267eec64ed72b370c245bdaf28cde',1,'PhysProp']]], + ['get_5flw_5fspectral_5fboundaries_2983',['get_lw_spectral_boundaries',['../classRadConstants.html#a242b8b89c7cd6415af91e2bc35a5fd58',1,'RadConstants']]], + ['get_5flw_5fspectral_5fmidpoints_2984',['get_lw_spectral_midpoints',['../classRadConstants.html#a1ac73a96f506a7f16b7fd7500e1fa592',1,'RadConstants']]], + ['get_5fmac_5favg_2985',['get_mac_avg',['../classABLMost.html#af26cdc6b8c162c14b2db32eb395f0565',1,'ABLMost']]], + ['get_5fmam_5fdensity_5faer_2986',['get_mam_density_aer',['../classMamConstituents.html#a0d5796bba8b3031a99ef09309a2508e5',1,'MamConstituents']]], + ['get_5fmam_5fhygro_5faer_2987',['get_mam_hygro_aer',['../classMamConstituents.html#a53ef55dfb6cfe3f77dcd16d4ccec5237',1,'MamConstituents']]], + ['get_5fmam_5fprops_2988',['get_mam_props',['../classMamConstituents.html#ae8c4861e3d2d79f208f5b78270aa72f6',1,'MamConstituents::get_mam_props(int list_idx, int mode_idx, int spec_idx, real &density_aer, std::string &spectype, real &hygro_aer, real1d &refindex_real_aer_sw, real1d &refindex_im_aer_sw)'],['../classMamConstituents.html#ae437f14b2fa3b6f8eb860517311cd76e',1,'MamConstituents::get_mam_props(int list_idx, int mode_idx, int spec_idx, real &density_aer)']]], + ['get_5fmam_5fprops_5flw_2989',['get_mam_props_lw',['../classMamConstituents.html#a4e30afbc74de6ccb53def99d3d2b89d7',1,'MamConstituents']]], + ['get_5fmam_5fprops_5fsw_2990',['get_mam_props_sw',['../classMamConstituents.html#a93e2f68e7941afb2fa38f23970e27967',1,'MamConstituents']]], + ['get_5fmax_5ftemperature_2991',['get_max_temperature',['../classRrtmgp.html#a54d681da78a4c643e44de12c096429b1',1,'Rrtmgp']]], + ['get_5fmin_5ftemperature_2992',['get_min_temperature',['../classRrtmgp.html#a9f2ab92b47552998f259e3e8cfd1ae25',1,'Rrtmgp']]], + ['get_5fmode_5fnspec_2993',['get_mode_nspec',['../classMamConstituents.html#a00fcbe86b80e26221e3895c920d7cbc2',1,'MamConstituents']]], + ['get_5fmode_5fprops_2994',['get_mode_props',['../classMamConstituents.html#a3bafcd362a064a323c1b6a241a6ece68',1,'MamConstituents::get_mode_props(int list_idx, int mode_idx, real &sigmag, real &rhcrystal, real &rhdeliques)'],['../classMamConstituents.html#ae55ad4c9370b5dfc247eb3bd5127db66',1,'MamConstituents::get_mode_props(int list_idx, int mode_idx, real &sigmag, real2d &refrtablw, real2d &refitablw, real4d &absplw)'],['../classMamConstituents.html#a1dd1ca5edf26c219728b21d5ff2241c4',1,'MamConstituents::get_mode_props(int list_idx, int mode_idx, real &sigmag, real2d &refrtabsw, real2d &refitabsw, real4d &extpsw, real4d &abspsw, real4d &asmpsw)'],['../classMamConstituents.html#a036428179a899d517fc19379ab73e22f',1,'MamConstituents::get_mode_props(int list_idx, int mode_idx, int &ncoef, int &prefr, int &prefi)'],['../classMamConstituents.html#aa358f0971ab4250d2b5b540ca0a5d4ed',1,'MamConstituents::get_mode_props(int list_idx, int mode_idx, real &dgnum, real &dgnumhi, real &dgnumlo, real &sigmag)']]], + ['get_5fmu_2995',['get_mu',['../classPhysProp.html#a8c3737a4e44479924b64bd2fa1bb630e',1,'PhysProp']]], + ['get_5fmu_5flambda_5fweights_2996',['get_mu_lambda_weights',['../classCloudRadProps.html#ab5a9764068553f94a590310ff990a97d',1,'CloudRadProps']]], + ['get_5fnaero_2997',['get_naero',['../classMamConstituents.html#a4bfaf145eff109a2e41fa964735b6f79',1,'MamConstituents']]], + ['get_5fnband_5flw_2998',['get_nband_lw',['../classRrtmgp.html#a63713fbd29d350a8d26ba7cd745439f8',1,'Rrtmgp']]], + ['get_5fnband_5fsw_2999',['get_nband_sw',['../classRrtmgp.html#a3d2da27814d96e130b6f0486b36fc6e9',1,'Rrtmgp']]], + ['get_5fncoef_3000',['get_ncoef',['../classPhysProp.html#a0b992ac96f63e3f2b87797a88a6d2c5e',1,'PhysProp']]], + ['get_5fngas_3001',['get_ngas',['../classMamConstituents.html#aa46c21d9af275e89afd383ca15dd0585',1,'MamConstituents']]], + ['get_5fngpt_5flw_3002',['get_ngpt_lw',['../classRrtmgp.html#a208b68626f3d16b530e053f6f0d99d56',1,'Rrtmgp']]], + ['get_5fngpt_5fsw_3003',['get_ngpt_sw',['../classRrtmgp.html#a6f4be82ac30aabe0107060413c7bd9a1',1,'Rrtmgp']]], + ['get_5fnmodes_3004',['get_nmodes',['../classMamConstituents.html#a6e5af88612848490459d63da05a18360',1,'MamConstituents']]], + ['get_5fnonhygro_5frad_5fprops_3005',['get_nonhygro_rad_props',['../classAerRadProps.html#af6e6827c17d2247b72337a35875ea0e0',1,'AerRadProps']]], + ['get_5fnum_5fto_5fmass_5faer_3006',['get_num_to_mass_aer',['../classMamConstituents.html#ac2399ae888f69972215535a258a2f4fc',1,'MamConstituents::get_num_to_mass_aer()'],['../classPhysProp.html#a913350d86621759ab91c3712cad9215f',1,'PhysProp::get_num_to_mass_aer()']]], + ['get_5fnumber_5fsw_5fbands_3007',['get_number_sw_bands',['../classRadConstants.html#a2ebe3ffd07e9c18b028da947715f3f8f',1,'RadConstants']]], + ['get_5folen_3008',['get_olen',['../classABLMost.html#aef7480dbb43cafff3be93a95240c1ec3',1,'ABLMost']]], + ['get_5fopticstype_3009',['get_opticstype',['../classPhysProp.html#a10da2795ee22a59a6bf00065db618038',1,'PhysProp']]], + ['get_5fpb_5fmag_3010',['get_pb_mag',['../structTurbulentPerturbation.html#a237c085bf6fa265eef471d19bbca613f',1,'TurbulentPerturbation']]], + ['get_5fpb_5fnetzero_3011',['get_pb_netZero',['../structTurbulentPerturbation.html#aa8a048ec67a9e110cef012105dd615cf',1,'TurbulentPerturbation']]], + ['get_5fprefi_3012',['get_prefi',['../classPhysProp.html#a31f4f3ddb1cb5b2d15f1f826ae59af85',1,'PhysProp']]], + ['get_5fprefr_3013',['get_prefr',['../classPhysProp.html#a656181b164401d6423f60acfc8ef7813',1,'PhysProp']]], + ['get_5fqmoist_5fptr_3014',['Get_Qmoist_Ptr',['../classEulerianMicrophysics.html#a416981f230a126387b9a664a5a241e9c',1,'EulerianMicrophysics::Get_Qmoist_Ptr()'],['../classMicrophysics.html#a8edecc53bfdfd0d916d37e3584ebb9ff',1,'Microphysics::Get_Qmoist_Ptr()']]], + ['get_5fqmoist_5fsize_3015',['Get_Qmoist_Size',['../classEulerianMicrophysics.html#ad4983e19f621a55ad7d942c881215c72',1,'EulerianMicrophysics::Get_Qmoist_Size()'],['../classMicrophysics.html#a069e6013efb78d268394868d0cfc6382',1,'Microphysics::Get_Qmoist_Size()']]], + ['get_5fqstate_5fsize_3016',['Get_Qstate_Size',['../classEulerianMicrophysics.html#a3e973738b4e0bbaa7269ab2395322929',1,'EulerianMicrophysics::Get_Qstate_Size()'],['../classMicrophysics.html#a72f6091687c014c5be34275b0975d194',1,'Microphysics::Get_Qstate_Size()']]], + ['get_5fr_5flw_5fabs_3017',['get_r_lw_abs',['../classPhysProp.html#a025a2d9ecc2c4d271d08d0cb75b49f33',1,'PhysProp']]], + ['get_5fr_5fsw_5fascat_3018',['get_r_sw_ascat',['../classPhysProp.html#a4f1f95c6a1c59e037e52668e88b10191',1,'PhysProp']]], + ['get_5fr_5fsw_5fext_3019',['get_r_sw_ext',['../classPhysProp.html#a3b73c4eb2b4d224b99a67053944b5e91',1,'PhysProp']]], + ['get_5fr_5fsw_5fscat_3020',['get_r_sw_scat',['../classPhysProp.html#a8390c01827baf6d2b47eede1766cf548',1,'PhysProp']]], + ['get_5fref_5fim_5faer_5flw_3021',['get_ref_im_aer_lw',['../classPhysProp.html#acf52dbf154af6672eaa9bcf52f73d5c3',1,'PhysProp']]], + ['get_5fref_5fim_5faer_5fsw_3022',['get_ref_im_aer_sw',['../classPhysProp.html#a0c6b02b2894408623fa1a18770e1013f',1,'PhysProp']]], + ['get_5fref_5freal_5faer_5flw_3023',['get_ref_real_aer_lw',['../classPhysProp.html#ac1fffb326bba13fcf21a913a019a715b',1,'PhysProp']]], + ['get_5fref_5freal_5faer_5fsw_3024',['get_ref_real_aer_sw',['../classPhysProp.html#ae549c86a3cd5b8645006f5d39393429e',1,'PhysProp']]], + ['get_5fref_5fsolar_5fband_5firrad_3025',['get_ref_solar_band_irrad',['../classRadConstants.html#ae7b4458f5981571e705ec1e0bfce7958',1,'RadConstants']]], + ['get_5fref_5ftotal_5fsolar_5firrad_3026',['get_ref_total_solar_irrad',['../classRadConstants.html#a424fcb301777b7ff20173ad5e04ce9c7',1,'RadConstants']]], + ['get_5frefitablw_3027',['get_refitablw',['../classPhysProp.html#ac2a203dab2633475c2ae1c2419938a44',1,'PhysProp']]], + ['get_5frefitabsw_3028',['get_refitabsw',['../classPhysProp.html#a7f41249b88ac23b67a77b08f6315d5d3',1,'PhysProp']]], + ['get_5frefrtablw_3029',['get_refrtablw',['../classPhysProp.html#a65e6b3cc24d37ba1a31502109b7b8af4',1,'PhysProp']]], + ['get_5frefrtabsw_3030',['get_refrtabsw',['../classPhysProp.html#a2582929edf17c117af20c4b0005988c4',1,'PhysProp']]], + ['get_5frhcrystal_3031',['get_rhcrystal',['../classPhysProp.html#aafbca319b8c744f5d9c1bded51e79d66',1,'PhysProp']]], + ['get_5frhdeliques_3032',['get_rhdeliques',['../classPhysProp.html#a98643d482d2a30bfeb3cf4fc4b183c61',1,'PhysProp']]], + ['get_5frhs_3033',['get_rhs',['../classMRISplitIntegrator.html#aaf865e066a3c327ff296c99cd0566373',1,'MRISplitIntegrator']]], + ['get_5fsigmag_3034',['get_sigmag',['../classPhysProp.html#ab7161938f929a323e8deab03e78065a4',1,'PhysProp']]], + ['get_5fslow_5ffast_5ftimestep_5fratio_3035',['get_slow_fast_timestep_ratio',['../classMRISplitIntegrator.html#aba63019a6ac3ea9135772dcd91f49c86',1,'MRISplitIntegrator']]], + ['get_5fsolar_5fband_5ffraction_5firrad_3036',['get_solar_band_fraction_irrad',['../classRadConstants.html#ab017176abc1bf3d9b8f3f4250d75b77d',1,'RadConstants']]], + ['get_5fsourcefile_3037',['get_sourcefile',['../classPhysProp.html#a4c454e9b95620757825467640e4dec6b',1,'PhysProp']]], + ['get_5fsw_5fhygro_5fasm_3038',['get_sw_hygro_asm',['../classPhysProp.html#a88a179db56f5d5981ebe32aec54c2b5f',1,'PhysProp']]], + ['get_5fsw_5fhygro_5fext_3039',['get_sw_hygro_ext',['../classPhysProp.html#a0d6fc83cc794bd18f9bd8df70983b44e',1,'PhysProp']]], + ['get_5fsw_5fhygro_5fssa_3040',['get_sw_hygro_ssa',['../classPhysProp.html#afb27495eba78aaf7973ebc6a7b7d3dc5',1,'PhysProp']]], + ['get_5fsw_5fnonhygro_5fascat_3041',['get_sw_nonhygro_ascat',['../classPhysProp.html#a21de4ee0b6f23318467ecadf0490f03d',1,'PhysProp']]], + ['get_5fsw_5fnonhygro_5fasm_3042',['get_sw_nonhygro_asm',['../classPhysProp.html#aa623054605a298be89c3019768e6c974',1,'PhysProp']]], + ['get_5fsw_5fnonhygro_5fext_3043',['get_sw_nonhygro_ext',['../classPhysProp.html#a41916458742151ca9c3e22d3250f3862',1,'PhysProp']]], + ['get_5fsw_5fnonhygro_5fscat_3044',['get_sw_nonhygro_scat',['../classPhysProp.html#a15547827a05a343bfb5079fb03df1d07',1,'PhysProp']]], + ['get_5fsw_5fnonhygro_5fssa_3045',['get_sw_nonhygro_ssa',['../classPhysProp.html#a78c11ff5d667d5eaf5b7388e8c835384',1,'PhysProp']]], + ['get_5fsw_5fspectral_5fboundaries_3046',['get_sw_spectral_boundaries',['../classRadConstants.html#a7d32f7699c2933c60da5163952bfc4cb',1,'RadConstants']]], + ['get_5fsw_5fspectral_5fmidpoints_3047',['get_sw_spectral_midpoints',['../classRadConstants.html#adbfa470ed64a37cb47761a3a8a4678b7',1,'RadConstants']]], + ['get_5ft_5fstar_3048',['get_t_star',['../classABLMost.html#a108ee0811499e80c9d3226bb20da6973',1,'ABLMost']]], + ['get_5ft_5fsurf_3049',['get_t_surf',['../classABLMost.html#aca21d4f7aae064515bfec992b263d6d2',1,'ABLMost']]], + ['get_5ftime_3050',['get_time',['../structTimeInterpolatedData.html#a5b5af3383ee7cba684df54a2cb704d09',1,'TimeInterpolatedData']]], + ['get_5fturb_5floc_3051',['get_turb_loc',['../classNullWindFarm.html#a85f4b30a21138dce73af7ea3769d5580',1,'NullWindFarm']]], + ['get_5fturb_5fspec_3052',['get_turb_spec',['../classNullWindFarm.html#a11fd7bf185b205f71197da8ba41edfb6',1,'NullWindFarm']]], + ['get_5fu_5fstar_3053',['get_u_star',['../classABLMost.html#a0890b6ae8c80d8888effa040af808df0',1,'ABLMost']]], + ['get_5fvar_3054',['get_var',['../structTimeInterpolatedData.html#a65f3edf3f03a779a931f5c58bd438602',1,'TimeInterpolatedData']]], + ['get_5fvarname_3055',['Get_VarName',['../classLandSurface.html#a0e04fe7c9b1f9025e8f4458c4522b1d5',1,'LandSurface']]], + ['get_5fvname_3056',['get_vname',['../structNDArray.html#a4d7550e3c00d13d8397f1cfbdfd2ab48',1,'NDArray']]], + ['get_5fvolcanic_5frad_5fprops_3057',['get_volcanic_rad_props',['../classAerRadProps.html#a74842fff81711719376fc035b86dc1a7',1,'AerRadProps']]], + ['get_5fvolcanic_5fradius_5frad_5fprops_3058',['get_volcanic_radius_rad_props',['../classAerRadProps.html#a55507a56c5808f7480e42f4369cbf5a7',1,'AerRadProps']]], + ['get_5fvshape_3059',['get_vshape',['../structNDArray.html#ad839c3c65bd755311afb6f0dad08f336',1,'NDArray']]], + ['get_5fz0_3060',['get_z0',['../classABLMost.html#a626a97f944cb297c966a2ff7ce0bad97',1,'ABLMost']]], + ['get_5fzref_3061',['get_zref',['../classABLMost.html#ae638411093a2d3cc6cc525d4d7efa7ed',1,'ABLMost::get_zref()'],['../classMOSTAverage.html#a5b590fcba4d5d99178a0f8de14a1f174',1,'MOSTAverage::get_zref()']]], + ['getadvfluxreg_3062',['getAdvFluxReg',['../classERF.html#a4d6d990d8111c170692b1e9cc0e918b8',1,'ERF']]], + ['getcputime_3063',['getCPUTime',['../classERF.html#ae0597da6edf955cd138e52fd00380ff2',1,'ERF']]], + ['getdpdrgivenconstanttheta_3064',['getdPdRgivenConstantTheta',['../EOS_8H.html#a91cb501e961a0d0a6a3c62b5c36702cd',1,'EOS.H']]], + ['getepochtime_3065',['getEpochTime',['../NCWpsFile_8H.html#a370a1cca0113b3529a59c031ff71ffb8',1,'NCWpsFile.H']]], + ['getexnergivenp_3066',['getExnergivenP',['../EOS_8H.html#ab415ab4061cbbea05723267a0bf82c6b',1,'EOS.H']]], + ['getexnergivenrth_3067',['getExnergivenRTh',['../EOS_8H.html#a24b76fd72f051dc593840f006d79fd1a',1,'EOS.H']]], + ['getindx_3068',['getIndx',['../structDirectionSelector.html#a3950b636303028f398441fdc43d66dba',1,'DirectionSelector::getIndx()'],['../structDirectionSelector_3_010_01_4.html#a74c1bd1dca28b374962977ab8e32595e',1,'DirectionSelector< 0 >::getIndx()'],['../structDirectionSelector_3_011_01_4.html#ae5631c2b7917d2bc7cb479a266a61834',1,'DirectionSelector< 1 >::getIndx()'],['../structDirectionSelector_3_012_01_4.html#a5708ddb92c7d49cc9ba821f978251160',1,'DirectionSelector< 2 >::getIndx()']]], + ['getmask_3069',['GetMask',['../classERFFillPatcher.html#a2c0b26e7da60e74734191617c50754e1',1,'ERFFillPatcher']]], + ['getpgivenrth_3070',['getPgivenRTh',['../EOS_8H.html#a08354ab110fb9e873bce9250b4f4b46e',1,'EOS.H']]], + ['getrelaxmaskval_3071',['GetRelaxMaskVal',['../classERFFillPatcher.html#ae36410e2a848977e145b29c755ac8b5d',1,'ERFFillPatcher']]], + ['getrhogiventhetapress_3072',['getRhogivenThetaPress',['../EOS_8H.html#ae6954ba7deb6ec80482087dbbc51f4ed',1,'EOS.H']]], + ['getrhothetagivenp_3073',['getRhoThetagivenP',['../EOS_8H.html#a3cc0ee7727b26e21a97acfc2ad2e6d4d',1,'EOS.H']]], + ['getsetmaskval_3074',['GetSetMaskVal',['../classERFFillPatcher.html#aa1dd4ccdd7812057d8ee529015e3750d',1,'ERFFillPatcher']]], + ['gettgivenrandrth_3075',['getTgivenRandRTh',['../EOS_8H.html#a65cf1718b7a1fcc56cb16685642543da',1,'EOS.H']]], + ['getthgivenpandt_3076',['getThgivenPandT',['../EOS_8H.html#acd37b404bbf95073ffef2a1003dc56c5',1,'EOS.H']]], + ['getthgivenrandt_3077',['getThgivenRandT',['../EOS_8H.html#ad0e28e4df049e6e34fa4a973dd446506',1,'EOS.H']]], + ['goffgratch_5fsvp_5fice_3078',['GoffGratch_svp_ice',['../classSatMethods.html#a9e929b8ac05dbeaa78dc158159f84758',1,'SatMethods']]], + ['goffgratch_5fsvp_5fwater_3079',['GoffGratch_svp_water',['../classSatMethods.html#a264a283910d028a29c374900fc03017f',1,'SatMethods']]], + ['gotonextline_3080',['GotoNextLine',['../classERF.html#aaee255b031e63bd9b5807f6612739dbd',1,'ERF']]], + ['group_3081',['group',['../classncutils_1_1NCGroup.html#a757c592cddc2272a86033fe888232333',1,'ncutils::NCGroup']]] ]; diff --git a/search/functions_7.js b/search/functions_7.js index 2ad0701508..9e2b3238b1 100644 --- a/search/functions_7.js +++ b/search/functions_7.js @@ -1,10 +1,10 @@ var searchData= [ - ['has_5fattr_3077',['has_attr',['../structncutils_1_1NCVar.html#a0a4ddce55f60e3accbaf02441b6484cf',1,'ncutils::NCVar::has_attr()'],['../classncutils_1_1NCGroup.html#a1bfb961e66e7c635ae92cee3f8cdeeac',1,'ncutils::NCGroup::has_attr(const std::string &) const']]], - ['has_5fdim_3078',['has_dim',['../classncutils_1_1NCGroup.html#ac233f0c14bd6b340fcd5a14da53b5042',1,'ncutils::NCGroup']]], - ['has_5fgroup_3079',['has_group',['../classncutils_1_1NCGroup.html#a00ea1ccd06adafc43396239ec842b23f',1,'ncutils::NCGroup']]], - ['has_5fvar_3080',['has_var',['../classncutils_1_1NCGroup.html#aaad218c7ea51b515386d5f1ce8a90192',1,'ncutils::NCGroup']]], - ['host_5fto_5fdevice_3081',['host_to_device',['../structInputSoundingData.html#ab036816413b1f708981ed6c2b3b113d5',1,'InputSoundingData']]], - ['hygro_5foptics_5finit_3082',['hygro_optics_init',['../classPhysProp.html#a6c73b423727e5d04394d0c030fd217f0',1,'PhysProp']]], - ['hygroscopic_5foptics_5finit_3083',['hygroscopic_optics_init',['../classPhysProp.html#a012aafa0dfffea201ceb407815094ffd',1,'PhysProp']]] + ['has_5fattr_3082',['has_attr',['../structncutils_1_1NCVar.html#a0a4ddce55f60e3accbaf02441b6484cf',1,'ncutils::NCVar::has_attr()'],['../classncutils_1_1NCGroup.html#a1bfb961e66e7c635ae92cee3f8cdeeac',1,'ncutils::NCGroup::has_attr(const std::string &) const']]], + ['has_5fdim_3083',['has_dim',['../classncutils_1_1NCGroup.html#ac233f0c14bd6b340fcd5a14da53b5042',1,'ncutils::NCGroup']]], + ['has_5fgroup_3084',['has_group',['../classncutils_1_1NCGroup.html#a00ea1ccd06adafc43396239ec842b23f',1,'ncutils::NCGroup']]], + ['has_5fvar_3085',['has_var',['../classncutils_1_1NCGroup.html#aaad218c7ea51b515386d5f1ce8a90192',1,'ncutils::NCGroup']]], + ['host_5fto_5fdevice_3086',['host_to_device',['../structInputSoundingData.html#ab036816413b1f708981ed6c2b3b113d5',1,'InputSoundingData']]], + ['hygro_5foptics_5finit_3087',['hygro_optics_init',['../classPhysProp.html#a6c73b423727e5d04394d0c030fd217f0',1,'PhysProp']]], + ['hygroscopic_5foptics_5finit_3088',['hygroscopic_optics_init',['../classPhysProp.html#a012aafa0dfffea201ceb407815094ffd',1,'PhysProp']]] ]; diff --git a/search/functions_8.js b/search/functions_8.js index 3d313d5ea3..9fdbd9f792 100644 --- a/search/functions_8.js +++ b/search/functions_8.js @@ -1,90 +1,90 @@ var searchData= [ - ['ice_5feffective_5fradius_3084',['ice_effective_radius',['../Parameterizations_8H.html#adec9d0652512bd8a82a6dcea536c9138',1,'Parameterizations.H']]], - ['icefall_3085',['IceFall',['../classSAM.html#a363b3bb27b6e6cdad8693363b3262419',1,'SAM']]], - ['impose_5flateral_5fcons_5fbcs_3086',['impose_lateral_cons_bcs',['../classERFPhysBCFunct__cons.html#ae3b80b99f4ef84e99130d2142d61c402',1,'ERFPhysBCFunct_cons']]], - ['impose_5flateral_5fxvel_5fbcs_3087',['impose_lateral_xvel_bcs',['../classERFPhysBCFunct__u.html#a9b203cbd4f9a1fd40961067424ae5f81',1,'ERFPhysBCFunct_u']]], - ['impose_5flateral_5fyvel_5fbcs_3088',['impose_lateral_yvel_bcs',['../classERFPhysBCFunct__v.html#adee10e9098b1261837e642a76632c141',1,'ERFPhysBCFunct_v']]], - ['impose_5flateral_5fzvel_5fbcs_3089',['impose_lateral_zvel_bcs',['../classERFPhysBCFunct__w.html#a9cd6e53c9598fe025c3c78945c2b1b83',1,'ERFPhysBCFunct_w::impose_lateral_zvel_bcs()'],['../classERFPhysBCFunct__w__no__terrain.html#a25d10d63224b2acd259cc6309e5bce7e',1,'ERFPhysBCFunct_w_no_terrain::impose_lateral_zvel_bcs()']]], - ['impose_5fmost_5fbcs_3090',['impose_most_bcs',['../classABLMost.html#a8e0510d69090549d147c9ebf31f24e5a',1,'ABLMost']]], - ['impose_5fvertical_5fcons_5fbcs_3091',['impose_vertical_cons_bcs',['../classERFPhysBCFunct__cons.html#ad56fdfadfae102cf4e7419eaf756cb80',1,'ERFPhysBCFunct_cons']]], - ['impose_5fvertical_5fxvel_5fbcs_3092',['impose_vertical_xvel_bcs',['../classERFPhysBCFunct__u.html#afdf8afb39002a2daac0fc16a5db76d17',1,'ERFPhysBCFunct_u']]], - ['impose_5fvertical_5fyvel_5fbcs_3093',['impose_vertical_yvel_bcs',['../classERFPhysBCFunct__v.html#a9e295ac17321f4d577f1d103f6b665a2',1,'ERFPhysBCFunct_v']]], - ['impose_5fvertical_5fzvel_5fbcs_3094',['impose_vertical_zvel_bcs',['../classERFPhysBCFunct__w.html#a9225c49cf092c6eed2bf9bdf1ef4b9cf',1,'ERFPhysBCFunct_w::impose_vertical_zvel_bcs()'],['../classERFPhysBCFunct__w__no__terrain.html#ab4e5639d9ae8abd973c0d5329705d200',1,'ERFPhysBCFunct_w_no_terrain::impose_vertical_zvel_bcs()']]], - ['ingested_5fdensity_3095',['ingested_density',['../classReadBndryPlanes.html#ab54133701e8e086315fa7299257199a2',1,'ReadBndryPlanes']]], - ['ingested_5fke_3096',['ingested_KE',['../classReadBndryPlanes.html#a85a5f25c283db679f67e10167cc6ee5c',1,'ReadBndryPlanes']]], - ['ingested_5fq1_3097',['ingested_q1',['../classReadBndryPlanes.html#a02a0fca675471f10ea6ccb1671ce1cb0',1,'ReadBndryPlanes']]], - ['ingested_5fq2_3098',['ingested_q2',['../classReadBndryPlanes.html#abf22791c2eaf68739ffea26e370724df',1,'ReadBndryPlanes']]], - ['ingested_5fqke_3099',['ingested_QKE',['../classReadBndryPlanes.html#a65d7253b6c2237c3aa60343740d25dd6',1,'ReadBndryPlanes']]], - ['ingested_5fscalar_3100',['ingested_scalar',['../classReadBndryPlanes.html#a6051259f37b0f38a9d74de7b9405dd03',1,'ReadBndryPlanes']]], - ['ingested_5ftheta_3101',['ingested_theta',['../classReadBndryPlanes.html#ac306993497b4e668110e13c4eb7644ff',1,'ReadBndryPlanes']]], - ['ingested_5fvelocity_3102',['ingested_velocity',['../classReadBndryPlanes.html#a906352fe8d793c4360889429d8a5980d',1,'ReadBndryPlanes']]], - ['init_3103',['init',['../classLinInterp.html#a00b249a492135098785c7cf3d2296a91',1,'LinInterp']]], - ['init_3104',['Init',['../classSAM.html#a927f4531f9c2452e5b7fc7ab965c5b78',1,'SAM::Init()'],['../classNullMoist.html#a6f526044328db858069e4b6a70fdbdf7',1,'NullMoist::Init()'],['../classEulerianMicrophysics.html#ac68028f2920ccb380c605099adb7d604',1,'EulerianMicrophysics::Init()'],['../classMicrophysics.html#a4e781e2a953a088477cfc5a1e3691f2e',1,'Microphysics::Init()'],['../classKessler.html#ab1eaffdd038f2eda89f44f150036a405',1,'Kessler::Init()'],['../classSLM.html#aef0a4802ed2d86fd1dedad55e51efc88',1,'SLM::Init()'],['../classNullSurf.html#a013feb9e94f957304bedbc26b6da16b0',1,'NullSurf::Init()'],['../classMM5.html#a0471ac39485d05623f911cd9fd021b9a',1,'MM5::Init()'],['../classLandSurface.html#aac1216f5c2758361ddc016442f3c67cd',1,'LandSurface::Init()']]], - ['init1darrays_3105',['init1DArrays',['../classERF.html#a7261c4eb7722af0dfe6cdfb8e2e9e4db',1,'ERF']]], - ['init_5fbase_5fparms_3106',['init_base_parms',['../classProblemBase.html#abac6929cfbd9298447e721dfcbe5163f',1,'ProblemBase']]], - ['init_5fbase_5fstate_5ffrom_5fmetgrid_3107',['init_base_state_from_metgrid',['../Metgrid__utils_8H.html#acbbc92636d49a0e01d7184d4e19f100f',1,'Metgrid_utils.H']]], - ['init_5fbcs_3108',['init_bcs',['../classERF.html#a618e8fdff3239cc79d4145d02b1ecaa2',1,'ERF']]], - ['init_5fbx_5fscalars_5ffrom_5finput_5fsounding_3109',['init_bx_scalars_from_input_sounding',['../ERF__init__from__input__sounding_8cpp.html#a3591f1ded54f05cbacb8d1ad6246572e',1,'ERF_init_from_input_sounding.cpp']]], - ['init_5fbx_5fscalars_5ffrom_5finput_5fsounding_5fhse_3110',['init_bx_scalars_from_input_sounding_hse',['../ERF__init__from__input__sounding_8cpp.html#af361420f8bc21f523a05894f83c85604',1,'ERF_init_from_input_sounding.cpp']]], - ['init_5fbx_5fvelocities_5ffrom_5finput_5fsounding_3111',['init_bx_velocities_from_input_sounding',['../ERF__init__from__input__sounding_8cpp.html#a3e2549542024fc00744ba8077f71f1fb',1,'ERF_init_from_input_sounding.cpp']]], - ['init_5fcustom_3112',['init_custom',['../classERF.html#a604939a8058f7efa36a427adb889739c',1,'ERF']]], - ['init_5fcustom_5fpert_3113',['init_custom_pert',['../classProblemBase.html#a1c41568b22a4f37247d816a8d20b0757',1,'ProblemBase']]], - ['init_5fcustom_5fterrain_3114',['init_custom_terrain',['../classProblemBase.html#a4a43dd346d2cafb2ba36eff6507613bf',1,'ProblemBase::init_custom_terrain(const amrex::Geometry &geom, amrex::MultiFab &z_phys_nd, const amrex::Real &time)'],['../classProblemBase.html#af79c90b1e65ab01db0f17576818e3661',1,'ProblemBase::init_custom_terrain(const amrex::Geometry &, amrex::FArrayBox &z_phys_nd, const amrex::Real &)']]], - ['init_5fdirichlet_5fbc_5fdata_3115',['init_Dirichlet_bc_data',['../classERF.html#a3079a30cce7e1a01d5c9705f393b5a63',1,'ERF']]], - ['init_5ffrom_5fhse_3116',['init_from_hse',['../classERF.html#a857a8f76768ec4451b995cbf4f4ac176',1,'ERF']]], - ['init_5ffrom_5finput_5fsounding_3117',['init_from_input_sounding',['../classERF.html#a2908bcd920ab5e3fef171a37302853ec',1,'ERF']]], - ['init_5fgeo_5fwind_5fprofile_3118',['init_geo_wind_profile',['../classERF.html#aacc932516cb277301951a8258545873c',1,'ERF']]], - ['init_5fisentropic_5fhse_3119',['init_isentropic_hse',['../namespaceHSEutils.html#a531678cdabf38cca3d47317e33a82fa5',1,'HSEutils']]], - ['init_5fisentropic_5fhse_5fterrain_3120',['init_isentropic_hse_terrain',['../namespaceHSEutils.html#ab38b424f8934564898ddc0e0ee852b07',1,'HSEutils']]], - ['init_5fmode_5fcomps_3121',['init_mode_comps',['../classMamConstituents.html#ab22d164f561b0c76816ad2df12079782',1,'MamConstituents']]], - ['init_5fmsfs_5ffrom_5fmetgrid_3122',['init_msfs_from_metgrid',['../Metgrid__utils_8H.html#a85cf6fab999905de4234fa639771bbe1',1,'Metgrid_utils.H']]], - ['init_5fonly_3123',['init_only',['../classERF.html#a80981e20939a6a38ba17478da2253ff1',1,'ERF']]], - ['init_5fparams_3124',['init_params',['../structTurbChoice.html#a45aa6b97fa410c18f1eca312e43b21be',1,'TurbChoice::init_params()'],['../structSpongeChoice.html#ac20a8660aca19e9655611c3d2eb9f672',1,'SpongeChoice::init_params()'],['../structDiffChoice.html#a9fa9faf0edbd1b9cbf1b5804dd38be38',1,'DiffChoice::init_params()'],['../structSolverChoice.html#a8c15b7cf354e53ddb58bad9577d124d5',1,'SolverChoice::init_params()'],['../structAdvChoice.html#a58637d5ba66800c4c83c928d0a3e13d1',1,'AdvChoice::init_params()']]], - ['init_5fstate_5ffrom_5fmetgrid_3125',['init_state_from_metgrid',['../Metgrid__utils_8H.html#a92d40e10695502f2d12d5e71437b9003',1,'Metgrid_utils.H']]], - ['init_5fstuff_3126',['init_stuff',['../classERF.html#a976799d747d046615ccbf27f366a8b96',1,'ERF']]], - ['init_5fterrain_5ffrom_5fmetgrid_3127',['init_terrain_from_metgrid',['../Metgrid__utils_8H.html#ad3ae9b317366b5e880366135708ba5d5',1,'Metgrid_utils.H']]], - ['init_5fterrain_5fgrid_3128',['init_terrain_grid',['../TerrainMetrics_8cpp.html#a6184f65a98c75d738ea36165cb0ddf8d',1,'init_terrain_grid(int lev, const Geometry &geom, MultiFab &z_phys_nd, Vector< Real > const &z_levels_h, GpuArray< ERF_BC, AMREX_SPACEDIM *2 > &phys_bc_type): TerrainMetrics.cpp'],['../TerrainMetrics_8H.html#ad179b260b388fdbca904a7bb89a27849',1,'init_terrain_grid(int lev, const amrex::Geometry &geom, amrex::MultiFab &z_phys_nd, amrex::Vector< amrex::Real > const &z_levels_h, amrex::GpuArray< ERF_BC, AMREX_SPACEDIM *2 > &phys_bc_type): TerrainMetrics.H']]], - ['init_5ftpi_3129',['init_tpi',['../structTurbulentPerturbation.html#a6f6d1321050b4a5709f3eaecff1a8926',1,'TurbulentPerturbation']]], - ['init_5funiform_3130',['init_uniform',['../classERF.html#ae618963cf90e247b72fbd71d5b13599d',1,'ERF::init_uniform()'],['../classProblemBase.html#a6752f5d7122d68914e67896d21db6c43',1,'ProblemBase::init_uniform()']]], - ['init_5fwindfarm_5flat_5flon_3131',['init_windfarm_lat_lon',['../classWindFarm.html#a905936227e4560d864d430adeb748fd2',1,'WindFarm']]], - ['init_5fwindfarm_5fx_5fy_3132',['init_windfarm_x_y',['../classWindFarm.html#aaa79cb89d8f18f2a059d1ff62c5e5dd3',1,'WindFarm']]], - ['init_5fzlevels_3133',['init_zlevels',['../TerrainMetrics_8cpp.html#a67815693673f128e68656a61d4bf2b4f',1,'init_zlevels(Vector< Real > &zlevels_stag, const Geometry &geom, const Real grid_stretching_ratio, const Real zsurf, const Real dz0): TerrainMetrics.cpp'],['../TerrainMetrics_8H.html#a73d2a3a82a32b34ed710f4891a3056df',1,'init_zlevels(amrex::Vector< amrex::Real > &zlevels_stag, const amrex::Geometry &geom, const amrex::Real grid_stretching_ratio, const amrex::Real zsurf, const amrex::Real dz0): TerrainMetrics.H']]], - ['initdata_3134',['InitData',['../classERF.html#ad5d585e110291969767013a515719224',1,'ERF']]], - ['inithse_3135',['initHSE',['../classERF.html#a92c020bfaa43e40fb5ffc449427a0318',1,'ERF::initHSE()'],['../classERF.html#a69c8fce3b0f5b28e98240599c2ee16bb',1,'ERF::initHSE(int lev)']]], - ['initial_5ffluxes_3136',['initial_fluxes',['../namespaceinternal.html#aaf4add7dd62294e7017ae4e65f656337',1,'internal']]], - ['initialize_3137',['initialize',['../classRrtmgp.html#a8c60511318cca878c918dfc131507cb2',1,'Rrtmgp::initialize()'],['../classAerRadProps.html#ac9a8b0b0923ad124305ac1e228f44f04',1,'AerRadProps::initialize()'],['../classCloudRadProps.html#ac733936ee2d3e88f07631b30fc5758ef',1,'CloudRadProps::initialize()'],['../classMam4__aer.html#a54577b94ef6180a27a5f0b5ab7e1b022',1,'Mam4_aer::initialize()'],['../classOptics.html#a50e2de641f604b4bf2e2826cb3699257',1,'Optics::initialize()'],['../classRadiation.html#a14d24390054f532422c4fc9f761e1ec0',1,'Radiation::initialize()'],['../classMRISplitIntegrator.html#a7b54e96150eb521642b711f8e77b0454',1,'MRISplitIntegrator::initialize()']]], - ['initialize_5fbcs_3138',['initialize_bcs',['../classERF.html#a37a308ae143f1358c0ee5f5c65c0860d',1,'ERF']]], - ['initialize_5fdata_3139',['initialize_data',['../classMRISplitIntegrator.html#a8fe3068c562900c56e3174c23af4ab99',1,'MRISplitIntegrator']]], - ['initialize_5fintegrator_3140',['initialize_integrator',['../classERF.html#a5600f8ce250d4811012719fdf5e85f00',1,'ERF']]], - ['initializeblocks_3141',['InitializeBlocks',['../classMultiBlockContainer.html#a34f2b57ec5aafb88be61d6ffd3dea55c',1,'MultiBlockContainer']]], - ['initializefromfile_3142',['InitializeFromFile',['../classERF.html#a2e1874d47d95c7c858c2a2336fd0eee6',1,'ERF']]], - ['initializelevelfromdata_3143',['InitializeLevelFromData',['../classERF.html#a914f576acc2d1a54203a220cce10df62',1,'ERF']]], - ['initializemicrophysics_3144',['initializeMicrophysics',['../classERF.html#afc2898daad269536c1a15443abf3fa75',1,'ERF']]], - ['initrayleigh_3145',['initRayleigh',['../classERF.html#a039a764a1d942c484e8aea49e87bc046',1,'ERF']]], - ['initsponge_3146',['initSponge',['../classERF.html#ab26ec4f9c35a519063af2a938c1012e6',1,'ERF']]], - ['input_5fsponge_3147',['input_sponge',['../classERF.html#abfdc95a7c3cf7e413c1352bac38c93e8',1,'ERF']]], - ['inputsoundingdata_3148',['InputSoundingData',['../structInputSoundingData.html#ade438454b2da656ce7f98df041f25cc3',1,'InputSoundingData']]], - ['inputspongedata_3149',['InputSpongeData',['../structInputSpongeData.html#a1cf017339a236d02cc0c6f970398940a',1,'InputSpongeData']]], - ['insoluble_5foptics_5finit_3150',['insoluble_optics_init',['../classPhysProp.html#a743d0450322b6d533f2c613ef016d4ab',1,'PhysProp']]], - ['interp1d_3151',['interp1d',['../classLinInterp.html#aad318a6d1364e9369ea02fe34542de24',1,'LinInterp']]], - ['interp2d1d_3152',['interp2d1d',['../classLinInterp.html#adcd3fbce06341f370d0e7bcabb6a5e1c',1,'LinInterp']]], - ['interp2d2d_3153',['interp2d2d',['../classLinInterp.html#a646cb2d20182e9d2073b08d0897dac76',1,'LinInterp']]], - ['interp3d2d_3154',['interp3d2d',['../classLinInterp.html#a5f3ce2823f4abf89ae404d3fe600e1ea',1,'LinInterp']]], - ['interp_5fin_5ftime_3155',['interp_in_time',['../classReadBndryPlanes.html#a18cdefa6feaf7253b3d9029992b6b57c',1,'ReadBndryPlanes']]], - ['interpcell_3156',['InterpCell',['../classERFFillPatcher.html#ab1e2657e50f7ab6f3255decee073fff8',1,'ERFFillPatcher']]], - ['interpface_3157',['InterpFace',['../classERFFillPatcher.html#a713333f0602eb39a96836c5ea8825a67',1,'ERFFillPatcher']]], - ['interpolate_5f1d_3158',['interpolate_1d',['../Interpolation__1D_8H.html#a803d0d35d4ca4791556cbe02bbf51cbb',1,'Interpolation_1D.H']]], - ['interpolate_5fcolumn_5fmetgrid_3159',['interpolate_column_metgrid',['../Metgrid__utils_8H.html#a491c8a5ef196d5e0811d90d74ef7428f',1,'Metgrid_utils.H']]], - ['interpolatedensitypertfromcelltoface_3160',['InterpolateDensityPertFromCellToFace',['../Interpolation_8H.html#a7db2e03d98477dc9033d7c99e2223898',1,'Interpolation.H']]], - ['interpolatedval_3161',['interpolatedVal',['../Interpolation_8H.html#aa4b88a88257b89505c133a7ba9cba462',1,'Interpolation.H']]], - ['interpolateinx_3162',['InterpolateInX',['../structWENO__MZQ3.html#a8d3def9a4458be70dff444935379bbbf',1,'WENO_MZQ3::InterpolateInX()'],['../Interpolation_8H.html#ae8940bdc1f155614d26ce3c5502bd918',1,'InterpolateInX(): Interpolation.H'],['../structCENTERED2.html#ae2a1fcb6b769ae483dc9a52320b84eb9',1,'CENTERED2::InterpolateInX()'],['../structUPWIND3.html#ab5aa8215b1d63920781081235329e88f',1,'UPWIND3::InterpolateInX()'],['../structCENTERED4.html#a548363e6720cc5e30fe3e0968bfa7ace',1,'CENTERED4::InterpolateInX()'],['../structUPWIND5.html#aa3795c18c765fc2d6c2e76ce2066bf90',1,'UPWIND5::InterpolateInX()'],['../structCENTERED6.html#af5abc40fa48386ff2e8853265ab2f636',1,'CENTERED6::InterpolateInX()'],['../structWENO3.html#ab09e1cf66eb2ab4f42b37ae64a762d83',1,'WENO3::InterpolateInX()'],['../structWENO5.html#a979941971dd839129c0e424f262f3cdc',1,'WENO5::InterpolateInX()'],['../structWENO__Z3.html#a70222f603b0f834b5c6cab9d2d500149',1,'WENO_Z3::InterpolateInX()'],['../structWENO__Z5.html#ad08f189935f50294739c74db97fe7f81',1,'WENO_Z5::InterpolateInX()']]], - ['interpolateiny_3163',['InterpolateInY',['../structCENTERED2.html#ab661f0f36acb976738a81c5b3eb003c7',1,'CENTERED2::InterpolateInY()'],['../structCENTERED4.html#a0fa7b6e32435f939963adf76f9a461f1',1,'CENTERED4::InterpolateInY()'],['../Interpolation_8H.html#ad9844abfa5c6530dc10d582e1adbb26c',1,'InterpolateInY(): Interpolation.H'],['../structUPWIND3.html#a49e40adf20c8ec95cfb5a27e87a6d01a',1,'UPWIND3::InterpolateInY()'],['../structUPWIND5.html#ac996371b2f01606e87dfded4bb410c5a',1,'UPWIND5::InterpolateInY()'],['../structCENTERED6.html#a16a6ea9f7d0663518b97353b2224ee33',1,'CENTERED6::InterpolateInY()'],['../structWENO3.html#a95e7df06f162d0ff74c057f6a4253a83',1,'WENO3::InterpolateInY()'],['../structWENO5.html#aad28f5b549554b6f04ac3c27e29b9588',1,'WENO5::InterpolateInY()'],['../structWENO__Z3.html#a448d977459d12ff43f0a74da29e94014',1,'WENO_Z3::InterpolateInY()'],['../structWENO__MZQ3.html#ab9cb2f483989b377e7de79587d44c8c1',1,'WENO_MZQ3::InterpolateInY()'],['../structWENO__Z5.html#a03b7275f69b8b143020627f6caac980b',1,'WENO_Z5::InterpolateInY()']]], - ['interpolateinz_3164',['InterpolateInZ',['../structCENTERED4.html#a0ab3e64ef904a4890845941199c3fccf',1,'CENTERED4::InterpolateInZ()'],['../structCENTERED2.html#a45235061b7460611c20eef7d77754881',1,'CENTERED2::InterpolateInZ()'],['../structUPWIND3.html#ae5281fb5aa8b8c66e1612fa6a749f5b7',1,'UPWIND3::InterpolateInZ()'],['../Interpolation_8H.html#a0623363b49ea9794f302ec9e69c525ea',1,'InterpolateInZ(): Interpolation.H'],['../structUPWIND5.html#a87865225127cac26ae09dc75a23fc0af',1,'UPWIND5::InterpolateInZ()'],['../structCENTERED6.html#ad80522d3ef86f7d5dc0173d50132d80e',1,'CENTERED6::InterpolateInZ()'],['../structUPWINDALL.html#a70400676dab67321ae301b3cc5c62f59',1,'UPWINDALL::InterpolateInZ()'],['../structWENO3.html#ad693dfd8b54bf52e2076b911df389c2a',1,'WENO3::InterpolateInZ()'],['../structWENO5.html#aa604f451ba89411ee6c667588ffe2cf7',1,'WENO5::InterpolateInZ()'],['../structWENO__Z3.html#aa18592e1e73ba3a08e57fbb694266138',1,'WENO_Z3::InterpolateInZ()'],['../structWENO__MZQ3.html#a0f47a8f2cbae0a33e9e851248e3f87d8',1,'WENO_MZQ3::InterpolateInZ()'],['../structWENO__Z5.html#a5d2c1f537a4b03a8cd81e164f6464c2b',1,'WENO_Z5::InterpolateInZ()']]], - ['interpolatepertfromcell_3165',['InterpolatePertFromCell',['../Interpolation_8H.html#a54ee27dfac22fc3f49cdde05d2ec5871',1,'Interpolation.H']]], - ['intersectioncif_3166',['IntersectionCIF',['../classIntersectionCIF.html#abf356bbe64e8979330be6f8b3417a100',1,'IntersectionCIF::IntersectionCIF(const F1 &f1, const F2 &f2)'],['../classIntersectionCIF.html#afbc1eaa42b79f62bb29534390c06faa8',1,'IntersectionCIF::IntersectionCIF(const IntersectionCIF &rhs)=default'],['../classIntersectionCIF.html#a38bfb62292689f3521c4b98a9896cf4b',1,'IntersectionCIF::IntersectionCIF(IntersectionCIF &&rhs) noexcept=default']]], - ['is_5factive_3167',['is_active',['../classCIF.html#a35ba7e4a8c662ebfd81b7c7c35416737',1,'CIF::is_active()'],['../classUnionCIF.html#af61467caa94146f97d5e7b64daf57d44',1,'UnionCIF::is_active()'],['../classIntersectionCIF.html#a86eb75a2940298fb7e01646da4bbe668',1,'IntersectionCIF::is_active()']]], - ['is_5fempty_3168',['is_empty',['../classUnionListIF.html#a03205f1c8304860e5fe963febe853dd9',1,'UnionListIF']]], - ['is_5fit_5ftime_5ffor_5faction_3169',['is_it_time_for_action',['../classERF.html#ad4c61fad53912d1e8d0f774d365bcf0f',1,'ERF']]], - ['iterate_5fflux_3170',['iterate_flux',['../structadiabatic__charnock.html#ade5c7c8f7fdf50f752f62b8e01c7d80c',1,'adiabatic_charnock::iterate_flux()'],['../structadiabatic.html#a5a99e492eff4c3766a6766da7464f995',1,'adiabatic::iterate_flux()'],['../structsurface__temp__wave__coupled.html#a9265697e41588f008f89869e4912f484',1,'surface_temp_wave_coupled::iterate_flux()'],['../structadiabatic__mod__charnock.html#a60919ac9a72b025f6fc6fb98639f9c62',1,'adiabatic_mod_charnock::iterate_flux()'],['../structadiabatic__wave__coupled.html#a235804b8350d1985b4027ac300fe4dee',1,'adiabatic_wave_coupled::iterate_flux()'],['../structsurface__flux.html#a59ad672c43e80d383e7ac1d16ed913c1',1,'surface_flux::iterate_flux()'],['../structsurface__flux__charnock.html#aef89ab0f62c46e93c9a1029be7a7b472',1,'surface_flux_charnock::iterate_flux()'],['../structsurface__flux__mod__charnock.html#ad462a086f9f3533cbf5c0177041e532f',1,'surface_flux_mod_charnock::iterate_flux()'],['../structsurface__flux__wave__coupled.html#a4b611e4bf853e12e5dd76e095b27c1ac',1,'surface_flux_wave_coupled::iterate_flux()'],['../structsurface__temp.html#add599c889c076ebe0baac55dfd6c750f',1,'surface_temp::iterate_flux()'],['../structsurface__temp__charnock.html#ada01d66c725dbb521993723bf3314b86',1,'surface_temp_charnock::iterate_flux()'],['../structsurface__temp__mod__charnock.html#a9b939bb9f6b3fff7e8dacbb75847c68e',1,'surface_temp_mod_charnock::iterate_flux()']]] + ['ice_5feffective_5fradius_3089',['ice_effective_radius',['../Parameterizations_8H.html#adec9d0652512bd8a82a6dcea536c9138',1,'Parameterizations.H']]], + ['icefall_3090',['IceFall',['../classSAM.html#a363b3bb27b6e6cdad8693363b3262419',1,'SAM']]], + ['impose_5flateral_5fcons_5fbcs_3091',['impose_lateral_cons_bcs',['../classERFPhysBCFunct__cons.html#ae3b80b99f4ef84e99130d2142d61c402',1,'ERFPhysBCFunct_cons']]], + ['impose_5flateral_5fxvel_5fbcs_3092',['impose_lateral_xvel_bcs',['../classERFPhysBCFunct__u.html#a9b203cbd4f9a1fd40961067424ae5f81',1,'ERFPhysBCFunct_u']]], + ['impose_5flateral_5fyvel_5fbcs_3093',['impose_lateral_yvel_bcs',['../classERFPhysBCFunct__v.html#adee10e9098b1261837e642a76632c141',1,'ERFPhysBCFunct_v']]], + ['impose_5flateral_5fzvel_5fbcs_3094',['impose_lateral_zvel_bcs',['../classERFPhysBCFunct__w.html#a9cd6e53c9598fe025c3c78945c2b1b83',1,'ERFPhysBCFunct_w::impose_lateral_zvel_bcs()'],['../classERFPhysBCFunct__w__no__terrain.html#a25d10d63224b2acd259cc6309e5bce7e',1,'ERFPhysBCFunct_w_no_terrain::impose_lateral_zvel_bcs()']]], + ['impose_5fmost_5fbcs_3095',['impose_most_bcs',['../classABLMost.html#ab3ac1c161450930085ef74208b7f3dcb',1,'ABLMost']]], + ['impose_5fvertical_5fcons_5fbcs_3096',['impose_vertical_cons_bcs',['../classERFPhysBCFunct__cons.html#ad56fdfadfae102cf4e7419eaf756cb80',1,'ERFPhysBCFunct_cons']]], + ['impose_5fvertical_5fxvel_5fbcs_3097',['impose_vertical_xvel_bcs',['../classERFPhysBCFunct__u.html#afdf8afb39002a2daac0fc16a5db76d17',1,'ERFPhysBCFunct_u']]], + ['impose_5fvertical_5fyvel_5fbcs_3098',['impose_vertical_yvel_bcs',['../classERFPhysBCFunct__v.html#a9e295ac17321f4d577f1d103f6b665a2',1,'ERFPhysBCFunct_v']]], + ['impose_5fvertical_5fzvel_5fbcs_3099',['impose_vertical_zvel_bcs',['../classERFPhysBCFunct__w.html#a9225c49cf092c6eed2bf9bdf1ef4b9cf',1,'ERFPhysBCFunct_w::impose_vertical_zvel_bcs()'],['../classERFPhysBCFunct__w__no__terrain.html#ab4e5639d9ae8abd973c0d5329705d200',1,'ERFPhysBCFunct_w_no_terrain::impose_vertical_zvel_bcs()']]], + ['ingested_5fdensity_3100',['ingested_density',['../classReadBndryPlanes.html#ab54133701e8e086315fa7299257199a2',1,'ReadBndryPlanes']]], + ['ingested_5fke_3101',['ingested_KE',['../classReadBndryPlanes.html#a85a5f25c283db679f67e10167cc6ee5c',1,'ReadBndryPlanes']]], + ['ingested_5fq1_3102',['ingested_q1',['../classReadBndryPlanes.html#a02a0fca675471f10ea6ccb1671ce1cb0',1,'ReadBndryPlanes']]], + ['ingested_5fq2_3103',['ingested_q2',['../classReadBndryPlanes.html#abf22791c2eaf68739ffea26e370724df',1,'ReadBndryPlanes']]], + ['ingested_5fqke_3104',['ingested_QKE',['../classReadBndryPlanes.html#a65d7253b6c2237c3aa60343740d25dd6',1,'ReadBndryPlanes']]], + ['ingested_5fscalar_3105',['ingested_scalar',['../classReadBndryPlanes.html#a6051259f37b0f38a9d74de7b9405dd03',1,'ReadBndryPlanes']]], + ['ingested_5ftheta_3106',['ingested_theta',['../classReadBndryPlanes.html#ac306993497b4e668110e13c4eb7644ff',1,'ReadBndryPlanes']]], + ['ingested_5fvelocity_3107',['ingested_velocity',['../classReadBndryPlanes.html#a906352fe8d793c4360889429d8a5980d',1,'ReadBndryPlanes']]], + ['init_3108',['init',['../classLinInterp.html#a00b249a492135098785c7cf3d2296a91',1,'LinInterp']]], + ['init_3109',['Init',['../classSAM.html#a927f4531f9c2452e5b7fc7ab965c5b78',1,'SAM::Init()'],['../classNullMoist.html#a6f526044328db858069e4b6a70fdbdf7',1,'NullMoist::Init()'],['../classEulerianMicrophysics.html#ac68028f2920ccb380c605099adb7d604',1,'EulerianMicrophysics::Init()'],['../classMicrophysics.html#a4e781e2a953a088477cfc5a1e3691f2e',1,'Microphysics::Init()'],['../classKessler.html#ab1eaffdd038f2eda89f44f150036a405',1,'Kessler::Init()'],['../classSLM.html#aef0a4802ed2d86fd1dedad55e51efc88',1,'SLM::Init()'],['../classNullSurf.html#a013feb9e94f957304bedbc26b6da16b0',1,'NullSurf::Init()'],['../classMM5.html#a0471ac39485d05623f911cd9fd021b9a',1,'MM5::Init()'],['../classLandSurface.html#aac1216f5c2758361ddc016442f3c67cd',1,'LandSurface::Init()']]], + ['init1darrays_3110',['init1DArrays',['../classERF.html#a7261c4eb7722af0dfe6cdfb8e2e9e4db',1,'ERF']]], + ['init_5fbase_5fparms_3111',['init_base_parms',['../classProblemBase.html#abac6929cfbd9298447e721dfcbe5163f',1,'ProblemBase']]], + ['init_5fbase_5fstate_5ffrom_5fmetgrid_3112',['init_base_state_from_metgrid',['../Metgrid__utils_8H.html#acbbc92636d49a0e01d7184d4e19f100f',1,'Metgrid_utils.H']]], + ['init_5fbcs_3113',['init_bcs',['../classERF.html#a618e8fdff3239cc79d4145d02b1ecaa2',1,'ERF']]], + ['init_5fbx_5fscalars_5ffrom_5finput_5fsounding_3114',['init_bx_scalars_from_input_sounding',['../ERF__init__from__input__sounding_8cpp.html#a3591f1ded54f05cbacb8d1ad6246572e',1,'ERF_init_from_input_sounding.cpp']]], + ['init_5fbx_5fscalars_5ffrom_5finput_5fsounding_5fhse_3115',['init_bx_scalars_from_input_sounding_hse',['../ERF__init__from__input__sounding_8cpp.html#af361420f8bc21f523a05894f83c85604',1,'ERF_init_from_input_sounding.cpp']]], + ['init_5fbx_5fvelocities_5ffrom_5finput_5fsounding_3116',['init_bx_velocities_from_input_sounding',['../ERF__init__from__input__sounding_8cpp.html#a3e2549542024fc00744ba8077f71f1fb',1,'ERF_init_from_input_sounding.cpp']]], + ['init_5fcustom_3117',['init_custom',['../classERF.html#a604939a8058f7efa36a427adb889739c',1,'ERF']]], + ['init_5fcustom_5fpert_3118',['init_custom_pert',['../classProblemBase.html#a1c41568b22a4f37247d816a8d20b0757',1,'ProblemBase']]], + ['init_5fcustom_5fterrain_3119',['init_custom_terrain',['../classProblemBase.html#a4a43dd346d2cafb2ba36eff6507613bf',1,'ProblemBase::init_custom_terrain(const amrex::Geometry &geom, amrex::MultiFab &z_phys_nd, const amrex::Real &time)'],['../classProblemBase.html#af79c90b1e65ab01db0f17576818e3661',1,'ProblemBase::init_custom_terrain(const amrex::Geometry &, amrex::FArrayBox &z_phys_nd, const amrex::Real &)']]], + ['init_5fdirichlet_5fbc_5fdata_3120',['init_Dirichlet_bc_data',['../classERF.html#a3079a30cce7e1a01d5c9705f393b5a63',1,'ERF']]], + ['init_5ffrom_5fhse_3121',['init_from_hse',['../classERF.html#a857a8f76768ec4451b995cbf4f4ac176',1,'ERF']]], + ['init_5ffrom_5finput_5fsounding_3122',['init_from_input_sounding',['../classERF.html#a2908bcd920ab5e3fef171a37302853ec',1,'ERF']]], + ['init_5fgeo_5fwind_5fprofile_3123',['init_geo_wind_profile',['../classERF.html#aab564dd3009ef83466b50db6d997b563',1,'ERF']]], + ['init_5fisentropic_5fhse_3124',['init_isentropic_hse',['../namespaceHSEutils.html#a531678cdabf38cca3d47317e33a82fa5',1,'HSEutils']]], + ['init_5fisentropic_5fhse_5fterrain_3125',['init_isentropic_hse_terrain',['../namespaceHSEutils.html#ab38b424f8934564898ddc0e0ee852b07',1,'HSEutils']]], + ['init_5fmode_5fcomps_3126',['init_mode_comps',['../classMamConstituents.html#ab22d164f561b0c76816ad2df12079782',1,'MamConstituents']]], + ['init_5fmsfs_5ffrom_5fmetgrid_3127',['init_msfs_from_metgrid',['../Metgrid__utils_8H.html#a85cf6fab999905de4234fa639771bbe1',1,'Metgrid_utils.H']]], + ['init_5fonly_3128',['init_only',['../classERF.html#a80981e20939a6a38ba17478da2253ff1',1,'ERF']]], + ['init_5fparams_3129',['init_params',['../structTurbChoice.html#a45aa6b97fa410c18f1eca312e43b21be',1,'TurbChoice::init_params()'],['../structSpongeChoice.html#ac20a8660aca19e9655611c3d2eb9f672',1,'SpongeChoice::init_params()'],['../structDiffChoice.html#a9fa9faf0edbd1b9cbf1b5804dd38be38',1,'DiffChoice::init_params()'],['../structSolverChoice.html#a8c15b7cf354e53ddb58bad9577d124d5',1,'SolverChoice::init_params()'],['../structAdvChoice.html#a58637d5ba66800c4c83c928d0a3e13d1',1,'AdvChoice::init_params()']]], + ['init_5fstate_5ffrom_5fmetgrid_3130',['init_state_from_metgrid',['../Metgrid__utils_8H.html#a92d40e10695502f2d12d5e71437b9003',1,'Metgrid_utils.H']]], + ['init_5fstuff_3131',['init_stuff',['../classERF.html#a976799d747d046615ccbf27f366a8b96',1,'ERF']]], + ['init_5fterrain_5ffrom_5fmetgrid_3132',['init_terrain_from_metgrid',['../Metgrid__utils_8H.html#ad3ae9b317366b5e880366135708ba5d5',1,'Metgrid_utils.H']]], + ['init_5fterrain_5fgrid_3133',['init_terrain_grid',['../TerrainMetrics_8cpp.html#a6184f65a98c75d738ea36165cb0ddf8d',1,'init_terrain_grid(int lev, const Geometry &geom, MultiFab &z_phys_nd, Vector< Real > const &z_levels_h, GpuArray< ERF_BC, AMREX_SPACEDIM *2 > &phys_bc_type): TerrainMetrics.cpp'],['../TerrainMetrics_8H.html#ad179b260b388fdbca904a7bb89a27849',1,'init_terrain_grid(int lev, const amrex::Geometry &geom, amrex::MultiFab &z_phys_nd, amrex::Vector< amrex::Real > const &z_levels_h, amrex::GpuArray< ERF_BC, AMREX_SPACEDIM *2 > &phys_bc_type): TerrainMetrics.H']]], + ['init_5ftpi_3134',['init_tpi',['../structTurbulentPerturbation.html#a6f6d1321050b4a5709f3eaecff1a8926',1,'TurbulentPerturbation']]], + ['init_5funiform_3135',['init_uniform',['../classERF.html#ae618963cf90e247b72fbd71d5b13599d',1,'ERF::init_uniform()'],['../classProblemBase.html#a6752f5d7122d68914e67896d21db6c43',1,'ProblemBase::init_uniform()']]], + ['init_5fwindfarm_5flat_5flon_3136',['init_windfarm_lat_lon',['../classWindFarm.html#a905936227e4560d864d430adeb748fd2',1,'WindFarm']]], + ['init_5fwindfarm_5fx_5fy_3137',['init_windfarm_x_y',['../classWindFarm.html#aaa79cb89d8f18f2a059d1ff62c5e5dd3',1,'WindFarm']]], + ['init_5fzlevels_3138',['init_zlevels',['../TerrainMetrics_8cpp.html#a67815693673f128e68656a61d4bf2b4f',1,'init_zlevels(Vector< Real > &zlevels_stag, const Geometry &geom, const Real grid_stretching_ratio, const Real zsurf, const Real dz0): TerrainMetrics.cpp'],['../TerrainMetrics_8H.html#a73d2a3a82a32b34ed710f4891a3056df',1,'init_zlevels(amrex::Vector< amrex::Real > &zlevels_stag, const amrex::Geometry &geom, const amrex::Real grid_stretching_ratio, const amrex::Real zsurf, const amrex::Real dz0): TerrainMetrics.H']]], + ['initdata_3139',['InitData',['../classERF.html#ad5d585e110291969767013a515719224',1,'ERF']]], + ['inithse_3140',['initHSE',['../classERF.html#a92c020bfaa43e40fb5ffc449427a0318',1,'ERF::initHSE()'],['../classERF.html#a69c8fce3b0f5b28e98240599c2ee16bb',1,'ERF::initHSE(int lev)']]], + ['initial_5ffluxes_3141',['initial_fluxes',['../namespaceinternal.html#aaf4add7dd62294e7017ae4e65f656337',1,'internal']]], + ['initialize_3142',['initialize',['../classRrtmgp.html#a8c60511318cca878c918dfc131507cb2',1,'Rrtmgp::initialize()'],['../classAerRadProps.html#ac9a8b0b0923ad124305ac1e228f44f04',1,'AerRadProps::initialize()'],['../classCloudRadProps.html#ac733936ee2d3e88f07631b30fc5758ef',1,'CloudRadProps::initialize()'],['../classMam4__aer.html#a54577b94ef6180a27a5f0b5ab7e1b022',1,'Mam4_aer::initialize()'],['../classOptics.html#a50e2de641f604b4bf2e2826cb3699257',1,'Optics::initialize()'],['../classRadiation.html#a14d24390054f532422c4fc9f761e1ec0',1,'Radiation::initialize()'],['../classMRISplitIntegrator.html#a7b54e96150eb521642b711f8e77b0454',1,'MRISplitIntegrator::initialize()']]], + ['initialize_5fbcs_3143',['initialize_bcs',['../classERF.html#a37a308ae143f1358c0ee5f5c65c0860d',1,'ERF']]], + ['initialize_5fdata_3144',['initialize_data',['../classMRISplitIntegrator.html#a8fe3068c562900c56e3174c23af4ab99',1,'MRISplitIntegrator']]], + ['initialize_5fintegrator_3145',['initialize_integrator',['../classERF.html#a5600f8ce250d4811012719fdf5e85f00',1,'ERF']]], + ['initializeblocks_3146',['InitializeBlocks',['../classMultiBlockContainer.html#a34f2b57ec5aafb88be61d6ffd3dea55c',1,'MultiBlockContainer']]], + ['initializefromfile_3147',['InitializeFromFile',['../classERF.html#a2e1874d47d95c7c858c2a2336fd0eee6',1,'ERF']]], + ['initializelevelfromdata_3148',['InitializeLevelFromData',['../classERF.html#a914f576acc2d1a54203a220cce10df62',1,'ERF']]], + ['initializemicrophysics_3149',['initializeMicrophysics',['../classERF.html#afc2898daad269536c1a15443abf3fa75',1,'ERF']]], + ['initrayleigh_3150',['initRayleigh',['../classERF.html#a039a764a1d942c484e8aea49e87bc046',1,'ERF']]], + ['initsponge_3151',['initSponge',['../classERF.html#ab26ec4f9c35a519063af2a938c1012e6',1,'ERF']]], + ['input_5fsponge_3152',['input_sponge',['../classERF.html#abfdc95a7c3cf7e413c1352bac38c93e8',1,'ERF']]], + ['inputsoundingdata_3153',['InputSoundingData',['../structInputSoundingData.html#ade438454b2da656ce7f98df041f25cc3',1,'InputSoundingData']]], + ['inputspongedata_3154',['InputSpongeData',['../structInputSpongeData.html#a1cf017339a236d02cc0c6f970398940a',1,'InputSpongeData']]], + ['insoluble_5foptics_5finit_3155',['insoluble_optics_init',['../classPhysProp.html#a743d0450322b6d533f2c613ef016d4ab',1,'PhysProp']]], + ['interp1d_3156',['interp1d',['../classLinInterp.html#aad318a6d1364e9369ea02fe34542de24',1,'LinInterp']]], + ['interp2d1d_3157',['interp2d1d',['../classLinInterp.html#adcd3fbce06341f370d0e7bcabb6a5e1c',1,'LinInterp']]], + ['interp2d2d_3158',['interp2d2d',['../classLinInterp.html#a646cb2d20182e9d2073b08d0897dac76',1,'LinInterp']]], + ['interp3d2d_3159',['interp3d2d',['../classLinInterp.html#a5f3ce2823f4abf89ae404d3fe600e1ea',1,'LinInterp']]], + ['interp_5fin_5ftime_3160',['interp_in_time',['../classReadBndryPlanes.html#a18cdefa6feaf7253b3d9029992b6b57c',1,'ReadBndryPlanes']]], + ['interpcell_3161',['InterpCell',['../classERFFillPatcher.html#ab1e2657e50f7ab6f3255decee073fff8',1,'ERFFillPatcher']]], + ['interpface_3162',['InterpFace',['../classERFFillPatcher.html#a713333f0602eb39a96836c5ea8825a67',1,'ERFFillPatcher']]], + ['interpolate_5f1d_3163',['interpolate_1d',['../Interpolation__1D_8H.html#a803d0d35d4ca4791556cbe02bbf51cbb',1,'Interpolation_1D.H']]], + ['interpolate_5fcolumn_5fmetgrid_3164',['interpolate_column_metgrid',['../Metgrid__utils_8H.html#a491c8a5ef196d5e0811d90d74ef7428f',1,'Metgrid_utils.H']]], + ['interpolatedensitypertfromcelltoface_3165',['InterpolateDensityPertFromCellToFace',['../Interpolation_8H.html#a7db2e03d98477dc9033d7c99e2223898',1,'Interpolation.H']]], + ['interpolatedval_3166',['interpolatedVal',['../Interpolation_8H.html#aa4b88a88257b89505c133a7ba9cba462',1,'Interpolation.H']]], + ['interpolateinx_3167',['InterpolateInX',['../structWENO__MZQ3.html#a8d3def9a4458be70dff444935379bbbf',1,'WENO_MZQ3::InterpolateInX()'],['../Interpolation_8H.html#ae8940bdc1f155614d26ce3c5502bd918',1,'InterpolateInX(): Interpolation.H'],['../structCENTERED2.html#ae2a1fcb6b769ae483dc9a52320b84eb9',1,'CENTERED2::InterpolateInX()'],['../structUPWIND3.html#ab5aa8215b1d63920781081235329e88f',1,'UPWIND3::InterpolateInX()'],['../structCENTERED4.html#a548363e6720cc5e30fe3e0968bfa7ace',1,'CENTERED4::InterpolateInX()'],['../structUPWIND5.html#aa3795c18c765fc2d6c2e76ce2066bf90',1,'UPWIND5::InterpolateInX()'],['../structCENTERED6.html#af5abc40fa48386ff2e8853265ab2f636',1,'CENTERED6::InterpolateInX()'],['../structWENO3.html#ab09e1cf66eb2ab4f42b37ae64a762d83',1,'WENO3::InterpolateInX()'],['../structWENO5.html#a979941971dd839129c0e424f262f3cdc',1,'WENO5::InterpolateInX()'],['../structWENO__Z3.html#a70222f603b0f834b5c6cab9d2d500149',1,'WENO_Z3::InterpolateInX()'],['../structWENO__Z5.html#ad08f189935f50294739c74db97fe7f81',1,'WENO_Z5::InterpolateInX()']]], + ['interpolateiny_3168',['InterpolateInY',['../structCENTERED2.html#ab661f0f36acb976738a81c5b3eb003c7',1,'CENTERED2::InterpolateInY()'],['../structCENTERED4.html#a0fa7b6e32435f939963adf76f9a461f1',1,'CENTERED4::InterpolateInY()'],['../Interpolation_8H.html#ad9844abfa5c6530dc10d582e1adbb26c',1,'InterpolateInY(): Interpolation.H'],['../structUPWIND3.html#a49e40adf20c8ec95cfb5a27e87a6d01a',1,'UPWIND3::InterpolateInY()'],['../structUPWIND5.html#ac996371b2f01606e87dfded4bb410c5a',1,'UPWIND5::InterpolateInY()'],['../structCENTERED6.html#a16a6ea9f7d0663518b97353b2224ee33',1,'CENTERED6::InterpolateInY()'],['../structWENO3.html#a95e7df06f162d0ff74c057f6a4253a83',1,'WENO3::InterpolateInY()'],['../structWENO5.html#aad28f5b549554b6f04ac3c27e29b9588',1,'WENO5::InterpolateInY()'],['../structWENO__Z3.html#a448d977459d12ff43f0a74da29e94014',1,'WENO_Z3::InterpolateInY()'],['../structWENO__MZQ3.html#ab9cb2f483989b377e7de79587d44c8c1',1,'WENO_MZQ3::InterpolateInY()'],['../structWENO__Z5.html#a03b7275f69b8b143020627f6caac980b',1,'WENO_Z5::InterpolateInY()']]], + ['interpolateinz_3169',['InterpolateInZ',['../structCENTERED4.html#a0ab3e64ef904a4890845941199c3fccf',1,'CENTERED4::InterpolateInZ()'],['../structCENTERED2.html#a45235061b7460611c20eef7d77754881',1,'CENTERED2::InterpolateInZ()'],['../structUPWIND3.html#ae5281fb5aa8b8c66e1612fa6a749f5b7',1,'UPWIND3::InterpolateInZ()'],['../Interpolation_8H.html#a0623363b49ea9794f302ec9e69c525ea',1,'InterpolateInZ(): Interpolation.H'],['../structUPWIND5.html#a87865225127cac26ae09dc75a23fc0af',1,'UPWIND5::InterpolateInZ()'],['../structCENTERED6.html#ad80522d3ef86f7d5dc0173d50132d80e',1,'CENTERED6::InterpolateInZ()'],['../structUPWINDALL.html#a70400676dab67321ae301b3cc5c62f59',1,'UPWINDALL::InterpolateInZ()'],['../structWENO3.html#ad693dfd8b54bf52e2076b911df389c2a',1,'WENO3::InterpolateInZ()'],['../structWENO5.html#aa604f451ba89411ee6c667588ffe2cf7',1,'WENO5::InterpolateInZ()'],['../structWENO__Z3.html#aa18592e1e73ba3a08e57fbb694266138',1,'WENO_Z3::InterpolateInZ()'],['../structWENO__MZQ3.html#a0f47a8f2cbae0a33e9e851248e3f87d8',1,'WENO_MZQ3::InterpolateInZ()'],['../structWENO__Z5.html#a5d2c1f537a4b03a8cd81e164f6464c2b',1,'WENO_Z5::InterpolateInZ()']]], + ['interpolatepertfromcell_3170',['InterpolatePertFromCell',['../Interpolation_8H.html#a54ee27dfac22fc3f49cdde05d2ec5871',1,'Interpolation.H']]], + ['intersectioncif_3171',['IntersectionCIF',['../classIntersectionCIF.html#abf356bbe64e8979330be6f8b3417a100',1,'IntersectionCIF::IntersectionCIF(const F1 &f1, const F2 &f2)'],['../classIntersectionCIF.html#afbc1eaa42b79f62bb29534390c06faa8',1,'IntersectionCIF::IntersectionCIF(const IntersectionCIF &rhs)=default'],['../classIntersectionCIF.html#a38bfb62292689f3521c4b98a9896cf4b',1,'IntersectionCIF::IntersectionCIF(IntersectionCIF &&rhs) noexcept=default']]], + ['is_5factive_3172',['is_active',['../classCIF.html#a35ba7e4a8c662ebfd81b7c7c35416737',1,'CIF::is_active()'],['../classUnionCIF.html#af61467caa94146f97d5e7b64daf57d44',1,'UnionCIF::is_active()'],['../classIntersectionCIF.html#a86eb75a2940298fb7e01646da4bbe668',1,'IntersectionCIF::is_active()']]], + ['is_5fempty_3173',['is_empty',['../classUnionListIF.html#a03205f1c8304860e5fe963febe853dd9',1,'UnionListIF']]], + ['is_5fit_5ftime_5ffor_5faction_3174',['is_it_time_for_action',['../classERF.html#ad4c61fad53912d1e8d0f774d365bcf0f',1,'ERF']]], + ['iterate_5fflux_3175',['iterate_flux',['../structadiabatic__charnock.html#ade5c7c8f7fdf50f752f62b8e01c7d80c',1,'adiabatic_charnock::iterate_flux()'],['../structadiabatic.html#a5a99e492eff4c3766a6766da7464f995',1,'adiabatic::iterate_flux()'],['../structsurface__temp__wave__coupled.html#a9265697e41588f008f89869e4912f484',1,'surface_temp_wave_coupled::iterate_flux()'],['../structadiabatic__mod__charnock.html#a60919ac9a72b025f6fc6fb98639f9c62',1,'adiabatic_mod_charnock::iterate_flux()'],['../structadiabatic__wave__coupled.html#a235804b8350d1985b4027ac300fe4dee',1,'adiabatic_wave_coupled::iterate_flux()'],['../structsurface__flux.html#a59ad672c43e80d383e7ac1d16ed913c1',1,'surface_flux::iterate_flux()'],['../structsurface__flux__charnock.html#aef89ab0f62c46e93c9a1029be7a7b472',1,'surface_flux_charnock::iterate_flux()'],['../structsurface__flux__mod__charnock.html#ad462a086f9f3533cbf5c0177041e532f',1,'surface_flux_mod_charnock::iterate_flux()'],['../structsurface__flux__wave__coupled.html#a4b611e4bf853e12e5dd76e095b27c1ac',1,'surface_flux_wave_coupled::iterate_flux()'],['../structsurface__temp.html#add599c889c076ebe0baac55dfd6c750f',1,'surface_temp::iterate_flux()'],['../structsurface__temp__charnock.html#ada01d66c725dbb521993723bf3314b86',1,'surface_temp_charnock::iterate_flux()'],['../structsurface__temp__mod__charnock.html#a9b939bb9f6b3fff7e8dacbb75847c68e',1,'surface_temp_mod_charnock::iterate_flux()']]] ]; diff --git a/search/functions_9.js b/search/functions_9.js index f6eec14a40..3e2134fc8d 100644 --- a/search/functions_9.js +++ b/search/functions_9.js @@ -1,4 +1,4 @@ var searchData= [ - ['kessler_3171',['Kessler',['../classKessler.html#a50fbd35f964f8dce148e2174bfcaa939',1,'Kessler']]] + ['kessler_3176',['Kessler',['../classKessler.html#a50fbd35f964f8dce148e2174bfcaa939',1,'Kessler']]] ]; diff --git a/search/functions_a.js b/search/functions_a.js index d33de119e4..5e5458d6c1 100644 --- a/search/functions_a.js +++ b/search/functions_a.js @@ -1,16 +1,16 @@ var searchData= [ - ['landsurface_3172',['LandSurface',['../classLandSurface.html#ac00f982ed4ab1cf073b580ac3fbe7031',1,'LandSurface']]], - ['len_3173',['len',['../structncutils_1_1NCDim.html#af22c5abe9e67d9825f372f4102c0c06f',1,'ncutils::NCDim']]], - ['level_3174',['level',['../classPlaneAverage.html#a86402b90cf369ad0613ff325328e05b4',1,'PlaneAverage']]], - ['lin_5finterpol_3175',['lin_interpol',['../classPhysProp.html#a7b86495b7ca2bf72c2b3ae3f66538d56',1,'PhysProp']]], - ['line_5faverage_3176',['line_average',['../classPlaneAverage.html#af12478c0cb46a8afc438846f8f24e949',1,'PlaneAverage::line_average() const'],['../classPlaneAverage.html#a59ff542d6ac432369db4c904ff1aedd6',1,'PlaneAverage::line_average(int comp, amrex::Gpu::HostVector< amrex::Real > &l_vec)']]], - ['line_5faverage_5finterpolated_3177',['line_average_interpolated',['../classPlaneAverage.html#a0eca0d267e2f46fb639a29d2f06a6f5d',1,'PlaneAverage']]], - ['line_5fcentroids_3178',['line_centroids',['../classPlaneAverage.html#a57dc07bb4c25aa8f20bd5b1921c5f2f7',1,'PlaneAverage']]], - ['liquid_5feffective_5fradius_3179',['liquid_effective_radius',['../Parameterizations_8H.html#aee0c6fff1c3d2035ce9130c829630f27',1,'Parameterizations.H']]], - ['lsm_5fdata_5fptr_3180',['Lsm_Data_Ptr',['../classNullSurf.html#a23e0e00071c6220b8d1495cac4073ce3',1,'NullSurf::Lsm_Data_Ptr()'],['../classSLM.html#a900ca60e28871a22974a9f9267c8a4ab',1,'SLM::Lsm_Data_Ptr()'],['../classMM5.html#a50c02933780293bdb6dfea8d88160947',1,'MM5::Lsm_Data_Ptr(const int &varIdx) override']]], - ['lsm_5fdata_5fsize_3181',['Lsm_Data_Size',['../classMM5.html#abf2c797ae56fc93043e999db11515a8a',1,'MM5::Lsm_Data_Size()'],['../classNullSurf.html#adf5c64f43a59af0d6caae7211cdfa480',1,'NullSurf::Lsm_Data_Size()'],['../classSLM.html#accf5369cbeeab014dd8aab4ed28c3516',1,'SLM::Lsm_Data_Size()']]], - ['lsm_5fflux_5fptr_3182',['Lsm_Flux_Ptr',['../classMM5.html#a78b5c693f06612690dcd98ac38a12702',1,'MM5::Lsm_Flux_Ptr()'],['../classNullSurf.html#a7a9b19e7d784323fd216468b7cca6574',1,'NullSurf::Lsm_Flux_Ptr()'],['../classSLM.html#a0f620560951627b138e0d6311fd47caa',1,'SLM::Lsm_Flux_Ptr()']]], - ['lsm_5fgeom_3183',['Lsm_Geom',['../classMM5.html#abe51eb4823a379cd70d05eef17832f7b',1,'MM5::Lsm_Geom()'],['../classNullSurf.html#af634e202eb05675a9bf2ee9b7e927b12',1,'NullSurf::Lsm_Geom()'],['../classSLM.html#a8f171cb4d7b8c32b5158f7ac7d518ad7',1,'SLM::Lsm_Geom()']]], - ['lsm_5fvarname_3184',['Lsm_VarName',['../classMM5.html#ad0b90571d201254c36a28b26aa4c4926',1,'MM5::Lsm_VarName()'],['../classNullSurf.html#acd221d04045bb8114c1a2ae55a509252',1,'NullSurf::Lsm_VarName()'],['../classSLM.html#a3d4ce63e292a196220b9f4fabd96eaa6',1,'SLM::Lsm_VarName()']]] + ['landsurface_3177',['LandSurface',['../classLandSurface.html#ac00f982ed4ab1cf073b580ac3fbe7031',1,'LandSurface']]], + ['len_3178',['len',['../structncutils_1_1NCDim.html#af22c5abe9e67d9825f372f4102c0c06f',1,'ncutils::NCDim']]], + ['level_3179',['level',['../classPlaneAverage.html#a86402b90cf369ad0613ff325328e05b4',1,'PlaneAverage']]], + ['lin_5finterpol_3180',['lin_interpol',['../classPhysProp.html#a7b86495b7ca2bf72c2b3ae3f66538d56',1,'PhysProp']]], + ['line_5faverage_3181',['line_average',['../classPlaneAverage.html#af12478c0cb46a8afc438846f8f24e949',1,'PlaneAverage::line_average() const'],['../classPlaneAverage.html#a59ff542d6ac432369db4c904ff1aedd6',1,'PlaneAverage::line_average(int comp, amrex::Gpu::HostVector< amrex::Real > &l_vec)']]], + ['line_5faverage_5finterpolated_3182',['line_average_interpolated',['../classPlaneAverage.html#a0eca0d267e2f46fb639a29d2f06a6f5d',1,'PlaneAverage']]], + ['line_5fcentroids_3183',['line_centroids',['../classPlaneAverage.html#a57dc07bb4c25aa8f20bd5b1921c5f2f7',1,'PlaneAverage']]], + ['liquid_5feffective_5fradius_3184',['liquid_effective_radius',['../Parameterizations_8H.html#aee0c6fff1c3d2035ce9130c829630f27',1,'Parameterizations.H']]], + ['lsm_5fdata_5fptr_3185',['Lsm_Data_Ptr',['../classNullSurf.html#a23e0e00071c6220b8d1495cac4073ce3',1,'NullSurf::Lsm_Data_Ptr()'],['../classSLM.html#a900ca60e28871a22974a9f9267c8a4ab',1,'SLM::Lsm_Data_Ptr()'],['../classMM5.html#a50c02933780293bdb6dfea8d88160947',1,'MM5::Lsm_Data_Ptr(const int &varIdx) override']]], + ['lsm_5fdata_5fsize_3186',['Lsm_Data_Size',['../classMM5.html#abf2c797ae56fc93043e999db11515a8a',1,'MM5::Lsm_Data_Size()'],['../classNullSurf.html#adf5c64f43a59af0d6caae7211cdfa480',1,'NullSurf::Lsm_Data_Size()'],['../classSLM.html#accf5369cbeeab014dd8aab4ed28c3516',1,'SLM::Lsm_Data_Size()']]], + ['lsm_5fflux_5fptr_3187',['Lsm_Flux_Ptr',['../classMM5.html#a78b5c693f06612690dcd98ac38a12702',1,'MM5::Lsm_Flux_Ptr()'],['../classNullSurf.html#a7a9b19e7d784323fd216468b7cca6574',1,'NullSurf::Lsm_Flux_Ptr()'],['../classSLM.html#a0f620560951627b138e0d6311fd47caa',1,'SLM::Lsm_Flux_Ptr()']]], + ['lsm_5fgeom_3188',['Lsm_Geom',['../classMM5.html#abe51eb4823a379cd70d05eef17832f7b',1,'MM5::Lsm_Geom()'],['../classNullSurf.html#af634e202eb05675a9bf2ee9b7e927b12',1,'NullSurf::Lsm_Geom()'],['../classSLM.html#a8f171cb4d7b8c32b5158f7ac7d518ad7',1,'SLM::Lsm_Geom()']]], + ['lsm_5fvarname_3189',['Lsm_VarName',['../classMM5.html#ad0b90571d201254c36a28b26aa4c4926',1,'MM5::Lsm_VarName()'],['../classNullSurf.html#acd221d04045bb8114c1a2ae55a509252',1,'NullSurf::Lsm_VarName()'],['../classSLM.html#a3d4ce63e292a196220b9f4fabd96eaa6',1,'SLM::Lsm_VarName()']]] ]; diff --git a/search/functions_b.js b/search/functions_b.js index b6fa41e9f5..55eacb943c 100644 --- a/search/functions_b.js +++ b/search/functions_b.js @@ -1,41 +1,41 @@ var searchData= [ - ['m2005_5feffradius_3185',['m2005_effradius',['../m2005__effradius_8H.html#aa8be1a517640718ec08df40a3613244a',1,'m2005_effradius.H']]], - ['main_3186',['main',['../main_8cpp.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main.cpp']]], - ['make_5fareas_3187',['make_areas',['../Utils_8H.html#afd5f5cf174d096726815e6d7dc325c41',1,'make_areas(const amrex::Geometry &geom, amrex::MultiFab &z_phys_nd, amrex::MultiFab &ax, amrex::MultiFab &ay, amrex::MultiFab &az): Utils.H'],['../TerrainMetrics_8cpp.html#a920c175414adfaaa26687bfb8e7585bb',1,'make_areas(const Geometry &geom, MultiFab &z_phys_nd, MultiFab &ax, MultiFab &ay, MultiFab &az): TerrainMetrics.cpp']]], - ['make_5fbuoyancy_3188',['make_buoyancy',['../Src__headers_8H.html#ab8d1e0300960f8aeabc92f0ffa82aefe',1,'make_buoyancy(amrex::Vector< amrex::MultiFab > &S_data, const amrex::MultiFab &S_prim, amrex::MultiFab &buoyancy, const amrex::Geometry geom, const SolverChoice &solverChoice, const amrex::MultiFab *r0, const int &qstate_size): Src_headers.H'],['../ERF__make__buoyancy_8cpp.html#a3906c740c767c111dc3f0adec0215e78',1,'make_buoyancy(Vector< MultiFab > &S_data, const MultiFab &S_prim, MultiFab &buoyancy, const amrex::Geometry geom, const SolverChoice &solverChoice, const MultiFab *r0, const int &qstate_size): ERF_make_buoyancy.cpp']]], - ['make_5ffast_5fcoeffs_3189',['make_fast_coeffs',['../TI__fast__headers_8H.html#adfda58e818c53254b1fa053669e911e8',1,'make_fast_coeffs(int level, amrex::MultiFab &fast_coeffs, amrex::Vector< amrex::MultiFab > &S_stage_data, const amrex::MultiFab &S_stage_prim, const amrex::MultiFab &pi_stage, const amrex::Geometry geom, const bool use_moisture, const bool use_terrain, const amrex::Real gravity, const amrex::Real c_p, std::unique_ptr< amrex::MultiFab > &detJ_cc, const amrex::MultiFab *r0, const amrex::MultiFab *pi0, const amrex::Real dtau, const amrex::Real beta_s, amrex::GpuArray< ERF_BC, AMREX_SPACEDIM *2 > &phys_bc_type): TI_fast_headers.H'],['../ERF__make__fast__coeffs_8cpp.html#a76dfae5a4d6b6037b1261e5c42936616',1,'make_fast_coeffs(int, MultiFab &fast_coeffs, Vector< MultiFab > &S_stage_data, const MultiFab &S_stage_prim, const MultiFab &pi_stage, const amrex::Geometry geom, bool l_use_moisture, bool l_use_terrain, Real gravity, Real c_p, std::unique_ptr< MultiFab > &detJ_cc, const MultiFab *r0, const MultiFab *pi0, Real dtau, Real beta_s, amrex::GpuArray< ERF_BC, AMREX_SPACEDIM *2 > &phys_bc_type): ERF_make_fast_coeffs.cpp']]], - ['make_5fj_3190',['make_J',['../TerrainMetrics_8cpp.html#a9c1ecbedddfe464d9db02960e5422564',1,'make_J(const Geometry &geom, MultiFab &z_phys_nd, MultiFab &detJ_cc): TerrainMetrics.cpp'],['../Utils_8H.html#accb87d367dfa749571761aa789fd3fea',1,'make_J(const amrex::Geometry &geom, amrex::MultiFab &z_phys_nd, amrex::MultiFab &detJ_cc): Utils.H']]], - ['make_5fmom_5fsources_3191',['make_mom_sources',['../ERF__make__mom__sources_8cpp.html#a027a2c40019232ded6ad99a99e448eb7',1,'make_mom_sources(int, int, Real dt, Vector< MultiFab > &S_data, const MultiFab &S_prim, const MultiFab &, const MultiFab &, MultiFab &xmom_src, MultiFab &ymom_src, MultiFab &zmom_src, MultiFab *r0, const Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< MultiFab > &mapfac_m, std::unique_ptr< MultiFab > &mapfac_u, std::unique_ptr< MultiFab > &mapfac_v, const Real *dptr_u_geos, const Real *dptr_v_geos, const Real *dptr_wbar_sub, const Vector< Real * > d_rayleigh_ptrs_at_lev, const Vector< Real * > d_sponge_ptrs_at_lev, int n_qstate): ERF_make_mom_sources.cpp'],['../Src__headers_8H.html#a752957bae3f28998131ff3d42becf41d',1,'make_mom_sources(int level, int nrk, amrex::Real dt, amrex::Vector< amrex::MultiFab > &S_data, const amrex::MultiFab &S_prim, const amrex::MultiFab &xvel, const amrex::MultiFab &yvel, amrex::MultiFab &xmom_source, amrex::MultiFab &ymom_source, amrex::MultiFab &zmom_source, amrex::MultiFab *r0, const amrex::Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< amrex::MultiFab > &mapfac_m, std::unique_ptr< amrex::MultiFab > &mapfac_u, std::unique_ptr< amrex::MultiFab > &mapfac_v, const amrex::Real *dptr_rhotheta_src, const amrex::Real *dptr_rhoqt_src, const amrex::Real *dptr_wbar_sub, const amrex::Vector< amrex::Real * > d_rayleigh_ptrs_at_lev, const amrex::Vector< amrex::Real * > d_sponge_ptrs_at_lev, const int n_qstate): Src_headers.H']]], - ['make_5fsources_3192',['make_sources',['../ERF__make__sources_8cpp.html#ae5ce4675f35ecdefeb8d33f181d7504c',1,'make_sources(int level, int, Real dt, Vector< MultiFab > &S_data, const MultiFab &S_prim, MultiFab &source, const Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< MultiFab > &mapfac_u, std::unique_ptr< MultiFab > &mapfac_v, const Real *dptr_rhotheta_src, const Real *dptr_rhoqt_src, const Real *dptr_wbar_sub, const Vector< Real * > d_rayleigh_ptrs_at_lev, TurbulentPerturbation &turbPert): ERF_make_sources.cpp'],['../Src__headers_8H.html#a162bf8f8a720e76a5fa7f8babaa7bd41',1,'make_sources(int level, int nrk, amrex::Real dt, amrex::Vector< amrex::MultiFab > &S_data, const amrex::MultiFab &S_prim, amrex::MultiFab &cc_source, const amrex::Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< amrex::MultiFab > &mapfac_u, std::unique_ptr< amrex::MultiFab > &mapfac_v, const amrex::Real *dptr_rhotheta_src, const amrex::Real *dptr_rhoqt_src, const amrex::Real *dptr_wbar_sub, const amrex::Vector< amrex::Real * > d_rayleigh_ptrs_at_lev, TurbulentPerturbation &turbPert): Src_headers.H']]], - ['make_5fzcc_3193',['make_zcc',['../TerrainMetrics_8cpp.html#acc28d890df44cf0082a848c057042178',1,'make_zcc(const Geometry &geom, MultiFab &z_phys_nd, MultiFab &z_phys_cc): TerrainMetrics.cpp'],['../Utils_8H.html#ab405f3b5732dda49ad076fab09bfbfc8',1,'make_zcc(const amrex::Geometry &geom, amrex::MultiFab &z_phys_nd, amrex::MultiFab &z_phys_cc): Utils.H']]], - ['makediagnosticaverage_3194',['MakeDiagnosticAverage',['../classERF.html#a93ed2dd2c2441da6853d6f48b6467324',1,'ERF']]], - ['makehorizontalaverages_3195',['MakeHorizontalAverages',['../classERF.html#a01987b2556834788694f2f3741a2afe4',1,'ERF']]], - ['makenewlevelfromcoarse_3196',['MakeNewLevelFromCoarse',['../classERF.html#abb6175c28b36d23f5dda2994ca4a85e7',1,'ERF']]], - ['makenewlevelfromscratch_3197',['MakeNewLevelFromScratch',['../classERF.html#aaf10bbf8c9a5dbc257a88c4c1b650fee',1,'ERF']]], - ['makoh_5fcubic_3198',['makoh_cubic',['../classModalAeroWateruptake.html#a134cf0f1fd68266a37a7683e362553c4',1,'ModalAeroWateruptake']]], - ['makoh_5fquartic_3199',['makoh_quartic',['../classModalAeroWateruptake.html#a63dc4418d21ddbc2f88a86e6b5e05640',1,'ModalAeroWateruptake']]], - ['mamconstituents_3200',['MamConstituents',['../classMamConstituents.html#a6839b6299dcdd8acf1cc859d929e0026',1,'MamConstituents']]], - ['map_5fdata_3201',['map_data',['../classMRISplitIntegrator.html#a14fd551d7a7ff5bf6c58500740a64547',1,'MRISplitIntegrator']]], - ['mcica_5fsubcol_5fmask_3202',['mcica_subcol_mask',['../classOptics.html#a078568b5fcba367944981fe065623e0c',1,'Optics']]], - ['microphysics_3203',['Microphysics',['../classMicrophysics.html#a79bf043906abc7e4d738318ec8e7aa2e',1,'Microphysics']]], - ['mitchell_5fice_5foptics_5flw_3204',['mitchell_ice_optics_lw',['../classCloudRadProps.html#a1ab01da075a2a82b9fb4c341ff85e373',1,'CloudRadProps']]], - ['mitchell_5fice_5foptics_5fsw_3205',['mitchell_ice_optics_sw',['../classCloudRadProps.html#a32483def8d0d82a6d1cb57834fe04b7d',1,'CloudRadProps']]], - ['mm5_3206',['MM5',['../classMM5.html#a1cb63322dbfcb32636b286d8043a2893',1,'MM5']]], - ['modal_5faero_5fcalcsize_5fdiag_3207',['modal_aero_calcsize_diag',['../classMam4__aer.html#adedd31f2c7c2a293e6f3dfc4818b175d',1,'Mam4_aer']]], - ['modal_5faero_5fkohler_3208',['modal_aero_kohler',['../classModalAeroWateruptake.html#abdedb99ff569dd300dd3046820da78e8',1,'ModalAeroWateruptake']]], - ['modal_5faero_5flw_3209',['modal_aero_lw',['../classMam4__aer.html#a893de418ed6818eeece9ed80b72cb685',1,'Mam4_aer']]], - ['modal_5faero_5fsw_3210',['modal_aero_sw',['../classMam4__aer.html#a2327a69b0d90bb5e4d77f8864a1196f8',1,'Mam4_aer']]], - ['modal_5faero_5fwateruptake_5fdr_3211',['modal_aero_wateruptake_dr',['../classModalAeroWateruptake.html#aab174a0054ce6dfa80f15e391d9489c6',1,'ModalAeroWateruptake']]], - ['modal_5faero_5fwateruptake_5fsub_3212',['modal_aero_wateruptake_sub',['../classModalAeroWateruptake.html#a7c1e0109c368bd156beb85a2e98a8878',1,'ModalAeroWateruptake']]], - ['modal_5foptics_5finit_3213',['modal_optics_init',['../classPhysProp.html#a3e12605585c1b1a1c92dc34c9dfebc85',1,'PhysProp']]], - ['modal_5fsize_5fparameters_3214',['modal_size_parameters',['../classMam4__aer.html#a1097c2d484ccac94860e32f0bdf54915',1,'Mam4_aer']]], - ['modeltype_3215',['modelType',['../classMicrophysics.html#ac10e6fce2e6cb49373d56ca0e1a5b366',1,'Microphysics']]], - ['moeng_5fflux_3216',['moeng_flux',['../structmoeng__flux.html#a2843a181e875e6599b04964c28117900',1,'moeng_flux']]], - ['momentumtovelocity_3217',['MomentumToVelocity',['../MomentumToVelocity_8cpp.html#a4909cdce4c261c6dae5564fb714881ea',1,'MomentumToVelocity(MultiFab &xvel, MultiFab &yvel, MultiFab &zvel, const MultiFab &density, const MultiFab &xmom_in, const MultiFab &ymom_in, const MultiFab &zmom_in, const Box &domain, const Vector< BCRec > &domain_bcs_type_h): MomentumToVelocity.cpp'],['../Utils_8H.html#a26382a1781acfcd6b4740685db28d6b2',1,'MomentumToVelocity(amrex::MultiFab &xvel_out, amrex::MultiFab &yvel_out, amrex::MultiFab &zvel_out, const amrex::MultiFab &cons_in, const amrex::MultiFab &xmom_in, const amrex::MultiFab &ymom_in, const amrex::MultiFab &zmom_in, const amrex::Box &domain, const amrex::Vector< amrex::BCRec > &domain_bcs_type_h): Utils.H']]], - ['mostaverage_3218',['MOSTAverage',['../classMOSTAverage.html#add74667e947201bbb2ddf2785f02ee0c',1,'MOSTAverage::MOSTAverage(const MOSTAverage &other)=delete'],['../classMOSTAverage.html#acfc77dc21a0821d4b446f7be289c64d6',1,'MOSTAverage::MOSTAverage(MOSTAverage &&) noexcept=default'],['../classMOSTAverage.html#a63d4ee91f32fe95e61b0dfe8fa5fac22',1,'MOSTAverage::MOSTAverage(amrex::Vector< amrex::Geometry > geom, amrex::Vector< amrex::Vector< amrex::MultiFab >> &vars_old, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Theta_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Qv_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &z_phys_nd)']]], - ['mrisplitintegrator_3219',['MRISplitIntegrator',['../classMRISplitIntegrator.html#a526041af494ee08e31efefc98aaa07ab',1,'MRISplitIntegrator::MRISplitIntegrator(const MRISplitIntegrator &other)=delete'],['../classMRISplitIntegrator.html#a809aa55db013cd913fe3546ef8001fd4',1,'MRISplitIntegrator::MRISplitIntegrator(MRISplitIntegrator &&) noexcept=default'],['../classMRISplitIntegrator.html#a9ea1c36a75e04596ffe0fa29e614b6e2',1,'MRISplitIntegrator::MRISplitIntegrator(const T &S_data)'],['../classMRISplitIntegrator.html#a42d755c9aea9203dfdcbbe4cb76f83e3',1,'MRISplitIntegrator::MRISplitIntegrator()=default']]], - ['multiblockcontainer_3220',['MultiBlockContainer',['../classMultiBlockContainer.html#a285674e081e90380c665398b91535794',1,'MultiBlockContainer']]], - ['murphykoop_5fsvp_5fice_3221',['MurphyKoop_svp_ice',['../classSatMethods.html#a87786f42b9d0601dc1d22f635906a76f',1,'SatMethods']]], - ['murphykoop_5fsvp_5fwater_3222',['MurphyKoop_svp_water',['../classSatMethods.html#aac1daa9a38464e217df80a4f9613bcb3',1,'SatMethods']]] + ['m2005_5feffradius_3190',['m2005_effradius',['../m2005__effradius_8H.html#aa8be1a517640718ec08df40a3613244a',1,'m2005_effradius.H']]], + ['main_3191',['main',['../main_8cpp.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main.cpp']]], + ['make_5fareas_3192',['make_areas',['../Utils_8H.html#afd5f5cf174d096726815e6d7dc325c41',1,'make_areas(const amrex::Geometry &geom, amrex::MultiFab &z_phys_nd, amrex::MultiFab &ax, amrex::MultiFab &ay, amrex::MultiFab &az): Utils.H'],['../TerrainMetrics_8cpp.html#a920c175414adfaaa26687bfb8e7585bb',1,'make_areas(const Geometry &geom, MultiFab &z_phys_nd, MultiFab &ax, MultiFab &ay, MultiFab &az): TerrainMetrics.cpp']]], + ['make_5fbuoyancy_3193',['make_buoyancy',['../Src__headers_8H.html#ab8d1e0300960f8aeabc92f0ffa82aefe',1,'make_buoyancy(amrex::Vector< amrex::MultiFab > &S_data, const amrex::MultiFab &S_prim, amrex::MultiFab &buoyancy, const amrex::Geometry geom, const SolverChoice &solverChoice, const amrex::MultiFab *r0, const int &qstate_size): Src_headers.H'],['../ERF__make__buoyancy_8cpp.html#a3906c740c767c111dc3f0adec0215e78',1,'make_buoyancy(Vector< MultiFab > &S_data, const MultiFab &S_prim, MultiFab &buoyancy, const amrex::Geometry geom, const SolverChoice &solverChoice, const MultiFab *r0, const int &qstate_size): ERF_make_buoyancy.cpp']]], + ['make_5ffast_5fcoeffs_3194',['make_fast_coeffs',['../TI__fast__headers_8H.html#adfda58e818c53254b1fa053669e911e8',1,'make_fast_coeffs(int level, amrex::MultiFab &fast_coeffs, amrex::Vector< amrex::MultiFab > &S_stage_data, const amrex::MultiFab &S_stage_prim, const amrex::MultiFab &pi_stage, const amrex::Geometry geom, const bool use_moisture, const bool use_terrain, const amrex::Real gravity, const amrex::Real c_p, std::unique_ptr< amrex::MultiFab > &detJ_cc, const amrex::MultiFab *r0, const amrex::MultiFab *pi0, const amrex::Real dtau, const amrex::Real beta_s, amrex::GpuArray< ERF_BC, AMREX_SPACEDIM *2 > &phys_bc_type): TI_fast_headers.H'],['../ERF__make__fast__coeffs_8cpp.html#a76dfae5a4d6b6037b1261e5c42936616',1,'make_fast_coeffs(int, MultiFab &fast_coeffs, Vector< MultiFab > &S_stage_data, const MultiFab &S_stage_prim, const MultiFab &pi_stage, const amrex::Geometry geom, bool l_use_moisture, bool l_use_terrain, Real gravity, Real c_p, std::unique_ptr< MultiFab > &detJ_cc, const MultiFab *r0, const MultiFab *pi0, Real dtau, Real beta_s, amrex::GpuArray< ERF_BC, AMREX_SPACEDIM *2 > &phys_bc_type): ERF_make_fast_coeffs.cpp']]], + ['make_5fj_3195',['make_J',['../TerrainMetrics_8cpp.html#a9c1ecbedddfe464d9db02960e5422564',1,'make_J(const Geometry &geom, MultiFab &z_phys_nd, MultiFab &detJ_cc): TerrainMetrics.cpp'],['../Utils_8H.html#accb87d367dfa749571761aa789fd3fea',1,'make_J(const amrex::Geometry &geom, amrex::MultiFab &z_phys_nd, amrex::MultiFab &detJ_cc): Utils.H']]], + ['make_5fmom_5fsources_3196',['make_mom_sources',['../ERF__make__mom__sources_8cpp.html#a027a2c40019232ded6ad99a99e448eb7',1,'make_mom_sources(int, int, Real dt, Vector< MultiFab > &S_data, const MultiFab &S_prim, const MultiFab &, const MultiFab &, MultiFab &xmom_src, MultiFab &ymom_src, MultiFab &zmom_src, MultiFab *r0, const Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< MultiFab > &mapfac_m, std::unique_ptr< MultiFab > &mapfac_u, std::unique_ptr< MultiFab > &mapfac_v, const Real *dptr_u_geos, const Real *dptr_v_geos, const Real *dptr_wbar_sub, const Vector< Real * > d_rayleigh_ptrs_at_lev, const Vector< Real * > d_sponge_ptrs_at_lev, int n_qstate): ERF_make_mom_sources.cpp'],['../Src__headers_8H.html#a752957bae3f28998131ff3d42becf41d',1,'make_mom_sources(int level, int nrk, amrex::Real dt, amrex::Vector< amrex::MultiFab > &S_data, const amrex::MultiFab &S_prim, const amrex::MultiFab &xvel, const amrex::MultiFab &yvel, amrex::MultiFab &xmom_source, amrex::MultiFab &ymom_source, amrex::MultiFab &zmom_source, amrex::MultiFab *r0, const amrex::Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< amrex::MultiFab > &mapfac_m, std::unique_ptr< amrex::MultiFab > &mapfac_u, std::unique_ptr< amrex::MultiFab > &mapfac_v, const amrex::Real *dptr_rhotheta_src, const amrex::Real *dptr_rhoqt_src, const amrex::Real *dptr_wbar_sub, const amrex::Vector< amrex::Real * > d_rayleigh_ptrs_at_lev, const amrex::Vector< amrex::Real * > d_sponge_ptrs_at_lev, const int n_qstate): Src_headers.H']]], + ['make_5fsources_3197',['make_sources',['../ERF__make__sources_8cpp.html#ae5ce4675f35ecdefeb8d33f181d7504c',1,'make_sources(int level, int, Real dt, Vector< MultiFab > &S_data, const MultiFab &S_prim, MultiFab &source, const Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< MultiFab > &mapfac_u, std::unique_ptr< MultiFab > &mapfac_v, const Real *dptr_rhotheta_src, const Real *dptr_rhoqt_src, const Real *dptr_wbar_sub, const Vector< Real * > d_rayleigh_ptrs_at_lev, TurbulentPerturbation &turbPert): ERF_make_sources.cpp'],['../Src__headers_8H.html#a162bf8f8a720e76a5fa7f8babaa7bd41',1,'make_sources(int level, int nrk, amrex::Real dt, amrex::Vector< amrex::MultiFab > &S_data, const amrex::MultiFab &S_prim, amrex::MultiFab &cc_source, const amrex::Geometry geom, const SolverChoice &solverChoice, std::unique_ptr< amrex::MultiFab > &mapfac_u, std::unique_ptr< amrex::MultiFab > &mapfac_v, const amrex::Real *dptr_rhotheta_src, const amrex::Real *dptr_rhoqt_src, const amrex::Real *dptr_wbar_sub, const amrex::Vector< amrex::Real * > d_rayleigh_ptrs_at_lev, TurbulentPerturbation &turbPert): Src_headers.H']]], + ['make_5fzcc_3198',['make_zcc',['../TerrainMetrics_8cpp.html#acc28d890df44cf0082a848c057042178',1,'make_zcc(const Geometry &geom, MultiFab &z_phys_nd, MultiFab &z_phys_cc): TerrainMetrics.cpp'],['../Utils_8H.html#ab405f3b5732dda49ad076fab09bfbfc8',1,'make_zcc(const amrex::Geometry &geom, amrex::MultiFab &z_phys_nd, amrex::MultiFab &z_phys_cc): Utils.H']]], + ['makediagnosticaverage_3199',['MakeDiagnosticAverage',['../classERF.html#a93ed2dd2c2441da6853d6f48b6467324',1,'ERF']]], + ['makehorizontalaverages_3200',['MakeHorizontalAverages',['../classERF.html#a01987b2556834788694f2f3741a2afe4',1,'ERF']]], + ['makenewlevelfromcoarse_3201',['MakeNewLevelFromCoarse',['../classERF.html#abb6175c28b36d23f5dda2994ca4a85e7',1,'ERF']]], + ['makenewlevelfromscratch_3202',['MakeNewLevelFromScratch',['../classERF.html#aaf10bbf8c9a5dbc257a88c4c1b650fee',1,'ERF']]], + ['makoh_5fcubic_3203',['makoh_cubic',['../classModalAeroWateruptake.html#a134cf0f1fd68266a37a7683e362553c4',1,'ModalAeroWateruptake']]], + ['makoh_5fquartic_3204',['makoh_quartic',['../classModalAeroWateruptake.html#a63dc4418d21ddbc2f88a86e6b5e05640',1,'ModalAeroWateruptake']]], + ['mamconstituents_3205',['MamConstituents',['../classMamConstituents.html#a6839b6299dcdd8acf1cc859d929e0026',1,'MamConstituents']]], + ['map_5fdata_3206',['map_data',['../classMRISplitIntegrator.html#a14fd551d7a7ff5bf6c58500740a64547',1,'MRISplitIntegrator']]], + ['mcica_5fsubcol_5fmask_3207',['mcica_subcol_mask',['../classOptics.html#a078568b5fcba367944981fe065623e0c',1,'Optics']]], + ['microphysics_3208',['Microphysics',['../classMicrophysics.html#a79bf043906abc7e4d738318ec8e7aa2e',1,'Microphysics']]], + ['mitchell_5fice_5foptics_5flw_3209',['mitchell_ice_optics_lw',['../classCloudRadProps.html#a1ab01da075a2a82b9fb4c341ff85e373',1,'CloudRadProps']]], + ['mitchell_5fice_5foptics_5fsw_3210',['mitchell_ice_optics_sw',['../classCloudRadProps.html#a32483def8d0d82a6d1cb57834fe04b7d',1,'CloudRadProps']]], + ['mm5_3211',['MM5',['../classMM5.html#a1cb63322dbfcb32636b286d8043a2893',1,'MM5']]], + ['modal_5faero_5fcalcsize_5fdiag_3212',['modal_aero_calcsize_diag',['../classMam4__aer.html#adedd31f2c7c2a293e6f3dfc4818b175d',1,'Mam4_aer']]], + ['modal_5faero_5fkohler_3213',['modal_aero_kohler',['../classModalAeroWateruptake.html#abdedb99ff569dd300dd3046820da78e8',1,'ModalAeroWateruptake']]], + ['modal_5faero_5flw_3214',['modal_aero_lw',['../classMam4__aer.html#a893de418ed6818eeece9ed80b72cb685',1,'Mam4_aer']]], + ['modal_5faero_5fsw_3215',['modal_aero_sw',['../classMam4__aer.html#a2327a69b0d90bb5e4d77f8864a1196f8',1,'Mam4_aer']]], + ['modal_5faero_5fwateruptake_5fdr_3216',['modal_aero_wateruptake_dr',['../classModalAeroWateruptake.html#aab174a0054ce6dfa80f15e391d9489c6',1,'ModalAeroWateruptake']]], + ['modal_5faero_5fwateruptake_5fsub_3217',['modal_aero_wateruptake_sub',['../classModalAeroWateruptake.html#a7c1e0109c368bd156beb85a2e98a8878',1,'ModalAeroWateruptake']]], + ['modal_5foptics_5finit_3218',['modal_optics_init',['../classPhysProp.html#a3e12605585c1b1a1c92dc34c9dfebc85',1,'PhysProp']]], + ['modal_5fsize_5fparameters_3219',['modal_size_parameters',['../classMam4__aer.html#a1097c2d484ccac94860e32f0bdf54915',1,'Mam4_aer']]], + ['modeltype_3220',['modelType',['../classMicrophysics.html#ac10e6fce2e6cb49373d56ca0e1a5b366',1,'Microphysics']]], + ['moeng_5fflux_3221',['moeng_flux',['../structmoeng__flux.html#a2843a181e875e6599b04964c28117900',1,'moeng_flux']]], + ['momentumtovelocity_3222',['MomentumToVelocity',['../MomentumToVelocity_8cpp.html#a4909cdce4c261c6dae5564fb714881ea',1,'MomentumToVelocity(MultiFab &xvel, MultiFab &yvel, MultiFab &zvel, const MultiFab &density, const MultiFab &xmom_in, const MultiFab &ymom_in, const MultiFab &zmom_in, const Box &domain, const Vector< BCRec > &domain_bcs_type_h): MomentumToVelocity.cpp'],['../Utils_8H.html#a26382a1781acfcd6b4740685db28d6b2',1,'MomentumToVelocity(amrex::MultiFab &xvel_out, amrex::MultiFab &yvel_out, amrex::MultiFab &zvel_out, const amrex::MultiFab &cons_in, const amrex::MultiFab &xmom_in, const amrex::MultiFab &ymom_in, const amrex::MultiFab &zmom_in, const amrex::Box &domain, const amrex::Vector< amrex::BCRec > &domain_bcs_type_h): Utils.H']]], + ['mostaverage_3223',['MOSTAverage',['../classMOSTAverage.html#add74667e947201bbb2ddf2785f02ee0c',1,'MOSTAverage::MOSTAverage(const MOSTAverage &other)=delete'],['../classMOSTAverage.html#acfc77dc21a0821d4b446f7be289c64d6',1,'MOSTAverage::MOSTAverage(MOSTAverage &&) noexcept=default'],['../classMOSTAverage.html#a63d4ee91f32fe95e61b0dfe8fa5fac22',1,'MOSTAverage::MOSTAverage(amrex::Vector< amrex::Geometry > geom, amrex::Vector< amrex::Vector< amrex::MultiFab >> &vars_old, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Theta_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &Qv_prim, amrex::Vector< std::unique_ptr< amrex::MultiFab >> &z_phys_nd)']]], + ['mrisplitintegrator_3224',['MRISplitIntegrator',['../classMRISplitIntegrator.html#a526041af494ee08e31efefc98aaa07ab',1,'MRISplitIntegrator::MRISplitIntegrator(const MRISplitIntegrator &other)=delete'],['../classMRISplitIntegrator.html#a809aa55db013cd913fe3546ef8001fd4',1,'MRISplitIntegrator::MRISplitIntegrator(MRISplitIntegrator &&) noexcept=default'],['../classMRISplitIntegrator.html#a9ea1c36a75e04596ffe0fa29e614b6e2',1,'MRISplitIntegrator::MRISplitIntegrator(const T &S_data)'],['../classMRISplitIntegrator.html#a42d755c9aea9203dfdcbbe4cb76f83e3',1,'MRISplitIntegrator::MRISplitIntegrator()=default']]], + ['multiblockcontainer_3225',['MultiBlockContainer',['../classMultiBlockContainer.html#a285674e081e90380c665398b91535794',1,'MultiBlockContainer']]], + ['murphykoop_5fsvp_5fice_3226',['MurphyKoop_svp_ice',['../classSatMethods.html#a87786f42b9d0601dc1d22f635906a76f',1,'SatMethods']]], + ['murphykoop_5fsvp_5fwater_3227',['MurphyKoop_svp_water',['../classSatMethods.html#aac1daa9a38464e217df80a4f9613bcb3',1,'SatMethods']]] ]; diff --git a/search/functions_c.js b/search/functions_c.js index 9ac5485464..1a08592a58 100644 --- a/search/functions_c.js +++ b/search/functions_c.js @@ -1,31 +1,31 @@ var searchData= [ - ['name_3223',['name',['../structncutils_1_1NCVar.html#a4b34f3722befd10e92d1267bcbd49724',1,'ncutils::NCVar::name()'],['../structncutils_1_1NCDim.html#aaf6334138e9892f5403400e31f062fd6',1,'ncutils::NCDim::name()'],['../classProblemBase.html#a3a8fb70110fb25623cdfa7b508dee9cf',1,'ProblemBase::name()'],['../classncutils_1_1NCGroup.html#a3d53c2f625cc6fc286e76c9137b5b1b0',1,'ncutils::NCGroup::name()']]], - ['ncell_5fline_3224',['ncell_line',['../classPlaneAverage.html#ab65036a99da90fb854f7dfd33cd700b1',1,'PlaneAverage']]], - ['ncell_5fplane_3225',['ncell_plane',['../classPlaneAverage.html#aaf4e5c9b73f65af3eb0ccdc6a82e76f2',1,'PlaneAverage']]], - ['ncfile_3226',['NCFile',['../classncutils_1_1NCFile.html#aec0e1a7f0f93f2f806c0a0abaae66423',1,'ncutils::NCFile']]], - ['ncgroup_3227',['NCGroup',['../classncutils_1_1NCGroup.html#a99e8b68dcdebf6a3df74c3575c3a3c65',1,'ncutils::NCGroup::NCGroup(const int id)'],['../classncutils_1_1NCGroup.html#a6c43a3f92aaf1df239595cebdc8c9a16',1,'ncutils::NCGroup::NCGroup(const int id, const NCGroup *)']]], - ['ncomp_3228',['ncomp',['../classPlaneAverage.html#a3860fd72df3e8dbb6b8decfdc360864f',1,'PlaneAverage']]], - ['ndarray_3229',['NDArray',['../structNDArray.html#a7bd19397e539424afc06e9fe12760434',1,'NDArray::NDArray(const std::string vname, const std::vector< size_t > &vshape)'],['../structNDArray.html#a1f33dbd861944bc1494f4790f4f8543d',1,'NDArray::NDArray()'],['../structNDArray.html#a54f69e355d97f10089f82fb1087fb0af',1,'NDArray::NDArray(const NDArray &array)']]], - ['ndim_3230',['ndim',['../structncutils_1_1NCVar.html#ae0ab15dc4c1033271878c3bf5102f911',1,'ncutils::NCVar::ndim()'],['../structNDArray.html#a1b3ece1ab109568fcb919d1af8f14eee',1,'NDArray::ndim()']]], - ['netzerobuoyantadd_3231',['netZeroBuoyantAdd',['../structTurbulentPerturbation.html#acf1a844ac4076c4af8ef38963f3fcc60',1,'TurbulentPerturbation']]], - ['netzerobuoyantadjust_3232',['netZeroBuoyantAdjust',['../structTurbulentPerturbation.html#a573c68aeec901ddf7c3cfe102430e527',1,'TurbulentPerturbation']]], - ['newtonitersat_3233',['NewtonIterSat',['../classSAM.html#a0154097dd0c769a35dcc52c484dd0dc6',1,'SAM']]], - ['no_5fip_5fhltalt_3234',['no_ip_hltalt',['../classWaterVaporSat.html#ad2bce1bf12d7f01fd354c36e17bfe635',1,'WaterVaporSat']]], - ['nonhygro_5foptics_5finit_3235',['nonhygro_optics_init',['../classPhysProp.html#adce35521cf33d13c6345ac5a9586c829',1,'PhysProp']]], - ['nullmoist_3236',['NullMoist',['../classNullMoist.html#a987746c147545a1a7d0efd21e5e34a12',1,'NullMoist']]], - ['nullsurf_3237',['NullSurf',['../classNullSurf.html#ab6d3582e156056b1b230809fe499a0cf',1,'NullSurf']]], - ['nullwindfarm_3238',['NullWindFarm',['../classNullWindFarm.html#ae4797e5a94227d10ed3b39dfd7bf4444',1,'NullWindFarm']]], - ['num_5fattributes_3239',['num_attributes',['../classncutils_1_1NCGroup.html#af7847ff27ccb8499814b7f21559e2e84',1,'ncutils::NCGroup']]], - ['num_5fdimensions_3240',['num_dimensions',['../classncutils_1_1NCGroup.html#a44b1b3b0a86df383ffa6ab4e68a7dea6',1,'ncutils::NCGroup']]], - ['num_5fgroups_3241',['num_groups',['../classncutils_1_1NCGroup.html#a4efddc44f72cc32a58849982bb7e8bce',1,'ncutils::NCGroup']]], - ['num_5fvariables_3242',['num_variables',['../classncutils_1_1NCGroup.html#a4721cc36bd0f188be0250112329d3ba1',1,'ncutils::NCGroup']]], - ['num_5fvars_3243',['num_vars',['../structTimeInterpolatedData.html#a69fdc01eabf8ded65ff6cac13e59c0c0',1,'TimeInterpolatedData']]], - ['numdatalogs_3244',['NumDataLogs',['../classERF.html#ac1238c1616826c66df1dfd9076e6a3da',1,'ERF']]], - ['numericaldiffusion_3245',['NumericalDiffusion',['../NumericalDiffusion_8cpp.html#ae451ae3f674c2317abcabb5ccc2c8854',1,'NumericalDiffusion(const Box &bx, const int start_comp, const int num_comp, const Real dt, const Real num_diff_coeff, const Array4< const Real > &data, const Array4< Real > &rhs, const Array4< const Real > &mf_x, const Array4< const Real > &mf_y, const bool avg_mf_x_y, const bool avg_mf_y_x): NumericalDiffusion.cpp'],['../NumericalDiffusion_8H.html#aac5237931765783ba1e8aba39e37b4e1',1,'NumericalDiffusion(const amrex::Box &bx, const int start_comp, const int num_comp, const amrex::Real dt, const amrex::Real num_diff_coeff, const amrex::Array4< const amrex::Real > &data, const amrex::Array4< amrex::Real > &rhs, const amrex::Array4< const amrex::Real > &mf_x, const amrex::Array4< const amrex::Real > &mf_y, const bool avg_mf_x_y, const bool avg_mf_y_x): NumericalDiffusion.H']]], - ['numericaldiffusionvert_3246',['NumericalDiffusionVert',['../NumericalDiffusion_8cpp.html#a8952e6a1f264de82be2054dfec9fe5d9',1,'NumericalDiffusionVert(const Box &bx, const int start_comp, const int num_comp, const Real dt, const Real num_diff_coeff, const Array4< const Real > &data, const Array4< Real > &rhs): NumericalDiffusion.cpp'],['../NumericalDiffusion_8H.html#a6e0d8ff49fd56c19488385130631c161',1,'NumericalDiffusionVert(const amrex::Box &bx, const int start_comp, const int num_comp, const amrex::Real dt, const amrex::Real num_diff_coeff, const amrex::Array4< const amrex::Real > &data, const amrex::Array4< amrex::Real > &rhs): NumericalDiffusion.H']]], - ['numsamplelinelogs_3247',['NumSampleLineLogs',['../classERF.html#a14f922bdc3a0f23c087afa32c67ac119',1,'ERF']]], - ['numsamplelines_3248',['NumSampleLines',['../classERF.html#a70d78ca624acf09d8faab9a2d51264d9',1,'ERF']]], - ['numsamplepointlogs_3249',['NumSamplePointLogs',['../classERF.html#a41324a4b5610fde725fe721550b23c85',1,'ERF']]], - ['numsamplepoints_3250',['NumSamplePoints',['../classERF.html#a5bc7dd2c7e1ebf65b7dc1d9bf0dfb36f',1,'ERF']]] + ['name_3228',['name',['../structncutils_1_1NCVar.html#a4b34f3722befd10e92d1267bcbd49724',1,'ncutils::NCVar::name()'],['../structncutils_1_1NCDim.html#aaf6334138e9892f5403400e31f062fd6',1,'ncutils::NCDim::name()'],['../classProblemBase.html#a3a8fb70110fb25623cdfa7b508dee9cf',1,'ProblemBase::name()'],['../classncutils_1_1NCGroup.html#a3d53c2f625cc6fc286e76c9137b5b1b0',1,'ncutils::NCGroup::name()']]], + ['ncell_5fline_3229',['ncell_line',['../classPlaneAverage.html#ab65036a99da90fb854f7dfd33cd700b1',1,'PlaneAverage']]], + ['ncell_5fplane_3230',['ncell_plane',['../classPlaneAverage.html#aaf4e5c9b73f65af3eb0ccdc6a82e76f2',1,'PlaneAverage']]], + ['ncfile_3231',['NCFile',['../classncutils_1_1NCFile.html#aec0e1a7f0f93f2f806c0a0abaae66423',1,'ncutils::NCFile']]], + ['ncgroup_3232',['NCGroup',['../classncutils_1_1NCGroup.html#a99e8b68dcdebf6a3df74c3575c3a3c65',1,'ncutils::NCGroup::NCGroup(const int id)'],['../classncutils_1_1NCGroup.html#a6c43a3f92aaf1df239595cebdc8c9a16',1,'ncutils::NCGroup::NCGroup(const int id, const NCGroup *)']]], + ['ncomp_3233',['ncomp',['../classPlaneAverage.html#a3860fd72df3e8dbb6b8decfdc360864f',1,'PlaneAverage']]], + ['ndarray_3234',['NDArray',['../structNDArray.html#a7bd19397e539424afc06e9fe12760434',1,'NDArray::NDArray(const std::string vname, const std::vector< size_t > &vshape)'],['../structNDArray.html#a1f33dbd861944bc1494f4790f4f8543d',1,'NDArray::NDArray()'],['../structNDArray.html#a54f69e355d97f10089f82fb1087fb0af',1,'NDArray::NDArray(const NDArray &array)']]], + ['ndim_3235',['ndim',['../structncutils_1_1NCVar.html#ae0ab15dc4c1033271878c3bf5102f911',1,'ncutils::NCVar::ndim()'],['../structNDArray.html#a1b3ece1ab109568fcb919d1af8f14eee',1,'NDArray::ndim()']]], + ['netzerobuoyantadd_3236',['netZeroBuoyantAdd',['../structTurbulentPerturbation.html#acf1a844ac4076c4af8ef38963f3fcc60',1,'TurbulentPerturbation']]], + ['netzerobuoyantadjust_3237',['netZeroBuoyantAdjust',['../structTurbulentPerturbation.html#a573c68aeec901ddf7c3cfe102430e527',1,'TurbulentPerturbation']]], + ['newtonitersat_3238',['NewtonIterSat',['../classSAM.html#a0154097dd0c769a35dcc52c484dd0dc6',1,'SAM']]], + ['no_5fip_5fhltalt_3239',['no_ip_hltalt',['../classWaterVaporSat.html#ad2bce1bf12d7f01fd354c36e17bfe635',1,'WaterVaporSat']]], + ['nonhygro_5foptics_5finit_3240',['nonhygro_optics_init',['../classPhysProp.html#adce35521cf33d13c6345ac5a9586c829',1,'PhysProp']]], + ['nullmoist_3241',['NullMoist',['../classNullMoist.html#a987746c147545a1a7d0efd21e5e34a12',1,'NullMoist']]], + ['nullsurf_3242',['NullSurf',['../classNullSurf.html#ab6d3582e156056b1b230809fe499a0cf',1,'NullSurf']]], + ['nullwindfarm_3243',['NullWindFarm',['../classNullWindFarm.html#ae4797e5a94227d10ed3b39dfd7bf4444',1,'NullWindFarm']]], + ['num_5fattributes_3244',['num_attributes',['../classncutils_1_1NCGroup.html#af7847ff27ccb8499814b7f21559e2e84',1,'ncutils::NCGroup']]], + ['num_5fdimensions_3245',['num_dimensions',['../classncutils_1_1NCGroup.html#a44b1b3b0a86df383ffa6ab4e68a7dea6',1,'ncutils::NCGroup']]], + ['num_5fgroups_3246',['num_groups',['../classncutils_1_1NCGroup.html#a4efddc44f72cc32a58849982bb7e8bce',1,'ncutils::NCGroup']]], + ['num_5fvariables_3247',['num_variables',['../classncutils_1_1NCGroup.html#a4721cc36bd0f188be0250112329d3ba1',1,'ncutils::NCGroup']]], + ['num_5fvars_3248',['num_vars',['../structTimeInterpolatedData.html#a69fdc01eabf8ded65ff6cac13e59c0c0',1,'TimeInterpolatedData']]], + ['numdatalogs_3249',['NumDataLogs',['../classERF.html#ac1238c1616826c66df1dfd9076e6a3da',1,'ERF']]], + ['numericaldiffusion_3250',['NumericalDiffusion',['../NumericalDiffusion_8cpp.html#ae451ae3f674c2317abcabb5ccc2c8854',1,'NumericalDiffusion(const Box &bx, const int start_comp, const int num_comp, const Real dt, const Real num_diff_coeff, const Array4< const Real > &data, const Array4< Real > &rhs, const Array4< const Real > &mf_x, const Array4< const Real > &mf_y, const bool avg_mf_x_y, const bool avg_mf_y_x): NumericalDiffusion.cpp'],['../NumericalDiffusion_8H.html#aac5237931765783ba1e8aba39e37b4e1',1,'NumericalDiffusion(const amrex::Box &bx, const int start_comp, const int num_comp, const amrex::Real dt, const amrex::Real num_diff_coeff, const amrex::Array4< const amrex::Real > &data, const amrex::Array4< amrex::Real > &rhs, const amrex::Array4< const amrex::Real > &mf_x, const amrex::Array4< const amrex::Real > &mf_y, const bool avg_mf_x_y, const bool avg_mf_y_x): NumericalDiffusion.H']]], + ['numericaldiffusionvert_3251',['NumericalDiffusionVert',['../NumericalDiffusion_8cpp.html#a8952e6a1f264de82be2054dfec9fe5d9',1,'NumericalDiffusionVert(const Box &bx, const int start_comp, const int num_comp, const Real dt, const Real num_diff_coeff, const Array4< const Real > &data, const Array4< Real > &rhs): NumericalDiffusion.cpp'],['../NumericalDiffusion_8H.html#a6e0d8ff49fd56c19488385130631c161',1,'NumericalDiffusionVert(const amrex::Box &bx, const int start_comp, const int num_comp, const amrex::Real dt, const amrex::Real num_diff_coeff, const amrex::Array4< const amrex::Real > &data, const amrex::Array4< amrex::Real > &rhs): NumericalDiffusion.H']]], + ['numsamplelinelogs_3252',['NumSampleLineLogs',['../classERF.html#a14f922bdc3a0f23c087afa32c67ac119',1,'ERF']]], + ['numsamplelines_3253',['NumSampleLines',['../classERF.html#a70d78ca624acf09d8faab9a2d51264d9',1,'ERF']]], + ['numsamplepointlogs_3254',['NumSamplePointLogs',['../classERF.html#a41324a4b5610fde725fe721550b23c85',1,'ERF']]], + ['numsamplepoints_3255',['NumSamplePoints',['../classERF.html#a5bc7dd2c7e1ebf65b7dc1d9bf0dfb36f',1,'ERF']]] ]; diff --git a/search/functions_d.js b/search/functions_d.js index d6ee01a4eb..f5c1a44766 100644 --- a/search/functions_d.js +++ b/search/functions_d.js @@ -1,13 +1,13 @@ var searchData= [ - ['offset_3251',['offset',['../ERF__ReadBndryPlanes_8cpp.html#a63d3125f6fd361f61d697799f46da817',1,'ERF_ReadBndryPlanes.cpp']]], - ['oldgoffgratch_5fsvp_5fice_3252',['OldGoffGratch_svp_ice',['../classSatMethods.html#a185a448ec1db160bc61f23cbda63f4bd',1,'SatMethods']]], - ['oldgoffgratch_5fsvp_5fwater_3253',['OldGoffGratch_svp_water',['../classSatMethods.html#a8458bd6a233082c463c070ddc692080f',1,'SatMethods']]], - ['omegafromw_3254',['OmegaFromW',['../TerrainMetrics_8H.html#a6a4bf1524412edfd6efcbb867256db18',1,'TerrainMetrics.H']]], - ['on_5fcomplete_3255',['on_complete',['../classRadiation.html#a00d9d9b6ca18b854c515cc19ca93116a',1,'Radiation']]], - ['open_3256',['open',['../classncutils_1_1NCFile.html#a2881b70e450e11f01b474c538b8d6885',1,'ncutils::NCFile']]], - ['open_5fpar_3257',['open_par',['../classncutils_1_1NCFile.html#a4ebf9e1dc5ce07255330478f050e9f1f',1,'ncutils::NCFile']]], - ['operator_28_29_3258',['operator()',['../classERFPhysBCFunct__cons.html#a117a7e4d21a16df5748a801f530b22c7',1,'ERFPhysBCFunct_cons::operator()()'],['../classPlaneAverage.html#aa58d4a708d46cd0d12120e9bf90d5de2',1,'PlaneAverage::operator()()'],['../classTerrainIF.html#ad0a9adc95fd3d0b5903d5ef7f5b74176',1,'TerrainIF::operator()(const amrex::RealArray &p) const noexcept'],['../classTerrainIF.html#ad7eb62071230ad12fbaa91ec2a13f110',1,'TerrainIF::operator()(AMREX_D_DECL(amrex::Real x, amrex::Real y, amrex::Real z)) const noexcept'],['../classFlowerIF.html#a69a4544022e024b4b1f43173bdc2acfa',1,'FlowerIF::operator()(const amrex::RealArray &p) const noexcept'],['../classFlowerIF.html#a951672447af5497b0c6892b0c3b2a486',1,'FlowerIF::operator()(AMREX_D_DECL(amrex::Real x, amrex::Real y, amrex::Real)) const noexcept'],['../classUnionCIF.html#ae667fc60d687ed9cec3c0744123565ca',1,'UnionCIF::operator()()'],['../classERFPhysBCFunct__u.html#a7c9c47c22a7b4106912ef540492b86c5',1,'ERFPhysBCFunct_u::operator()()'],['../classERFPhysBCFunct__v.html#a38aa6be225edb8597ddc2828ee7bd6d7',1,'ERFPhysBCFunct_v::operator()()'],['../classERFPhysBCFunct__w.html#a6f8e28817bb9dafdbc4d3fa94736d389',1,'ERFPhysBCFunct_w::operator()()'],['../classIntersectionCIF.html#a335f81a1bad5ad2693b59b62ba19ed6b',1,'IntersectionCIF::operator()()'],['../classUnionListIF.html#a0d787c823ae784fa6e3303f561afe3ec',1,'UnionListIF::operator()()'],['../classERFPhysBCFunct__w__no__terrain.html#a735e6027f98a8b4dda67c67301cb6a20',1,'ERFPhysBCFunct_w_no_terrain::operator()()']]], - ['operator_3d_3259',['operator=',['../classIntersectionCIF.html#a8f38679674ad3b05ce6ebea9d3d03e44',1,'IntersectionCIF::operator=()'],['../classMRISplitIntegrator.html#a9ee3b26ea1daf4ec058552c40b13e13b',1,'MRISplitIntegrator::operator=(const MRISplitIntegrator &other)=delete'],['../classMRISplitIntegrator.html#ad698d348d3e7fa695077134839254738',1,'MRISplitIntegrator::operator=(MRISplitIntegrator &&other) noexcept=default'],['../structNDArray.html#a63dda01f8d55fd1fc75437b125eb27b3',1,'NDArray::operator=()'],['../classERF.html#a72fcc41d6f5225e9ca3b8c9111ff37e7',1,'ERF::operator=(const ERF &other)=delete'],['../classERF.html#abbc40e6fe700b80e3666dd3723624f05',1,'ERF::operator=(ERF &&other) noexcept=delete'],['../classIntersectionCIF.html#ae7bfcaf3ef685b2ba23765f184c81539',1,'IntersectionCIF::operator=()'],['../classUnionCIF.html#a0bbd9d187f7efd622fb063c08d06151c',1,'UnionCIF::operator=(UnionCIF &&rhs) noexcept=default'],['../classUnionCIF.html#a80348b91b25ded6d92276a198493d906',1,'UnionCIF::operator=(const UnionCIF &rhs)=default'],['../classCIF.html#a037374536662a8e2ed2fe272c8166526',1,'CIF::operator=(CIF &&rhs) noexcept=default'],['../classCIF.html#aa92ae7f8c7e1e3b05913912c14cd563b',1,'CIF::operator=(const CIF &rhs)=default'],['../structTimeInterpolatedData.html#a8c70a753ce4ff647874b276dd0bec89f',1,'TimeInterpolatedData::operator=(const TimeInterpolatedData &other)=delete'],['../structTimeInterpolatedData.html#a14b102dca6a63a5def503e3704b8ff5c',1,'TimeInterpolatedData::operator=(TimeInterpolatedData &&other) noexcept=default'],['../classMOSTAverage.html#a56f533937767a348d7c1dff755989531',1,'MOSTAverage::operator=(const MOSTAverage &other)=delete'],['../classMOSTAverage.html#a584b986a317b2c4d799163574c43b3b3',1,'MOSTAverage::operator=(MOSTAverage &&other) noexcept=delete']]], - ['optics_3260',['Optics',['../classOptics.html#a3ec67cc89ceb33196552b89616728040',1,'Optics::Optics()=default'],['../classOptics.html#aadaf34955cffcf141d182624b38f7898',1,'Optics::Optics(int ngases, char *gas_names[])']]] + ['offset_3256',['offset',['../ERF__ReadBndryPlanes_8cpp.html#a63d3125f6fd361f61d697799f46da817',1,'ERF_ReadBndryPlanes.cpp']]], + ['oldgoffgratch_5fsvp_5fice_3257',['OldGoffGratch_svp_ice',['../classSatMethods.html#a185a448ec1db160bc61f23cbda63f4bd',1,'SatMethods']]], + ['oldgoffgratch_5fsvp_5fwater_3258',['OldGoffGratch_svp_water',['../classSatMethods.html#a8458bd6a233082c463c070ddc692080f',1,'SatMethods']]], + ['omegafromw_3259',['OmegaFromW',['../TerrainMetrics_8H.html#a6a4bf1524412edfd6efcbb867256db18',1,'TerrainMetrics.H']]], + ['on_5fcomplete_3260',['on_complete',['../classRadiation.html#a00d9d9b6ca18b854c515cc19ca93116a',1,'Radiation']]], + ['open_3261',['open',['../classncutils_1_1NCFile.html#a2881b70e450e11f01b474c538b8d6885',1,'ncutils::NCFile']]], + ['open_5fpar_3262',['open_par',['../classncutils_1_1NCFile.html#a4ebf9e1dc5ce07255330478f050e9f1f',1,'ncutils::NCFile']]], + ['operator_28_29_3263',['operator()',['../classERFPhysBCFunct__cons.html#a117a7e4d21a16df5748a801f530b22c7',1,'ERFPhysBCFunct_cons::operator()()'],['../classPlaneAverage.html#aa58d4a708d46cd0d12120e9bf90d5de2',1,'PlaneAverage::operator()()'],['../classTerrainIF.html#ad0a9adc95fd3d0b5903d5ef7f5b74176',1,'TerrainIF::operator()(const amrex::RealArray &p) const noexcept'],['../classTerrainIF.html#ad7eb62071230ad12fbaa91ec2a13f110',1,'TerrainIF::operator()(AMREX_D_DECL(amrex::Real x, amrex::Real y, amrex::Real z)) const noexcept'],['../classFlowerIF.html#a69a4544022e024b4b1f43173bdc2acfa',1,'FlowerIF::operator()(const amrex::RealArray &p) const noexcept'],['../classFlowerIF.html#a951672447af5497b0c6892b0c3b2a486',1,'FlowerIF::operator()(AMREX_D_DECL(amrex::Real x, amrex::Real y, amrex::Real)) const noexcept'],['../classUnionCIF.html#ae667fc60d687ed9cec3c0744123565ca',1,'UnionCIF::operator()()'],['../classERFPhysBCFunct__u.html#a7c9c47c22a7b4106912ef540492b86c5',1,'ERFPhysBCFunct_u::operator()()'],['../classERFPhysBCFunct__v.html#a38aa6be225edb8597ddc2828ee7bd6d7',1,'ERFPhysBCFunct_v::operator()()'],['../classERFPhysBCFunct__w.html#a6f8e28817bb9dafdbc4d3fa94736d389',1,'ERFPhysBCFunct_w::operator()()'],['../classIntersectionCIF.html#a335f81a1bad5ad2693b59b62ba19ed6b',1,'IntersectionCIF::operator()()'],['../classUnionListIF.html#a0d787c823ae784fa6e3303f561afe3ec',1,'UnionListIF::operator()()'],['../classERFPhysBCFunct__w__no__terrain.html#a735e6027f98a8b4dda67c67301cb6a20',1,'ERFPhysBCFunct_w_no_terrain::operator()()']]], + ['operator_3d_3264',['operator=',['../classIntersectionCIF.html#a8f38679674ad3b05ce6ebea9d3d03e44',1,'IntersectionCIF::operator=()'],['../classMRISplitIntegrator.html#a9ee3b26ea1daf4ec058552c40b13e13b',1,'MRISplitIntegrator::operator=(const MRISplitIntegrator &other)=delete'],['../classMRISplitIntegrator.html#ad698d348d3e7fa695077134839254738',1,'MRISplitIntegrator::operator=(MRISplitIntegrator &&other) noexcept=default'],['../structNDArray.html#a63dda01f8d55fd1fc75437b125eb27b3',1,'NDArray::operator=()'],['../classERF.html#a72fcc41d6f5225e9ca3b8c9111ff37e7',1,'ERF::operator=(const ERF &other)=delete'],['../classERF.html#abbc40e6fe700b80e3666dd3723624f05',1,'ERF::operator=(ERF &&other) noexcept=delete'],['../classIntersectionCIF.html#ae7bfcaf3ef685b2ba23765f184c81539',1,'IntersectionCIF::operator=()'],['../classUnionCIF.html#a0bbd9d187f7efd622fb063c08d06151c',1,'UnionCIF::operator=(UnionCIF &&rhs) noexcept=default'],['../classUnionCIF.html#a80348b91b25ded6d92276a198493d906',1,'UnionCIF::operator=(const UnionCIF &rhs)=default'],['../classCIF.html#a037374536662a8e2ed2fe272c8166526',1,'CIF::operator=(CIF &&rhs) noexcept=default'],['../classCIF.html#aa92ae7f8c7e1e3b05913912c14cd563b',1,'CIF::operator=(const CIF &rhs)=default'],['../structTimeInterpolatedData.html#a8c70a753ce4ff647874b276dd0bec89f',1,'TimeInterpolatedData::operator=(const TimeInterpolatedData &other)=delete'],['../structTimeInterpolatedData.html#a14b102dca6a63a5def503e3704b8ff5c',1,'TimeInterpolatedData::operator=(TimeInterpolatedData &&other) noexcept=default'],['../classMOSTAverage.html#a56f533937767a348d7c1dff755989531',1,'MOSTAverage::operator=(const MOSTAverage &other)=delete'],['../classMOSTAverage.html#a584b986a317b2c4d799163574c43b3b3',1,'MOSTAverage::operator=(MOSTAverage &&other) noexcept=delete']]], + ['optics_3265',['Optics',['../classOptics.html#a3ec67cc89ceb33196552b89616728040',1,'Optics::Optics()=default'],['../classOptics.html#aadaf34955cffcf141d182624b38f7898',1,'Optics::Optics(int ngases, char *gas_names[])']]] ]; diff --git a/search/functions_e.js b/search/functions_e.js index 75cb592682..1632f53c95 100644 --- a/search/functions_e.js +++ b/search/functions_e.js @@ -1,27 +1,27 @@ var searchData= [ - ['par_5faccess_3261',['par_access',['../structncutils_1_1NCVar.html#a62b3d88feb5305a1c7efbb0ddf8002fc',1,'ncutils::NCVar']]], - ['parallelbox_3262',['ParallelBox',['../DirectionSelector_8H.html#aa828f1c2424107e1a454fee49cd04ad5',1,'DirectionSelector.H']]], - ['perpendicularbox_3263',['PerpendicularBox',['../DirectionSelector_8H.html#aef11f5662c1574638970c58b8421afa9',1,'DirectionSelector.H']]], - ['physprop_5faccum_5funique_5ffiles_3264',['physprop_accum_unique_files',['../classPhysProp.html#a864a1fe5f0d1797950a913c9f4927911',1,'PhysProp']]], - ['physprop_5fget_5fid_3265',['physprop_get_id',['../classPhysProp.html#ae7d874302e60031d6e08240f0a04c6ef',1,'PhysProp']]], - ['physprop_5finit_3266',['physprop_init',['../classPhysProp.html#a01e533ca883ebcbdecb7262c38d3da89',1,'PhysProp']]], - ['planeaverage_3267',['PlaneAverage',['../classPlaneAverage.html#ae9fb25948e525a6d7e2db872e97a4b4e',1,'PlaneAverage::PlaneAverage(const amrex::MultiFab *field_in, amrex::Geometry geom_in, int axis_in, bool inc_ghost=false)'],['../classPlaneAverage.html#ae021681bed8e81747b36dd6bcbd1a257',1,'PlaneAverage::PlaneAverage()=delete']]], - ['plot_5flsm_5fdata_3268',['Plot_Lsm_Data',['../classLandSurface.html#a61290767bd3f0bc65db7a0a344b10899',1,'LandSurface']]], - ['plotfilename_3269',['PlotFileName',['../classERF.html#a54f6c5d799e51521ad10bb57d29d0c44',1,'ERF']]], - ['plotfilevarnames_3270',['PlotFileVarNames',['../classERF.html#a2dcd22cb915d923c687f60267f44542b',1,'ERF']]], - ['pn_3271',['pn',['../Microphysics__Utils_8H.html#a50486020eb1ed680a1ea0b0e82b81f2d',1,'Microphysics_Utils.H']]], - ['post_5ftimestep_3272',['post_timestep',['../classERF.html#a58f6683aff0fbe6949bfe8b49275a8b3',1,'ERF']]], - ['post_5fupdate_3273',['post_update',['../classERF.html#adca0cddd75f33ecb5fb8e0ef9601dae4',1,'ERF']]], - ['pp_3274',['pp',['../Microphysics__Utils_8H.html#ac54f1d17d8842acb42b2312cd353e469',1,'Microphysics_Utils.H']]], - ['precip_3275',['Precip',['../classSAM.html#a05218bdc2187b79e456ade5b6f5bdb3c',1,'SAM']]], - ['precipfall_3276',['PrecipFall',['../classSAM.html#ae870dc821f7cd01ffc3bfd7925b1d18b',1,'SAM']]], - ['print_5fbanner_3277',['print_banner',['../classERF.html#a1a8eb6bc00080cdbd8df28f6a321ac72',1,'ERF']]], - ['print_5ferror_3278',['print_error',['../classERF.html#addc510dbf758a33cc095d64a9b17076c',1,'ERF']]], - ['print_5fsummary_3279',['print_summary',['../classERF.html#afa432756254529fb37b921088f0960d2',1,'ERF']]], - ['print_5ftpls_3280',['print_tpls',['../classERF.html#a15af18ae136cf3a11bb63fe0cf3924c8',1,'ERF']]], - ['print_5fusage_3281',['print_usage',['../classERF.html#aeaeb11001478b0635ef0fe3baa396df1',1,'ERF']]], - ['pseudorandompert_3282',['pseudoRandomPert',['../structTurbulentPerturbation.html#a1dfc591297a8af23c941b06ed5fabba1',1,'TurbulentPerturbation']]], - ['put_3283',['put',['../structncutils_1_1NCVar.html#a2d41b9484dd6453e36be2d54fe824962',1,'ncutils::NCVar::put(const double *, const std::vector< size_t > &, const std::vector< size_t > &) const'],['../structncutils_1_1NCVar.html#a7e026621e99a5df32de407384d929791',1,'ncutils::NCVar::put(const double *) const'],['../structncutils_1_1NCVar.html#aa61e7a28b6bff1df2ef10b4856c34af7',1,'ncutils::NCVar::put(const float *) const'],['../structncutils_1_1NCVar.html#a1cdbbfc072d285144de7f9b6e0fbac42',1,'ncutils::NCVar::put(const char **dptr, const std::vector< size_t > &start, const std::vector< size_t > &count, const std::vector< ptrdiff_t > &stride) const'],['../structncutils_1_1NCVar.html#a7d575f25e77d2a5e2dbac86047ca318c',1,'ncutils::NCVar::put(const char **, const std::vector< size_t > &, const std::vector< size_t > &) const'],['../structncutils_1_1NCVar.html#a5f4dc3a5bf52f9574bffc89c29f4335c',1,'ncutils::NCVar::put(const int *, const std::vector< size_t > &, const std::vector< size_t > &, const std::vector< ptrdiff_t > &) const'],['../structncutils_1_1NCVar.html#ae4d3aaba3b410438132b65bb8ab47512',1,'ncutils::NCVar::put(const int *, const std::vector< size_t > &, const std::vector< size_t > &) const'],['../structncutils_1_1NCVar.html#ad8b9aedc67e38c49522bd98459a26290',1,'ncutils::NCVar::put(const float *, const std::vector< size_t > &, const std::vector< size_t > &, const std::vector< ptrdiff_t > &) const'],['../structncutils_1_1NCVar.html#a2520db8c1541561c274be5c372fa5597',1,'ncutils::NCVar::put(const float *, const std::vector< size_t > &, const std::vector< size_t > &) const'],['../structncutils_1_1NCVar.html#a8a96107d02633e5a53aef296052716d1',1,'ncutils::NCVar::put(const double *, const std::vector< size_t > &, const std::vector< size_t > &, const std::vector< ptrdiff_t > &) const'],['../structncutils_1_1NCVar.html#a16984e6a3ad571e12401321b749f44ea',1,'ncutils::NCVar::put(const int *) const']]], - ['put_5fattr_3284',['put_attr',['../structncutils_1_1NCVar.html#a9f60ebf70762d1d8e0962afb01118a31',1,'ncutils::NCVar::put_attr(const std::string &name, const std::string &value) const'],['../structncutils_1_1NCVar.html#ac1572a791861a2d297f8f29ba0df8d55',1,'ncutils::NCVar::put_attr(const std::string &name, const std::vector< double > &value) const'],['../structncutils_1_1NCVar.html#a69c358988ebdd589d7e465ca6a5f07e9',1,'ncutils::NCVar::put_attr(const std::string &name, const std::vector< float > &value) const'],['../structncutils_1_1NCVar.html#a72558ae45f30bed210d68c26ec57cb13',1,'ncutils::NCVar::put_attr(const std::string &name, const std::vector< int > &value) const'],['../classncutils_1_1NCGroup.html#acf73ea254afaf7d74596fa07523b322f',1,'ncutils::NCGroup::put_attr(const std::string &name, const std::string &value) const'],['../classncutils_1_1NCGroup.html#a91efbd2b8ef280b7eb3b426bbbf16cca',1,'ncutils::NCGroup::put_attr(const std::string &name, const std::vector< double > &value) const'],['../classncutils_1_1NCGroup.html#a39472c18d4e16cf47ba54bd1246220b6',1,'ncutils::NCGroup::put_attr(const std::string &name, const std::vector< float > &value) const'],['../classncutils_1_1NCGroup.html#acf2801c26458fb99bd82733b1302285a',1,'ncutils::NCGroup::put_attr(const std::string &name, const std::vector< int > &value) const']]] + ['par_5faccess_3266',['par_access',['../structncutils_1_1NCVar.html#a62b3d88feb5305a1c7efbb0ddf8002fc',1,'ncutils::NCVar']]], + ['parallelbox_3267',['ParallelBox',['../DirectionSelector_8H.html#aa828f1c2424107e1a454fee49cd04ad5',1,'DirectionSelector.H']]], + ['perpendicularbox_3268',['PerpendicularBox',['../DirectionSelector_8H.html#aef11f5662c1574638970c58b8421afa9',1,'DirectionSelector.H']]], + ['physprop_5faccum_5funique_5ffiles_3269',['physprop_accum_unique_files',['../classPhysProp.html#a864a1fe5f0d1797950a913c9f4927911',1,'PhysProp']]], + ['physprop_5fget_5fid_3270',['physprop_get_id',['../classPhysProp.html#ae7d874302e60031d6e08240f0a04c6ef',1,'PhysProp']]], + ['physprop_5finit_3271',['physprop_init',['../classPhysProp.html#a01e533ca883ebcbdecb7262c38d3da89',1,'PhysProp']]], + ['planeaverage_3272',['PlaneAverage',['../classPlaneAverage.html#ae9fb25948e525a6d7e2db872e97a4b4e',1,'PlaneAverage::PlaneAverage(const amrex::MultiFab *field_in, amrex::Geometry geom_in, int axis_in, bool inc_ghost=false)'],['../classPlaneAverage.html#ae021681bed8e81747b36dd6bcbd1a257',1,'PlaneAverage::PlaneAverage()=delete']]], + ['plot_5flsm_5fdata_3273',['Plot_Lsm_Data',['../classLandSurface.html#a61290767bd3f0bc65db7a0a344b10899',1,'LandSurface']]], + ['plotfilename_3274',['PlotFileName',['../classERF.html#a54f6c5d799e51521ad10bb57d29d0c44',1,'ERF']]], + ['plotfilevarnames_3275',['PlotFileVarNames',['../classERF.html#a2dcd22cb915d923c687f60267f44542b',1,'ERF']]], + ['pn_3276',['pn',['../Microphysics__Utils_8H.html#a50486020eb1ed680a1ea0b0e82b81f2d',1,'Microphysics_Utils.H']]], + ['post_5ftimestep_3277',['post_timestep',['../classERF.html#a58f6683aff0fbe6949bfe8b49275a8b3',1,'ERF']]], + ['post_5fupdate_3278',['post_update',['../classERF.html#adca0cddd75f33ecb5fb8e0ef9601dae4',1,'ERF']]], + ['pp_3279',['pp',['../Microphysics__Utils_8H.html#ac54f1d17d8842acb42b2312cd353e469',1,'Microphysics_Utils.H']]], + ['precip_3280',['Precip',['../classSAM.html#a05218bdc2187b79e456ade5b6f5bdb3c',1,'SAM']]], + ['precipfall_3281',['PrecipFall',['../classSAM.html#ae870dc821f7cd01ffc3bfd7925b1d18b',1,'SAM']]], + ['print_5fbanner_3282',['print_banner',['../classERF.html#a1a8eb6bc00080cdbd8df28f6a321ac72',1,'ERF']]], + ['print_5ferror_3283',['print_error',['../classERF.html#addc510dbf758a33cc095d64a9b17076c',1,'ERF']]], + ['print_5fsummary_3284',['print_summary',['../classERF.html#afa432756254529fb37b921088f0960d2',1,'ERF']]], + ['print_5ftpls_3285',['print_tpls',['../classERF.html#a15af18ae136cf3a11bb63fe0cf3924c8',1,'ERF']]], + ['print_5fusage_3286',['print_usage',['../classERF.html#aeaeb11001478b0635ef0fe3baa396df1',1,'ERF']]], + ['pseudorandompert_3287',['pseudoRandomPert',['../structTurbulentPerturbation.html#a1dfc591297a8af23c941b06ed5fabba1',1,'TurbulentPerturbation']]], + ['put_3288',['put',['../structncutils_1_1NCVar.html#a2d41b9484dd6453e36be2d54fe824962',1,'ncutils::NCVar::put(const double *, const std::vector< size_t > &, const std::vector< size_t > &) const'],['../structncutils_1_1NCVar.html#a7e026621e99a5df32de407384d929791',1,'ncutils::NCVar::put(const double *) const'],['../structncutils_1_1NCVar.html#aa61e7a28b6bff1df2ef10b4856c34af7',1,'ncutils::NCVar::put(const float *) const'],['../structncutils_1_1NCVar.html#a1cdbbfc072d285144de7f9b6e0fbac42',1,'ncutils::NCVar::put(const char **dptr, const std::vector< size_t > &start, const std::vector< size_t > &count, const std::vector< ptrdiff_t > &stride) const'],['../structncutils_1_1NCVar.html#a7d575f25e77d2a5e2dbac86047ca318c',1,'ncutils::NCVar::put(const char **, const std::vector< size_t > &, const std::vector< size_t > &) const'],['../structncutils_1_1NCVar.html#a5f4dc3a5bf52f9574bffc89c29f4335c',1,'ncutils::NCVar::put(const int *, const std::vector< size_t > &, const std::vector< size_t > &, const std::vector< ptrdiff_t > &) const'],['../structncutils_1_1NCVar.html#ae4d3aaba3b410438132b65bb8ab47512',1,'ncutils::NCVar::put(const int *, const std::vector< size_t > &, const std::vector< size_t > &) const'],['../structncutils_1_1NCVar.html#ad8b9aedc67e38c49522bd98459a26290',1,'ncutils::NCVar::put(const float *, const std::vector< size_t > &, const std::vector< size_t > &, const std::vector< ptrdiff_t > &) const'],['../structncutils_1_1NCVar.html#a2520db8c1541561c274be5c372fa5597',1,'ncutils::NCVar::put(const float *, const std::vector< size_t > &, const std::vector< size_t > &) const'],['../structncutils_1_1NCVar.html#a8a96107d02633e5a53aef296052716d1',1,'ncutils::NCVar::put(const double *, const std::vector< size_t > &, const std::vector< size_t > &, const std::vector< ptrdiff_t > &) const'],['../structncutils_1_1NCVar.html#a16984e6a3ad571e12401321b749f44ea',1,'ncutils::NCVar::put(const int *) const']]], + ['put_5fattr_3289',['put_attr',['../structncutils_1_1NCVar.html#a9f60ebf70762d1d8e0962afb01118a31',1,'ncutils::NCVar::put_attr(const std::string &name, const std::string &value) const'],['../structncutils_1_1NCVar.html#ac1572a791861a2d297f8f29ba0df8d55',1,'ncutils::NCVar::put_attr(const std::string &name, const std::vector< double > &value) const'],['../structncutils_1_1NCVar.html#a69c358988ebdd589d7e465ca6a5f07e9',1,'ncutils::NCVar::put_attr(const std::string &name, const std::vector< float > &value) const'],['../structncutils_1_1NCVar.html#a72558ae45f30bed210d68c26ec57cb13',1,'ncutils::NCVar::put_attr(const std::string &name, const std::vector< int > &value) const'],['../classncutils_1_1NCGroup.html#acf73ea254afaf7d74596fa07523b322f',1,'ncutils::NCGroup::put_attr(const std::string &name, const std::string &value) const'],['../classncutils_1_1NCGroup.html#a91efbd2b8ef280b7eb3b426bbbf16cca',1,'ncutils::NCGroup::put_attr(const std::string &name, const std::vector< double > &value) const'],['../classncutils_1_1NCGroup.html#a39472c18d4e16cf47ba54bd1246220b6',1,'ncutils::NCGroup::put_attr(const std::string &name, const std::vector< float > &value) const'],['../classncutils_1_1NCGroup.html#acf2801c26458fb99bd82733b1302285a',1,'ncutils::NCGroup::put_attr(const std::string &name, const std::vector< int > &value) const']]] ]; diff --git a/search/functions_f.js b/search/functions_f.js index c24b618290..eb45ddcb22 100644 --- a/search/functions_f.js +++ b/search/functions_f.js @@ -1,9 +1,9 @@ var searchData= [ - ['qmoist_5fptr_3285',['Qmoist_Ptr',['../classKessler.html#a0a84c629a080e71ed93a5f349ad7724a',1,'Kessler::Qmoist_Ptr()'],['../classNullMoist.html#a1b6a72d67d9b2642e99a5b768315476c',1,'NullMoist::Qmoist_Ptr()'],['../classSAM.html#af6652cb6f7b93a1e418da98b5a8b57b7',1,'SAM::Qmoist_Ptr()']]], - ['qmoist_5fsize_3286',['Qmoist_Size',['../classKessler.html#a3925ff722ac968e306dbcc233718030a',1,'Kessler::Qmoist_Size()'],['../classNullMoist.html#abdf706f193bbb09c62e41734570f3cd1',1,'NullMoist::Qmoist_Size()'],['../classSAM.html#ae27c1d50525a70f838fa9ba73e61ef46',1,'SAM::Qmoist_Size()']]], - ['qsat_3287',['qsat',['../classWaterVaporSat.html#a4dac5d0ff52b333add64a13539fca1c8',1,'WaterVaporSat']]], - ['qsat_5fice_3288',['qsat_ice',['../classWaterVaporSat.html#a55f00a8a0a629c85e6a477d11a4f14e5',1,'WaterVaporSat']]], - ['qsat_5fwater_3289',['qsat_water',['../classWaterVaporSat.html#a96e18136b9a523d912f9d86829de8b38',1,'WaterVaporSat']]], - ['qstate_5fsize_3290',['Qstate_Size',['../classKessler.html#a25a6c3f8cda023e5ea70f1ddd983626c',1,'Kessler::Qstate_Size()'],['../classNullMoist.html#afaa201a3a1dc21c18888d9c6a068f956',1,'NullMoist::Qstate_Size()'],['../classSAM.html#aba750ad815594f21255d26d24810d3fe',1,'SAM::Qstate_Size()']]] + ['qmoist_5fptr_3290',['Qmoist_Ptr',['../classKessler.html#a0a84c629a080e71ed93a5f349ad7724a',1,'Kessler::Qmoist_Ptr()'],['../classNullMoist.html#a1b6a72d67d9b2642e99a5b768315476c',1,'NullMoist::Qmoist_Ptr()'],['../classSAM.html#af6652cb6f7b93a1e418da98b5a8b57b7',1,'SAM::Qmoist_Ptr()']]], + ['qmoist_5fsize_3291',['Qmoist_Size',['../classKessler.html#a3925ff722ac968e306dbcc233718030a',1,'Kessler::Qmoist_Size()'],['../classNullMoist.html#abdf706f193bbb09c62e41734570f3cd1',1,'NullMoist::Qmoist_Size()'],['../classSAM.html#ae27c1d50525a70f838fa9ba73e61ef46',1,'SAM::Qmoist_Size()']]], + ['qsat_3292',['qsat',['../classWaterVaporSat.html#a4dac5d0ff52b333add64a13539fca1c8',1,'WaterVaporSat']]], + ['qsat_5fice_3293',['qsat_ice',['../classWaterVaporSat.html#a55f00a8a0a629c85e6a477d11a4f14e5',1,'WaterVaporSat']]], + ['qsat_5fwater_3294',['qsat_water',['../classWaterVaporSat.html#a96e18136b9a523d912f9d86829de8b38',1,'WaterVaporSat']]], + ['qstate_5fsize_3295',['Qstate_Size',['../classKessler.html#a25a6c3f8cda023e5ea70f1ddd983626c',1,'Kessler::Qstate_Size()'],['../classNullMoist.html#afaa201a3a1dc21c18888d9c6a068f956',1,'NullMoist::Qstate_Size()'],['../classSAM.html#aba750ad815594f21255d26d24810d3fe',1,'SAM::Qstate_Size()']]] ]; diff --git a/search/namespaces_0.js b/search/namespaces_0.js index 502268bb29..f797c2e7c2 100644 --- a/search/namespaces_0.js +++ b/search/namespaces_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['amrex_2434',['amrex',['../namespaceamrex.html',1,'']]] + ['amrex_2438',['amrex',['../namespaceamrex.html',1,'']]] ]; diff --git a/search/namespaces_1.js b/search/namespaces_1.js index ed259270fa..5b8b147acb 100644 --- a/search/namespaces_1.js +++ b/search/namespaces_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['bcvars_2435',['BCVars',['../namespaceBCVars.html',1,'']]] + ['bcvars_2439',['BCVars',['../namespaceBCVars.html',1,'']]] ]; diff --git a/search/namespaces_2.js b/search/namespaces_2.js index 3d83ade54c..4fb9a457cd 100644 --- a/search/namespaces_2.js +++ b/search/namespaces_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['derived_2436',['derived',['../namespacederived.html',1,'']]] + ['derived_2440',['derived',['../namespacederived.html',1,'']]] ]; diff --git a/search/namespaces_3.js b/search/namespaces_3.js index f1e64bfef7..b1f06689cf 100644 --- a/search/namespaces_3.js +++ b/search/namespaces_3.js @@ -1,5 +1,5 @@ var searchData= [ - ['eddydiff_2437',['EddyDiff',['../namespaceEddyDiff.html',1,'']]], - ['erfbctype_2438',['ERFBCType',['../namespaceERFBCType.html',1,'']]] + ['eddydiff_2441',['EddyDiff',['../namespaceEddyDiff.html',1,'']]], + ['erfbctype_2442',['ERFBCType',['../namespaceERFBCType.html',1,'']]] ]; diff --git a/search/namespaces_4.js b/search/namespaces_4.js index 85cf476bca..07c574d96b 100644 --- a/search/namespaces_4.js +++ b/search/namespaces_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['hseutils_2439',['HSEutils',['../namespaceHSEutils.html',1,'']]] + ['hseutils_2443',['HSEutils',['../namespaceHSEutils.html',1,'']]] ]; diff --git a/search/namespaces_5.js b/search/namespaces_5.js index 84fa96d4d0..9cac50430d 100644 --- a/search/namespaces_5.js +++ b/search/namespaces_5.js @@ -1,6 +1,6 @@ var searchData= [ - ['internal_2440',['internal',['../namespaceinternal.html',1,'']]], - ['interptype_2441',['InterpType',['../namespaceInterpType.html',1,'']]], - ['intvars_2442',['IntVars',['../namespaceIntVars.html',1,'']]] + ['internal_2444',['internal',['../namespaceinternal.html',1,'']]], + ['interptype_2445',['InterpType',['../namespaceInterpType.html',1,'']]], + ['intvars_2446',['IntVars',['../namespaceIntVars.html',1,'']]] ]; diff --git a/search/namespaces_6.js b/search/namespaces_6.js index ae77ef5e7e..5338ffcde3 100644 --- a/search/namespaces_6.js +++ b/search/namespaces_6.js @@ -1,5 +1,5 @@ var searchData= [ - ['lsmvar_5fmm5_2443',['LsmVar_MM5',['../namespaceLsmVar__MM5.html',1,'']]], - ['lsmvar_5fslm_2444',['LsmVar_SLM',['../namespaceLsmVar__SLM.html',1,'']]] + ['lsmvar_5fmm5_2447',['LsmVar_MM5',['../namespaceLsmVar__MM5.html',1,'']]], + ['lsmvar_5fslm_2448',['LsmVar_SLM',['../namespaceLsmVar__SLM.html',1,'']]] ]; diff --git a/search/namespaces_7.js b/search/namespaces_7.js index 27c8ee907e..9cd6b6326b 100644 --- a/search/namespaces_7.js +++ b/search/namespaces_7.js @@ -1,6 +1,6 @@ var searchData= [ - ['metgridbdyvars_2445',['MetGridBdyVars',['../namespaceMetGridBdyVars.html',1,'']]], - ['micvar_2446',['MicVar',['../namespaceMicVar.html',1,'']]], - ['micvar_5fkess_2447',['MicVar_Kess',['../namespaceMicVar__Kess.html',1,'']]] + ['metgridbdyvars_2449',['MetGridBdyVars',['../namespaceMetGridBdyVars.html',1,'']]], + ['micvar_2450',['MicVar',['../namespaceMicVar.html',1,'']]], + ['micvar_5fkess_2451',['MicVar_Kess',['../namespaceMicVar__Kess.html',1,'']]] ]; diff --git a/search/namespaces_8.js b/search/namespaces_8.js index 2f24ffc9ef..265ba04c8d 100644 --- a/search/namespaces_8.js +++ b/search/namespaces_8.js @@ -1,4 +1,4 @@ var searchData= [ - ['ncutils_2448',['ncutils',['../namespacencutils.html',1,'']]] + ['ncutils_2452',['ncutils',['../namespacencutils.html',1,'']]] ]; diff --git a/search/namespaces_9.js b/search/namespaces_9.js index 5b6be001ff..06f6371b25 100644 --- a/search/namespaces_9.js +++ b/search/namespaces_9.js @@ -1,4 +1,4 @@ var searchData= [ - ['realbdyvars_2449',['RealBdyVars',['../namespaceRealBdyVars.html',1,'']]] + ['realbdyvars_2453',['RealBdyVars',['../namespaceRealBdyVars.html',1,'']]] ]; diff --git a/search/namespaces_a.js b/search/namespaces_a.js index 070247df18..85278391d2 100644 --- a/search/namespaces_a.js +++ b/search/namespaces_a.js @@ -1,4 +1,4 @@ var searchData= [ - ['vars_2450',['Vars',['../namespaceVars.html',1,'']]] + ['vars_2454',['Vars',['../namespaceVars.html',1,'']]] ]; diff --git a/search/namespaces_b.js b/search/namespaces_b.js index cb5898338b..955533e7d1 100644 --- a/search/namespaces_b.js +++ b/search/namespaces_b.js @@ -1,4 +1,4 @@ var searchData= [ - ['wrfbdyvars_2451',['WRFBdyVars',['../namespaceWRFBdyVars.html',1,'']]] + ['wrfbdyvars_2455',['WRFBdyVars',['../namespaceWRFBdyVars.html',1,'']]] ]; diff --git a/search/pages_0.js b/search/pages_0.js index 1ac4249e64..48491dd5c6 100644 --- a/search/pages_0.js +++ b/search/pages_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['energy_20research_20and_20forecasting_3a_20an_20atmospheric_20modeling_20code_4737',['Energy Research and Forecasting: An Atmospheric Modeling Code',['../index.html',1,'']]] + ['energy_20research_20and_20forecasting_3a_20an_20atmospheric_20modeling_20code_4745',['Energy Research and Forecasting: An Atmospheric Modeling Code',['../index.html',1,'']]] ]; diff --git a/search/typedefs_0.js b/search/typedefs_0.js index 2ee2fe44c2..d7ecde7720 100644 --- a/search/typedefs_0.js +++ b/search/typedefs_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['dtype_4507',['DType',['../structNDArray.html#a96033b69f69ea0ae537a24288715752d',1,'NDArray']]] + ['dtype_4515',['DType',['../structNDArray.html#a96033b69f69ea0ae537a24288715752d',1,'NDArray']]] ]; diff --git a/search/typedefs_1.js b/search/typedefs_1.js index f6acfd0361..f671a53230 100644 --- a/search/typedefs_1.js +++ b/search/typedefs_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['fabptr_4508',['FabPtr',['../classMM5.html#a1c62f3c8eb0010c903b517e6ba49973d',1,'MM5::FabPtr()'],['../classSLM.html#abb12aea2d3e7bcc1e47b81581a9892ba',1,'SLM::FabPtr()'],['../classKessler.html#ad9b9b2f6662807890f9f2b016d6d0d1c',1,'Kessler::FabPtr()'],['../classSAM.html#a2ffb00984d39bfc39057c68f708774a9',1,'SAM::FabPtr()']]] + ['fabptr_4516',['FabPtr',['../classMM5.html#a1c62f3c8eb0010c903b517e6ba49973d',1,'MM5::FabPtr()'],['../classSLM.html#abb12aea2d3e7bcc1e47b81581a9892ba',1,'SLM::FabPtr()'],['../classKessler.html#ad9b9b2f6662807890f9f2b016d6d0d1c',1,'Kessler::FabPtr()'],['../classSAM.html#a2ffb00984d39bfc39057c68f708774a9',1,'SAM::FabPtr()']]] ]; diff --git a/search/typedefs_2.js b/search/typedefs_2.js index c4f23b7c17..c9a3b5a593 100644 --- a/search/typedefs_2.js +++ b/search/typedefs_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['planevector_4509',['PlaneVector',['../ERF__ReadBndryPlanes_8H.html#a60014a8d74bed0d5ae984e600c68dc85',1,'PlaneVector(): ERF_ReadBndryPlanes.H'],['../NCWpsFile_8H.html#a60014a8d74bed0d5ae984e600c68dc85',1,'PlaneVector(): NCWpsFile.H']]] + ['planevector_4517',['PlaneVector',['../ERF__ReadBndryPlanes_8H.html#a60014a8d74bed0d5ae984e600c68dc85',1,'PlaneVector(): ERF_ReadBndryPlanes.H'],['../NCWpsFile_8H.html#a60014a8d74bed0d5ae984e600c68dc85',1,'PlaneVector(): NCWpsFile.H']]] ]; diff --git a/search/typedefs_3.js b/search/typedefs_3.js index b30e201b68..3b69954270 100644 --- a/search/typedefs_3.js +++ b/search/typedefs_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['rtype_4510',['RType',['../structncutils_1_1NCDType.html#a079bbf4314ad09362b5c8124670c821f',1,'ncutils::NCDType']]] + ['rtype_4518',['RType',['../structncutils_1_1NCDType.html#a079bbf4314ad09362b5c8124670c821f',1,'ncutils::NCDType']]] ]; diff --git a/search/typedefs_4.js b/search/typedefs_4.js index 5b45bafd42..55cb1ed11a 100644 --- a/search/typedefs_4.js +++ b/search/typedefs_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['xdir_4511',['XDir',['../DirectionSelector_8H.html#a68edfbe7326d0d1476e796beb668072f',1,'DirectionSelector.H']]] + ['xdir_4519',['XDir',['../DirectionSelector_8H.html#a68edfbe7326d0d1476e796beb668072f',1,'DirectionSelector.H']]] ]; diff --git a/search/typedefs_5.js b/search/typedefs_5.js index 5facbdebed..c0e2ebb964 100644 --- a/search/typedefs_5.js +++ b/search/typedefs_5.js @@ -1,4 +1,4 @@ var searchData= [ - ['ydir_4512',['YDir',['../DirectionSelector_8H.html#a92990a19f43dc3cbbbd630362d1ece71',1,'DirectionSelector.H']]] + ['ydir_4520',['YDir',['../DirectionSelector_8H.html#a92990a19f43dc3cbbbd630362d1ece71',1,'DirectionSelector.H']]] ]; diff --git a/search/typedefs_6.js b/search/typedefs_6.js index b5dbf7a508..aa98bef369 100644 --- a/search/typedefs_6.js +++ b/search/typedefs_6.js @@ -1,4 +1,4 @@ var searchData= [ - ['zdir_4513',['ZDir',['../DirectionSelector_8H.html#aca321ed7fddfe43ff7549b4632a3c0d1',1,'DirectionSelector.H']]] + ['zdir_4521',['ZDir',['../DirectionSelector_8H.html#aca321ed7fddfe43ff7549b4632a3c0d1',1,'DirectionSelector.H']]] ]; diff --git a/search/variables_0.js b/search/variables_0.js index 27cfc5eb6b..3e5b36f246 100644 --- a/search/variables_0.js +++ b/search/variables_0.js @@ -1,54 +1,54 @@ var searchData= [ - ['a_5fbg_3520',['a_bg',['../ERF__Constants_8H.html#a0910a9292394778082e25954da60fe05',1,'ERF_Constants.H']]], - ['a_5fgr_3521',['a_gr',['../ERF__Constants_8H.html#a16f25ab24f4aca4bb0ff8f3203b0b924',1,'ERF_Constants.H']]], - ['a_5fgrau_3522',['a_grau',['../ERF__Constants_8H.html#a2fe4f2c6313692ac5073cb9ca72552e2',1,'ERF_Constants.H']]], - ['a_5fpr_3523',['a_pr',['../ERF__Constants_8H.html#afddfdf9f48fef3929914f786ce79022a',1,'ERF_Constants.H']]], - ['a_5frain_3524',['a_rain',['../ERF__Constants_8H.html#adf319f31edb7d4f2b4b712096189734b',1,'ERF_Constants.H']]], - ['a_5fsnow_3525',['a_snow',['../ERF__Constants_8H.html#aeb6d6f09d27c3f646bc4d91b7b88e570',1,'ERF_Constants.H']]], - ['abl_5fdriver_5ftype_3526',['abl_driver_type',['../structSolverChoice.html#abe7f2d933204e7a6127469a006240f8f',1,'SolverChoice']]], - ['abl_5fgeo_5fforcing_3527',['abl_geo_forcing',['../structSolverChoice.html#a5147634b7c1414a7694c59c1b4a88d69',1,'SolverChoice']]], - ['abl_5fgeo_5fwind_5ftable_3528',['abl_geo_wind_table',['../structSolverChoice.html#aae719af83409639331018f92be62642b',1,'SolverChoice']]], - ['abl_5fpressure_5fgrad_3529',['abl_pressure_grad',['../structSolverChoice.html#a69e2f0b874cba8faae57987ead4e3ebb',1,'SolverChoice']]], - ['abs_5flw_5fice_3530',['abs_lw_ice',['../classCloudRadProps.html#a0e0fa4537c3e0c1dd695229f63ff42a0',1,'CloudRadProps']]], - ['abs_5flw_5fliq_3531',['abs_lw_liq',['../classCloudRadProps.html#a3aaf016afa4dfea8f3dd0ed574ec3570',1,'CloudRadProps']]], - ['absplw_3532',['absplw',['../structPhysProp_1_1physprop__t.html#a1b15e2d7f7b059cecb30c630a339b020',1,'PhysProp::physprop_t']]], - ['abspsw_3533',['abspsw',['../structPhysProp_1_1physprop__t.html#ae6dcba887753559af9ba4942d3d89bb5',1,'PhysProp::physprop_t']]], - ['accrgc_3534',['accrgc',['../classSAM.html#aa2de795ae7721e5070a8f4844e3897f6',1,'SAM']]], - ['accrgi_3535',['accrgi',['../classSAM.html#a2ec33470030fdfd34b9b9436f0b56cfd',1,'SAM']]], - ['accrrc_3536',['accrrc',['../classSAM.html#a74856cc0ee48b638ee5263cd51fd1090',1,'SAM']]], - ['accrsc_3537',['accrsc',['../classSAM.html#aa32720be8b27907466650050dc73e110',1,'SAM']]], - ['accrsi_3538',['accrsi',['../classSAM.html#a6b848cc96480f05c0c7b1e811cdb50d7',1,'SAM']]], - ['active_5fgases_3539',['active_gases',['../classRrtmgp.html#a083da6e26f2c0e2b52a4145f8d285a92',1,'Rrtmgp::active_gases()'],['../classRadiation.html#a830faa00a602447dd4ebeb868837f4ee',1,'Radiation::active_gases()']]], - ['advchoice_3540',['advChoice',['../structSolverChoice.html#aaadbd092e9e176b7f088c7992c866c6e',1,'SolverChoice']]], - ['advect_5fqke_3541',['advect_QKE',['../structTurbChoice.html#a0da945128af7536d9fd82586a853de70',1,'TurbChoice']]], - ['advflux_5freg_3542',['advflux_reg',['../classERF.html#a86a0bc8e41668411ee0ab5801d4688a7',1,'ERF']]], - ['aer_3543',['aer',['../structMamConstituents_1_1aerlist__t.html#a21f61436cc2e4a150e675d9d0163fcdf',1,'MamConstituents::aerlist_t']]], - ['aer_5frad_3544',['aer_rad',['../classRadiation.html#a753f36a08e04e4332b9f6851dbd34128',1,'Radiation']]], - ['aername_3545',['aername',['../structPhysProp_1_1physprop__t.html#a55a195e47028b0355c737bffb1f60fbd',1,'PhysProp::physprop_t']]], - ['aernames_3546',['aernames',['../classRadiation.html#aa593162cb83bd300584f65cc31480683',1,'Radiation']]], - ['aero_5fnames_3547',['aero_names',['../classAerRadProps.html#a6dcb735fda4651c893ce9d3c2860a0af',1,'AerRadProps']]], - ['aero_5foptics_3548',['aero_optics',['../classOptics.html#a2153b2cf09af64100464587e8afb6d8f',1,'Optics']]], - ['aerosollist_3549',['aerosollist',['../classMamConstituents.html#ace0a867813831b2170a67343ba032ffa',1,'MamConstituents']]], - ['af_5fcmip6_5fsw_3550',['af_cmip6_sw',['../classAerRadProps.html#afd083b451cf913a409380fb0b95de4c0',1,'AerRadProps']]], - ['albedo_5fdif_3551',['albedo_dif',['../classRadiation.html#ab11967968e25e70b72d975ceb99fe9a6',1,'Radiation']]], - ['albedo_5fdir_3552',['albedo_dir',['../classRadiation.html#ab0801286969e7a03277b4813611c691f',1,'Radiation']]], - ['alpha_5fc_3553',['alpha_C',['../structDiffChoice.html#a9a4435111bba7cde59e3187e4ea85d6d',1,'DiffChoice']]], - ['alpha_5ft_3554',['alpha_T',['../structDiffChoice.html#a7013ac6c12a0fab52b3c212457441517',1,'DiffChoice']]], - ['alphaelq_3555',['alphaelq',['../ERF__Constants_8H.html#a3c70f890015491421d536954a374324d',1,'ERF_Constants.H']]], - ['apply_5fbcs_3556',['apply_bcs',['../TI__utils_8H.html#a5e7934b18ef63bc8c4c16db42277c52f',1,'TI_utils.H']]], - ['asm_5fsw_5fice_3557',['asm_sw_ice',['../classCloudRadProps.html#ae5d0881c315505e02035349403ed4270',1,'CloudRadProps']]], - ['asm_5fsw_5fliq_3558',['asm_sw_liq',['../classCloudRadProps.html#aa32eef207df809527562060ba064baf4',1,'CloudRadProps']]], - ['asmpsw_3559',['asmpsw',['../structPhysProp_1_1physprop__t.html#a14ca153cc7e4dbcc7e097b4014385c8f',1,'PhysProp::physprop_t']]], - ['ave_5fplane_3560',['ave_plane',['../structSolverChoice.html#afdd906d035384fd962efab24e7a6da7c',1,'SolverChoice']]], - ['avogadro_3561',['avogadro',['../ERF__Constants_8H.html#a3b2a75494e18c62ae8e6f6ebb231c3fa',1,'ERF_Constants.H']]], - ['ax_3562',['ax',['../classERF.html#a93bc9185c89cbeaceffaf40b8cf4a75c',1,'ERF']]], - ['ax_5fnew_3563',['ax_new',['../classERF.html#adf9043b29880747cfe0cf12ab19bf4ae',1,'ERF']]], - ['ax_5fsrc_3564',['ax_src',['../classERF.html#abe77a4434d27561109ffc666546511dc',1,'ERF']]], - ['ay_3565',['ay',['../classERF.html#ade870f983d113c64406bdcb8a9194044',1,'ERF']]], - ['ay_5fnew_3566',['ay_new',['../classERF.html#a3004600e3ebdd453c9e1816ad96209e4',1,'ERF']]], - ['ay_5fsrc_3567',['ay_src',['../classERF.html#aa20bd15dbe2c801bda2d3bfdb5b81eab',1,'ERF']]], - ['az_3568',['az',['../classERF.html#a391914523e66645f7e947cefcd19c011',1,'ERF']]], - ['az_5fnew_3569',['az_new',['../classERF.html#aa47ddd3bee550c3c1b5a93a788252d8c',1,'ERF']]], - ['az_5fsrc_3570',['az_src',['../classERF.html#ad2d8e37fbdac323eda857e0b8c151852',1,'ERF']]] + ['a_5fbg_3526',['a_bg',['../ERF__Constants_8H.html#a0910a9292394778082e25954da60fe05',1,'ERF_Constants.H']]], + ['a_5fgr_3527',['a_gr',['../ERF__Constants_8H.html#a16f25ab24f4aca4bb0ff8f3203b0b924',1,'ERF_Constants.H']]], + ['a_5fgrau_3528',['a_grau',['../ERF__Constants_8H.html#a2fe4f2c6313692ac5073cb9ca72552e2',1,'ERF_Constants.H']]], + ['a_5fpr_3529',['a_pr',['../ERF__Constants_8H.html#afddfdf9f48fef3929914f786ce79022a',1,'ERF_Constants.H']]], + ['a_5frain_3530',['a_rain',['../ERF__Constants_8H.html#adf319f31edb7d4f2b4b712096189734b',1,'ERF_Constants.H']]], + ['a_5fsnow_3531',['a_snow',['../ERF__Constants_8H.html#aeb6d6f09d27c3f646bc4d91b7b88e570',1,'ERF_Constants.H']]], + ['abl_5fdriver_5ftype_3532',['abl_driver_type',['../structSolverChoice.html#abe7f2d933204e7a6127469a006240f8f',1,'SolverChoice']]], + ['abl_5fgeo_5fforcing_3533',['abl_geo_forcing',['../structSolverChoice.html#a5147634b7c1414a7694c59c1b4a88d69',1,'SolverChoice']]], + ['abl_5fgeo_5fwind_5ftable_3534',['abl_geo_wind_table',['../structSolverChoice.html#aae719af83409639331018f92be62642b',1,'SolverChoice']]], + ['abl_5fpressure_5fgrad_3535',['abl_pressure_grad',['../structSolverChoice.html#a69e2f0b874cba8faae57987ead4e3ebb',1,'SolverChoice']]], + ['abs_5flw_5fice_3536',['abs_lw_ice',['../classCloudRadProps.html#a0e0fa4537c3e0c1dd695229f63ff42a0',1,'CloudRadProps']]], + ['abs_5flw_5fliq_3537',['abs_lw_liq',['../classCloudRadProps.html#a3aaf016afa4dfea8f3dd0ed574ec3570',1,'CloudRadProps']]], + ['absplw_3538',['absplw',['../structPhysProp_1_1physprop__t.html#a1b15e2d7f7b059cecb30c630a339b020',1,'PhysProp::physprop_t']]], + ['abspsw_3539',['abspsw',['../structPhysProp_1_1physprop__t.html#ae6dcba887753559af9ba4942d3d89bb5',1,'PhysProp::physprop_t']]], + ['accrgc_3540',['accrgc',['../classSAM.html#aa2de795ae7721e5070a8f4844e3897f6',1,'SAM']]], + ['accrgi_3541',['accrgi',['../classSAM.html#a2ec33470030fdfd34b9b9436f0b56cfd',1,'SAM']]], + ['accrrc_3542',['accrrc',['../classSAM.html#a74856cc0ee48b638ee5263cd51fd1090',1,'SAM']]], + ['accrsc_3543',['accrsc',['../classSAM.html#aa32720be8b27907466650050dc73e110',1,'SAM']]], + ['accrsi_3544',['accrsi',['../classSAM.html#a6b848cc96480f05c0c7b1e811cdb50d7',1,'SAM']]], + ['active_5fgases_3545',['active_gases',['../classRrtmgp.html#a083da6e26f2c0e2b52a4145f8d285a92',1,'Rrtmgp::active_gases()'],['../classRadiation.html#a830faa00a602447dd4ebeb868837f4ee',1,'Radiation::active_gases()']]], + ['advchoice_3546',['advChoice',['../structSolverChoice.html#aaadbd092e9e176b7f088c7992c866c6e',1,'SolverChoice']]], + ['advect_5fqke_3547',['advect_QKE',['../structTurbChoice.html#a0da945128af7536d9fd82586a853de70',1,'TurbChoice']]], + ['advflux_5freg_3548',['advflux_reg',['../classERF.html#a86a0bc8e41668411ee0ab5801d4688a7',1,'ERF']]], + ['aer_3549',['aer',['../structMamConstituents_1_1aerlist__t.html#a21f61436cc2e4a150e675d9d0163fcdf',1,'MamConstituents::aerlist_t']]], + ['aer_5frad_3550',['aer_rad',['../classRadiation.html#a753f36a08e04e4332b9f6851dbd34128',1,'Radiation']]], + ['aername_3551',['aername',['../structPhysProp_1_1physprop__t.html#a55a195e47028b0355c737bffb1f60fbd',1,'PhysProp::physprop_t']]], + ['aernames_3552',['aernames',['../classRadiation.html#aa593162cb83bd300584f65cc31480683',1,'Radiation']]], + ['aero_5fnames_3553',['aero_names',['../classAerRadProps.html#a6dcb735fda4651c893ce9d3c2860a0af',1,'AerRadProps']]], + ['aero_5foptics_3554',['aero_optics',['../classOptics.html#a2153b2cf09af64100464587e8afb6d8f',1,'Optics']]], + ['aerosollist_3555',['aerosollist',['../classMamConstituents.html#ace0a867813831b2170a67343ba032ffa',1,'MamConstituents']]], + ['af_5fcmip6_5fsw_3556',['af_cmip6_sw',['../classAerRadProps.html#afd083b451cf913a409380fb0b95de4c0',1,'AerRadProps']]], + ['albedo_5fdif_3557',['albedo_dif',['../classRadiation.html#ab11967968e25e70b72d975ceb99fe9a6',1,'Radiation']]], + ['albedo_5fdir_3558',['albedo_dir',['../classRadiation.html#ab0801286969e7a03277b4813611c691f',1,'Radiation']]], + ['alpha_5fc_3559',['alpha_C',['../structDiffChoice.html#a9a4435111bba7cde59e3187e4ea85d6d',1,'DiffChoice']]], + ['alpha_5ft_3560',['alpha_T',['../structDiffChoice.html#a7013ac6c12a0fab52b3c212457441517',1,'DiffChoice']]], + ['alphaelq_3561',['alphaelq',['../ERF__Constants_8H.html#a3c70f890015491421d536954a374324d',1,'ERF_Constants.H']]], + ['apply_5fbcs_3562',['apply_bcs',['../TI__utils_8H.html#a5e7934b18ef63bc8c4c16db42277c52f',1,'TI_utils.H']]], + ['asm_5fsw_5fice_3563',['asm_sw_ice',['../classCloudRadProps.html#ae5d0881c315505e02035349403ed4270',1,'CloudRadProps']]], + ['asm_5fsw_5fliq_3564',['asm_sw_liq',['../classCloudRadProps.html#aa32eef207df809527562060ba064baf4',1,'CloudRadProps']]], + ['asmpsw_3565',['asmpsw',['../structPhysProp_1_1physprop__t.html#a14ca153cc7e4dbcc7e097b4014385c8f',1,'PhysProp::physprop_t']]], + ['ave_5fplane_3566',['ave_plane',['../structSolverChoice.html#afdd906d035384fd962efab24e7a6da7c',1,'SolverChoice']]], + ['avogadro_3567',['avogadro',['../ERF__Constants_8H.html#a3b2a75494e18c62ae8e6f6ebb231c3fa',1,'ERF_Constants.H']]], + ['ax_3568',['ax',['../classERF.html#a93bc9185c89cbeaceffaf40b8cf4a75c',1,'ERF']]], + ['ax_5fnew_3569',['ax_new',['../classERF.html#adf9043b29880747cfe0cf12ab19bf4ae',1,'ERF']]], + ['ax_5fsrc_3570',['ax_src',['../classERF.html#abe77a4434d27561109ffc666546511dc',1,'ERF']]], + ['ay_3571',['ay',['../classERF.html#ade870f983d113c64406bdcb8a9194044',1,'ERF']]], + ['ay_5fnew_3572',['ay_new',['../classERF.html#a3004600e3ebdd453c9e1816ad96209e4',1,'ERF']]], + ['ay_5fsrc_3573',['ay_src',['../classERF.html#aa20bd15dbe2c801bda2d3bfdb5b81eab',1,'ERF']]], + ['az_3574',['az',['../classERF.html#a391914523e66645f7e947cefcd19c011',1,'ERF']]], + ['az_5fnew_3575',['az_new',['../classERF.html#aa47ddd3bee550c3c1b5a93a788252d8c',1,'ERF']]], + ['az_5fsrc_3576',['az_src',['../classERF.html#ad2d8e37fbdac323eda857e0b8c151852',1,'ERF']]] ]; diff --git a/search/variables_1.js b/search/variables_1.js index 4f1a2db9c8..b34d6c9a85 100644 --- a/search/variables_1.js +++ b/search/variables_1.js @@ -1,21 +1,21 @@ var searchData= [ - ['b_5fgrau_3571',['b_grau',['../ERF__Constants_8H.html#a5b9ceb4b022305781565b213273b24df',1,'ERF_Constants.H']]], - ['b_5frain_3572',['b_rain',['../ERF__Constants_8H.html#a73a3e2e084667177abe0e4d2cd3da51c',1,'ERF_Constants.H']]], - ['b_5fsnow_3573',['b_snow',['../ERF__Constants_8H.html#aee22c64edc9a6e972b3866ee44c575fc',1,'ERF_Constants.H']]], - ['base_5fparms_3574',['base_parms',['../classProblemBase.html#ae21bdcbfbf32d1ec423b6a0edd92dbda',1,'ProblemBase']]], - ['base_5fstate_3575',['base_state',['../classERF.html#a4c1fae5e620fcd64cc9ede73715e3b7c',1,'ERF']]], - ['base_5fstate_5fnew_3576',['base_state_new',['../classERF.html#a37b2a4257df8ff53d4450de47f16ace1',1,'ERF']]], - ['bcnames_3577',['BCNames',['../ERF_8cpp.html#a6f88b0d6d3b295286a69983d08d9985f',1,'ERF.cpp']]], - ['beta_5fh_3578',['beta_h',['../structsimilarity__funs.html#a5254469dd7ec9856ed6d1e0034306cc4',1,'similarity_funs']]], - ['beta_5fm_3579',['beta_m',['../structsimilarity__funs.html#a3658f855e05c54c9cbc27c8dfb3b0355',1,'similarity_funs']]], - ['betaelq_3580',['betaelq',['../ERF__Constants_8H.html#a2bf4e906e54dd5044116807d54709e48',1,'ERF_Constants.H']]], - ['blv_3581',['blv',['../classMultiBlockContainer.html#a1e364c34a67e56ae960b56b6fb835a7b',1,'MultiBlockContainer']]], - ['bndry_5flev_3582',['bndry_lev',['../classWriteBndryPlanes.html#a0f85ce22ec7a00d38091d2aa2b829fca',1,'WriteBndryPlanes']]], - ['bndry_5foutput_5fplanes_5finterval_3583',['bndry_output_planes_interval',['../classERF.html#aab4575d8fb57595a2f1aaf088c60447a',1,'ERF']]], - ['bndry_5foutput_5fplanes_5fper_3584',['bndry_output_planes_per',['../classERF.html#a5f99e949c83d86507e003ae556cf7c22',1,'ERF']]], - ['bndry_5foutput_5fplanes_5fstart_5ftime_3585',['bndry_output_planes_start_time',['../classERF.html#a87e58f16f44a6cb35d6983ed3fe7d3c1',1,'ERF']]], - ['boltz_3586',['boltz',['../ERF__Constants_8H.html#a6700ceab4c13f15657c8137f8dd8c039',1,'ERF_Constants.H']]], - ['boxes_5fat_5flevel_3587',['boxes_at_level',['../classERF.html#a050dbd236c9bf246554a53008e09f683',1,'ERF']]], - ['buoyancy_5ftype_3588',['buoyancy_type',['../structSolverChoice.html#ad6ee95a1f016f6f236f26144dbf234d0',1,'SolverChoice']]] + ['b_5fgrau_3577',['b_grau',['../ERF__Constants_8H.html#a5b9ceb4b022305781565b213273b24df',1,'ERF_Constants.H']]], + ['b_5frain_3578',['b_rain',['../ERF__Constants_8H.html#a73a3e2e084667177abe0e4d2cd3da51c',1,'ERF_Constants.H']]], + ['b_5fsnow_3579',['b_snow',['../ERF__Constants_8H.html#aee22c64edc9a6e972b3866ee44c575fc',1,'ERF_Constants.H']]], + ['base_5fparms_3580',['base_parms',['../classProblemBase.html#ae21bdcbfbf32d1ec423b6a0edd92dbda',1,'ProblemBase']]], + ['base_5fstate_3581',['base_state',['../classERF.html#a4c1fae5e620fcd64cc9ede73715e3b7c',1,'ERF']]], + ['base_5fstate_5fnew_3582',['base_state_new',['../classERF.html#a37b2a4257df8ff53d4450de47f16ace1',1,'ERF']]], + ['bcnames_3583',['BCNames',['../ERF_8cpp.html#a6f88b0d6d3b295286a69983d08d9985f',1,'ERF.cpp']]], + ['beta_5fh_3584',['beta_h',['../structsimilarity__funs.html#a5254469dd7ec9856ed6d1e0034306cc4',1,'similarity_funs']]], + ['beta_5fm_3585',['beta_m',['../structsimilarity__funs.html#a3658f855e05c54c9cbc27c8dfb3b0355',1,'similarity_funs']]], + ['betaelq_3586',['betaelq',['../ERF__Constants_8H.html#a2bf4e906e54dd5044116807d54709e48',1,'ERF_Constants.H']]], + ['blv_3587',['blv',['../classMultiBlockContainer.html#a1e364c34a67e56ae960b56b6fb835a7b',1,'MultiBlockContainer']]], + ['bndry_5flev_3588',['bndry_lev',['../classWriteBndryPlanes.html#a0f85ce22ec7a00d38091d2aa2b829fca',1,'WriteBndryPlanes']]], + ['bndry_5foutput_5fplanes_5finterval_3589',['bndry_output_planes_interval',['../classERF.html#aab4575d8fb57595a2f1aaf088c60447a',1,'ERF']]], + ['bndry_5foutput_5fplanes_5fper_3590',['bndry_output_planes_per',['../classERF.html#a5f99e949c83d86507e003ae556cf7c22',1,'ERF']]], + ['bndry_5foutput_5fplanes_5fstart_5ftime_3591',['bndry_output_planes_start_time',['../classERF.html#a87e58f16f44a6cb35d6983ed3fe7d3c1',1,'ERF']]], + ['boltz_3592',['boltz',['../ERF__Constants_8H.html#a6700ceab4c13f15657c8137f8dd8c039',1,'ERF_Constants.H']]], + ['boxes_5fat_5flevel_3593',['boxes_at_level',['../classERF.html#a050dbd236c9bf246554a53008e09f683',1,'ERF']]], + ['buoyancy_5ftype_3594',['buoyancy_type',['../structSolverChoice.html#ad6ee95a1f016f6f236f26144dbf234d0',1,'SolverChoice']]] ]; diff --git a/search/variables_10.js b/search/variables_10.js index 97951b0483..f96c3320f3 100644 --- a/search/variables_10.js +++ b/search/variables_10.js @@ -1,25 +1,25 @@ var searchData= [ - ['q_5fstar_4197',['q_star',['../classABLMost.html#a0630def935d5ca0d24160b9b9567f3e1',1,'ABLMost']]], - ['qaerwat_5fm_4198',['qaerwat_m',['../classMam4__aer.html#a0f94d150e77cc227c30e434a851f7d52',1,'Mam4_aer']]], - ['qc_4199',['qc',['../classRadiation.html#abc0bc2362396171354decd80be18dde1',1,'Radiation']]], - ['qci0_4200',['qci0',['../ERF__Constants_8H.html#a1aa289f72f87789e664357396befb8eb',1,'ERF_Constants.H']]], - ['qcw0_4201',['qcw0',['../ERF__Constants_8H.html#a86f34aeefa355fa0d6d0cca8f033a878',1,'ERF_Constants.H']]], - ['qi_4202',['qi',['../classRadiation.html#a86954a9c03e7c7eb9cd610b4e533b27e',1,'Radiation']]], - ['qmoist_4203',['qmoist',['../classERF.html#ae00126a9c2738bf6a6cbbe77321c9cfc',1,'ERF']]], - ['qn_4204',['qn',['../classRadiation.html#a913e1b4a5c5ddf093f81c6a6c7051035',1,'Radiation']]], - ['qn1d_4205',['qn1d',['../classSAM.html#a9fafcc2e5b063f7ccb94e2cc78324d35',1,'SAM']]], - ['qp_5fthreshold_4206',['qp_threshold',['../ERF__Constants_8H.html#a956656dbad95153bb8d3f0e42fa3d356',1,'ERF_Constants.H']]], - ['qrad_5fsrc_4207',['qrad_src',['../classRadiation.html#a687fe7137c6cb0b0040addeb90249a0c',1,'Radiation']]], - ['qrl_4208',['qrl',['../classRadiation.html#a20fc801b4852279dafb58e95bc728338',1,'Radiation']]], - ['qrlc_4209',['qrlc',['../classRadiation.html#a3308c21539f43b459729b9b02652dd01',1,'Radiation']]], - ['qrs_4210',['qrs',['../classRadiation.html#a9eaa967e3b5556ce43d07e48d3e0c66f',1,'Radiation']]], - ['qrsc_4211',['qrsc',['../classRadiation.html#abb3bb540832d451a76367e441df528a0',1,'Radiation']]], - ['qt_4212',['qt',['../classAerRadProps.html#a837035712a214f1b8daf7a4d30727e6d',1,'AerRadProps::qt()'],['../classRadiation.html#aa3961f0a2837a89f1d08dd5aba2ed056',1,'Radiation::qt()']]], - ['qt1d_4213',['qt1d',['../classSAM.html#aaa3dd79bbd6ac41ae1170d003b1a423d',1,'SAM']]], - ['qv1d_4214',['qv1d',['../classSAM.html#a65e2ba7cb72946a8af2e7541b072e3ba',1,'SAM']]], - ['qv_5finp_5fsound_4215',['qv_inp_sound',['../structInputSoundingData.html#a7710e6498adaf4b94a54e600ef6a0ca7',1,'InputSoundingData']]], - ['qv_5finp_5fsound_5fd_4216',['qv_inp_sound_d',['../structInputSoundingData.html#acc5ac869d8e7dda08bdcba3c663c9705',1,'InputSoundingData']]], - ['qv_5fprim_4217',['Qv_prim',['../classERF.html#a521d1faf157e3bccc86c0f26ee923576',1,'ERF']]], - ['qv_5fref_5finp_5fsound_4218',['qv_ref_inp_sound',['../structInputSoundingData.html#a9cb5ab7b69363eca08231b634e94e109',1,'InputSoundingData']]] + ['q_5fstar_4205',['q_star',['../classABLMost.html#a0630def935d5ca0d24160b9b9567f3e1',1,'ABLMost']]], + ['qaerwat_5fm_4206',['qaerwat_m',['../classMam4__aer.html#a0f94d150e77cc227c30e434a851f7d52',1,'Mam4_aer']]], + ['qc_4207',['qc',['../classRadiation.html#abc0bc2362396171354decd80be18dde1',1,'Radiation']]], + ['qci0_4208',['qci0',['../ERF__Constants_8H.html#a1aa289f72f87789e664357396befb8eb',1,'ERF_Constants.H']]], + ['qcw0_4209',['qcw0',['../ERF__Constants_8H.html#a86f34aeefa355fa0d6d0cca8f033a878',1,'ERF_Constants.H']]], + ['qi_4210',['qi',['../classRadiation.html#a86954a9c03e7c7eb9cd610b4e533b27e',1,'Radiation']]], + ['qmoist_4211',['qmoist',['../classERF.html#ae00126a9c2738bf6a6cbbe77321c9cfc',1,'ERF']]], + ['qn_4212',['qn',['../classRadiation.html#a913e1b4a5c5ddf093f81c6a6c7051035',1,'Radiation']]], + ['qn1d_4213',['qn1d',['../classSAM.html#a9fafcc2e5b063f7ccb94e2cc78324d35',1,'SAM']]], + ['qp_5fthreshold_4214',['qp_threshold',['../ERF__Constants_8H.html#a956656dbad95153bb8d3f0e42fa3d356',1,'ERF_Constants.H']]], + ['qrad_5fsrc_4215',['qrad_src',['../classRadiation.html#a687fe7137c6cb0b0040addeb90249a0c',1,'Radiation']]], + ['qrl_4216',['qrl',['../classRadiation.html#a20fc801b4852279dafb58e95bc728338',1,'Radiation']]], + ['qrlc_4217',['qrlc',['../classRadiation.html#a3308c21539f43b459729b9b02652dd01',1,'Radiation']]], + ['qrs_4218',['qrs',['../classRadiation.html#a9eaa967e3b5556ce43d07e48d3e0c66f',1,'Radiation']]], + ['qrsc_4219',['qrsc',['../classRadiation.html#abb3bb540832d451a76367e441df528a0',1,'Radiation']]], + ['qt_4220',['qt',['../classAerRadProps.html#a837035712a214f1b8daf7a4d30727e6d',1,'AerRadProps::qt()'],['../classRadiation.html#aa3961f0a2837a89f1d08dd5aba2ed056',1,'Radiation::qt()']]], + ['qt1d_4221',['qt1d',['../classSAM.html#aaa3dd79bbd6ac41ae1170d003b1a423d',1,'SAM']]], + ['qv1d_4222',['qv1d',['../classSAM.html#a65e2ba7cb72946a8af2e7541b072e3ba',1,'SAM']]], + ['qv_5finp_5fsound_4223',['qv_inp_sound',['../structInputSoundingData.html#a7710e6498adaf4b94a54e600ef6a0ca7',1,'InputSoundingData']]], + ['qv_5finp_5fsound_5fd_4224',['qv_inp_sound_d',['../structInputSoundingData.html#acc5ac869d8e7dda08bdcba3c663c9705',1,'InputSoundingData']]], + ['qv_5fprim_4225',['Qv_prim',['../classERF.html#a521d1faf157e3bccc86c0f26ee923576',1,'ERF']]], + ['qv_5fref_5finp_5fsound_4226',['qv_ref_inp_sound',['../structInputSoundingData.html#a9cb5ab7b69363eca08231b634e94e109',1,'InputSoundingData']]] ]; diff --git a/search/variables_11.js b/search/variables_11.js index 1cc2dc92d3..17c312457b 100644 --- a/search/variables_11.js +++ b/search/variables_11.js @@ -1,68 +1,68 @@ var searchData= [ - ['r_5fd_4219',['R_d',['../ERF__Constants_8H.html#aeb133d0ac46d639050313ce36187e870',1,'ERF_Constants.H']]], - ['r_5flw_5fabs_4220',['r_lw_abs',['../structPhysProp_1_1physprop__t.html#af41dfd624f5e565f0435e9bef6182ba5',1,'PhysProp::physprop_t']]], - ['r_5fsw_5fascat_4221',['r_sw_ascat',['../structPhysProp_1_1physprop__t.html#a8f237360219885a558fb5c5bfeb5c015',1,'PhysProp::physprop_t']]], - ['r_5fsw_5fext_4222',['r_sw_ext',['../structPhysProp_1_1physprop__t.html#a2c8b9cd5f27f8c039d9ec76d665f08bc',1,'PhysProp::physprop_t']]], - ['r_5fsw_5fscat_4223',['r_sw_scat',['../structPhysProp_1_1physprop__t.html#ad3d6e9851177a676ab13788002e83bc0',1,'PhysProp::physprop_t']]], - ['r_5fv_4224',['R_v',['../ERF__Constants_8H.html#a0ab59ff21ef0b178fde0843394f5674a',1,'ERF_Constants.H']]], - ['radiation_4225',['radiation',['../classRadiation.html#adbdd39584f1836cc21a816a7ee7098bb',1,'Radiation']]], - ['rair_4226',['rair',['../ERF__Constants_8H.html#a864e81eb46f4207f25cb52e5046c23b8',1,'ERF_Constants.H']]], - ['rayleigh_5fdamp_5ft_4227',['rayleigh_damp_T',['../structSolverChoice.html#a06a0dd1c8f7c1ed73a4f8d24b6b31cdf',1,'SolverChoice']]], - ['rayleigh_5fdamp_5fu_4228',['rayleigh_damp_U',['../structSolverChoice.html#a5aed4016dd7d17a2d2904c60af59ae9d',1,'SolverChoice']]], - ['rayleigh_5fdamp_5fv_4229',['rayleigh_damp_V',['../structSolverChoice.html#a1bae456f7b26e8ed50d78ce1af1b5ef0',1,'SolverChoice']]], - ['rayleigh_5fdamp_5fw_4230',['rayleigh_damp_W',['../structSolverChoice.html#abf35af2e52f5c1197264d895396ca59c',1,'SolverChoice']]], - ['rd_5fon_5frv_4231',['Rd_on_Rv',['../ERF__Constants_8H.html#a212cca9324fcc25708184de9d9c7a07e',1,'ERF_Constants.H']]], - ['rdocp_4232',['rdOcp',['../structSolverChoice.html#a2e1ef762ee1dc1bd3d4cbd08125c758a',1,'SolverChoice']]], - ['real_4233',['Real',['../structncutils_1_1NCDType.html#a7a5be35daa7dbb2cc72507cc4b5a422c',1,'ncutils::NCDType']]], - ['real_5fset_5fwidth_4234',['real_set_width',['../classERF.html#acab120bb9324e7298534d765c447d703',1,'ERF']]], - ['real_5fwidth_4235',['real_width',['../classERF.html#abb15119348ad5399947bc8883084b230',1,'ERF']]], - ['ref_5fcounted_4236',['ref_counted',['../structNDArray.html#a8a0bbff40020f6aea23346ac656bf972',1,'NDArray']]], - ['ref_5ftags_4237',['ref_tags',['../classERF.html#ac81b3dfd7c6f21ba8479834e2ff1e652',1,'ERF']]], - ['refindex_5fim_5faer_5flw_4238',['refindex_im_aer_lw',['../structPhysProp_1_1physprop__t.html#a2b3656af3ed847bc9e0c7a5bfc1d64e0',1,'PhysProp::physprop_t']]], - ['refindex_5fim_5faer_5fsw_4239',['refindex_im_aer_sw',['../structPhysProp_1_1physprop__t.html#a01444396cbb69da2b50af017fef7b8e3',1,'PhysProp::physprop_t']]], - ['refindex_5freal_5faer_5flw_4240',['refindex_real_aer_lw',['../structPhysProp_1_1physprop__t.html#aa6b86d69efca7951eac318ef0a407acf',1,'PhysProp::physprop_t']]], - ['refindex_5freal_5faer_5fsw_4241',['refindex_real_aer_sw',['../structPhysProp_1_1physprop__t.html#a39ec574c71085ec5a6aa268b3b752a23',1,'PhysProp::physprop_t']]], - ['refitablw_4242',['refitablw',['../structPhysProp_1_1physprop__t.html#a8c8ef5042c0b53fa05d1d97a49de3833',1,'PhysProp::physprop_t']]], - ['refitabsw_4243',['refitabsw',['../structPhysProp_1_1physprop__t.html#a7a536b72896ed7e80fe3b13d990bce61',1,'PhysProp::physprop_t']]], - ['refrtablw_4244',['refrtablw',['../structPhysProp_1_1physprop__t.html#accf672f5038e149841b092ffb9ee1ba1',1,'PhysProp::physprop_t']]], - ['refrtabsw_4245',['refrtabsw',['../structPhysProp_1_1physprop__t.html#a2cb505dd76f365687ee5e33a22a14e9b',1,'PhysProp::physprop_t']]], - ['regrid_5fint_4246',['regrid_int',['../classERF.html#a3937527f96c81674fa38dc34ed24f3f5',1,'ERF']]], - ['restart_5fchkfile_4247',['restart_chkfile',['../classERF.html#a8e758060d3dede9694fbfcabddc17169',1,'ERF']]], - ['restart_5ftype_4248',['restart_type',['../classERF.html#a30a0b9e3a037c71580d1feb3b30a8258',1,'ERF']]], - ['retab_4249',['retab',['../classRadConstants.html#af93f09fe2ad546b17aff927963cf90d1',1,'RadConstants']]], - ['rga_4250',['rga',['../ERF__Constants_8H.html#a379aa3c3394d67b78990663a36ed5285',1,'ERF_Constants.H']]], - ['rh20_4251',['rh20',['../ERF__Constants_8H.html#ade17c0f300126a2fd0829d0e1a553512',1,'ERF_Constants.H']]], - ['rhcrystal_4252',['rhcrystal',['../structPhysProp_1_1physprop__t.html#aedb70926e32d7aaa6655f0a417acb18d',1,'PhysProp::physprop_t']]], - ['rhdeliques_4253',['rhdeliques',['../structPhysProp_1_1physprop__t.html#a136a646945382e1e7808b61ec9c648fe',1,'PhysProp::physprop_t']]], - ['rho0_5ftrans_4254',['rho0_trans',['../structDiffChoice.html#a4df179b6e7d84efc89a22ac5900f98c8',1,'DiffChoice']]], - ['rho1d_4255',['rho1d',['../classSAM.html#a0853b1a3a4ec94178ca208ea594fc455',1,'SAM']]], - ['rho_5f0_4256',['rho_0',['../structProbParmDefaults.html#af75997d9e4a94ab3b221657799ef720f',1,'ProbParmDefaults']]], - ['rho_5finp_5fsound_5fd_4257',['rho_inp_sound_d',['../structInputSoundingData.html#a749f99cf96305b40d55beb3d5d98bb93',1,'InputSoundingData']]], - ['rhoalpha_5fc_4258',['rhoAlpha_C',['../structDiffChoice.html#a553bdd290d667cca9699ed37f86f7e22',1,'DiffChoice']]], - ['rhoalpha_5ft_4259',['rhoAlpha_T',['../structDiffChoice.html#a574cf6ad397fd50169cafe025c9da5f3',1,'DiffChoice']]], - ['rhod_5finteg_4260',['rhod_integ',['../structInputSoundingData.html#a401b589250214e7bb84555050c5b6657',1,'InputSoundingData']]], - ['rhog_4261',['rhog',['../ERF__Constants_8H.html#a00c6555efa1735f66b36929196ff6b98',1,'ERF_Constants.H']]], - ['rhoh2o_4262',['rhoh2o',['../ERF__Constants_8H.html#a404d50fe6660930b74e3b191e2088754',1,'ERF_Constants.H']]], - ['rhor_4263',['rhor',['../ERF__Constants_8H.html#ad6e28022b74cd595f282e2cc97c2c0d8',1,'ERF_Constants.H']]], - ['rhos_4264',['rhos',['../ERF__Constants_8H.html#ac0e05183a58d4400f06346d18371218f',1,'ERF_Constants.H']]], - ['rhs_4265',['rhs',['../classMRISplitIntegrator.html#ab0f2e5848bf5e8f4959b6f990cb73053',1,'MRISplitIntegrator']]], - ['rotor_5frad_4266',['rotor_rad',['../classEWP.html#ac89ee08eabbf2cc7a64a7908a449f016',1,'EWP::rotor_rad()'],['../classFitch.html#aadaedef0e6f0ac149483ee6b4d8b1a4e',1,'Fitch::rotor_rad()'],['../classSimpleAD.html#a04490ef9f591e86588c5bb7870c1b77f',1,'SimpleAD::rotor_rad()'],['../classWindFarm.html#ad0925f54be32d71ae431a2078afee91b',1,'WindFarm::rotor_rad()']]], - ['rough_5ftype_5fland_4267',['rough_type_land',['../classABLMost.html#ab052d62a07e8765a6de67264d05aff37',1,'ABLMost']]], - ['rough_5ftype_5fsea_4268',['rough_type_sea',['../classABLMost.html#ab5041b7c6a15b759a8f33dadd1a67e92',1,'ABLMost']]], - ['rrtmg_5flw_5fcloudsim_5fband_4269',['rrtmg_lw_cloudsim_band',['../classRadConstants.html#aef2395d6f1bbed699fd4033b9c3104b8',1,'RadConstants']]], - ['rrtmg_5fsw_5fcloudsim_5fband_4270',['rrtmg_sw_cloudsim_band',['../classRadConstants.html#acd093dbcb244a162598bc23658a3f5d0',1,'RadConstants']]], - ['rrtmg_5fto_5frrtmgp_4271',['rrtmg_to_rrtmgp',['../classRadiation.html#a343cbb13362229a43f02df3a95eaa0ea',1,'Radiation']]], - ['rrtmgp_5fcoefficients_5ffile_5flw_4272',['rrtmgp_coefficients_file_lw',['../classRadiation.html#a0f24e2a14bfa218815d6d602374b6f0b',1,'Radiation']]], - ['rrtmgp_5fcoefficients_5ffile_5fname_5flw_4273',['rrtmgp_coefficients_file_name_lw',['../classRadiation.html#a9adc323a74a713f43a9952b3601d7f85',1,'Radiation']]], - ['rrtmgp_5fcoefficients_5ffile_5fname_5fsw_4274',['rrtmgp_coefficients_file_name_sw',['../classRadiation.html#ae6df86058b5dda6cb7b32e48f08f92f9',1,'Radiation']]], - ['rrtmgp_5fcoefficients_5ffile_5fsw_4275',['rrtmgp_coefficients_file_sw',['../classRadiation.html#a8b27a952d1ceb83c174a5d30f6198230',1,'Radiation']]], - ['rrtmgp_5fdata_5fpath_4276',['rrtmgp_data_path',['../classRadiation.html#a054782cce0873bc799bf8a3fdda6a1fb',1,'Radiation']]], - ['rrtmgp_5fenable_5ftemperature_5fwarnings_4277',['rrtmgp_enable_temperature_warnings',['../classRadiation.html#a4959db25c75a67b8166635413aae4888',1,'Radiation']]], - ['ru_5fnew_4278',['rU_new',['../classERF.html#a01f3db32272f53dc68025f0a98195e57',1,'ERF']]], - ['ru_5fold_4279',['rU_old',['../classERF.html#a6eecc44323f77917c95869928284f61d',1,'ERF']]], - ['rv_5fnew_4280',['rV_new',['../classERF.html#a54e37988486ef96e55e84bd8e91bb688',1,'ERF']]], - ['rv_5fold_4281',['rV_old',['../classERF.html#aeb64e3b4def989ce68d873aefeed5e0e',1,'ERF']]], - ['rw_5fnew_4282',['rW_new',['../classERF.html#aa46c0b0d20525aed10f447923e54dde7',1,'ERF']]], - ['rw_5fold_4283',['rW_old',['../classERF.html#ac1fa56ec90f44e3cdf487af46804163f',1,'ERF']]] + ['r_5fd_4227',['R_d',['../ERF__Constants_8H.html#aeb133d0ac46d639050313ce36187e870',1,'ERF_Constants.H']]], + ['r_5flw_5fabs_4228',['r_lw_abs',['../structPhysProp_1_1physprop__t.html#af41dfd624f5e565f0435e9bef6182ba5',1,'PhysProp::physprop_t']]], + ['r_5fsw_5fascat_4229',['r_sw_ascat',['../structPhysProp_1_1physprop__t.html#a8f237360219885a558fb5c5bfeb5c015',1,'PhysProp::physprop_t']]], + ['r_5fsw_5fext_4230',['r_sw_ext',['../structPhysProp_1_1physprop__t.html#a2c8b9cd5f27f8c039d9ec76d665f08bc',1,'PhysProp::physprop_t']]], + ['r_5fsw_5fscat_4231',['r_sw_scat',['../structPhysProp_1_1physprop__t.html#ad3d6e9851177a676ab13788002e83bc0',1,'PhysProp::physprop_t']]], + ['r_5fv_4232',['R_v',['../ERF__Constants_8H.html#a0ab59ff21ef0b178fde0843394f5674a',1,'ERF_Constants.H']]], + ['radiation_4233',['radiation',['../classRadiation.html#adbdd39584f1836cc21a816a7ee7098bb',1,'Radiation']]], + ['rair_4234',['rair',['../ERF__Constants_8H.html#a864e81eb46f4207f25cb52e5046c23b8',1,'ERF_Constants.H']]], + ['rayleigh_5fdamp_5ft_4235',['rayleigh_damp_T',['../structSolverChoice.html#a06a0dd1c8f7c1ed73a4f8d24b6b31cdf',1,'SolverChoice']]], + ['rayleigh_5fdamp_5fu_4236',['rayleigh_damp_U',['../structSolverChoice.html#a5aed4016dd7d17a2d2904c60af59ae9d',1,'SolverChoice']]], + ['rayleigh_5fdamp_5fv_4237',['rayleigh_damp_V',['../structSolverChoice.html#a1bae456f7b26e8ed50d78ce1af1b5ef0',1,'SolverChoice']]], + ['rayleigh_5fdamp_5fw_4238',['rayleigh_damp_W',['../structSolverChoice.html#abf35af2e52f5c1197264d895396ca59c',1,'SolverChoice']]], + ['rd_5fon_5frv_4239',['Rd_on_Rv',['../ERF__Constants_8H.html#a212cca9324fcc25708184de9d9c7a07e',1,'ERF_Constants.H']]], + ['rdocp_4240',['rdOcp',['../structSolverChoice.html#a2e1ef762ee1dc1bd3d4cbd08125c758a',1,'SolverChoice']]], + ['real_4241',['Real',['../structncutils_1_1NCDType.html#a7a5be35daa7dbb2cc72507cc4b5a422c',1,'ncutils::NCDType']]], + ['real_5fset_5fwidth_4242',['real_set_width',['../classERF.html#acab120bb9324e7298534d765c447d703',1,'ERF']]], + ['real_5fwidth_4243',['real_width',['../classERF.html#abb15119348ad5399947bc8883084b230',1,'ERF']]], + ['ref_5fcounted_4244',['ref_counted',['../structNDArray.html#a8a0bbff40020f6aea23346ac656bf972',1,'NDArray']]], + ['ref_5ftags_4245',['ref_tags',['../classERF.html#ac81b3dfd7c6f21ba8479834e2ff1e652',1,'ERF']]], + ['refindex_5fim_5faer_5flw_4246',['refindex_im_aer_lw',['../structPhysProp_1_1physprop__t.html#a2b3656af3ed847bc9e0c7a5bfc1d64e0',1,'PhysProp::physprop_t']]], + ['refindex_5fim_5faer_5fsw_4247',['refindex_im_aer_sw',['../structPhysProp_1_1physprop__t.html#a01444396cbb69da2b50af017fef7b8e3',1,'PhysProp::physprop_t']]], + ['refindex_5freal_5faer_5flw_4248',['refindex_real_aer_lw',['../structPhysProp_1_1physprop__t.html#aa6b86d69efca7951eac318ef0a407acf',1,'PhysProp::physprop_t']]], + ['refindex_5freal_5faer_5fsw_4249',['refindex_real_aer_sw',['../structPhysProp_1_1physprop__t.html#a39ec574c71085ec5a6aa268b3b752a23',1,'PhysProp::physprop_t']]], + ['refitablw_4250',['refitablw',['../structPhysProp_1_1physprop__t.html#a8c8ef5042c0b53fa05d1d97a49de3833',1,'PhysProp::physprop_t']]], + ['refitabsw_4251',['refitabsw',['../structPhysProp_1_1physprop__t.html#a7a536b72896ed7e80fe3b13d990bce61',1,'PhysProp::physprop_t']]], + ['refrtablw_4252',['refrtablw',['../structPhysProp_1_1physprop__t.html#accf672f5038e149841b092ffb9ee1ba1',1,'PhysProp::physprop_t']]], + ['refrtabsw_4253',['refrtabsw',['../structPhysProp_1_1physprop__t.html#a2cb505dd76f365687ee5e33a22a14e9b',1,'PhysProp::physprop_t']]], + ['regrid_5fint_4254',['regrid_int',['../classERF.html#a3937527f96c81674fa38dc34ed24f3f5',1,'ERF']]], + ['restart_5fchkfile_4255',['restart_chkfile',['../classERF.html#a8e758060d3dede9694fbfcabddc17169',1,'ERF']]], + ['restart_5ftype_4256',['restart_type',['../classERF.html#a30a0b9e3a037c71580d1feb3b30a8258',1,'ERF']]], + ['retab_4257',['retab',['../classRadConstants.html#af93f09fe2ad546b17aff927963cf90d1',1,'RadConstants']]], + ['rga_4258',['rga',['../ERF__Constants_8H.html#a379aa3c3394d67b78990663a36ed5285',1,'ERF_Constants.H']]], + ['rh20_4259',['rh20',['../ERF__Constants_8H.html#ade17c0f300126a2fd0829d0e1a553512',1,'ERF_Constants.H']]], + ['rhcrystal_4260',['rhcrystal',['../structPhysProp_1_1physprop__t.html#aedb70926e32d7aaa6655f0a417acb18d',1,'PhysProp::physprop_t']]], + ['rhdeliques_4261',['rhdeliques',['../structPhysProp_1_1physprop__t.html#a136a646945382e1e7808b61ec9c648fe',1,'PhysProp::physprop_t']]], + ['rho0_5ftrans_4262',['rho0_trans',['../structDiffChoice.html#a4df179b6e7d84efc89a22ac5900f98c8',1,'DiffChoice']]], + ['rho1d_4263',['rho1d',['../classSAM.html#a0853b1a3a4ec94178ca208ea594fc455',1,'SAM']]], + ['rho_5f0_4264',['rho_0',['../structProbParmDefaults.html#af75997d9e4a94ab3b221657799ef720f',1,'ProbParmDefaults']]], + ['rho_5finp_5fsound_5fd_4265',['rho_inp_sound_d',['../structInputSoundingData.html#a749f99cf96305b40d55beb3d5d98bb93',1,'InputSoundingData']]], + ['rhoalpha_5fc_4266',['rhoAlpha_C',['../structDiffChoice.html#a553bdd290d667cca9699ed37f86f7e22',1,'DiffChoice']]], + ['rhoalpha_5ft_4267',['rhoAlpha_T',['../structDiffChoice.html#a574cf6ad397fd50169cafe025c9da5f3',1,'DiffChoice']]], + ['rhod_5finteg_4268',['rhod_integ',['../structInputSoundingData.html#a401b589250214e7bb84555050c5b6657',1,'InputSoundingData']]], + ['rhog_4269',['rhog',['../ERF__Constants_8H.html#a00c6555efa1735f66b36929196ff6b98',1,'ERF_Constants.H']]], + ['rhoh2o_4270',['rhoh2o',['../ERF__Constants_8H.html#a404d50fe6660930b74e3b191e2088754',1,'ERF_Constants.H']]], + ['rhor_4271',['rhor',['../ERF__Constants_8H.html#ad6e28022b74cd595f282e2cc97c2c0d8',1,'ERF_Constants.H']]], + ['rhos_4272',['rhos',['../ERF__Constants_8H.html#ac0e05183a58d4400f06346d18371218f',1,'ERF_Constants.H']]], + ['rhs_4273',['rhs',['../classMRISplitIntegrator.html#ab0f2e5848bf5e8f4959b6f990cb73053',1,'MRISplitIntegrator']]], + ['rotor_5frad_4274',['rotor_rad',['../classEWP.html#ac89ee08eabbf2cc7a64a7908a449f016',1,'EWP::rotor_rad()'],['../classFitch.html#aadaedef0e6f0ac149483ee6b4d8b1a4e',1,'Fitch::rotor_rad()'],['../classSimpleAD.html#a04490ef9f591e86588c5bb7870c1b77f',1,'SimpleAD::rotor_rad()'],['../classWindFarm.html#ad0925f54be32d71ae431a2078afee91b',1,'WindFarm::rotor_rad()']]], + ['rough_5ftype_5fland_4275',['rough_type_land',['../classABLMost.html#ab052d62a07e8765a6de67264d05aff37',1,'ABLMost']]], + ['rough_5ftype_5fsea_4276',['rough_type_sea',['../classABLMost.html#ab5041b7c6a15b759a8f33dadd1a67e92',1,'ABLMost']]], + ['rrtmg_5flw_5fcloudsim_5fband_4277',['rrtmg_lw_cloudsim_band',['../classRadConstants.html#aef2395d6f1bbed699fd4033b9c3104b8',1,'RadConstants']]], + ['rrtmg_5fsw_5fcloudsim_5fband_4278',['rrtmg_sw_cloudsim_band',['../classRadConstants.html#acd093dbcb244a162598bc23658a3f5d0',1,'RadConstants']]], + ['rrtmg_5fto_5frrtmgp_4279',['rrtmg_to_rrtmgp',['../classRadiation.html#a343cbb13362229a43f02df3a95eaa0ea',1,'Radiation']]], + ['rrtmgp_5fcoefficients_5ffile_5flw_4280',['rrtmgp_coefficients_file_lw',['../classRadiation.html#a0f24e2a14bfa218815d6d602374b6f0b',1,'Radiation']]], + ['rrtmgp_5fcoefficients_5ffile_5fname_5flw_4281',['rrtmgp_coefficients_file_name_lw',['../classRadiation.html#a9adc323a74a713f43a9952b3601d7f85',1,'Radiation']]], + ['rrtmgp_5fcoefficients_5ffile_5fname_5fsw_4282',['rrtmgp_coefficients_file_name_sw',['../classRadiation.html#ae6df86058b5dda6cb7b32e48f08f92f9',1,'Radiation']]], + ['rrtmgp_5fcoefficients_5ffile_5fsw_4283',['rrtmgp_coefficients_file_sw',['../classRadiation.html#a8b27a952d1ceb83c174a5d30f6198230',1,'Radiation']]], + ['rrtmgp_5fdata_5fpath_4284',['rrtmgp_data_path',['../classRadiation.html#a054782cce0873bc799bf8a3fdda6a1fb',1,'Radiation']]], + ['rrtmgp_5fenable_5ftemperature_5fwarnings_4285',['rrtmgp_enable_temperature_warnings',['../classRadiation.html#a4959db25c75a67b8166635413aae4888',1,'Radiation']]], + ['ru_5fnew_4286',['rU_new',['../classERF.html#a01f3db32272f53dc68025f0a98195e57',1,'ERF']]], + ['ru_5fold_4287',['rU_old',['../classERF.html#a6eecc44323f77917c95869928284f61d',1,'ERF']]], + ['rv_5fnew_4288',['rV_new',['../classERF.html#a54e37988486ef96e55e84bd8e91bb688',1,'ERF']]], + ['rv_5fold_4289',['rV_old',['../classERF.html#aeb64e3b4def989ce68d873aefeed5e0e',1,'ERF']]], + ['rw_5fnew_4290',['rW_new',['../classERF.html#aa46c0b0d20525aed10f447923e54dde7',1,'ERF']]], + ['rw_5fold_4291',['rW_old',['../classERF.html#ac1fa56ec90f44e3cdf487af46804163f',1,'ERF']]] ]; diff --git a/search/variables_12.js b/search/variables_12.js index 6a0d0420c8..9581cc9172 100644 --- a/search/variables_12.js +++ b/search/variables_12.js @@ -1,70 +1,70 @@ var searchData= [ - ['s_5fscratch_4284',['S_scratch',['../classMRISplitIntegrator.html#a6bcdee4380cd503256cb460b558184aa',1,'MRISplitIntegrator']]], - ['s_5fsum_4285',['S_sum',['../classMRISplitIntegrator.html#ad570588876d21506bc7232884841cab1',1,'MRISplitIntegrator']]], - ['sampleline_4286',['sampleline',['../classERF.html#a0fa1582bb13357895d2aba91b695624a',1,'ERF']]], - ['samplelinelog_4287',['samplelinelog',['../classERF.html#a4990f1796b65ec8ee602f177a66afc3e',1,'ERF']]], - ['samplelinelogname_4288',['samplelinelogname',['../classERF.html#a0553967f1131860bb8ecb47c0f192eaa',1,'ERF']]], - ['samplepoint_4289',['samplepoint',['../classERF.html#ae8a57b7fbf5a67c99d04b7d4f43ad100',1,'ERF']]], - ['sampleptlog_4290',['sampleptlog',['../classERF.html#a9737ddb0de6b9e8a5b17c109d5ad3e08',1,'ERF']]], - ['sampleptlogname_4291',['sampleptlogname',['../classERF.html#a8fbfa8bb47c0a3b53e244081aa1e8ad3',1,'ERF']]], - ['sc_5ft_4292',['Sc_t',['../structTurbChoice.html#aed763f56a6349187c9c0c0e4c952d05a',1,'TurbChoice']]], - ['sc_5ft_5finv_4293',['Sc_t_inv',['../structTurbChoice.html#a2daa4d23f9d89ee777a0d0fbd43196b6',1,'TurbChoice']]], - ['scalefactor_4294',['scalefactor',['../classEbertCurry.html#ab8edf44ffa6bd8f71ad9748b92928072',1,'EbertCurry']]], - ['sfs_5fdiss_5flev_4295',['SFS_diss_lev',['../classERF.html#a6e1ad417e3bd062468d74830b65911fb',1,'ERF']]], - ['sfs_5fhfx1_5flev_4296',['SFS_hfx1_lev',['../classERF.html#a25174b4ae6cfcac8f7d183ce5c9fe67b',1,'ERF']]], - ['sfs_5fhfx2_5flev_4297',['SFS_hfx2_lev',['../classERF.html#acb607b2e675b45fdcabc09b640ce5ae2',1,'ERF']]], - ['sfs_5fhfx3_5flev_4298',['SFS_hfx3_lev',['../classERF.html#a1a2e3faf5dd90ad2f9ded28b486f3b46',1,'ERF']]], - ['sfs_5fq1fx3_5flev_4299',['SFS_q1fx3_lev',['../classERF.html#a101ceb89b1a249efeea3f4e8052bc8c0',1,'ERF']]], - ['sfs_5fq2fx3_5flev_4300',['SFS_q2fx3_lev',['../classERF.html#a3ea10ef7383e594b6ee5e7a9ad67607b',1,'ERF']]], - ['sfuns_4301',['sfuns',['../structadiabatic__charnock.html#ad4c4fe599c1b8692fa8ef8346866c349',1,'adiabatic_charnock::sfuns()'],['../structsurface__temp__wave__coupled.html#abf85e6ffabb9974a13bc03e6f7d11e96',1,'surface_temp_wave_coupled::sfuns()'],['../structsurface__temp__mod__charnock.html#a1f329567f9dbb2f1f7a09e32603c9964',1,'surface_temp_mod_charnock::sfuns()'],['../structsurface__temp__charnock.html#ad7008c8f849acb706853f7aa39cda24d',1,'surface_temp_charnock::sfuns()'],['../structsurface__temp.html#a66e248c3558685f25206441914e8dfbf',1,'surface_temp::sfuns()'],['../structsurface__flux__wave__coupled.html#a91a27aa83da28c6bed01137ad0619b45',1,'surface_flux_wave_coupled::sfuns()'],['../structsurface__flux__mod__charnock.html#adb4a96d510f1e437c9efc41ba5fd16f9',1,'surface_flux_mod_charnock::sfuns()'],['../structsurface__flux__charnock.html#a4501ca4ecf49dccd6a1a914af03e1ed1',1,'surface_flux_charnock::sfuns()'],['../structsurface__flux.html#a01e8827b2f7e84c4d72496993822d806',1,'surface_flux::sfuns()'],['../structadiabatic__wave__coupled.html#ab5f4ad8ae9907cf15e3eba1129ea1375',1,'adiabatic_wave_coupled::sfuns()'],['../structadiabatic__mod__charnock.html#a66df1185e73be51b2bb72b55e70b64cd',1,'adiabatic_mod_charnock::sfuns()'],['../structadiabatic.html#a6c7e923e1a01f0f0408829081a6b215c',1,'adiabatic::sfuns()']]], - ['shape_4302',['shape',['../structNDArray.html#a99d704051dda7b5635b12cbe785d7bb5',1,'NDArray']]], - ['sigma_5fk_4303',['sigma_k',['../structTurbChoice.html#a0bb2b38f64a12b0b50552e05dee629e7',1,'TurbChoice']]], - ['sigmag_4304',['sigmag',['../structPhysProp_1_1physprop__t.html#a3f78f2921f22ba1912926ef62da7b19f',1,'PhysProp::physprop_t']]], - ['sinphi_4305',['sinphi',['../structSolverChoice.html#a6426e150ba9c1ba2e14151228bf6ffaf',1,'SolverChoice']]], - ['slow_5ffast_5ftimestep_5fratio_4306',['slow_fast_timestep_ratio',['../classMRISplitIntegrator.html#ac627f7a16fd409d33916eeccb9ab3c3f',1,'MRISplitIntegrator']]], - ['slow_5frhs_5ffun_5fpost_4307',['slow_rhs_fun_post',['../TI__slow__rhs__fun_8H.html#af460c930508105e92f60fd868d23ebcf',1,'TI_slow_rhs_fun.H']]], - ['slow_5frhs_5ffun_5fpre_4308',['slow_rhs_fun_pre',['../TI__slow__rhs__fun_8H.html#a963142d364408ee1775dbef20383b244',1,'TI_slow_rhs_fun.H']]], - ['slow_5frhs_5finc_4309',['slow_rhs_inc',['../classMRISplitIntegrator.html#a8549e46229b347585323bcc079b483f8',1,'MRISplitIntegrator']]], - ['slow_5frhs_5fpost_4310',['slow_rhs_post',['../classMRISplitIntegrator.html#a168352ef9fbddab9850fc5d1686d3e66',1,'MRISplitIntegrator']]], - ['slow_5frhs_5fpre_4311',['slow_rhs_pre',['../classMRISplitIntegrator.html#a51f92090a883eae0fa605c4a0a033311',1,'MRISplitIntegrator']]], - ['smnsmn_5flev_4312',['SmnSmn_lev',['../classERF.html#a9faaa96a7c270d2b2b062d9f30f19711',1,'ERF']]], - ['solar_5fref_5fband_5firradiance_4313',['solar_ref_band_irradiance',['../classRadConstants.html#a08249d3010b2b85d35732b90d970cdf9',1,'RadConstants']]], - ['solverchoice_4314',['solverChoice',['../classERF.html#a32dd48049e8acbe95decdd4b01b782c4',1,'ERF']]], - ['source_4315',['source',['../structMamConstituents_1_1aerosol__t.html#ab48037e47876a2ed6f26eb592a62d789',1,'MamConstituents::aerosol_t::source()'],['../structMamConstituents_1_1gas__t.html#a619486c07ea85c8a1f1866b98e3f58f8',1,'MamConstituents::gas_t::source()']]], - ['source_5fmmr_5fa_4316',['source_mmr_a',['../structMamConstituents_1_1mode__component__t.html#a1414bee3812094600db773ce95ba57be',1,'MamConstituents::mode_component_t']]], - ['source_5fmmr_5fc_4317',['source_mmr_c',['../structMamConstituents_1_1mode__component__t.html#a69feca853d0ca8cae0a8fae58f4858e2',1,'MamConstituents::mode_component_t']]], - ['source_5fnum_5fa_4318',['source_num_a',['../structMamConstituents_1_1mode__component__t.html#ae1cdc979f1e678c3ea8bd5263e849153',1,'MamConstituents::mode_component_t']]], - ['source_5fnum_5fc_4319',['source_num_c',['../structMamConstituents_1_1mode__component__t.html#a349533043289a158d59b2ffd39d95378',1,'MamConstituents::mode_component_t']]], - ['sourcefile_4320',['sourcefile',['../structPhysProp_1_1physprop__t.html#a3e3968847760816c03052a8b76da1a13',1,'PhysProp::physprop_t']]], - ['spec_5ftype_5fnames_4321',['spec_type_names',['../classMamConstituents.html#a2a3c67427c13fc60d592017076ddc8ce',1,'MamConstituents']]], - ['spectralflux_4322',['spectralflux',['../classRadiation.html#a65e0577b3ffe9a808731650c75941674',1,'Radiation']]], - ['sponge_5fdensity_4323',['sponge_density',['../structSpongeChoice.html#adb74ee3cbc24251272d6ad5fafdb885d',1,'SpongeChoice']]], - ['sponge_5fstrength_4324',['sponge_strength',['../structSpongeChoice.html#a48f4b8a95b93cf8fa36d00d355757a1e',1,'SpongeChoice']]], - ['sponge_5ftype_4325',['sponge_type',['../classERF.html#a6c570cbcb63ba3b0b09557537310ea46',1,'ERF::sponge_type()'],['../structSpongeChoice.html#a1a41f754595d713df32583f0b0fa606e',1,'SpongeChoice::sponge_type()']]], - ['sponge_5fx_5fvelocity_4326',['sponge_x_velocity',['../structSpongeChoice.html#aad5ca098e341c3f76dc8420daeb8b629',1,'SpongeChoice']]], - ['sponge_5fy_5fvelocity_4327',['sponge_y_velocity',['../structSpongeChoice.html#a13c70085162f73a4b6c36f7161be7260',1,'SpongeChoice']]], - ['sponge_5fz_5fvelocity_4328',['sponge_z_velocity',['../structSpongeChoice.html#a830ff63e204ed6c9dd381fd2baa1b33e',1,'SpongeChoice']]], - ['spongechoice_4329',['spongeChoice',['../structSolverChoice.html#ac066852f06a6409e1638f59868b7c57d',1,'SolverChoice']]], - ['ssa_5fcmip6_5fsw_4330',['ssa_cmip6_sw',['../classAerRadProps.html#a0690511bbea6225a4afa365c4c153f0c',1,'AerRadProps']]], - ['ssa_5fsw_5fice_4331',['ssa_sw_ice',['../classCloudRadProps.html#a65b15fc94853bc17e04f24926155b7c5',1,'CloudRadProps']]], - ['ssa_5fsw_5fliq_4332',['ssa_sw_liq',['../classCloudRadProps.html#a6a070723376d30c2d64c808898faebfb',1,'CloudRadProps']]], - ['sst_5flev_4333',['sst_lev',['../classERF.html#a5a5395054a212d8f3fc577562c14b66e',1,'ERF']]], - ['start_5ftime_4334',['start_time',['../classERF.html#aa0c07f31b23d977646b8161e5473fab5',1,'ERF']]], - ['startcputime_4335',['startCPUTime',['../classERF.html#a6d00e1cb76bfbcbada173e092b6accf3',1,'ERF']]], - ['stop_5ftime_4336',['stop_time',['../classERF.html#a405556a52bef334ab68294c1a540e107',1,'ERF']]], - ['sum_5finterval_4337',['sum_interval',['../classERF.html#a5232e98479611a24fe97994640c61faa',1,'ERF']]], - ['sum_5fper_4338',['sum_per',['../classERF.html#a1cf2ba396f4404724824516da4c4a084',1,'ERF']]], - ['surf_5fheating_5frate_4339',['surf_heating_rate',['../classABLMost.html#a39402ac3794b9a218289cd0d4adec670',1,'ABLMost']]], - ['surf_5ftemp_4340',['surf_temp',['../classABLMost.html#a73621a1b429f2e910a29adac72b7c581',1,'ABLMost']]], - ['surf_5ftemp_5fflux_4341',['surf_temp_flux',['../classABLMost.html#a98390481d302c2a2c7346bf2328305a8',1,'ABLMost::surf_temp_flux()'],['../structmost__data.html#af1d069399319831cf4ae17fba1dda19f',1,'most_data::surf_temp_flux()']]], - ['sw_5fband_5fmidpoints_4342',['sw_band_midpoints',['../classRadiation.html#a8ed843e3e2bb03d388b0c3ab869b1dba',1,'Radiation']]], - ['sw_5fhygro_5fasm_4343',['sw_hygro_asm',['../structPhysProp_1_1physprop__t.html#ae7278f6fb1910558af27c7ff79b18fa0',1,'PhysProp::physprop_t']]], - ['sw_5fhygro_5fext_4344',['sw_hygro_ext',['../structPhysProp_1_1physprop__t.html#aff3fc87f8134cab71058c4372ddb853f',1,'PhysProp::physprop_t']]], - ['sw_5fhygro_5fssa_4345',['sw_hygro_ssa',['../structPhysProp_1_1physprop__t.html#ae326430d60fa6170ccbebccb10b8a86a',1,'PhysProp::physprop_t']]], - ['sw_5fnonhygro_5fascat_4346',['sw_nonhygro_ascat',['../structPhysProp_1_1physprop__t.html#a4789a50f02b5f5cdee6a284cc782eed9',1,'PhysProp::physprop_t']]], - ['sw_5fnonhygro_5fasm_4347',['sw_nonhygro_asm',['../structPhysProp_1_1physprop__t.html#a744ddbbe6c903be22244e84cbc85c567',1,'PhysProp::physprop_t']]], - ['sw_5fnonhygro_5fext_4348',['sw_nonhygro_ext',['../structPhysProp_1_1physprop__t.html#a3b762bb10073922aba1fdc89e8f4d412',1,'PhysProp::physprop_t']]], - ['sw_5fnonhygro_5fscat_4349',['sw_nonhygro_scat',['../structPhysProp_1_1physprop__t.html#abbcc9ba3c0f329c98e7ba078f2ebf1dc',1,'PhysProp::physprop_t']]], - ['sw_5fnonhygro_5fssa_4350',['sw_nonhygro_ssa',['../structPhysProp_1_1physprop__t.html#aad14342b28b8939c5ae115605318ed02',1,'PhysProp::physprop_t']]] + ['s_5fscratch_4292',['S_scratch',['../classMRISplitIntegrator.html#a6bcdee4380cd503256cb460b558184aa',1,'MRISplitIntegrator']]], + ['s_5fsum_4293',['S_sum',['../classMRISplitIntegrator.html#ad570588876d21506bc7232884841cab1',1,'MRISplitIntegrator']]], + ['sampleline_4294',['sampleline',['../classERF.html#a0fa1582bb13357895d2aba91b695624a',1,'ERF']]], + ['samplelinelog_4295',['samplelinelog',['../classERF.html#a4990f1796b65ec8ee602f177a66afc3e',1,'ERF']]], + ['samplelinelogname_4296',['samplelinelogname',['../classERF.html#a0553967f1131860bb8ecb47c0f192eaa',1,'ERF']]], + ['samplepoint_4297',['samplepoint',['../classERF.html#ae8a57b7fbf5a67c99d04b7d4f43ad100',1,'ERF']]], + ['sampleptlog_4298',['sampleptlog',['../classERF.html#a9737ddb0de6b9e8a5b17c109d5ad3e08',1,'ERF']]], + ['sampleptlogname_4299',['sampleptlogname',['../classERF.html#a8fbfa8bb47c0a3b53e244081aa1e8ad3',1,'ERF']]], + ['sc_5ft_4300',['Sc_t',['../structTurbChoice.html#aed763f56a6349187c9c0c0e4c952d05a',1,'TurbChoice']]], + ['sc_5ft_5finv_4301',['Sc_t_inv',['../structTurbChoice.html#a2daa4d23f9d89ee777a0d0fbd43196b6',1,'TurbChoice']]], + ['scalefactor_4302',['scalefactor',['../classEbertCurry.html#ab8edf44ffa6bd8f71ad9748b92928072',1,'EbertCurry']]], + ['sfs_5fdiss_5flev_4303',['SFS_diss_lev',['../classERF.html#a6e1ad417e3bd062468d74830b65911fb',1,'ERF']]], + ['sfs_5fhfx1_5flev_4304',['SFS_hfx1_lev',['../classERF.html#a25174b4ae6cfcac8f7d183ce5c9fe67b',1,'ERF']]], + ['sfs_5fhfx2_5flev_4305',['SFS_hfx2_lev',['../classERF.html#acb607b2e675b45fdcabc09b640ce5ae2',1,'ERF']]], + ['sfs_5fhfx3_5flev_4306',['SFS_hfx3_lev',['../classERF.html#a1a2e3faf5dd90ad2f9ded28b486f3b46',1,'ERF']]], + ['sfs_5fq1fx3_5flev_4307',['SFS_q1fx3_lev',['../classERF.html#a101ceb89b1a249efeea3f4e8052bc8c0',1,'ERF']]], + ['sfs_5fq2fx3_5flev_4308',['SFS_q2fx3_lev',['../classERF.html#a3ea10ef7383e594b6ee5e7a9ad67607b',1,'ERF']]], + ['sfuns_4309',['sfuns',['../structadiabatic__charnock.html#ad4c4fe599c1b8692fa8ef8346866c349',1,'adiabatic_charnock::sfuns()'],['../structsurface__temp__wave__coupled.html#abf85e6ffabb9974a13bc03e6f7d11e96',1,'surface_temp_wave_coupled::sfuns()'],['../structsurface__temp__mod__charnock.html#a1f329567f9dbb2f1f7a09e32603c9964',1,'surface_temp_mod_charnock::sfuns()'],['../structsurface__temp__charnock.html#ad7008c8f849acb706853f7aa39cda24d',1,'surface_temp_charnock::sfuns()'],['../structsurface__temp.html#a66e248c3558685f25206441914e8dfbf',1,'surface_temp::sfuns()'],['../structsurface__flux__wave__coupled.html#a91a27aa83da28c6bed01137ad0619b45',1,'surface_flux_wave_coupled::sfuns()'],['../structsurface__flux__mod__charnock.html#adb4a96d510f1e437c9efc41ba5fd16f9',1,'surface_flux_mod_charnock::sfuns()'],['../structsurface__flux__charnock.html#a4501ca4ecf49dccd6a1a914af03e1ed1',1,'surface_flux_charnock::sfuns()'],['../structsurface__flux.html#a01e8827b2f7e84c4d72496993822d806',1,'surface_flux::sfuns()'],['../structadiabatic__wave__coupled.html#ab5f4ad8ae9907cf15e3eba1129ea1375',1,'adiabatic_wave_coupled::sfuns()'],['../structadiabatic__mod__charnock.html#a66df1185e73be51b2bb72b55e70b64cd',1,'adiabatic_mod_charnock::sfuns()'],['../structadiabatic.html#a6c7e923e1a01f0f0408829081a6b215c',1,'adiabatic::sfuns()']]], + ['shape_4310',['shape',['../structNDArray.html#a99d704051dda7b5635b12cbe785d7bb5',1,'NDArray']]], + ['sigma_5fk_4311',['sigma_k',['../structTurbChoice.html#a0bb2b38f64a12b0b50552e05dee629e7',1,'TurbChoice']]], + ['sigmag_4312',['sigmag',['../structPhysProp_1_1physprop__t.html#a3f78f2921f22ba1912926ef62da7b19f',1,'PhysProp::physprop_t']]], + ['sinphi_4313',['sinphi',['../structSolverChoice.html#a6426e150ba9c1ba2e14151228bf6ffaf',1,'SolverChoice']]], + ['slow_5ffast_5ftimestep_5fratio_4314',['slow_fast_timestep_ratio',['../classMRISplitIntegrator.html#ac627f7a16fd409d33916eeccb9ab3c3f',1,'MRISplitIntegrator']]], + ['slow_5frhs_5ffun_5fpost_4315',['slow_rhs_fun_post',['../TI__slow__rhs__fun_8H.html#af460c930508105e92f60fd868d23ebcf',1,'TI_slow_rhs_fun.H']]], + ['slow_5frhs_5ffun_5fpre_4316',['slow_rhs_fun_pre',['../TI__slow__rhs__fun_8H.html#a963142d364408ee1775dbef20383b244',1,'TI_slow_rhs_fun.H']]], + ['slow_5frhs_5finc_4317',['slow_rhs_inc',['../classMRISplitIntegrator.html#a8549e46229b347585323bcc079b483f8',1,'MRISplitIntegrator']]], + ['slow_5frhs_5fpost_4318',['slow_rhs_post',['../classMRISplitIntegrator.html#a168352ef9fbddab9850fc5d1686d3e66',1,'MRISplitIntegrator']]], + ['slow_5frhs_5fpre_4319',['slow_rhs_pre',['../classMRISplitIntegrator.html#a51f92090a883eae0fa605c4a0a033311',1,'MRISplitIntegrator']]], + ['smnsmn_5flev_4320',['SmnSmn_lev',['../classERF.html#a9faaa96a7c270d2b2b062d9f30f19711',1,'ERF']]], + ['solar_5fref_5fband_5firradiance_4321',['solar_ref_band_irradiance',['../classRadConstants.html#a08249d3010b2b85d35732b90d970cdf9',1,'RadConstants']]], + ['solverchoice_4322',['solverChoice',['../classERF.html#a32dd48049e8acbe95decdd4b01b782c4',1,'ERF']]], + ['source_4323',['source',['../structMamConstituents_1_1aerosol__t.html#ab48037e47876a2ed6f26eb592a62d789',1,'MamConstituents::aerosol_t::source()'],['../structMamConstituents_1_1gas__t.html#a619486c07ea85c8a1f1866b98e3f58f8',1,'MamConstituents::gas_t::source()']]], + ['source_5fmmr_5fa_4324',['source_mmr_a',['../structMamConstituents_1_1mode__component__t.html#a1414bee3812094600db773ce95ba57be',1,'MamConstituents::mode_component_t']]], + ['source_5fmmr_5fc_4325',['source_mmr_c',['../structMamConstituents_1_1mode__component__t.html#a69feca853d0ca8cae0a8fae58f4858e2',1,'MamConstituents::mode_component_t']]], + ['source_5fnum_5fa_4326',['source_num_a',['../structMamConstituents_1_1mode__component__t.html#ae1cdc979f1e678c3ea8bd5263e849153',1,'MamConstituents::mode_component_t']]], + ['source_5fnum_5fc_4327',['source_num_c',['../structMamConstituents_1_1mode__component__t.html#a349533043289a158d59b2ffd39d95378',1,'MamConstituents::mode_component_t']]], + ['sourcefile_4328',['sourcefile',['../structPhysProp_1_1physprop__t.html#a3e3968847760816c03052a8b76da1a13',1,'PhysProp::physprop_t']]], + ['spec_5ftype_5fnames_4329',['spec_type_names',['../classMamConstituents.html#a2a3c67427c13fc60d592017076ddc8ce',1,'MamConstituents']]], + ['spectralflux_4330',['spectralflux',['../classRadiation.html#a65e0577b3ffe9a808731650c75941674',1,'Radiation']]], + ['sponge_5fdensity_4331',['sponge_density',['../structSpongeChoice.html#adb74ee3cbc24251272d6ad5fafdb885d',1,'SpongeChoice']]], + ['sponge_5fstrength_4332',['sponge_strength',['../structSpongeChoice.html#a48f4b8a95b93cf8fa36d00d355757a1e',1,'SpongeChoice']]], + ['sponge_5ftype_4333',['sponge_type',['../classERF.html#a6c570cbcb63ba3b0b09557537310ea46',1,'ERF::sponge_type()'],['../structSpongeChoice.html#a1a41f754595d713df32583f0b0fa606e',1,'SpongeChoice::sponge_type()']]], + ['sponge_5fx_5fvelocity_4334',['sponge_x_velocity',['../structSpongeChoice.html#aad5ca098e341c3f76dc8420daeb8b629',1,'SpongeChoice']]], + ['sponge_5fy_5fvelocity_4335',['sponge_y_velocity',['../structSpongeChoice.html#a13c70085162f73a4b6c36f7161be7260',1,'SpongeChoice']]], + ['sponge_5fz_5fvelocity_4336',['sponge_z_velocity',['../structSpongeChoice.html#a830ff63e204ed6c9dd381fd2baa1b33e',1,'SpongeChoice']]], + ['spongechoice_4337',['spongeChoice',['../structSolverChoice.html#ac066852f06a6409e1638f59868b7c57d',1,'SolverChoice']]], + ['ssa_5fcmip6_5fsw_4338',['ssa_cmip6_sw',['../classAerRadProps.html#a0690511bbea6225a4afa365c4c153f0c',1,'AerRadProps']]], + ['ssa_5fsw_5fice_4339',['ssa_sw_ice',['../classCloudRadProps.html#a65b15fc94853bc17e04f24926155b7c5',1,'CloudRadProps']]], + ['ssa_5fsw_5fliq_4340',['ssa_sw_liq',['../classCloudRadProps.html#a6a070723376d30c2d64c808898faebfb',1,'CloudRadProps']]], + ['sst_5flev_4341',['sst_lev',['../classERF.html#a5a5395054a212d8f3fc577562c14b66e',1,'ERF']]], + ['start_5ftime_4342',['start_time',['../classERF.html#aa0c07f31b23d977646b8161e5473fab5',1,'ERF']]], + ['startcputime_4343',['startCPUTime',['../classERF.html#a6d00e1cb76bfbcbada173e092b6accf3',1,'ERF']]], + ['stop_5ftime_4344',['stop_time',['../classERF.html#a405556a52bef334ab68294c1a540e107',1,'ERF']]], + ['sum_5finterval_4345',['sum_interval',['../classERF.html#a5232e98479611a24fe97994640c61faa',1,'ERF']]], + ['sum_5fper_4346',['sum_per',['../classERF.html#a1cf2ba396f4404724824516da4c4a084',1,'ERF']]], + ['surf_5fheating_5frate_4347',['surf_heating_rate',['../classABLMost.html#a39402ac3794b9a218289cd0d4adec670',1,'ABLMost']]], + ['surf_5ftemp_4348',['surf_temp',['../classABLMost.html#a73621a1b429f2e910a29adac72b7c581',1,'ABLMost']]], + ['surf_5ftemp_5fflux_4349',['surf_temp_flux',['../classABLMost.html#a98390481d302c2a2c7346bf2328305a8',1,'ABLMost::surf_temp_flux()'],['../structmost__data.html#af1d069399319831cf4ae17fba1dda19f',1,'most_data::surf_temp_flux()']]], + ['sw_5fband_5fmidpoints_4350',['sw_band_midpoints',['../classRadiation.html#a8ed843e3e2bb03d388b0c3ab869b1dba',1,'Radiation']]], + ['sw_5fhygro_5fasm_4351',['sw_hygro_asm',['../structPhysProp_1_1physprop__t.html#ae7278f6fb1910558af27c7ff79b18fa0',1,'PhysProp::physprop_t']]], + ['sw_5fhygro_5fext_4352',['sw_hygro_ext',['../structPhysProp_1_1physprop__t.html#aff3fc87f8134cab71058c4372ddb853f',1,'PhysProp::physprop_t']]], + ['sw_5fhygro_5fssa_4353',['sw_hygro_ssa',['../structPhysProp_1_1physprop__t.html#ae326430d60fa6170ccbebccb10b8a86a',1,'PhysProp::physprop_t']]], + ['sw_5fnonhygro_5fascat_4354',['sw_nonhygro_ascat',['../structPhysProp_1_1physprop__t.html#a4789a50f02b5f5cdee6a284cc782eed9',1,'PhysProp::physprop_t']]], + ['sw_5fnonhygro_5fasm_4355',['sw_nonhygro_asm',['../structPhysProp_1_1physprop__t.html#a744ddbbe6c903be22244e84cbc85c567',1,'PhysProp::physprop_t']]], + ['sw_5fnonhygro_5fext_4356',['sw_nonhygro_ext',['../structPhysProp_1_1physprop__t.html#a3b762bb10073922aba1fdc89e8f4d412',1,'PhysProp::physprop_t']]], + ['sw_5fnonhygro_5fscat_4357',['sw_nonhygro_scat',['../structPhysProp_1_1physprop__t.html#abbcc9ba3c0f329c98e7ba078f2ebf1dc',1,'PhysProp::physprop_t']]], + ['sw_5fnonhygro_5fssa_4358',['sw_nonhygro_ssa',['../structPhysProp_1_1physprop__t.html#aad14342b28b8939c5ae115605318ed02',1,'PhysProp::physprop_t']]] ]; diff --git a/search/variables_13.js b/search/variables_13.js index fd5bce4cca..dc8a02d914 100644 --- a/search/variables_13.js +++ b/search/variables_13.js @@ -1,73 +1,73 @@ var searchData= [ - ['t_5f0_4351',['T_0',['../structProbParmDefaults.html#a16db7fa78b123f2a956bacbce26f32c6',1,'ProbParmDefaults']]], - ['t_5favg_5fcnt_4352',['t_avg_cnt',['../classERF.html#a6837423e9248e923fcaa1987b59d8160',1,'ERF']]], - ['t_5fnew_4353',['t_new',['../classERF.html#a65741b6379d273c19a25cf48bb947614',1,'ERF']]], - ['t_5fold_4354',['t_old',['../classERF.html#a7085d7d5fc94a0f84efc06957267d58e',1,'ERF']]], - ['t_5fstar_4355',['t_star',['../classABLMost.html#ac9d90016f196c3861d225132e8b6a921',1,'ABLMost']]], - ['t_5fstore_4356',['T_store',['../classMRISplitIntegrator.html#a10fa09211f3b0a6b7357ab79dbadbb80',1,'MRISplitIntegrator']]], - ['t_5fsurf_4357',['t_surf',['../classABLMost.html#a1f488836fca7c3da2bed67c63a94951b',1,'ABLMost']]], - ['tabs1d_4358',['tabs1d',['../classSAM.html#aee5da977a069c0b9cb98d150027f746c',1,'SAM']]], - ['target_5fbox_4359',['target_box',['../classWriteBndryPlanes.html#a4d7d2b3b5b1c823b905ae3042bb62379',1,'WriteBndryPlanes']]], - ['tau11_5flev_4360',['Tau11_lev',['../classERF.html#aeb9348353b2415d023d8f52c293cad7e',1,'ERF']]], - ['tau12_5flev_4361',['Tau12_lev',['../classERF.html#ad8c2eca71737b102cc5cf75f97c6bd63',1,'ERF']]], - ['tau13_5flev_4362',['Tau13_lev',['../classERF.html#a5392e6104804d799b3fd943dfe390766',1,'ERF']]], - ['tau21_5flev_4363',['Tau21_lev',['../classERF.html#a547864dc0347f4620feb99ed564acb4d',1,'ERF']]], - ['tau22_5flev_4364',['Tau22_lev',['../classERF.html#afb4294f848d86e4aefb74848bb71047e',1,'ERF']]], - ['tau23_5flev_4365',['Tau23_lev',['../classERF.html#a03a4ad7368c1c98b492cd9d9fec9cbc5',1,'ERF']]], - ['tau31_5flev_4366',['Tau31_lev',['../classERF.html#a203e7334296218672e36bab93174e146',1,'ERF']]], - ['tau32_5flev_4367',['Tau32_lev',['../classERF.html#aa650bf1f6885b179fd8d4c24b48668cb',1,'ERF']]], - ['tau33_5flev_4368',['Tau33_lev',['../classERF.html#a60a185c47f07bf4fb537a15d5a226d8a',1,'ERF']]], - ['tbgmax_4369',['tbgmax',['../ERF__Constants_8H.html#a2b4ea8a29735038e49703c7f8c1f20c8',1,'ERF_Constants.H']]], - ['tbgmin_4370',['tbgmin',['../ERF__Constants_8H.html#abf1e890912f1117211516f13b27ed2e8',1,'ERF_Constants.H']]], - ['tboil_4371',['tboil',['../ERF__Constants_8H.html#a123bd9756d4f11bae80bb918f88cbd3f',1,'ERF_Constants.H']]], - ['temp_4372',['temp',['../classAerRadProps.html#a0a03391413de1fcd9ea2550fea907b33',1,'AerRadProps']]], - ['terrain_5ftype_4373',['terrain_type',['../structSolverChoice.html#ab734eb0a5147b93dc6590038b6decc60',1,'SolverChoice']]], - ['test_5fmapfactor_4374',['test_mapfactor',['../structSolverChoice.html#a9c7942f6ef7cf05115f35702097cf107',1,'SolverChoice']]], - ['tgrmax_4375',['tgrmax',['../ERF__Constants_8H.html#ab24d300166813654b7d8adb31bc71938',1,'ERF_Constants.H']]], - ['tgrmin_4376',['tgrmin',['../ERF__Constants_8H.html#afb7d1700c60728d56ef525934fe6a098',1,'ERF_Constants.H']]], - ['therco_4377',['therco',['../ERF__Constants_8H.html#a583248545708b1481d513f2c9621f0ba',1,'ERF_Constants.H']]], - ['theta_5finp_5fsound_4378',['theta_inp_sound',['../structInputSoundingData.html#acf38db2cecabcd07fe794b41974ba866',1,'InputSoundingData']]], - ['theta_5finp_5fsound_5fd_4379',['theta_inp_sound_d',['../structInputSoundingData.html#ae990e8cfad78f0fa5a603db3154d0124',1,'InputSoundingData']]], - ['theta_5fprim_4380',['Theta_prim',['../classERF.html#a71629ae2fda396472198691b75d83b2e',1,'ERF']]], - ['theta_5fref_4381',['theta_ref',['../structTurbChoice.html#aeb3c184b540858407426a606327fba3a',1,'TurbChoice']]], - ['theta_5fref_5finp_5fsound_4382',['theta_ref_inp_sound',['../structInputSoundingData.html#a15782809644a4daa0e8de9c3cc4c346a',1,'InputSoundingData']]], - ['theta_5ftype_4383',['theta_type',['../classABLMost.html#a7d1394fa01c8c29b20dfb790c0f3ec6b',1,'ABLMost']]], - ['thin_5fxforce_4384',['thin_xforce',['../classERF.html#a5b9b8d719a87a6940f611c6a30e8ccf5',1,'ERF']]], - ['thin_5fyforce_4385',['thin_yforce',['../classERF.html#a18c1142552120bbd22987f34995ee939',1,'ERF']]], - ['thin_5fzforce_4386',['thin_zforce',['../classERF.html#a56a23d298bc66218bf257d0e793e341f',1,'ERF']]], - ['third_4387',['third',['../classModalAeroWateruptake.html#a77bdba258f0d10234a98a54a39a5fb7f',1,'ModalAeroWateruptake']]], - ['thrust_5fcoeff_4388',['thrust_coeff',['../classEWP.html#a9cdc57dc5a1a63c4a4e62ba85dffecc4',1,'EWP::thrust_coeff()'],['../classFitch.html#a7cafd25264dba6194d42285153683f34',1,'Fitch::thrust_coeff()'],['../classSimpleAD.html#a0d915eaf360210453a081a2b721d0fa0',1,'SimpleAD::thrust_coeff()'],['../classWindFarm.html#a8d5e6333f2f9f8e36dfd4766ad171b84',1,'WindFarm::thrust_coeff()']]], - ['thrust_5fcoeff_5fstanding_4389',['thrust_coeff_standing',['../classFitch.html#adc5df318361103709d0fa5421358e29d',1,'Fitch::thrust_coeff_standing()'],['../classEWP.html#a22f50393881ced019cae2a74ee04cdea',1,'EWP::thrust_coeff_standing()'],['../classWindFarm.html#ab8d68a72cf4346074daf47f825eff105',1,'WindFarm::thrust_coeff_standing()'],['../classSimpleAD.html#a1665d726556fc42558e77fe94e732d43',1,'SimpleAD::thrust_coeff_standing()']]], - ['time_5favg_5fvel_4390',['time_avg_vel',['../structSolverChoice.html#af3119a4089367206db9fc3a17664e874',1,'SolverChoice']]], - ['timestep_4391',['timestep',['../classMRISplitIntegrator.html#a3f21bedf222ce95136d4889012401612',1,'MRISplitIntegrator']]], - ['tint_4392',['tint',['../classRadiation.html#a76bb14b6a6eafd04ffad69f50547be41',1,'Radiation']]], - ['tmax_4393',['tmax',['../classWaterVaporSat.html#a8e168a8ca074d530d7afe596739270b4',1,'WaterVaporSat']]], - ['tmelt_4394',['tmelt',['../ERF__Constants_8H.html#a764526b482e006cd52004d3f53467b57',1,'ERF_Constants.H']]], - ['tmid_4395',['tmid',['../classRadiation.html#ac1ed1e73ee4f8832a699967c8354bd6e',1,'Radiation']]], - ['tmin_4396',['tmin',['../classWaterVaporSat.html#ac7a0c53f3985416b26f43135e25accca',1,'WaterVaporSat']]], - ['tol_4397',['tol',['../structWENO__Z3.html#aec489e3be4dbc31eb46b729b8510fdfc',1,'WENO_Z3::tol()'],['../structWENO__MZQ3.html#af1d30022fe1ebe59529f45843dff3ae5',1,'WENO_MZQ3::tol()'],['../structWENO__Z5.html#af5daab47aa96e124f3bf0508489e3017',1,'WENO_Z5::tol()'],['../structadiabatic__charnock.html#abb822b2278b8cd500c6fb0fb0a028709',1,'adiabatic_charnock::tol()']]], - ['tol_4398',['TOL',['../namespaceHSEutils.html#aace33d14958f235a111e6cead400a61e',1,'HSEutils']]], - ['tol_4399',['tol',['../structWENO3.html#aa09b52432a69d89bef16a06015252661',1,'WENO3::tol()'],['../structsurface__flux__wave__coupled.html#a928bb0b9a4141fc6452c6f83fbec58aa',1,'surface_flux_wave_coupled::tol()'],['../structsurface__temp.html#a7c4031cfb8cbb020115ee7fae12ddb05',1,'surface_temp::tol()'],['../structsurface__temp__charnock.html#ab1cdc86ca25ac91cb375348372f2ddf1',1,'surface_temp_charnock::tol()'],['../structsurface__flux__mod__charnock.html#ac01a07a59f56ff6683dd9942b4d500ba',1,'surface_flux_mod_charnock::tol()'],['../structsurface__flux__charnock.html#a08529386a7d5012684c818249a7d76ba',1,'surface_flux_charnock::tol()'],['../structsurface__flux.html#abd16b92a75ae384f9fe490b59f046b6a',1,'surface_flux::tol()'],['../structadiabatic__wave__coupled.html#ad18802ec131991fbaaebfb80a1a12d07',1,'adiabatic_wave_coupled::tol()'],['../structadiabatic__mod__charnock.html#a8a007e09d416f6879b7ba68c7e4ac29e',1,'adiabatic_mod_charnock::tol()'],['../structWENO5.html#a99f8a8620164e0e1460c7bce55ec3b02',1,'WENO5::tol()'],['../structsurface__temp__mod__charnock.html#a77dc7e5a012fbe6066fa21f57145c938',1,'surface_temp_mod_charnock::tol()'],['../structsurface__temp__wave__coupled.html#a3715864e9c6bfdc6e4556925d0fc48fa',1,'surface_temp_wave_coupled::tol()']]], - ['top_5flev_4400',['top_lev',['../classMam4__aer.html#ae15e0c356e4fed002069ecd5d8bb33af',1,'Mam4_aer::top_lev()'],['../classAerRadProps.html#a83216edbd2d57b575f1869df38a1b668',1,'AerRadProps::top_lev()']]], - ['tpi_5fboxdim_4401',['tpi_boxDim',['../structTurbulentPerturbation.html#ab90f89bf4bf3d497f88c27d1b92f3d39',1,'TurbulentPerturbation']]], - ['tpi_5fdirection_4402',['tpi_direction',['../structTurbulentPerturbation.html#af2a72d18ce8c0f5bc011d3682ad93e0f',1,'TurbulentPerturbation']]], - ['tpi_5fhpb_4403',['tpi_Hpb',['../structTurbulentPerturbation.html#aef47959ab81660b54f583a7304816ef4',1,'TurbulentPerturbation']]], - ['tpi_5flayers_4404',['tpi_layers',['../structTurbulentPerturbation.html#a17f060634e44ba5701cc1febba23c915',1,'TurbulentPerturbation']]], - ['tpi_5flpb_4405',['tpi_Lpb',['../structTurbulentPerturbation.html#a22bb01b7314fa13bdfc1966456f5deed',1,'TurbulentPerturbation']]], - ['tpi_5flref_4406',['tpi_lref',['../structTurbulentPerturbation.html#ab3db22cfce521750d46e44ed93c49bb8',1,'TurbulentPerturbation']]], - ['tpi_5fnet_5fbuoyant_4407',['tpi_net_buoyant',['../structTurbulentPerturbation.html#adaf88736c8d43a23f8bb3eb8065f0b84',1,'TurbulentPerturbation']]], - ['tpi_5fnondim_4408',['tpi_nonDim',['../structTurbulentPerturbation.html#abe0155dd9b530c537b1f639ab4dc8691',1,'TurbulentPerturbation']]], - ['tpi_5foffset_4409',['tpi_offset',['../structTurbulentPerturbation.html#a7bcb39c84b03deefaa166c89f22c229c',1,'TurbulentPerturbation']]], - ['tpi_5fpert_5fadjust_4410',['tpi_pert_adjust',['../structTurbulentPerturbation.html#aa4e6ee511ae71277885d87f5aa2ddad3',1,'TurbulentPerturbation']]], - ['tpi_5fti_4411',['tpi_Ti',['../structTurbulentPerturbation.html#aa2c2e894fc858d8cdaa9cde0092e896e',1,'TurbulentPerturbation']]], - ['tpi_5ftinf_4412',['tpi_Tinf',['../structTurbulentPerturbation.html#a20940c88c5c2f6ef1b90d1984867777a',1,'TurbulentPerturbation']]], - ['tpi_5fwpb_4413',['tpi_Wpb',['../structTurbulentPerturbation.html#a21d9b84c0b8eac4d49ae5ca764247442',1,'TurbulentPerturbation']]], - ['tprmax_4414',['tprmax',['../ERF__Constants_8H.html#a06a70c05086650ead098e2994ad1bd43',1,'ERF_Constants.H']]], - ['tprmin_4415',['tprmin',['../ERF__Constants_8H.html#a9180d622aa39d89312941eba03fa1347',1,'ERF_Constants.H']]], - ['ttrice_4416',['ttrice',['../ERF__Constants_8H.html#a9b3da60e1e65429fe546d18c9c926105',1,'ERF_Constants.H']]], - ['turbchoice_4417',['turbChoice',['../structSolverChoice.html#aa53b017d79e0067923180a0aa59367b4',1,'SolverChoice']]], - ['turbpert_4418',['turbPert',['../classERF.html#ac1b9cce4a3c1736c4af78f6b0e2143ce',1,'ERF']]], - ['type_4419',['type',['../structMamConstituents_1_1mode__component__t.html#a96f5cdd50364b1e2760b1cb4e88cd153',1,'MamConstituents::mode_component_t']]], - ['types_4420',['types',['../structMamConstituents_1_1modes__t.html#aea58b375f13ddc20860b2bd2a183899b',1,'MamConstituents::modes_t']]] + ['t_5f0_4359',['T_0',['../structProbParmDefaults.html#a16db7fa78b123f2a956bacbce26f32c6',1,'ProbParmDefaults']]], + ['t_5favg_5fcnt_4360',['t_avg_cnt',['../classERF.html#a6837423e9248e923fcaa1987b59d8160',1,'ERF']]], + ['t_5fnew_4361',['t_new',['../classERF.html#a65741b6379d273c19a25cf48bb947614',1,'ERF']]], + ['t_5fold_4362',['t_old',['../classERF.html#a7085d7d5fc94a0f84efc06957267d58e',1,'ERF']]], + ['t_5fstar_4363',['t_star',['../classABLMost.html#ac9d90016f196c3861d225132e8b6a921',1,'ABLMost']]], + ['t_5fstore_4364',['T_store',['../classMRISplitIntegrator.html#a10fa09211f3b0a6b7357ab79dbadbb80',1,'MRISplitIntegrator']]], + ['t_5fsurf_4365',['t_surf',['../classABLMost.html#a1f488836fca7c3da2bed67c63a94951b',1,'ABLMost']]], + ['tabs1d_4366',['tabs1d',['../classSAM.html#aee5da977a069c0b9cb98d150027f746c',1,'SAM']]], + ['target_5fbox_4367',['target_box',['../classWriteBndryPlanes.html#a4d7d2b3b5b1c823b905ae3042bb62379',1,'WriteBndryPlanes']]], + ['tau11_5flev_4368',['Tau11_lev',['../classERF.html#aeb9348353b2415d023d8f52c293cad7e',1,'ERF']]], + ['tau12_5flev_4369',['Tau12_lev',['../classERF.html#ad8c2eca71737b102cc5cf75f97c6bd63',1,'ERF']]], + ['tau13_5flev_4370',['Tau13_lev',['../classERF.html#a5392e6104804d799b3fd943dfe390766',1,'ERF']]], + ['tau21_5flev_4371',['Tau21_lev',['../classERF.html#a547864dc0347f4620feb99ed564acb4d',1,'ERF']]], + ['tau22_5flev_4372',['Tau22_lev',['../classERF.html#afb4294f848d86e4aefb74848bb71047e',1,'ERF']]], + ['tau23_5flev_4373',['Tau23_lev',['../classERF.html#a03a4ad7368c1c98b492cd9d9fec9cbc5',1,'ERF']]], + ['tau31_5flev_4374',['Tau31_lev',['../classERF.html#a203e7334296218672e36bab93174e146',1,'ERF']]], + ['tau32_5flev_4375',['Tau32_lev',['../classERF.html#aa650bf1f6885b179fd8d4c24b48668cb',1,'ERF']]], + ['tau33_5flev_4376',['Tau33_lev',['../classERF.html#a60a185c47f07bf4fb537a15d5a226d8a',1,'ERF']]], + ['tbgmax_4377',['tbgmax',['../ERF__Constants_8H.html#a2b4ea8a29735038e49703c7f8c1f20c8',1,'ERF_Constants.H']]], + ['tbgmin_4378',['tbgmin',['../ERF__Constants_8H.html#abf1e890912f1117211516f13b27ed2e8',1,'ERF_Constants.H']]], + ['tboil_4379',['tboil',['../ERF__Constants_8H.html#a123bd9756d4f11bae80bb918f88cbd3f',1,'ERF_Constants.H']]], + ['temp_4380',['temp',['../classAerRadProps.html#a0a03391413de1fcd9ea2550fea907b33',1,'AerRadProps']]], + ['terrain_5ftype_4381',['terrain_type',['../structSolverChoice.html#ab734eb0a5147b93dc6590038b6decc60',1,'SolverChoice']]], + ['test_5fmapfactor_4382',['test_mapfactor',['../structSolverChoice.html#a9c7942f6ef7cf05115f35702097cf107',1,'SolverChoice']]], + ['tgrmax_4383',['tgrmax',['../ERF__Constants_8H.html#ab24d300166813654b7d8adb31bc71938',1,'ERF_Constants.H']]], + ['tgrmin_4384',['tgrmin',['../ERF__Constants_8H.html#afb7d1700c60728d56ef525934fe6a098',1,'ERF_Constants.H']]], + ['therco_4385',['therco',['../ERF__Constants_8H.html#a583248545708b1481d513f2c9621f0ba',1,'ERF_Constants.H']]], + ['theta_5finp_5fsound_4386',['theta_inp_sound',['../structInputSoundingData.html#acf38db2cecabcd07fe794b41974ba866',1,'InputSoundingData']]], + ['theta_5finp_5fsound_5fd_4387',['theta_inp_sound_d',['../structInputSoundingData.html#ae990e8cfad78f0fa5a603db3154d0124',1,'InputSoundingData']]], + ['theta_5fprim_4388',['Theta_prim',['../classERF.html#a71629ae2fda396472198691b75d83b2e',1,'ERF']]], + ['theta_5fref_4389',['theta_ref',['../structTurbChoice.html#aeb3c184b540858407426a606327fba3a',1,'TurbChoice']]], + ['theta_5fref_5finp_5fsound_4390',['theta_ref_inp_sound',['../structInputSoundingData.html#a15782809644a4daa0e8de9c3cc4c346a',1,'InputSoundingData']]], + ['theta_5ftype_4391',['theta_type',['../classABLMost.html#a7d1394fa01c8c29b20dfb790c0f3ec6b',1,'ABLMost']]], + ['thin_5fxforce_4392',['thin_xforce',['../classERF.html#a5b9b8d719a87a6940f611c6a30e8ccf5',1,'ERF']]], + ['thin_5fyforce_4393',['thin_yforce',['../classERF.html#a18c1142552120bbd22987f34995ee939',1,'ERF']]], + ['thin_5fzforce_4394',['thin_zforce',['../classERF.html#a56a23d298bc66218bf257d0e793e341f',1,'ERF']]], + ['third_4395',['third',['../classModalAeroWateruptake.html#a77bdba258f0d10234a98a54a39a5fb7f',1,'ModalAeroWateruptake']]], + ['thrust_5fcoeff_4396',['thrust_coeff',['../classEWP.html#a9cdc57dc5a1a63c4a4e62ba85dffecc4',1,'EWP::thrust_coeff()'],['../classFitch.html#a7cafd25264dba6194d42285153683f34',1,'Fitch::thrust_coeff()'],['../classSimpleAD.html#a0d915eaf360210453a081a2b721d0fa0',1,'SimpleAD::thrust_coeff()'],['../classWindFarm.html#a8d5e6333f2f9f8e36dfd4766ad171b84',1,'WindFarm::thrust_coeff()']]], + ['thrust_5fcoeff_5fstanding_4397',['thrust_coeff_standing',['../classFitch.html#adc5df318361103709d0fa5421358e29d',1,'Fitch::thrust_coeff_standing()'],['../classEWP.html#a22f50393881ced019cae2a74ee04cdea',1,'EWP::thrust_coeff_standing()'],['../classWindFarm.html#ab8d68a72cf4346074daf47f825eff105',1,'WindFarm::thrust_coeff_standing()'],['../classSimpleAD.html#a1665d726556fc42558e77fe94e732d43',1,'SimpleAD::thrust_coeff_standing()']]], + ['time_5favg_5fvel_4398',['time_avg_vel',['../structSolverChoice.html#af3119a4089367206db9fc3a17664e874',1,'SolverChoice']]], + ['timestep_4399',['timestep',['../classMRISplitIntegrator.html#a3f21bedf222ce95136d4889012401612',1,'MRISplitIntegrator']]], + ['tint_4400',['tint',['../classRadiation.html#a76bb14b6a6eafd04ffad69f50547be41',1,'Radiation']]], + ['tmax_4401',['tmax',['../classWaterVaporSat.html#a8e168a8ca074d530d7afe596739270b4',1,'WaterVaporSat']]], + ['tmelt_4402',['tmelt',['../ERF__Constants_8H.html#a764526b482e006cd52004d3f53467b57',1,'ERF_Constants.H']]], + ['tmid_4403',['tmid',['../classRadiation.html#ac1ed1e73ee4f8832a699967c8354bd6e',1,'Radiation']]], + ['tmin_4404',['tmin',['../classWaterVaporSat.html#ac7a0c53f3985416b26f43135e25accca',1,'WaterVaporSat']]], + ['tol_4405',['tol',['../structWENO__Z3.html#aec489e3be4dbc31eb46b729b8510fdfc',1,'WENO_Z3::tol()'],['../structWENO__MZQ3.html#af1d30022fe1ebe59529f45843dff3ae5',1,'WENO_MZQ3::tol()'],['../structWENO__Z5.html#af5daab47aa96e124f3bf0508489e3017',1,'WENO_Z5::tol()'],['../structadiabatic__charnock.html#abb822b2278b8cd500c6fb0fb0a028709',1,'adiabatic_charnock::tol()']]], + ['tol_4406',['TOL',['../namespaceHSEutils.html#aace33d14958f235a111e6cead400a61e',1,'HSEutils']]], + ['tol_4407',['tol',['../structWENO3.html#aa09b52432a69d89bef16a06015252661',1,'WENO3::tol()'],['../structsurface__flux__wave__coupled.html#a928bb0b9a4141fc6452c6f83fbec58aa',1,'surface_flux_wave_coupled::tol()'],['../structsurface__temp.html#a7c4031cfb8cbb020115ee7fae12ddb05',1,'surface_temp::tol()'],['../structsurface__temp__charnock.html#ab1cdc86ca25ac91cb375348372f2ddf1',1,'surface_temp_charnock::tol()'],['../structsurface__flux__mod__charnock.html#ac01a07a59f56ff6683dd9942b4d500ba',1,'surface_flux_mod_charnock::tol()'],['../structsurface__flux__charnock.html#a08529386a7d5012684c818249a7d76ba',1,'surface_flux_charnock::tol()'],['../structsurface__flux.html#abd16b92a75ae384f9fe490b59f046b6a',1,'surface_flux::tol()'],['../structadiabatic__wave__coupled.html#ad18802ec131991fbaaebfb80a1a12d07',1,'adiabatic_wave_coupled::tol()'],['../structadiabatic__mod__charnock.html#a8a007e09d416f6879b7ba68c7e4ac29e',1,'adiabatic_mod_charnock::tol()'],['../structWENO5.html#a99f8a8620164e0e1460c7bce55ec3b02',1,'WENO5::tol()'],['../structsurface__temp__mod__charnock.html#a77dc7e5a012fbe6066fa21f57145c938',1,'surface_temp_mod_charnock::tol()'],['../structsurface__temp__wave__coupled.html#a3715864e9c6bfdc6e4556925d0fc48fa',1,'surface_temp_wave_coupled::tol()']]], + ['top_5flev_4408',['top_lev',['../classMam4__aer.html#ae15e0c356e4fed002069ecd5d8bb33af',1,'Mam4_aer::top_lev()'],['../classAerRadProps.html#a83216edbd2d57b575f1869df38a1b668',1,'AerRadProps::top_lev()']]], + ['tpi_5fboxdim_4409',['tpi_boxDim',['../structTurbulentPerturbation.html#ab90f89bf4bf3d497f88c27d1b92f3d39',1,'TurbulentPerturbation']]], + ['tpi_5fdirection_4410',['tpi_direction',['../structTurbulentPerturbation.html#af2a72d18ce8c0f5bc011d3682ad93e0f',1,'TurbulentPerturbation']]], + ['tpi_5fhpb_4411',['tpi_Hpb',['../structTurbulentPerturbation.html#aef47959ab81660b54f583a7304816ef4',1,'TurbulentPerturbation']]], + ['tpi_5flayers_4412',['tpi_layers',['../structTurbulentPerturbation.html#a17f060634e44ba5701cc1febba23c915',1,'TurbulentPerturbation']]], + ['tpi_5flpb_4413',['tpi_Lpb',['../structTurbulentPerturbation.html#a22bb01b7314fa13bdfc1966456f5deed',1,'TurbulentPerturbation']]], + ['tpi_5flref_4414',['tpi_lref',['../structTurbulentPerturbation.html#ab3db22cfce521750d46e44ed93c49bb8',1,'TurbulentPerturbation']]], + ['tpi_5fnet_5fbuoyant_4415',['tpi_net_buoyant',['../structTurbulentPerturbation.html#adaf88736c8d43a23f8bb3eb8065f0b84',1,'TurbulentPerturbation']]], + ['tpi_5fnondim_4416',['tpi_nonDim',['../structTurbulentPerturbation.html#abe0155dd9b530c537b1f639ab4dc8691',1,'TurbulentPerturbation']]], + ['tpi_5foffset_4417',['tpi_offset',['../structTurbulentPerturbation.html#a7bcb39c84b03deefaa166c89f22c229c',1,'TurbulentPerturbation']]], + ['tpi_5fpert_5fadjust_4418',['tpi_pert_adjust',['../structTurbulentPerturbation.html#aa4e6ee511ae71277885d87f5aa2ddad3',1,'TurbulentPerturbation']]], + ['tpi_5fti_4419',['tpi_Ti',['../structTurbulentPerturbation.html#aa2c2e894fc858d8cdaa9cde0092e896e',1,'TurbulentPerturbation']]], + ['tpi_5ftinf_4420',['tpi_Tinf',['../structTurbulentPerturbation.html#a20940c88c5c2f6ef1b90d1984867777a',1,'TurbulentPerturbation']]], + ['tpi_5fwpb_4421',['tpi_Wpb',['../structTurbulentPerturbation.html#a21d9b84c0b8eac4d49ae5ca764247442',1,'TurbulentPerturbation']]], + ['tprmax_4422',['tprmax',['../ERF__Constants_8H.html#a06a70c05086650ead098e2994ad1bd43',1,'ERF_Constants.H']]], + ['tprmin_4423',['tprmin',['../ERF__Constants_8H.html#a9180d622aa39d89312941eba03fa1347',1,'ERF_Constants.H']]], + ['ttrice_4424',['ttrice',['../ERF__Constants_8H.html#a9b3da60e1e65429fe546d18c9c926105',1,'ERF_Constants.H']]], + ['turbchoice_4425',['turbChoice',['../structSolverChoice.html#aa53b017d79e0067923180a0aa59367b4',1,'SolverChoice']]], + ['turbpert_4426',['turbPert',['../classERF.html#ac1b9cce4a3c1736c4af78f6b0e2143ce',1,'ERF']]], + ['type_4427',['type',['../structMamConstituents_1_1mode__component__t.html#a96f5cdd50364b1e2760b1cb4e88cd153',1,'MamConstituents::mode_component_t']]], + ['types_4428',['types',['../structMamConstituents_1_1modes__t.html#aea58b375f13ddc20860b2bd2a183899b',1,'MamConstituents::modes_t']]] ]; diff --git a/search/variables_14.js b/search/variables_14.js index cf6bb963c9..c473466037 100644 --- a/search/variables_14.js +++ b/search/variables_14.js @@ -1,28 +1,28 @@ var searchData= [ - ['u_5finp_5fsound_4421',['U_inp_sound',['../structInputSoundingData.html#a92f73e73fbc10bb7cbc1ba38155879f6',1,'InputSoundingData']]], - ['u_5finp_5fsound_5fd_4422',['U_inp_sound_d',['../structInputSoundingData.html#aab7841d6e2803dd86596604d85411d8d',1,'InputSoundingData']]], - ['u_5finp_5fsponge_4423',['U_inp_sponge',['../structInputSpongeData.html#aece8029ec7a192a21d88a796ada8e917',1,'InputSpongeData']]], - ['u_5fstar_4424',['u_star',['../classABLMost.html#acd5510d2f47502a57107f12c66f8a552',1,'ABLMost']]], - ['uniform_5fangle_4425',['uniform_angle',['../classRadiation.html#aedbf9cc7e81f84db53d0145a3c18727a',1,'Radiation']]], - ['uniquefilenames_4426',['uniquefilenames',['../classPhysProp.html#a4bc8ab2d58a26e16bea177aa9ea70b57',1,'PhysProp']]], - ['use_5fcoriolis_4427',['use_coriolis',['../structSolverChoice.html#a9e86533aa6df5bf6408d91f0dfd23606',1,'SolverChoice']]], - ['use_5fefficient_5fadvection_4428',['use_efficient_advection',['../structAdvChoice.html#a50c43113d4bd0ccaf9f1878134f00bb8',1,'AdvChoice']]], - ['use_5fexplicit_5fmost_4429',['use_explicit_most',['../structSolverChoice.html#a15db794855101421e20ba970dcd634e9',1,'SolverChoice']]], - ['use_5fgravity_4430',['use_gravity',['../structSolverChoice.html#a3ab48411073a3c1f75435292d7b407e5',1,'SolverChoice']]], - ['use_5flagged_5fdelta_5frt_4431',['use_lagged_delta_rt',['../structSolverChoice.html#a0e2a9a1ec68a94b24dc8f3f6d8bb7af0',1,'SolverChoice']]], - ['use_5fmoist_5fbackground_4432',['use_moist_background',['../structSolverChoice.html#aab88dd74d39b1ad369ae6324e05d7a35',1,'SolverChoice']]], - ['use_5fmoisture_4433',['use_moisture',['../classABLMost.html#ab55a547b6b74a177128af6c6a107930c',1,'ABLMost']]], - ['use_5fmono_5fadv_4434',['use_mono_adv',['../structSolverChoice.html#a3660145ad90d59b2a6693fd88bb01381',1,'SolverChoice']]], - ['use_5fnumdiff_4435',['use_NumDiff',['../structSolverChoice.html#aa2de671156cccf1f3a34b9f250fb0e28',1,'SolverChoice']]], - ['use_5fqke_4436',['use_QKE',['../structTurbChoice.html#a81d6903354abbc64e7dc12b7da91070b',1,'TurbChoice']]], - ['use_5frad_5fdt_5fcosz_4437',['use_rad_dt_cosz',['../classRadiation.html#a18cd8ea8ce343768fc2f630bcda8629d',1,'Radiation']]], - ['use_5freal_5fbcs_4438',['use_real_bcs',['../classERF.html#a86208285bf705f360a3c318a75097f61',1,'ERF']]], - ['use_5fterrain_4439',['use_terrain',['../structSolverChoice.html#a063a88594452100497651e8aaf1f68d7',1,'SolverChoice']]], - ['use_5fxhi_5fsponge_5fdamping_4440',['use_xhi_sponge_damping',['../structSpongeChoice.html#a980e2c4485a0769eb0405a77445e3db1',1,'SpongeChoice']]], - ['use_5fxlo_5fsponge_5fdamping_4441',['use_xlo_sponge_damping',['../structSpongeChoice.html#a0d60faef2ee2597c1df7807fc25204e2',1,'SpongeChoice']]], - ['use_5fyhi_5fsponge_5fdamping_4442',['use_yhi_sponge_damping',['../structSpongeChoice.html#ae2907fb8c5755c951b765b7d835013f6',1,'SpongeChoice']]], - ['use_5fylo_5fsponge_5fdamping_4443',['use_ylo_sponge_damping',['../structSpongeChoice.html#a5e3fe59ec39bd6ed95b33bd568dd711b',1,'SpongeChoice']]], - ['use_5fzhi_5fsponge_5fdamping_4444',['use_zhi_sponge_damping',['../structSpongeChoice.html#ac335f4f1640ad959aadb8e9054c3fda2',1,'SpongeChoice']]], - ['use_5fzlo_5fsponge_5fdamping_4445',['use_zlo_sponge_damping',['../structSpongeChoice.html#a2ac1def940f7e6666a1076be69b3cc33',1,'SpongeChoice']]] + ['u_5finp_5fsound_4429',['U_inp_sound',['../structInputSoundingData.html#a92f73e73fbc10bb7cbc1ba38155879f6',1,'InputSoundingData']]], + ['u_5finp_5fsound_5fd_4430',['U_inp_sound_d',['../structInputSoundingData.html#aab7841d6e2803dd86596604d85411d8d',1,'InputSoundingData']]], + ['u_5finp_5fsponge_4431',['U_inp_sponge',['../structInputSpongeData.html#aece8029ec7a192a21d88a796ada8e917',1,'InputSpongeData']]], + ['u_5fstar_4432',['u_star',['../classABLMost.html#acd5510d2f47502a57107f12c66f8a552',1,'ABLMost']]], + ['uniform_5fangle_4433',['uniform_angle',['../classRadiation.html#aedbf9cc7e81f84db53d0145a3c18727a',1,'Radiation']]], + ['uniquefilenames_4434',['uniquefilenames',['../classPhysProp.html#a4bc8ab2d58a26e16bea177aa9ea70b57',1,'PhysProp']]], + ['use_5fcoriolis_4435',['use_coriolis',['../structSolverChoice.html#a9e86533aa6df5bf6408d91f0dfd23606',1,'SolverChoice']]], + ['use_5fefficient_5fadvection_4436',['use_efficient_advection',['../structAdvChoice.html#a50c43113d4bd0ccaf9f1878134f00bb8',1,'AdvChoice']]], + ['use_5fexplicit_5fmost_4437',['use_explicit_most',['../structSolverChoice.html#a15db794855101421e20ba970dcd634e9',1,'SolverChoice']]], + ['use_5fgravity_4438',['use_gravity',['../structSolverChoice.html#a3ab48411073a3c1f75435292d7b407e5',1,'SolverChoice']]], + ['use_5flagged_5fdelta_5frt_4439',['use_lagged_delta_rt',['../structSolverChoice.html#a0e2a9a1ec68a94b24dc8f3f6d8bb7af0',1,'SolverChoice']]], + ['use_5fmoist_5fbackground_4440',['use_moist_background',['../structSolverChoice.html#aab88dd74d39b1ad369ae6324e05d7a35',1,'SolverChoice']]], + ['use_5fmoisture_4441',['use_moisture',['../classABLMost.html#ab55a547b6b74a177128af6c6a107930c',1,'ABLMost']]], + ['use_5fmono_5fadv_4442',['use_mono_adv',['../structSolverChoice.html#a3660145ad90d59b2a6693fd88bb01381',1,'SolverChoice']]], + ['use_5fnumdiff_4443',['use_NumDiff',['../structSolverChoice.html#aa2de671156cccf1f3a34b9f250fb0e28',1,'SolverChoice']]], + ['use_5fqke_4444',['use_QKE',['../structTurbChoice.html#a81d6903354abbc64e7dc12b7da91070b',1,'TurbChoice']]], + ['use_5frad_5fdt_5fcosz_4445',['use_rad_dt_cosz',['../classRadiation.html#a18cd8ea8ce343768fc2f630bcda8629d',1,'Radiation']]], + ['use_5freal_5fbcs_4446',['use_real_bcs',['../classERF.html#a86208285bf705f360a3c318a75097f61',1,'ERF']]], + ['use_5fterrain_4447',['use_terrain',['../structSolverChoice.html#a063a88594452100497651e8aaf1f68d7',1,'SolverChoice']]], + ['use_5fxhi_5fsponge_5fdamping_4448',['use_xhi_sponge_damping',['../structSpongeChoice.html#a980e2c4485a0769eb0405a77445e3db1',1,'SpongeChoice']]], + ['use_5fxlo_5fsponge_5fdamping_4449',['use_xlo_sponge_damping',['../structSpongeChoice.html#a0d60faef2ee2597c1df7807fc25204e2',1,'SpongeChoice']]], + ['use_5fyhi_5fsponge_5fdamping_4450',['use_yhi_sponge_damping',['../structSpongeChoice.html#ae2907fb8c5755c951b765b7d835013f6',1,'SpongeChoice']]], + ['use_5fylo_5fsponge_5fdamping_4451',['use_ylo_sponge_damping',['../structSpongeChoice.html#a5e3fe59ec39bd6ed95b33bd568dd711b',1,'SpongeChoice']]], + ['use_5fzhi_5fsponge_5fdamping_4452',['use_zhi_sponge_damping',['../structSpongeChoice.html#ac335f4f1640ad959aadb8e9054c3fda2',1,'SpongeChoice']]], + ['use_5fzlo_5fsponge_5fdamping_4453',['use_zlo_sponge_damping',['../structSpongeChoice.html#a2ac1def940f7e6666a1076be69b3cc33',1,'SpongeChoice']]] ]; diff --git a/search/variables_15.js b/search/variables_15.js index 231f6f900c..d1fbac560b 100644 --- a/search/variables_15.js +++ b/search/variables_15.js @@ -1,13 +1,13 @@ var searchData= [ - ['v_5finp_5fsound_4446',['V_inp_sound',['../structInputSoundingData.html#a97a1970935e36fc0ba9a69fa0032883d',1,'InputSoundingData']]], - ['v_5finp_5fsound_5fd_4447',['V_inp_sound_d',['../structInputSoundingData.html#a22697746622cd5f3239120eaaa71abdc',1,'InputSoundingData']]], - ['v_5finp_5fsponge_4448',['V_inp_sponge',['../structInputSpongeData.html#a8cc25a2bbb25e676dadc57cf3e8f6db1',1,'InputSpongeData']]], - ['varid_4449',['varid',['../structncutils_1_1NCVar.html#a2dce982c1ddb8f3b89b071bc3bf15532',1,'ncutils::NCVar']]], - ['varname_4450',['varname',['../classNullSurf.html#ae096eaa2ce9385fabf5692c6a7ac6c26',1,'NullSurf']]], - ['vars_5fnew_4451',['vars_new',['../classERF.html#a1204ca4dc5d79f5da191ffbe09dfab9b',1,'ERF']]], - ['vars_5fold_4452',['vars_old',['../classERF.html#af31e928baa970a1507dfb0233b352542',1,'ERF']]], - ['vel_5ft_5favg_4453',['vel_t_avg',['../classERF.html#a3e146164ca6929ec6d4984b6a3f43c81',1,'ERF']]], - ['verbose_4454',['verbose',['../classERF.html#a43d0b17f6e155691a1e9474526df3af5',1,'ERF']]], - ['void_5fbc_4455',['void_bc',['../InteriorGhostCells_8cpp.html#ab53ca744a656082f128b68f819aacbf5',1,'InteriorGhostCells.cpp']]] + ['v_5finp_5fsound_4454',['V_inp_sound',['../structInputSoundingData.html#a97a1970935e36fc0ba9a69fa0032883d',1,'InputSoundingData']]], + ['v_5finp_5fsound_5fd_4455',['V_inp_sound_d',['../structInputSoundingData.html#a22697746622cd5f3239120eaaa71abdc',1,'InputSoundingData']]], + ['v_5finp_5fsponge_4456',['V_inp_sponge',['../structInputSpongeData.html#a8cc25a2bbb25e676dadc57cf3e8f6db1',1,'InputSpongeData']]], + ['varid_4457',['varid',['../structncutils_1_1NCVar.html#a2dce982c1ddb8f3b89b071bc3bf15532',1,'ncutils::NCVar']]], + ['varname_4458',['varname',['../classNullSurf.html#ae096eaa2ce9385fabf5692c6a7ac6c26',1,'NullSurf']]], + ['vars_5fnew_4459',['vars_new',['../classERF.html#a1204ca4dc5d79f5da191ffbe09dfab9b',1,'ERF']]], + ['vars_5fold_4460',['vars_old',['../classERF.html#af31e928baa970a1507dfb0233b352542',1,'ERF']]], + ['vel_5ft_5favg_4461',['vel_t_avg',['../classERF.html#a3e146164ca6929ec6d4984b6a3f43c81',1,'ERF']]], + ['verbose_4462',['verbose',['../classERF.html#a43d0b17f6e155691a1e9474526df3af5',1,'ERF']]], + ['void_5fbc_4463',['void_bc',['../InteriorGhostCells_8cpp.html#ab53ca744a656082f128b68f819aacbf5',1,'InteriorGhostCells.cpp']]] ]; diff --git a/search/variables_16.js b/search/variables_16.js index bc49c10642..314aa12d60 100644 --- a/search/variables_16.js +++ b/search/variables_16.js @@ -1,16 +1,16 @@ var searchData= [ - ['water_5frefindex_5ffile_4456',['water_refindex_file',['../classMam4__aer.html#a57f3e715abe0988dd7179e11ce4bdcff',1,'Mam4_aer']]], - ['wavenum_5fhigh_4457',['wavenum_high',['../classRadConstants.html#a06d010a733e82bb2e8a6651c6e92cf51',1,'RadConstants']]], - ['wavenum_5flow_4458',['wavenum_low',['../classRadConstants.html#ab658087eff73ea76e37a41701497b79d',1,'RadConstants']]], - ['wavenumber1_5flongwave_4459',['wavenumber1_longwave',['../classRadConstants.html#add60bb42895c11810559d8bb753c1e63',1,'RadConstants']]], - ['wavenumber2_5flongwave_4460',['wavenumber2_longwave',['../classRadConstants.html#a86731ed9c7d8c8f4b269f79606c89ba1',1,'RadConstants']]], - ['wetdens_5fm_4461',['wetdens_m',['../classMam4__aer.html#aba67cb233002e4fd50c766e73ec3d022',1,'Mam4_aer']]], - ['wgtn_4462',['wgtn',['../structLinInterp_1_1InterpType.html#aa3befaac92860602bab896110eeb65da',1,'LinInterp::InterpType']]], - ['wgts_4463',['wgts',['../structLinInterp_1_1InterpType.html#a445ddb0a782f40cab78521e5fdc3bd8b',1,'LinInterp::InterpType']]], - ['wind_5fspeed_4464',['wind_speed',['../classEWP.html#a30275b7045b523cfe7afb5683f66d87a',1,'EWP::wind_speed()'],['../classFitch.html#aed06c922f243b8a80c17d17770430af5',1,'Fitch::wind_speed()'],['../classSimpleAD.html#a171f86e19e21f7c5632ca2c459d489f5',1,'SimpleAD::wind_speed()'],['../classWindFarm.html#a5d1dbc2f5df3a2ee2b239f04b82a2c6b',1,'WindFarm::wind_speed()']]], - ['windfarm_5floc_5ftable_4465',['windfarm_loc_table',['../structSolverChoice.html#a44bc0227f088664e4e2c1090ebb1381d',1,'SolverChoice']]], - ['windfarm_5floc_5ftype_4466',['windfarm_loc_type',['../structSolverChoice.html#a54214b71edb43f251f04b79281c39375',1,'SolverChoice']]], - ['windfarm_5fspec_5ftable_4467',['windfarm_spec_table',['../structSolverChoice.html#a34c427126677860aa8acad633e6fb2be',1,'SolverChoice']]], - ['windfarm_5ftype_4468',['windfarm_type',['../structSolverChoice.html#ac0a723e8797cdc0fe06b3fc781fca645',1,'SolverChoice']]] + ['water_5frefindex_5ffile_4464',['water_refindex_file',['../classMam4__aer.html#a57f3e715abe0988dd7179e11ce4bdcff',1,'Mam4_aer']]], + ['wavenum_5fhigh_4465',['wavenum_high',['../classRadConstants.html#a06d010a733e82bb2e8a6651c6e92cf51',1,'RadConstants']]], + ['wavenum_5flow_4466',['wavenum_low',['../classRadConstants.html#ab658087eff73ea76e37a41701497b79d',1,'RadConstants']]], + ['wavenumber1_5flongwave_4467',['wavenumber1_longwave',['../classRadConstants.html#add60bb42895c11810559d8bb753c1e63',1,'RadConstants']]], + ['wavenumber2_5flongwave_4468',['wavenumber2_longwave',['../classRadConstants.html#a86731ed9c7d8c8f4b269f79606c89ba1',1,'RadConstants']]], + ['wetdens_5fm_4469',['wetdens_m',['../classMam4__aer.html#aba67cb233002e4fd50c766e73ec3d022',1,'Mam4_aer']]], + ['wgtn_4470',['wgtn',['../structLinInterp_1_1InterpType.html#aa3befaac92860602bab896110eeb65da',1,'LinInterp::InterpType']]], + ['wgts_4471',['wgts',['../structLinInterp_1_1InterpType.html#a445ddb0a782f40cab78521e5fdc3bd8b',1,'LinInterp::InterpType']]], + ['wind_5fspeed_4472',['wind_speed',['../classEWP.html#a30275b7045b523cfe7afb5683f66d87a',1,'EWP::wind_speed()'],['../classFitch.html#aed06c922f243b8a80c17d17770430af5',1,'Fitch::wind_speed()'],['../classSimpleAD.html#a171f86e19e21f7c5632ca2c459d489f5',1,'SimpleAD::wind_speed()'],['../classWindFarm.html#a5d1dbc2f5df3a2ee2b239f04b82a2c6b',1,'WindFarm::wind_speed()']]], + ['windfarm_5floc_5ftable_4473',['windfarm_loc_table',['../structSolverChoice.html#a44bc0227f088664e4e2c1090ebb1381d',1,'SolverChoice']]], + ['windfarm_5floc_5ftype_4474',['windfarm_loc_type',['../structSolverChoice.html#a54214b71edb43f251f04b79281c39375',1,'SolverChoice']]], + ['windfarm_5fspec_5ftable_4475',['windfarm_spec_table',['../structSolverChoice.html#a34c427126677860aa8acad633e6fb2be',1,'SolverChoice']]], + ['windfarm_5ftype_4476',['windfarm_type',['../structSolverChoice.html#ac0a723e8797cdc0fe06b3fc781fca645',1,'SolverChoice']]] ]; diff --git a/search/variables_17.js b/search/variables_17.js index 1f9b6eb18c..3798704cba 100644 --- a/search/variables_17.js +++ b/search/variables_17.js @@ -1,10 +1,10 @@ var searchData= [ - ['xflux_5fimask_4469',['xflux_imask',['../classERF.html#af044f075df34caa2a530aa13e1801a5b',1,'ERF']]], - ['xhi_5fsponge_5fstart_4470',['xhi_sponge_start',['../structSpongeChoice.html#aec7c88a5686affc9c0ff6f9bb53fbd9f',1,'SpongeChoice']]], - ['xlo_5fsponge_5fend_4471',['xlo_sponge_end',['../structSpongeChoice.html#a18f392fd75ac69b62674b70ee67b9c61',1,'SpongeChoice']]], - ['xloc_4472',['xloc',['../classEWP.html#a71d81573a989603580abd5dc33d85619',1,'EWP::xloc()'],['../classFitch.html#a6ee3e00c1e1678e194aa6e6e27e8b7b5',1,'Fitch::xloc()'],['../classSimpleAD.html#a6ea1373509429d435aa5fd40807586b7',1,'SimpleAD::xloc()'],['../classWindFarm.html#ac1bd117bca25527ede4ea107ad22b07c',1,'WindFarm::xloc()']]], - ['xrmax_4473',['xrmax',['../classMam4__aer.html#afe9a0c7a84cd95438887533485fcc382',1,'Mam4_aer']]], - ['xrmin_4474',['xrmin',['../classMam4__aer.html#aa8d09180d0858fe4465698618a2a7391',1,'Mam4_aer']]], - ['xvel_5fbc_5fdata_4475',['xvel_bc_data',['../classERF.html#a81a98263940c84b971e52fe555a7b98d',1,'ERF']]] + ['xflux_5fimask_4477',['xflux_imask',['../classERF.html#af044f075df34caa2a530aa13e1801a5b',1,'ERF']]], + ['xhi_5fsponge_5fstart_4478',['xhi_sponge_start',['../structSpongeChoice.html#aec7c88a5686affc9c0ff6f9bb53fbd9f',1,'SpongeChoice']]], + ['xlo_5fsponge_5fend_4479',['xlo_sponge_end',['../structSpongeChoice.html#a18f392fd75ac69b62674b70ee67b9c61',1,'SpongeChoice']]], + ['xloc_4480',['xloc',['../classEWP.html#a71d81573a989603580abd5dc33d85619',1,'EWP::xloc()'],['../classFitch.html#a6ee3e00c1e1678e194aa6e6e27e8b7b5',1,'Fitch::xloc()'],['../classSimpleAD.html#a6ea1373509429d435aa5fd40807586b7',1,'SimpleAD::xloc()'],['../classWindFarm.html#ac1bd117bca25527ede4ea107ad22b07c',1,'WindFarm::xloc()']]], + ['xrmax_4481',['xrmax',['../classMam4__aer.html#afe9a0c7a84cd95438887533485fcc382',1,'Mam4_aer']]], + ['xrmin_4482',['xrmin',['../classMam4__aer.html#aa8d09180d0858fe4465698618a2a7391',1,'Mam4_aer']]], + ['xvel_5fbc_5fdata_4483',['xvel_bc_data',['../classERF.html#a81a98263940c84b971e52fe555a7b98d',1,'ERF']]] ]; diff --git a/search/variables_18.js b/search/variables_18.js index 1173be57d4..c339d6328f 100644 --- a/search/variables_18.js +++ b/search/variables_18.js @@ -1,8 +1,8 @@ var searchData= [ - ['yflux_5fimask_4476',['yflux_imask',['../classERF.html#aa4448d06a3e4fe9740927a636030939d',1,'ERF']]], - ['yhi_5fsponge_5fstart_4477',['yhi_sponge_start',['../structSpongeChoice.html#adacf43edb29544376743fa98ce7d8cb6',1,'SpongeChoice']]], - ['ylo_5fsponge_5fend_4478',['ylo_sponge_end',['../structSpongeChoice.html#afc444169c9f347bb2e3dd4eb99bc4158',1,'SpongeChoice']]], - ['yloc_4479',['yloc',['../classEWP.html#ad5aa60df138d71a40225791390e169e7',1,'EWP::yloc()'],['../classFitch.html#a2626dfdc3df0f209b2bcf6a265575228',1,'Fitch::yloc()'],['../classSimpleAD.html#a83857d42fc25895b88b10b52af871b3d',1,'SimpleAD::yloc()'],['../classWindFarm.html#a18280646bd55077f0a59ea45506a630b',1,'WindFarm::yloc()']]], - ['yvel_5fbc_5fdata_4480',['yvel_bc_data',['../classERF.html#af1921b4091015ef81ef6531d676a6b48',1,'ERF']]] + ['yflux_5fimask_4484',['yflux_imask',['../classERF.html#aa4448d06a3e4fe9740927a636030939d',1,'ERF']]], + ['yhi_5fsponge_5fstart_4485',['yhi_sponge_start',['../structSpongeChoice.html#adacf43edb29544376743fa98ce7d8cb6',1,'SpongeChoice']]], + ['ylo_5fsponge_5fend_4486',['ylo_sponge_end',['../structSpongeChoice.html#afc444169c9f347bb2e3dd4eb99bc4158',1,'SpongeChoice']]], + ['yloc_4487',['yloc',['../classEWP.html#ad5aa60df138d71a40225791390e169e7',1,'EWP::yloc()'],['../classFitch.html#a2626dfdc3df0f209b2bcf6a265575228',1,'Fitch::yloc()'],['../classSimpleAD.html#a83857d42fc25895b88b10b52af871b3d',1,'SimpleAD::yloc()'],['../classWindFarm.html#a18280646bd55077f0a59ea45506a630b',1,'WindFarm::yloc()']]], + ['yvel_5fbc_5fdata_4488',['yvel_bc_data',['../classERF.html#af1921b4091015ef81ef6531d676a6b48',1,'ERF']]] ]; diff --git a/search/variables_19.js b/search/variables_19.js index c9dab385ae..c25e3873c0 100644 --- a/search/variables_19.js +++ b/search/variables_19.js @@ -1,29 +1,29 @@ var searchData= [ - ['z0_5fconst_4481',['z0_const',['../structmost__data.html#ad18b8055b6887e821efe0c37c4076d08',1,'most_data::z0_const()'],['../classABLMost.html#acfc9a08ed0d029602e2e8e99232d0149',1,'ABLMost::z0_const()']]], - ['z0_5feps_4482',['z0_eps',['../structsurface__flux__wave__coupled.html#a6cf8c26b09960af5adea37c6e7ccbb0b',1,'surface_flux_wave_coupled::z0_eps()'],['../structsurface__temp__wave__coupled.html#abd39570dca269dda79fbb946df0a02ca',1,'surface_temp_wave_coupled::z0_eps()'],['../structadiabatic__wave__coupled.html#a7cbf5ad24a59a72131bae5b57038ff72',1,'adiabatic_wave_coupled::z0_eps()']]], - ['z0_5fmax_4483',['z0_max',['../structadiabatic__wave__coupled.html#afb0e6712baaff337c761988f6ec42b9b',1,'adiabatic_wave_coupled::z0_max()'],['../structsurface__flux__wave__coupled.html#a4f273873e2304563f10674c497cfad30',1,'surface_flux_wave_coupled::z0_max()'],['../structsurface__temp__wave__coupled.html#aedbd53ee9bf7b4c98f5a2b88207cbb01',1,'surface_temp_wave_coupled::z0_max()']]], - ['z_5f0_4484',['z_0',['../classABLMost.html#a1301dd4cb6875c7bdf5d69126b972f91',1,'ABLMost']]], - ['z_5finp_5fsound_4485',['z_inp_sound',['../structInputSoundingData.html#a0a3d15e3959ce900c213a09230e6646c',1,'InputSoundingData']]], - ['z_5finp_5fsound_5fd_4486',['z_inp_sound_d',['../structInputSoundingData.html#aba43c1b1c5b71ca118d6967f1e4a32bb',1,'InputSoundingData']]], - ['z_5finp_5fsponge_4487',['z_inp_sponge',['../structInputSpongeData.html#ae430ab35b7ded846911bd26b0d984155',1,'InputSpongeData']]], - ['z_5fphys_5fcc_4488',['z_phys_cc',['../classERF.html#a31be0f1ae705c52c8ccc520369013284',1,'ERF']]], - ['z_5fphys_5fnd_4489',['z_phys_nd',['../classERF.html#a93e63e5af35efa564fd4195e8703f84c',1,'ERF']]], - ['z_5fphys_5fnd_5fnew_4490',['z_phys_nd_new',['../classERF.html#a4ef635c22e72c715f5703a6b95a7abe5',1,'ERF']]], - ['z_5fphys_5fnd_5fsrc_4491',['z_phys_nd_src',['../classERF.html#a30dcf40e8f104fb6b6132805d2eff47c',1,'ERF']]], - ['z_5ft_5frk_4492',['z_t_rk',['../classERF.html#a72a59614c6d5ab840b924c84d5682270',1,'ERF']]], - ['zero_5fxflux_4493',['zero_xflux',['../structAdvChoice.html#a7a086b9e2aabb65d2e5e9053e7bd6018',1,'AdvChoice']]], - ['zero_5fyflux_4494',['zero_yflux',['../structAdvChoice.html#a118575fe302e72fcd231e77be6d117a9',1,'AdvChoice']]], - ['zero_5fzflux_4495',['zero_zflux',['../structAdvChoice.html#a7da4e5242e05aeba4822b71fab596954',1,'AdvChoice']]], - ['zflux_5fimask_4496',['zflux_imask',['../classERF.html#ada098767690d194f89717b0deb3adeac',1,'ERF']]], - ['zhi_4497',['zhi',['../classKessler.html#a8f1c8af54c49e78271d077456c3aa454',1,'Kessler::zhi()'],['../classSAM.html#aaf2fc082e80f1c5cc9de339ff25ca27b',1,'SAM::zhi()'],['../classRadiation.html#ac182d77504c899dee3ff639c2a8e93c6',1,'Radiation::zhi()']]], - ['zhi_5fsponge_5fstart_4498',['zhi_sponge_start',['../structSpongeChoice.html#a5e70ccbf1d7de42a4d938416635eee36',1,'SpongeChoice']]], - ['zi_4499',['zi',['../classAerRadProps.html#ac82b4bf91bb3a23e33074e00381388e3',1,'AerRadProps::zi()'],['../classRadiation.html#a7fd0d1f49797bc9d2c248cd334b44e36',1,'Radiation::zi()']]], - ['zlevels_5fstag_4500',['zlevels_stag',['../classERF.html#a7a4d6e7887fa8f30c33a0b8899035ddb',1,'ERF']]], - ['zlo_4501',['zlo',['../structdonelan__flux.html#af7428f0272064ef770035521c9c9a98b',1,'donelan_flux::zlo()'],['../classRadiation.html#add5e5480ecd2c337c1e52e47d62ebaa0',1,'Radiation::zlo()'],['../classSAM.html#a0473906305a6eaea0bad212893b9c911',1,'SAM::zlo()'],['../classKessler.html#a02b5caebac4d5986947655feca7f0db5',1,'Kessler::zlo()'],['../structcustom__flux.html#a3b40812bce1c4be2d850abe1bbc2d208',1,'custom_flux::zlo()'],['../structmoeng__flux.html#a32dd97697698052a006613da3a0b7e67',1,'moeng_flux::zlo()']]], - ['zlo_5fsponge_5fend_4502',['zlo_sponge_end',['../structSpongeChoice.html#a1a79f8e32354ec98857597ddabfe884e',1,'SpongeChoice']]], - ['zmid_4503',['zmid',['../classSAM.html#a5a5228929f2e9032152efe0a5cb9476b',1,'SAM']]], - ['zref_4504',['zref',['../structmost__data.html#a1acd5276639042ca0834c56656302ea6',1,'most_data']]], - ['zsurf_4505',['zsurf',['../structSolverChoice.html#aa4659e9babdc5d7327266f967d9a80ff',1,'SolverChoice']]], - ['zvel_5fbc_5fdata_4506',['zvel_bc_data',['../classERF.html#a7eaa274e3e2193a19bfbe3e684bf692b',1,'ERF']]] + ['z0_5fconst_4489',['z0_const',['../structmost__data.html#ad18b8055b6887e821efe0c37c4076d08',1,'most_data::z0_const()'],['../classABLMost.html#acfc9a08ed0d029602e2e8e99232d0149',1,'ABLMost::z0_const()']]], + ['z0_5feps_4490',['z0_eps',['../structsurface__flux__wave__coupled.html#a6cf8c26b09960af5adea37c6e7ccbb0b',1,'surface_flux_wave_coupled::z0_eps()'],['../structsurface__temp__wave__coupled.html#abd39570dca269dda79fbb946df0a02ca',1,'surface_temp_wave_coupled::z0_eps()'],['../structadiabatic__wave__coupled.html#a7cbf5ad24a59a72131bae5b57038ff72',1,'adiabatic_wave_coupled::z0_eps()']]], + ['z0_5fmax_4491',['z0_max',['../structadiabatic__wave__coupled.html#afb0e6712baaff337c761988f6ec42b9b',1,'adiabatic_wave_coupled::z0_max()'],['../structsurface__flux__wave__coupled.html#a4f273873e2304563f10674c497cfad30',1,'surface_flux_wave_coupled::z0_max()'],['../structsurface__temp__wave__coupled.html#aedbd53ee9bf7b4c98f5a2b88207cbb01',1,'surface_temp_wave_coupled::z0_max()']]], + ['z_5f0_4492',['z_0',['../classABLMost.html#a1301dd4cb6875c7bdf5d69126b972f91',1,'ABLMost']]], + ['z_5finp_5fsound_4493',['z_inp_sound',['../structInputSoundingData.html#a0a3d15e3959ce900c213a09230e6646c',1,'InputSoundingData']]], + ['z_5finp_5fsound_5fd_4494',['z_inp_sound_d',['../structInputSoundingData.html#aba43c1b1c5b71ca118d6967f1e4a32bb',1,'InputSoundingData']]], + ['z_5finp_5fsponge_4495',['z_inp_sponge',['../structInputSpongeData.html#ae430ab35b7ded846911bd26b0d984155',1,'InputSpongeData']]], + ['z_5fphys_5fcc_4496',['z_phys_cc',['../classERF.html#a31be0f1ae705c52c8ccc520369013284',1,'ERF']]], + ['z_5fphys_5fnd_4497',['z_phys_nd',['../classERF.html#a93e63e5af35efa564fd4195e8703f84c',1,'ERF']]], + ['z_5fphys_5fnd_5fnew_4498',['z_phys_nd_new',['../classERF.html#a4ef635c22e72c715f5703a6b95a7abe5',1,'ERF']]], + ['z_5fphys_5fnd_5fsrc_4499',['z_phys_nd_src',['../classERF.html#a30dcf40e8f104fb6b6132805d2eff47c',1,'ERF']]], + ['z_5ft_5frk_4500',['z_t_rk',['../classERF.html#a72a59614c6d5ab840b924c84d5682270',1,'ERF']]], + ['zero_5fxflux_4501',['zero_xflux',['../structAdvChoice.html#a7a086b9e2aabb65d2e5e9053e7bd6018',1,'AdvChoice']]], + ['zero_5fyflux_4502',['zero_yflux',['../structAdvChoice.html#a118575fe302e72fcd231e77be6d117a9',1,'AdvChoice']]], + ['zero_5fzflux_4503',['zero_zflux',['../structAdvChoice.html#a7da4e5242e05aeba4822b71fab596954',1,'AdvChoice']]], + ['zflux_5fimask_4504',['zflux_imask',['../classERF.html#ada098767690d194f89717b0deb3adeac',1,'ERF']]], + ['zhi_4505',['zhi',['../classKessler.html#a8f1c8af54c49e78271d077456c3aa454',1,'Kessler::zhi()'],['../classSAM.html#aaf2fc082e80f1c5cc9de339ff25ca27b',1,'SAM::zhi()'],['../classRadiation.html#ac182d77504c899dee3ff639c2a8e93c6',1,'Radiation::zhi()']]], + ['zhi_5fsponge_5fstart_4506',['zhi_sponge_start',['../structSpongeChoice.html#a5e70ccbf1d7de42a4d938416635eee36',1,'SpongeChoice']]], + ['zi_4507',['zi',['../classAerRadProps.html#ac82b4bf91bb3a23e33074e00381388e3',1,'AerRadProps::zi()'],['../classRadiation.html#a7fd0d1f49797bc9d2c248cd334b44e36',1,'Radiation::zi()']]], + ['zlevels_5fstag_4508',['zlevels_stag',['../classERF.html#a7a4d6e7887fa8f30c33a0b8899035ddb',1,'ERF']]], + ['zlo_4509',['zlo',['../structdonelan__flux.html#af7428f0272064ef770035521c9c9a98b',1,'donelan_flux::zlo()'],['../classRadiation.html#add5e5480ecd2c337c1e52e47d62ebaa0',1,'Radiation::zlo()'],['../classSAM.html#a0473906305a6eaea0bad212893b9c911',1,'SAM::zlo()'],['../classKessler.html#a02b5caebac4d5986947655feca7f0db5',1,'Kessler::zlo()'],['../structcustom__flux.html#a3b40812bce1c4be2d850abe1bbc2d208',1,'custom_flux::zlo()'],['../structmoeng__flux.html#a32dd97697698052a006613da3a0b7e67',1,'moeng_flux::zlo()']]], + ['zlo_5fsponge_5fend_4510',['zlo_sponge_end',['../structSpongeChoice.html#a1a79f8e32354ec98857597ddabfe884e',1,'SpongeChoice']]], + ['zmid_4511',['zmid',['../classSAM.html#a5a5228929f2e9032152efe0a5cb9476b',1,'SAM']]], + ['zref_4512',['zref',['../structmost__data.html#a1acd5276639042ca0834c56656302ea6',1,'most_data']]], + ['zsurf_4513',['zsurf',['../structSolverChoice.html#aa4659e9babdc5d7327266f967d9a80ff',1,'SolverChoice']]], + ['zvel_5fbc_5fdata_4514',['zvel_bc_data',['../classERF.html#a7eaa274e3e2193a19bfbe3e684bf692b',1,'ERF']]] ]; diff --git a/search/variables_2.js b/search/variables_2.js index 75ce066705..02f66c7238 100644 --- a/search/variables_2.js +++ b/search/variables_2.js @@ -1,66 +1,66 @@ var searchData= [ - ['c1_3589',['c1',['../structWENO__Z5.html#aaef4d108f7f40585ead5bdb4d8ba5c67',1,'WENO_Z5::c1()'],['../structWENO5.html#a3acb5e8bde92b17f3eefb2a0cc3dad2e',1,'WENO5::c1()']]], - ['c_5fp_3590',['c_p',['../structSolverChoice.html#a43d16f0628ba5fbe64a813de7f25f56a',1,'SolverChoice']]], - ['camname_3591',['camname',['../structMamConstituents_1_1gas__t.html#ab996ee58a5c7dc033d07938d487e79f3',1,'MamConstituents::gas_t::camname()'],['../structMamConstituents_1_1aerosol__t.html#a23e50740903b1b826352cd7486c69913',1,'MamConstituents::aerosol_t::camname()']]], - ['camname_5fmmr_5fa_3592',['camname_mmr_a',['../structMamConstituents_1_1mode__component__t.html#a3adfcd2619c7f477e8ecd6529d8f98b6',1,'MamConstituents::mode_component_t']]], - ['camname_5fmmr_5fc_3593',['camname_mmr_c',['../structMamConstituents_1_1mode__component__t.html#aab0b2aef67ab3544af7fb0ecf2930415',1,'MamConstituents::mode_component_t']]], - ['camname_5fnum_5fa_3594',['camname_num_a',['../structMamConstituents_1_1mode__component__t.html#a5a1aa28df874b8cb28f19e730b36f037',1,'MamConstituents::mode_component_t']]], - ['camname_5fnum_5fc_3595',['camname_num_c',['../structMamConstituents_1_1mode__component__t.html#a6f588bac515da5d63593bb61df75e432',1,'MamConstituents::mode_component_t']]], - ['ce_3596',['Ce',['../structTurbChoice.html#ab6d0ae39e92dcbe7362abf53364c1a8e',1,'TurbChoice']]], - ['ce_5fwall_3597',['Ce_wall',['../structTurbChoice.html#ab2d1ecb36171ca19ea851e8e682a1478',1,'TurbChoice']]], - ['cf_5fset_5fwidth_3598',['cf_set_width',['../classERF.html#a1e3e2855b6e811596226c167573ad62d',1,'ERF']]], - ['cf_5fwidth_3599',['cf_width',['../classERF.html#ad9084179f7384e10a519989ffd51fd34',1,'ERF']]], - ['cfl_3600',['cfl',['../classERF.html#a89f605d1a1eae06a7c79f9b6b65c637f',1,'ERF']]], - ['cgrau_3601',['cgrau',['../ERF__Constants_8H.html#a22bb5d96152ac76ffe39d98d67b2b07a',1,'ERF_Constants.H']]], - ['change_5fmax_3602',['change_max',['../classERF.html#ae16d413b172bb3b3400af6d5cb236fd4',1,'ERF']]], - ['check_5ffile_3603',['check_file',['../classERF.html#ae701564fbe3da5bbd88587e5a08eca4e',1,'ERF']]], - ['check_5ftype_3604',['check_type',['../classERF.html#a32e0d0f5ae0db18ee81f9d4325a14f64',1,'ERF']]], - ['ci_3605',['CI',['../structTurbChoice.html#afbf3b28d53a35977d4ff77e6928122c0',1,'TurbChoice']]], - ['ck_3606',['Ck',['../structTurbChoice.html#a61ff7dc6ee4001ae8f2978efd5ff57e4',1,'TurbChoice']]], - ['clear_5frh_3607',['clear_rh',['../classRadiation.html#a04fcc2194ca5c8df13d384ae567aa3c7',1,'Radiation']]], - ['clim_5fmodal_5faero_3608',['clim_modal_aero',['../classMam4__aer.html#a83c2a65a851a3329d62fca09dd0263d5',1,'Mam4_aer']]], - ['cloud_5foptics_3609',['cloud_optics',['../classOptics.html#a90c700e69b63c61c6275b12c63033334',1,'Optics']]], - ['cmd_3610',['cmd',['../classMultiBlockContainer.html#ac2e558406e28ee31351eb60c7465d0ad',1,'MultiBlockContainer']]], - ['cnk_5fa_3611',['Cnk_a',['../structmost__data.html#a83c3a7004441c335b630dd2d6973f518',1,'most_data']]], - ['cnk_5fa_3612',['cnk_a',['../classABLMost.html#a75310e9079ee238a932900feaad85ac5',1,'ABLMost']]], - ['cnk_5fb_3613',['Cnk_b',['../structmost__data.html#a51b78fb4a4b8fb6aa512d4bd4fcd3cd7',1,'most_data']]], - ['cnk_5fb1_3614',['Cnk_b1',['../structmost__data.html#acfac0135facabddbdd699609bac908e4',1,'most_data']]], - ['cnk_5fb2_3615',['Cnk_b2',['../structmost__data.html#a4488059550159398fd2cddaf4d37f31b',1,'most_data']]], - ['cnk_5fd_3616',['Cnk_d',['../structmost__data.html#a73b1c119aa9b4bcaac98753a4fde9e86',1,'most_data']]], - ['coefficients_5ffile_5flw_3617',['coefficients_file_lw',['../classRrtmgp.html#a02493ce8d504b6a4d4a9a5cfec8d44f5',1,'Rrtmgp']]], - ['coefficients_5ffile_5fsw_3618',['coefficients_file_sw',['../classRrtmgp.html#a5fa9f64db9791a7f152055f484113714',1,'Rrtmgp']]], - ['coefice_3619',['coefice',['../classSAM.html#aad8c4616221c01599e4e32f2ebb08698',1,'SAM']]], - ['column_5ffile_5fname_3620',['column_file_name',['../classERF.html#a48bba6b1c1b39940b09aefbe56311e2f',1,'ERF']]], - ['column_5finterval_3621',['column_interval',['../classERF.html#afa0bef6d3146788302b81c0d4f4802d1',1,'ERF']]], - ['column_5floc_5fx_3622',['column_loc_x',['../classERF.html#a930b7d48218b3fc41d8719b50b3f6086',1,'ERF']]], - ['column_5floc_5fy_3623',['column_loc_y',['../classERF.html#a2b911f3a5a324813b1ff4462df6044a6',1,'ERF']]], - ['column_5fper_3624',['column_per',['../classERF.html#a7b0175190c6fcf829c7f2841f729b12a',1,'ERF']]], - ['comps_3625',['comps',['../structMamConstituents_1_1modes__t.html#a51263b4f4e52ec4e2068e775d7f5f1f4',1,'MamConstituents::modes_t']]], - ['cons_5fnames_3626',['cons_names',['../classERF.html#afd8cd5a477754776135befa668fdd0c9',1,'ERF']]], - ['cons_5fto_5fprim_3627',['cons_to_prim',['../TI__utils_8H.html#a76b27b6105fe279f9a43296072c843b3',1,'TI_utils.H']]], - ['const_5fgrav_3628',['CONST_GRAV',['../ERF__Constants_8H.html#ac2d0c304ab1117368778efcda612de43',1,'ERF_Constants.H']]], - ['constant_5fdensity_3629',['constant_density',['../structSolverChoice.html#aa9cf425ef14a7e28ec3411044e737b23',1,'SolverChoice']]], - ['coriolis_5f3d_3630',['coriolis_3d',['../structSolverChoice.html#a7e93900ec3e84826fcf1e02435bdae42',1,'SolverChoice']]], - ['coriolis_5ffactor_3631',['coriolis_factor',['../structSolverChoice.html#a1163778ed56af6977001ef4ec55a3da3',1,'SolverChoice']]], - ['cosphi_3632',['cosphi',['../structSolverChoice.html#a411fbfea721cd40033e113cf54a8047f',1,'SolverChoice']]], - ['coupling_5ftype_3633',['coupling_type',['../structSolverChoice.html#af976afa61859c07e6249963edc367c2d',1,'SolverChoice']]], - ['cp_5fd_3634',['Cp_d',['../ERF__Constants_8H.html#a1ee33e063343c8fb15ed025c456ebd46',1,'ERF_Constants.H']]], - ['cp_5fl_3635',['Cp_l',['../ERF__Constants_8H.html#acecae1da25fb8c8d32d1f175e18df41f',1,'ERF_Constants.H']]], - ['cp_5fv_3636',['Cp_v',['../ERF__Constants_8H.html#aea1cea8d633adb36e2ea5018925b68ee',1,'ERF_Constants.H']]], - ['crain_3637',['crain',['../ERF__Constants_8H.html#aedc41c83fba50dcbd5e1385007d3edec',1,'ERF_Constants.H']]], - ['crefwlwi_3638',['crefwlwi',['../classMam4__aer.html#a32d3651a6f9299ecee85fee320dfda50',1,'Mam4_aer']]], - ['crefwlwr_3639',['crefwlwr',['../classMam4__aer.html#ae1eea21725e40b02e21086cd73dc9d66',1,'Mam4_aer']]], - ['crefwswi_3640',['crefwswi',['../classMam4__aer.html#ad48a521caea628250a1faa6154f6094b',1,'Mam4_aer']]], - ['crefwswr_3641',['crefwswr',['../classMam4__aer.html#a139c9796ada84ff24405114f8691d7cd',1,'Mam4_aer']]], - ['cs_3642',['Cs',['../structTurbChoice.html#aa75682bb872d7917ffb8fddb21532f40',1,'TurbChoice']]], - ['csnow_3643',['csnow',['../ERF__Constants_8H.html#a00a835048e6d7b67e76cd044f483a0e2',1,'ERF_Constants.H']]], - ['custom_5fforcing_5fprim_5fvars_3644',['custom_forcing_prim_vars',['../structSolverChoice.html#aae4f377d36d01b85a1f322c45009ac75',1,'SolverChoice']]], - ['custom_5fgeostrophic_5fprofile_3645',['custom_geostrophic_profile',['../structSolverChoice.html#a5e8754b29072596a584633734a9f64ef',1,'SolverChoice']]], - ['custom_5fmoisture_5fforcing_3646',['custom_moisture_forcing',['../structSolverChoice.html#aa2e312b4e6d08797fc3c1b6d67313d48',1,'SolverChoice']]], - ['custom_5fqstar_3647',['custom_qstar',['../classABLMost.html#a31707b89fbbbdeb445ba35ed240046c3',1,'ABLMost']]], - ['custom_5frhotheta_5fforcing_3648',['custom_rhotheta_forcing',['../structSolverChoice.html#a4e81a09c9f454c680568b7776a3ed90e',1,'SolverChoice']]], - ['custom_5ftstar_3649',['custom_tstar',['../classABLMost.html#afbd0b1a37d9e9d716d82910db203e82f',1,'ABLMost']]], - ['custom_5fustar_3650',['custom_ustar',['../classABLMost.html#a1bce26c6253a6191424e7b753cd24cfa',1,'ABLMost']]], - ['custom_5fw_5fsubsidence_3651',['custom_w_subsidence',['../structSolverChoice.html#a596f061b796ada0389c81a6125150b6e',1,'SolverChoice']]] + ['c1_3595',['c1',['../structWENO__Z5.html#aaef4d108f7f40585ead5bdb4d8ba5c67',1,'WENO_Z5::c1()'],['../structWENO5.html#a3acb5e8bde92b17f3eefb2a0cc3dad2e',1,'WENO5::c1()']]], + ['c_5fp_3596',['c_p',['../structSolverChoice.html#a43d16f0628ba5fbe64a813de7f25f56a',1,'SolverChoice']]], + ['camname_3597',['camname',['../structMamConstituents_1_1gas__t.html#ab996ee58a5c7dc033d07938d487e79f3',1,'MamConstituents::gas_t::camname()'],['../structMamConstituents_1_1aerosol__t.html#a23e50740903b1b826352cd7486c69913',1,'MamConstituents::aerosol_t::camname()']]], + ['camname_5fmmr_5fa_3598',['camname_mmr_a',['../structMamConstituents_1_1mode__component__t.html#a3adfcd2619c7f477e8ecd6529d8f98b6',1,'MamConstituents::mode_component_t']]], + ['camname_5fmmr_5fc_3599',['camname_mmr_c',['../structMamConstituents_1_1mode__component__t.html#aab0b2aef67ab3544af7fb0ecf2930415',1,'MamConstituents::mode_component_t']]], + ['camname_5fnum_5fa_3600',['camname_num_a',['../structMamConstituents_1_1mode__component__t.html#a5a1aa28df874b8cb28f19e730b36f037',1,'MamConstituents::mode_component_t']]], + ['camname_5fnum_5fc_3601',['camname_num_c',['../structMamConstituents_1_1mode__component__t.html#a6f588bac515da5d63593bb61df75e432',1,'MamConstituents::mode_component_t']]], + ['ce_3602',['Ce',['../structTurbChoice.html#ab6d0ae39e92dcbe7362abf53364c1a8e',1,'TurbChoice']]], + ['ce_5fwall_3603',['Ce_wall',['../structTurbChoice.html#ab2d1ecb36171ca19ea851e8e682a1478',1,'TurbChoice']]], + ['cf_5fset_5fwidth_3604',['cf_set_width',['../classERF.html#a1e3e2855b6e811596226c167573ad62d',1,'ERF']]], + ['cf_5fwidth_3605',['cf_width',['../classERF.html#ad9084179f7384e10a519989ffd51fd34',1,'ERF']]], + ['cfl_3606',['cfl',['../classERF.html#a89f605d1a1eae06a7c79f9b6b65c637f',1,'ERF']]], + ['cgrau_3607',['cgrau',['../ERF__Constants_8H.html#a22bb5d96152ac76ffe39d98d67b2b07a',1,'ERF_Constants.H']]], + ['change_5fmax_3608',['change_max',['../classERF.html#ae16d413b172bb3b3400af6d5cb236fd4',1,'ERF']]], + ['check_5ffile_3609',['check_file',['../classERF.html#ae701564fbe3da5bbd88587e5a08eca4e',1,'ERF']]], + ['check_5ftype_3610',['check_type',['../classERF.html#a32e0d0f5ae0db18ee81f9d4325a14f64',1,'ERF']]], + ['ci_3611',['CI',['../structTurbChoice.html#afbf3b28d53a35977d4ff77e6928122c0',1,'TurbChoice']]], + ['ck_3612',['Ck',['../structTurbChoice.html#a61ff7dc6ee4001ae8f2978efd5ff57e4',1,'TurbChoice']]], + ['clear_5frh_3613',['clear_rh',['../classRadiation.html#a04fcc2194ca5c8df13d384ae567aa3c7',1,'Radiation']]], + ['clim_5fmodal_5faero_3614',['clim_modal_aero',['../classMam4__aer.html#a83c2a65a851a3329d62fca09dd0263d5',1,'Mam4_aer']]], + ['cloud_5foptics_3615',['cloud_optics',['../classOptics.html#a90c700e69b63c61c6275b12c63033334',1,'Optics']]], + ['cmd_3616',['cmd',['../classMultiBlockContainer.html#ac2e558406e28ee31351eb60c7465d0ad',1,'MultiBlockContainer']]], + ['cnk_5fa_3617',['cnk_a',['../classABLMost.html#a75310e9079ee238a932900feaad85ac5',1,'ABLMost']]], + ['cnk_5fa_3618',['Cnk_a',['../structmost__data.html#a83c3a7004441c335b630dd2d6973f518',1,'most_data']]], + ['cnk_5fb_3619',['Cnk_b',['../structmost__data.html#a51b78fb4a4b8fb6aa512d4bd4fcd3cd7',1,'most_data']]], + ['cnk_5fb1_3620',['Cnk_b1',['../structmost__data.html#acfac0135facabddbdd699609bac908e4',1,'most_data']]], + ['cnk_5fb2_3621',['Cnk_b2',['../structmost__data.html#a4488059550159398fd2cddaf4d37f31b',1,'most_data']]], + ['cnk_5fd_3622',['Cnk_d',['../structmost__data.html#a73b1c119aa9b4bcaac98753a4fde9e86',1,'most_data']]], + ['coefficients_5ffile_5flw_3623',['coefficients_file_lw',['../classRrtmgp.html#a02493ce8d504b6a4d4a9a5cfec8d44f5',1,'Rrtmgp']]], + ['coefficients_5ffile_5fsw_3624',['coefficients_file_sw',['../classRrtmgp.html#a5fa9f64db9791a7f152055f484113714',1,'Rrtmgp']]], + ['coefice_3625',['coefice',['../classSAM.html#aad8c4616221c01599e4e32f2ebb08698',1,'SAM']]], + ['column_5ffile_5fname_3626',['column_file_name',['../classERF.html#a48bba6b1c1b39940b09aefbe56311e2f',1,'ERF']]], + ['column_5finterval_3627',['column_interval',['../classERF.html#afa0bef6d3146788302b81c0d4f4802d1',1,'ERF']]], + ['column_5floc_5fx_3628',['column_loc_x',['../classERF.html#a930b7d48218b3fc41d8719b50b3f6086',1,'ERF']]], + ['column_5floc_5fy_3629',['column_loc_y',['../classERF.html#a2b911f3a5a324813b1ff4462df6044a6',1,'ERF']]], + ['column_5fper_3630',['column_per',['../classERF.html#a7b0175190c6fcf829c7f2841f729b12a',1,'ERF']]], + ['comps_3631',['comps',['../structMamConstituents_1_1modes__t.html#a51263b4f4e52ec4e2068e775d7f5f1f4',1,'MamConstituents::modes_t']]], + ['cons_5fnames_3632',['cons_names',['../classERF.html#afd8cd5a477754776135befa668fdd0c9',1,'ERF']]], + ['cons_5fto_5fprim_3633',['cons_to_prim',['../TI__utils_8H.html#a76b27b6105fe279f9a43296072c843b3',1,'TI_utils.H']]], + ['const_5fgrav_3634',['CONST_GRAV',['../ERF__Constants_8H.html#ac2d0c304ab1117368778efcda612de43',1,'ERF_Constants.H']]], + ['constant_5fdensity_3635',['constant_density',['../structSolverChoice.html#aa9cf425ef14a7e28ec3411044e737b23',1,'SolverChoice']]], + ['coriolis_5f3d_3636',['coriolis_3d',['../structSolverChoice.html#a7e93900ec3e84826fcf1e02435bdae42',1,'SolverChoice']]], + ['coriolis_5ffactor_3637',['coriolis_factor',['../structSolverChoice.html#a1163778ed56af6977001ef4ec55a3da3',1,'SolverChoice']]], + ['cosphi_3638',['cosphi',['../structSolverChoice.html#a411fbfea721cd40033e113cf54a8047f',1,'SolverChoice']]], + ['coupling_5ftype_3639',['coupling_type',['../structSolverChoice.html#af976afa61859c07e6249963edc367c2d',1,'SolverChoice']]], + ['cp_5fd_3640',['Cp_d',['../ERF__Constants_8H.html#a1ee33e063343c8fb15ed025c456ebd46',1,'ERF_Constants.H']]], + ['cp_5fl_3641',['Cp_l',['../ERF__Constants_8H.html#acecae1da25fb8c8d32d1f175e18df41f',1,'ERF_Constants.H']]], + ['cp_5fv_3642',['Cp_v',['../ERF__Constants_8H.html#aea1cea8d633adb36e2ea5018925b68ee',1,'ERF_Constants.H']]], + ['crain_3643',['crain',['../ERF__Constants_8H.html#aedc41c83fba50dcbd5e1385007d3edec',1,'ERF_Constants.H']]], + ['crefwlwi_3644',['crefwlwi',['../classMam4__aer.html#a32d3651a6f9299ecee85fee320dfda50',1,'Mam4_aer']]], + ['crefwlwr_3645',['crefwlwr',['../classMam4__aer.html#ae1eea21725e40b02e21086cd73dc9d66',1,'Mam4_aer']]], + ['crefwswi_3646',['crefwswi',['../classMam4__aer.html#ad48a521caea628250a1faa6154f6094b',1,'Mam4_aer']]], + ['crefwswr_3647',['crefwswr',['../classMam4__aer.html#a139c9796ada84ff24405114f8691d7cd',1,'Mam4_aer']]], + ['cs_3648',['Cs',['../structTurbChoice.html#aa75682bb872d7917ffb8fddb21532f40',1,'TurbChoice']]], + ['csnow_3649',['csnow',['../ERF__Constants_8H.html#a00a835048e6d7b67e76cd044f483a0e2',1,'ERF_Constants.H']]], + ['custom_5fforcing_5fprim_5fvars_3650',['custom_forcing_prim_vars',['../structSolverChoice.html#aae4f377d36d01b85a1f322c45009ac75',1,'SolverChoice']]], + ['custom_5fgeostrophic_5fprofile_3651',['custom_geostrophic_profile',['../structSolverChoice.html#a5e8754b29072596a584633734a9f64ef',1,'SolverChoice']]], + ['custom_5fmoisture_5fforcing_3652',['custom_moisture_forcing',['../structSolverChoice.html#aa2e312b4e6d08797fc3c1b6d67313d48',1,'SolverChoice']]], + ['custom_5fqstar_3653',['custom_qstar',['../classABLMost.html#a31707b89fbbbdeb445ba35ed240046c3',1,'ABLMost']]], + ['custom_5frhotheta_5fforcing_3654',['custom_rhotheta_forcing',['../structSolverChoice.html#a4e81a09c9f454c680568b7776a3ed90e',1,'SolverChoice']]], + ['custom_5ftstar_3655',['custom_tstar',['../classABLMost.html#afbd0b1a37d9e9d716d82910db203e82f',1,'ABLMost']]], + ['custom_5fustar_3656',['custom_ustar',['../classABLMost.html#a1bce26c6253a6191424e7b753cd24cfa',1,'ABLMost']]], + ['custom_5fw_5fsubsidence_3657',['custom_w_subsidence',['../structSolverChoice.html#a596f061b796ada0389c81a6125150b6e',1,'SolverChoice']]] ]; diff --git a/search/variables_3.js b/search/variables_3.js index 39610694a1..6081c24282 100644 --- a/search/variables_3.js +++ b/search/variables_3.js @@ -1,63 +1,63 @@ var searchData= [ - ['d_5fhavg_5fdensity_3652',['d_havg_density',['../classERF.html#a84cf7616e7b3928f08f4bd56112db01e',1,'ERF']]], - ['d_5fhavg_5fpressure_3653',['d_havg_pressure',['../classERF.html#a9a4f076c56f31fbb5e68c09706605a05',1,'ERF']]], - ['d_5fhavg_5fqc_3654',['d_havg_qc',['../classERF.html#a8199cc1ec38b9dfd47262ccc7df6a941',1,'ERF']]], - ['d_5fhavg_5fqv_3655',['d_havg_qv',['../classERF.html#a2b0085123e02051ac4c2a72e9972e6ee',1,'ERF']]], - ['d_5fhavg_5ftemperature_3656',['d_havg_temperature',['../classERF.html#a20350959b7b3e252ee3a802e7998ca8d',1,'ERF']]], - ['d_5frayleigh_5fptrs_3657',['d_rayleigh_ptrs',['../classERF.html#ad598bde8e728479faaa7c2820096b47a',1,'ERF']]], - ['d_5frhoqt_5fsrc_3658',['d_rhoqt_src',['../classERF.html#a838687881ef3626f932d0e95ceff0e53',1,'ERF']]], - ['d_5frhotheta_5fsrc_3659',['d_rhotheta_src',['../classERF.html#a0c1fdcfbc9cbd6cb13e41d1170b161f8',1,'ERF']]], - ['d_5fsponge_5fptrs_3660',['d_sponge_ptrs',['../classERF.html#a3b9bcb54c278dfec6027e9727cc01bc5',1,'ERF']]], - ['d_5fu_5fgeos_3661',['d_u_geos',['../classERF.html#ac020980af9dbf46be43dd9f7127c06da',1,'ERF']]], - ['d_5fv_5fgeos_3662',['d_v_geos',['../classERF.html#a7d245afb7b3236b5967902f50bf9000b',1,'ERF']]], - ['d_5fw_5fsubsid_3663',['d_w_subsid',['../classERF.html#ac94ddee2f501dbcea2a516284b7119b5',1,'ERF']]], - ['data_3664',['data',['../structNDArray.html#a9d3679c95b5bf1813a7edaedf221837e',1,'NDArray']]], - ['datalog_3665',['datalog',['../classERF.html#a1cade630b005dbcc0f644987ef3db287',1,'ERF']]], - ['datalogname_3666',['datalogname',['../classERF.html#a9248a4eb025c2647e003f838cba52a21',1,'ERF']]], - ['density_5faer_3667',['density_aer',['../structPhysProp_1_1physprop__t.html#a8df74558339352f0e8c0031fc3160a09',1,'PhysProp::physprop_t']]], - ['depth_3668',['depth',['../classABLMost.html#a38ed37dd984fcc7be3b5ae04b7272459',1,'ABLMost']]], - ['derived_5fnames_3669',['derived_names',['../classERF.html#a9fc0f6e6ca35036d2e3a36dd42e66435',1,'ERF']]], - ['destag_5fprofiles_3670',['destag_profiles',['../classERF.html#a65f19c55c8d3669445866a1c3bbb628d',1,'ERF']]], - ['detj_5fcc_3671',['detJ_cc',['../classERF.html#a30f8b851ed29d38695d44cff257f14e6',1,'ERF']]], - ['detj_5fcc_5fnew_3672',['detJ_cc_new',['../classERF.html#ae39bf64c5306b1dd939d82d9df728daa',1,'ERF']]], - ['detj_5fcc_5fsrc_3673',['detJ_cc_src',['../classERF.html#a9a411e0ea9d9bdbfab957c8081229091',1,'ERF']]], - ['dgnum_3674',['dgnum',['../structPhysProp_1_1physprop__t.html#a66b63e7d4250ce345343af372d529193',1,'PhysProp::physprop_t']]], - ['dgnumdry_5fm_3675',['dgnumdry_m',['../classMam4__aer.html#a12eaca69207827a3988597c3e2f2bb0e',1,'Mam4_aer']]], - ['dgnumhi_3676',['dgnumhi',['../structPhysProp_1_1physprop__t.html#a0a6b0b2e1d1906ac628da5c03c54dd2c',1,'PhysProp::physprop_t']]], - ['dgnumlo_3677',['dgnumlo',['../structPhysProp_1_1physprop__t.html#a2e423bf4c825875ea8d9a72ead6c3b20',1,'PhysProp::physprop_t']]], - ['dgnumwet_5fm_3678',['dgnumwet_m',['../classMam4__aer.html#a69a1949364f03af84c9e4c12973a5223',1,'Mam4_aer']]], - ['diffchoice_3679',['diffChoice',['../structSolverChoice.html#a396122e87a3d15c4ec8666d7dd18c095',1,'SolverChoice']]], - ['diffelq_3680',['diffelq',['../ERF__Constants_8H.html#a4e1c44dade7fcd7648d3e87ba5bba4c1',1,'ERF_Constants.H']]], - ['diffuse_5fqke_5f3d_3681',['diffuse_QKE_3D',['../structTurbChoice.html#abf5c21916e9737e406ff55a62f12c781',1,'TurbChoice']]], - ['dimid_3682',['dimid',['../structncutils_1_1NCDim.html#a1c5560c95be35dbcedaf1390972175f8',1,'ncutils::NCDim']]], - ['dispersion_5faer_3683',['dispersion_aer',['../structPhysProp_1_1physprop__t.html#adf99574ee8aea212bec426dd42a4a9e4',1,'PhysProp::physprop_t']]], - ['do_5faerosol_5frad_3684',['do_aerosol_rad',['../classRadiation.html#a6a43bd5c228b629042b73e06f8fbcf87',1,'Radiation']]], - ['do_5fcloud_3685',['do_cloud',['../structSolverChoice.html#af352bb75ceaeae4ac534d3378fbf393a',1,'SolverChoice']]], - ['do_5flong_5fwave_5frad_3686',['do_long_wave_rad',['../classRadiation.html#afb905ef9ee37afaa882346803dae94c9',1,'Radiation']]], - ['do_5fprecip_3687',['do_precip',['../structSolverChoice.html#a766e5884354ed6483704f8257036ee75',1,'SolverChoice']]], - ['do_5fshort_5fwave_5frad_3688',['do_short_wave_rad',['../classRadiation.html#ad1177f9f1504cb562fb70b7f454387fc',1,'Radiation']]], - ['do_5fsnow_5foptics_3689',['do_snow_optics',['../classRadiation.html#a8c411f9344910aab58b29c4a3bcab401',1,'Radiation']]], - ['docloud_3690',['docloud',['../classSAM.html#a77c335e68b7ad8e6069d1318ea673a16',1,'SAM::docloud()'],['../classKessler.html#a7335cec5eabf2a33c8cd274b09863c28',1,'Kessler::docloud()']]], - ['dohirs_3691',['dohirs',['../classRadiation.html#aface9778f843db231e142379cffb709c',1,'Radiation']]], - ['domain_5fbc_5ftype_3692',['domain_bc_type',['../classERF.html#ae5968f1bed602fa87cdd5cb7905b7e5e',1,'ERF']]], - ['domain_5fbcs_5ftype_3693',['domain_bcs_type',['../classERF.html#a574521986a6e403159f83c8b8123ba90',1,'ERF']]], - ['domain_5fbcs_5ftype_5fd_3694',['domain_bcs_type_d',['../classERF.html#a8a99e22b1111c803e31b4afd5fcdea60',1,'ERF']]], - ['doprecip_3695',['doprecip',['../classSAM.html#a54766f324324d579d2591a0bdc60e359',1,'SAM::doprecip()'],['../classKessler.html#a2d8ae6f03c19821ef6279dcadd5cb36e',1,'Kessler::doprecip()']]], - ['dryrad_5faer_3696',['dryrad_aer',['../structPhysProp_1_1physprop__t.html#a55622eb338277f3ce9c7d5b774a9c2c5',1,'PhysProp::physprop_t']]], - ['dryscal_5fhoriz_5fadv_5ftype_3697',['dryscal_horiz_adv_type',['../structAdvChoice.html#a74a383e01c24980b72b920054ee5c1ab',1,'AdvChoice']]], - ['dryscal_5fhoriz_5fupw_5ffrac_3698',['dryscal_horiz_upw_frac',['../structAdvChoice.html#afb0ff64219a9e79d077b1a06da7817ae',1,'AdvChoice']]], - ['dryscal_5fvert_5fadv_5ftype_3699',['dryscal_vert_adv_type',['../structAdvChoice.html#add9ddd5d61fc695bd2df0e3818767b78',1,'AdvChoice']]], - ['dryscal_5fvert_5fupw_5ffrac_3700',['dryscal_vert_upw_frac',['../structAdvChoice.html#a1fc6421356a6c2ecfea0a46b3928d9cf',1,'AdvChoice']]], - ['dt_3701',['dt',['../classERF.html#ad34bae243fdb6c3029f5abe4fb4bca2d',1,'ERF::dt()'],['../classKessler.html#a86cf1c45a302d0e4a860860dab3dbe65',1,'Kessler::dt()'],['../classSAM.html#af9ffbd0c3f98c0c5d0a7ac4b1fb3dec9',1,'SAM::dt()'],['../classRadiation.html#a98ebcca0b6a735bb910aedef14ce9a37',1,'Radiation::dt()']]], - ['dt_5favg_3702',['dt_avg',['../classRadiation.html#af65d65db4b84a4afd921db0f10ffa31e',1,'Radiation']]], - ['dt_5fmri_5fratio_3703',['dt_mri_ratio',['../classERF.html#a3cf7cb2e51eb7b69cb4079ffc6722459',1,'ERF']]], - ['dtos_3704',['dtos',['../classMultiBlockContainer.html#a537ef22d2809607f9d353b912eedffcf',1,'MultiBlockContainer']]], - ['dycore_5fhoriz_5fadv_5ftype_3705',['dycore_horiz_adv_type',['../structAdvChoice.html#a81152997920406ea2aa97cbb5af2d9b6',1,'AdvChoice']]], - ['dycore_5fhoriz_5fupw_5ffrac_3706',['dycore_horiz_upw_frac',['../structAdvChoice.html#abde30f55d66f1716d7459a09001d3f43',1,'AdvChoice']]], - ['dycore_5fvert_5fadv_5ftype_3707',['dycore_vert_adv_type',['../structAdvChoice.html#a2dd44749e2d4f224ae1da4f9e53e257a',1,'AdvChoice']]], - ['dycore_5fvert_5fupw_5ffrac_3708',['dycore_vert_upw_frac',['../structAdvChoice.html#a48a2a3eb5899f899e202df67fd8bb2e0',1,'AdvChoice']]], - ['dynamicviscosity_3709',['dynamicViscosity',['../structDiffChoice.html#abaff02e5f99628d6a91b546f3ad1fae6',1,'DiffChoice']]], - ['dz0_3710',['dz0',['../structSolverChoice.html#a0a4f1c55ea1e3a7d50f926ee0d20a21c',1,'SolverChoice']]], - ['dz_5fmin_3711',['dz_min',['../classERF.html#a0656573ffb79f0fda8d02d5ea0482ed2',1,'ERF']]] + ['d_5fhavg_5fdensity_3658',['d_havg_density',['../classERF.html#a84cf7616e7b3928f08f4bd56112db01e',1,'ERF']]], + ['d_5fhavg_5fpressure_3659',['d_havg_pressure',['../classERF.html#a9a4f076c56f31fbb5e68c09706605a05',1,'ERF']]], + ['d_5fhavg_5fqc_3660',['d_havg_qc',['../classERF.html#a8199cc1ec38b9dfd47262ccc7df6a941',1,'ERF']]], + ['d_5fhavg_5fqv_3661',['d_havg_qv',['../classERF.html#a2b0085123e02051ac4c2a72e9972e6ee',1,'ERF']]], + ['d_5fhavg_5ftemperature_3662',['d_havg_temperature',['../classERF.html#a20350959b7b3e252ee3a802e7998ca8d',1,'ERF']]], + ['d_5frayleigh_5fptrs_3663',['d_rayleigh_ptrs',['../classERF.html#ad598bde8e728479faaa7c2820096b47a',1,'ERF']]], + ['d_5frhoqt_5fsrc_3664',['d_rhoqt_src',['../classERF.html#a838687881ef3626f932d0e95ceff0e53',1,'ERF']]], + ['d_5frhotheta_5fsrc_3665',['d_rhotheta_src',['../classERF.html#a0c1fdcfbc9cbd6cb13e41d1170b161f8',1,'ERF']]], + ['d_5fsponge_5fptrs_3666',['d_sponge_ptrs',['../classERF.html#a3b9bcb54c278dfec6027e9727cc01bc5',1,'ERF']]], + ['d_5fu_5fgeos_3667',['d_u_geos',['../classERF.html#ac020980af9dbf46be43dd9f7127c06da',1,'ERF']]], + ['d_5fv_5fgeos_3668',['d_v_geos',['../classERF.html#a7d245afb7b3236b5967902f50bf9000b',1,'ERF']]], + ['d_5fw_5fsubsid_3669',['d_w_subsid',['../classERF.html#ac94ddee2f501dbcea2a516284b7119b5',1,'ERF']]], + ['data_3670',['data',['../structNDArray.html#a9d3679c95b5bf1813a7edaedf221837e',1,'NDArray']]], + ['datalog_3671',['datalog',['../classERF.html#a1cade630b005dbcc0f644987ef3db287',1,'ERF']]], + ['datalogname_3672',['datalogname',['../classERF.html#a9248a4eb025c2647e003f838cba52a21',1,'ERF']]], + ['density_5faer_3673',['density_aer',['../structPhysProp_1_1physprop__t.html#a8df74558339352f0e8c0031fc3160a09',1,'PhysProp::physprop_t']]], + ['depth_3674',['depth',['../classABLMost.html#a38ed37dd984fcc7be3b5ae04b7272459',1,'ABLMost']]], + ['derived_5fnames_3675',['derived_names',['../classERF.html#a9fc0f6e6ca35036d2e3a36dd42e66435',1,'ERF']]], + ['destag_5fprofiles_3676',['destag_profiles',['../classERF.html#a65f19c55c8d3669445866a1c3bbb628d',1,'ERF']]], + ['detj_5fcc_3677',['detJ_cc',['../classERF.html#a30f8b851ed29d38695d44cff257f14e6',1,'ERF']]], + ['detj_5fcc_5fnew_3678',['detJ_cc_new',['../classERF.html#ae39bf64c5306b1dd939d82d9df728daa',1,'ERF']]], + ['detj_5fcc_5fsrc_3679',['detJ_cc_src',['../classERF.html#a9a411e0ea9d9bdbfab957c8081229091',1,'ERF']]], + ['dgnum_3680',['dgnum',['../structPhysProp_1_1physprop__t.html#a66b63e7d4250ce345343af372d529193',1,'PhysProp::physprop_t']]], + ['dgnumdry_5fm_3681',['dgnumdry_m',['../classMam4__aer.html#a12eaca69207827a3988597c3e2f2bb0e',1,'Mam4_aer']]], + ['dgnumhi_3682',['dgnumhi',['../structPhysProp_1_1physprop__t.html#a0a6b0b2e1d1906ac628da5c03c54dd2c',1,'PhysProp::physprop_t']]], + ['dgnumlo_3683',['dgnumlo',['../structPhysProp_1_1physprop__t.html#a2e423bf4c825875ea8d9a72ead6c3b20',1,'PhysProp::physprop_t']]], + ['dgnumwet_5fm_3684',['dgnumwet_m',['../classMam4__aer.html#a69a1949364f03af84c9e4c12973a5223',1,'Mam4_aer']]], + ['diffchoice_3685',['diffChoice',['../structSolverChoice.html#a396122e87a3d15c4ec8666d7dd18c095',1,'SolverChoice']]], + ['diffelq_3686',['diffelq',['../ERF__Constants_8H.html#a4e1c44dade7fcd7648d3e87ba5bba4c1',1,'ERF_Constants.H']]], + ['diffuse_5fqke_5f3d_3687',['diffuse_QKE_3D',['../structTurbChoice.html#abf5c21916e9737e406ff55a62f12c781',1,'TurbChoice']]], + ['dimid_3688',['dimid',['../structncutils_1_1NCDim.html#a1c5560c95be35dbcedaf1390972175f8',1,'ncutils::NCDim']]], + ['dispersion_5faer_3689',['dispersion_aer',['../structPhysProp_1_1physprop__t.html#adf99574ee8aea212bec426dd42a4a9e4',1,'PhysProp::physprop_t']]], + ['do_5faerosol_5frad_3690',['do_aerosol_rad',['../classRadiation.html#a6a43bd5c228b629042b73e06f8fbcf87',1,'Radiation']]], + ['do_5fcloud_3691',['do_cloud',['../structSolverChoice.html#af352bb75ceaeae4ac534d3378fbf393a',1,'SolverChoice']]], + ['do_5flong_5fwave_5frad_3692',['do_long_wave_rad',['../classRadiation.html#afb905ef9ee37afaa882346803dae94c9',1,'Radiation']]], + ['do_5fprecip_3693',['do_precip',['../structSolverChoice.html#a766e5884354ed6483704f8257036ee75',1,'SolverChoice']]], + ['do_5fshort_5fwave_5frad_3694',['do_short_wave_rad',['../classRadiation.html#ad1177f9f1504cb562fb70b7f454387fc',1,'Radiation']]], + ['do_5fsnow_5foptics_3695',['do_snow_optics',['../classRadiation.html#a8c411f9344910aab58b29c4a3bcab401',1,'Radiation']]], + ['docloud_3696',['docloud',['../classSAM.html#a77c335e68b7ad8e6069d1318ea673a16',1,'SAM::docloud()'],['../classKessler.html#a7335cec5eabf2a33c8cd274b09863c28',1,'Kessler::docloud()']]], + ['dohirs_3697',['dohirs',['../classRadiation.html#aface9778f843db231e142379cffb709c',1,'Radiation']]], + ['domain_5fbc_5ftype_3698',['domain_bc_type',['../classERF.html#ae5968f1bed602fa87cdd5cb7905b7e5e',1,'ERF']]], + ['domain_5fbcs_5ftype_3699',['domain_bcs_type',['../classERF.html#a574521986a6e403159f83c8b8123ba90',1,'ERF']]], + ['domain_5fbcs_5ftype_5fd_3700',['domain_bcs_type_d',['../classERF.html#a8a99e22b1111c803e31b4afd5fcdea60',1,'ERF']]], + ['doprecip_3701',['doprecip',['../classSAM.html#a54766f324324d579d2591a0bdc60e359',1,'SAM::doprecip()'],['../classKessler.html#a2d8ae6f03c19821ef6279dcadd5cb36e',1,'Kessler::doprecip()']]], + ['dryrad_5faer_3702',['dryrad_aer',['../structPhysProp_1_1physprop__t.html#a55622eb338277f3ce9c7d5b774a9c2c5',1,'PhysProp::physprop_t']]], + ['dryscal_5fhoriz_5fadv_5ftype_3703',['dryscal_horiz_adv_type',['../structAdvChoice.html#a74a383e01c24980b72b920054ee5c1ab',1,'AdvChoice']]], + ['dryscal_5fhoriz_5fupw_5ffrac_3704',['dryscal_horiz_upw_frac',['../structAdvChoice.html#afb0ff64219a9e79d077b1a06da7817ae',1,'AdvChoice']]], + ['dryscal_5fvert_5fadv_5ftype_3705',['dryscal_vert_adv_type',['../structAdvChoice.html#add9ddd5d61fc695bd2df0e3818767b78',1,'AdvChoice']]], + ['dryscal_5fvert_5fupw_5ffrac_3706',['dryscal_vert_upw_frac',['../structAdvChoice.html#a1fc6421356a6c2ecfea0a46b3928d9cf',1,'AdvChoice']]], + ['dt_3707',['dt',['../classERF.html#ad34bae243fdb6c3029f5abe4fb4bca2d',1,'ERF::dt()'],['../classKessler.html#a86cf1c45a302d0e4a860860dab3dbe65',1,'Kessler::dt()'],['../classSAM.html#af9ffbd0c3f98c0c5d0a7ac4b1fb3dec9',1,'SAM::dt()'],['../classRadiation.html#a98ebcca0b6a735bb910aedef14ce9a37',1,'Radiation::dt()']]], + ['dt_5favg_3708',['dt_avg',['../classRadiation.html#af65d65db4b84a4afd921db0f10ffa31e',1,'Radiation']]], + ['dt_5fmri_5fratio_3709',['dt_mri_ratio',['../classERF.html#a3cf7cb2e51eb7b69cb4079ffc6722459',1,'ERF']]], + ['dtos_3710',['dtos',['../classMultiBlockContainer.html#a537ef22d2809607f9d353b912eedffcf',1,'MultiBlockContainer']]], + ['dycore_5fhoriz_5fadv_5ftype_3711',['dycore_horiz_adv_type',['../structAdvChoice.html#a81152997920406ea2aa97cbb5af2d9b6',1,'AdvChoice']]], + ['dycore_5fhoriz_5fupw_5ffrac_3712',['dycore_horiz_upw_frac',['../structAdvChoice.html#abde30f55d66f1716d7459a09001d3f43',1,'AdvChoice']]], + ['dycore_5fvert_5fadv_5ftype_3713',['dycore_vert_adv_type',['../structAdvChoice.html#a2dd44749e2d4f224ae1da4f9e53e257a',1,'AdvChoice']]], + ['dycore_5fvert_5fupw_5ffrac_3714',['dycore_vert_upw_frac',['../structAdvChoice.html#a48a2a3eb5899f899e202df67fd8bb2e0',1,'AdvChoice']]], + ['dynamicviscosity_3715',['dynamicViscosity',['../structDiffChoice.html#abaff02e5f99628d6a91b546f3ad1fae6',1,'DiffChoice']]], + ['dz0_3716',['dz0',['../structSolverChoice.html#a0a4f1c55ea1e3a7d50f926ee0d20a21c',1,'SolverChoice']]], + ['dz_5fmin_3717',['dz_min',['../classERF.html#a0656573ffb79f0fda8d02d5ea0482ed2',1,'ERF']]] ]; diff --git a/search/variables_4.js b/search/variables_4.js index 96d21d7172..6d1ba9a85d 100644 --- a/search/variables_4.js +++ b/search/variables_4.js @@ -1,26 +1,26 @@ var searchData= [ - ['eccen_3712',['eccen',['../classRadiation.html#a62efb2cdbddfca4321d9e866b6a79b11',1,'Radiation']]], - ['eddydiffs_5flev_3713',['eddyDiffs_lev',['../classERF.html#a327d704704abd516be19339cb2d226f9',1,'ERF']]], - ['egccoef_3714',['egccoef',['../ERF__Constants_8H.html#a65f78c57eaba4f35dc9183cd2f3e66e3',1,'ERF_Constants.H']]], - ['egicoef_3715',['egicoef',['../ERF__Constants_8H.html#a6b49f5e9d61881c5a59656453a6c025f',1,'ERF_Constants.H']]], - ['empty_3716',['empty',['../classUnionListIF.html#ada33e955e690c4535d78e6db572707d7',1,'UnionListIF']]], - ['eps_3717',['eps',['../structsurface__flux__wave__coupled.html#aee14d25dbf38dc291b9c4900d737e121',1,'surface_flux_wave_coupled::eps()'],['../structWENO__Z5.html#ab4cfe75de30306d2462c33b4797fa570',1,'WENO_Z5::eps()'],['../structWENO__MZQ3.html#ad02f88cd05b6e31261fb3380887a2099',1,'WENO_MZQ3::eps()'],['../structWENO__Z3.html#a04370c4cf4d845f967ec610ff66f5d2b',1,'WENO_Z3::eps()'],['../structWENO5.html#a0eb3eb8be72f02731cd24f03d5c2b9ca',1,'WENO5::eps()'],['../structWENO3.html#a5ea04e699e55b168c29b38e9e453660f',1,'WENO3::eps()'],['../structcustom__flux.html#ae0e2af01151c51f4c335f053a8bb8f17',1,'custom_flux::eps()'],['../structmoeng__flux.html#a3d06eff1aa7d6c357e1245eb8f5b96f7',1,'moeng_flux::eps()'],['../structsurface__temp__wave__coupled.html#a2a663fad6d183ced2edb1dc99fe104bf',1,'surface_temp_wave_coupled::eps()'],['../structadiabatic__wave__coupled.html#a3f907fc7025d3d3f7e44c222e12b4df1',1,'adiabatic_wave_coupled::eps()']]], - ['epsilo_3718',['epsilo',['../ERF__Constants_8H.html#a630c4c3e10ef44d50ca4c6939a59b6a3',1,'ERF_Constants.H']]], - ['erccoef_3719',['erccoef',['../ERF__Constants_8H.html#af90fa8b6a26f98067ce125597f35d983',1,'ERF_Constants.H']]], - ['erf1_3720',['erf1',['../classMultiBlockContainer.html#a1ee9fa78e0ade97253f818516df5d83d',1,'MultiBlockContainer']]], - ['erf2_3721',['erf2',['../classMultiBlockContainer.html#ac65a89fe2e12cff2c871d641f965e322',1,'MultiBlockContainer']]], - ['esccoef_3722',['esccoef',['../ERF__Constants_8H.html#ac16a7511bec41b7d5a558b5841e8f3b1',1,'ERF_Constants.H']]], - ['esicoef_3723',['esicoef',['../ERF__Constants_8H.html#a414035f12e97c86f4e40cb6763c29ddb',1,'ERF_Constants.H']]], - ['eta_5feps_3724',['eta_eps',['../structcustom__flux.html#aa04871c3e8d2e06f502cde2404c90be4',1,'custom_flux::eta_eps()'],['../structdonelan__flux.html#aac38c6d44658be0daa32dc8bd0b29adb',1,'donelan_flux::eta_eps()'],['../structmoeng__flux.html#a67cae16850c061bb189a783159ac6406',1,'moeng_flux::eta_eps()']]], - ['evapg1_3725',['evapg1',['../classSAM.html#a2e241fff555231e1cc87947a624bb5d6',1,'SAM']]], - ['evapg2_3726',['evapg2',['../classSAM.html#a3117e23160d027ccb4dacf744a477a40',1,'SAM']]], - ['evapr1_3727',['evapr1',['../classSAM.html#a8350a31a9f29bedee48b24bb43d5b0fc',1,'SAM']]], - ['evapr2_3728',['evapr2',['../classSAM.html#a0edeaaddf7573079fdc9af1484ce5582',1,'SAM']]], - ['evaps1_3729',['evaps1',['../classSAM.html#a56c463cbd313722b567dd88e7ac6fccd',1,'SAM']]], - ['evaps2_3730',['evaps2',['../classSAM.html#a8f9e9699afd94d393be846cd26933fd0',1,'SAM']]], - ['ext_5fcmip6_5fsw_3731',['ext_cmip6_sw',['../classAerRadProps.html#acf87aa0fdbfa3b73924a1f7c56088e55',1,'AerRadProps']]], - ['ext_5fsw_5fice_3732',['ext_sw_ice',['../classCloudRadProps.html#a4664e7123fdc065b7ff40e716453b050',1,'CloudRadProps']]], - ['ext_5fsw_5fliq_3733',['ext_sw_liq',['../classCloudRadProps.html#a98a74e616e9952f22102a6d3c3f4af51',1,'CloudRadProps']]], - ['extpsw_3734',['extpsw',['../structPhysProp_1_1physprop__t.html#aa86746c3ce43b7a278d78276bbe0d153',1,'PhysProp::physprop_t']]] + ['eccen_3718',['eccen',['../classRadiation.html#a62efb2cdbddfca4321d9e866b6a79b11',1,'Radiation']]], + ['eddydiffs_5flev_3719',['eddyDiffs_lev',['../classERF.html#a327d704704abd516be19339cb2d226f9',1,'ERF']]], + ['egccoef_3720',['egccoef',['../ERF__Constants_8H.html#a65f78c57eaba4f35dc9183cd2f3e66e3',1,'ERF_Constants.H']]], + ['egicoef_3721',['egicoef',['../ERF__Constants_8H.html#a6b49f5e9d61881c5a59656453a6c025f',1,'ERF_Constants.H']]], + ['empty_3722',['empty',['../classUnionListIF.html#ada33e955e690c4535d78e6db572707d7',1,'UnionListIF']]], + ['eps_3723',['eps',['../structsurface__flux__wave__coupled.html#aee14d25dbf38dc291b9c4900d737e121',1,'surface_flux_wave_coupled::eps()'],['../structWENO__Z5.html#ab4cfe75de30306d2462c33b4797fa570',1,'WENO_Z5::eps()'],['../structWENO__MZQ3.html#ad02f88cd05b6e31261fb3380887a2099',1,'WENO_MZQ3::eps()'],['../structWENO__Z3.html#a04370c4cf4d845f967ec610ff66f5d2b',1,'WENO_Z3::eps()'],['../structWENO5.html#a0eb3eb8be72f02731cd24f03d5c2b9ca',1,'WENO5::eps()'],['../structWENO3.html#a5ea04e699e55b168c29b38e9e453660f',1,'WENO3::eps()'],['../structcustom__flux.html#ae0e2af01151c51f4c335f053a8bb8f17',1,'custom_flux::eps()'],['../structmoeng__flux.html#a3d06eff1aa7d6c357e1245eb8f5b96f7',1,'moeng_flux::eps()'],['../structsurface__temp__wave__coupled.html#a2a663fad6d183ced2edb1dc99fe104bf',1,'surface_temp_wave_coupled::eps()'],['../structadiabatic__wave__coupled.html#a3f907fc7025d3d3f7e44c222e12b4df1',1,'adiabatic_wave_coupled::eps()']]], + ['epsilo_3724',['epsilo',['../ERF__Constants_8H.html#a630c4c3e10ef44d50ca4c6939a59b6a3',1,'ERF_Constants.H']]], + ['erccoef_3725',['erccoef',['../ERF__Constants_8H.html#af90fa8b6a26f98067ce125597f35d983',1,'ERF_Constants.H']]], + ['erf1_3726',['erf1',['../classMultiBlockContainer.html#a1ee9fa78e0ade97253f818516df5d83d',1,'MultiBlockContainer']]], + ['erf2_3727',['erf2',['../classMultiBlockContainer.html#ac65a89fe2e12cff2c871d641f965e322',1,'MultiBlockContainer']]], + ['esccoef_3728',['esccoef',['../ERF__Constants_8H.html#ac16a7511bec41b7d5a558b5841e8f3b1',1,'ERF_Constants.H']]], + ['esicoef_3729',['esicoef',['../ERF__Constants_8H.html#a414035f12e97c86f4e40cb6763c29ddb',1,'ERF_Constants.H']]], + ['eta_5feps_3730',['eta_eps',['../structcustom__flux.html#aa04871c3e8d2e06f502cde2404c90be4',1,'custom_flux::eta_eps()'],['../structdonelan__flux.html#aac38c6d44658be0daa32dc8bd0b29adb',1,'donelan_flux::eta_eps()'],['../structmoeng__flux.html#a67cae16850c061bb189a783159ac6406',1,'moeng_flux::eta_eps()']]], + ['evapg1_3731',['evapg1',['../classSAM.html#a2e241fff555231e1cc87947a624bb5d6',1,'SAM']]], + ['evapg2_3732',['evapg2',['../classSAM.html#a3117e23160d027ccb4dacf744a477a40',1,'SAM']]], + ['evapr1_3733',['evapr1',['../classSAM.html#a8350a31a9f29bedee48b24bb43d5b0fc',1,'SAM']]], + ['evapr2_3734',['evapr2',['../classSAM.html#a0edeaaddf7573079fdc9af1484ce5582',1,'SAM']]], + ['evaps1_3735',['evaps1',['../classSAM.html#a56c463cbd313722b567dd88e7ac6fccd',1,'SAM']]], + ['evaps2_3736',['evaps2',['../classSAM.html#a8f9e9699afd94d393be846cd26933fd0',1,'SAM']]], + ['ext_5fcmip6_5fsw_3737',['ext_cmip6_sw',['../classAerRadProps.html#acf87aa0fdbfa3b73924a1f7c56088e55',1,'AerRadProps']]], + ['ext_5fsw_5fice_3738',['ext_sw_ice',['../classCloudRadProps.html#a4664e7123fdc065b7ff40e716453b050',1,'CloudRadProps']]], + ['ext_5fsw_5fliq_3739',['ext_sw_liq',['../classCloudRadProps.html#a98a74e616e9952f22102a6d3c3f4af51',1,'CloudRadProps']]], + ['extpsw_3740',['extpsw',['../structPhysProp_1_1physprop__t.html#aa86746c3ce43b7a278d78276bbe0d153',1,'PhysProp::physprop_t']]] ]; diff --git a/search/variables_5.js b/search/variables_5.js index 8b37cdb60e..ab6988f4f2 100644 --- a/search/variables_5.js +++ b/search/variables_5.js @@ -1,25 +1,25 @@ var searchData= [ - ['f1_5factive_3735',['f1_active',['../classIntersectionCIF.html#addd5d1b2d4f051377f8b3b2b2fcc395e',1,'IntersectionCIF::f1_active()'],['../classUnionCIF.html#a2efa596306e1f101538ea7addef01c50',1,'UnionCIF::f1_active()']]], - ['f2_5factive_3736',['f2_active',['../classUnionCIF.html#a7a543347d220b1e1345c2af564cc0bd5',1,'UnionCIF::f2_active()'],['../classIntersectionCIF.html#a92f13c010706b380de68596e6ab778ec',1,'IntersectionCIF::f2_active()']]], - ['f_5fslow_3737',['F_slow',['../classMRISplitIntegrator.html#a088e107111ca012e026908b0c0b3cef7',1,'MRISplitIntegrator']]], - ['fast_5frhs_3738',['fast_rhs',['../classMRISplitIntegrator.html#a8f0b8ba2224608975dd1cfae5d811ffb',1,'MRISplitIntegrator']]], - ['fast_5frhs_5ffun_3739',['fast_rhs_fun',['../TI__fast__rhs__fun_8H.html#ac6afbd55bf5b7264098d44d9b8928f57',1,'TI_fast_rhs_fun.H']]], - ['fine_5fmask_3740',['fine_mask',['../classERF.html#a83c244120a15f0d9b9bca54e93976428',1,'ERF']]], - ['finished_5fwave_3741',['finished_wave',['../classERF.html#af282e3bdfdad38a0b898ed567ea446ee',1,'ERF']]], - ['fixed_5fdt_3742',['fixed_dt',['../classERF.html#acd88606a88916719171a267e9edf54c7',1,'ERF']]], - ['fixed_5ffast_5fdt_3743',['fixed_fast_dt',['../classERF.html#a20f8ed606dd006f84efa4ebed7b96130',1,'ERF']]], - ['fixed_5fmri_5fdt_5fratio_3744',['fixed_mri_dt_ratio',['../classERF.html#ad2e1a979c0ad68e87eaee349beb7e9fd',1,'ERF']]], - ['fixed_5ftotal_5fsolar_5firradiance_3745',['fixed_total_solar_irradiance',['../classRadiation.html#a0cdd06e704e50fd3f6f18781f7d4ec38',1,'Radiation']]], - ['flns_3746',['flns',['../classRadiation.html#a6a65d086e75212c5d372c2fbdb694843',1,'Radiation']]], - ['flnt_3747',['flnt',['../classRadiation.html#aff08760a7c9aaa416621ac1c5dd9ac45',1,'Radiation']]], - ['flux_5ftype_3748',['flux_type',['../classABLMost.html#ad837d92390012682056ffac0b5f9a8f9',1,'ABLMost']]], - ['force_5fstage1_5fsingle_5fsubstep_3749',['force_stage1_single_substep',['../structSolverChoice.html#a3f8ae511632557066f6662eec79591e1',1,'SolverChoice::force_stage1_single_substep()'],['../classMRISplitIntegrator.html#a5b2e5780482fdbeab2ce9c053557cbf8',1,'MRISplitIntegrator::force_stage1_single_substep()']]], - ['fpr_5fc_3750',['FPr_c',['../classERF.html#a34160ca20fb400ee285664117cb80512',1,'ERF']]], - ['fpr_5fu_3751',['FPr_u',['../classERF.html#a0ef3455d5b4fc9a178e023b233d389a4',1,'ERF']]], - ['fpr_5fv_3752',['FPr_v',['../classERF.html#a1dc7086aec533a042e6033706845b0c3',1,'ERF']]], - ['fpr_5fw_3753',['FPr_w',['../classERF.html#ac9a11403c2238d0d1e7b65b2d100dbaf',1,'ERF']]], - ['fsds_3754',['fsds',['../classRadiation.html#aed316beadd323289608d8f856ca4ce0c',1,'Radiation']]], - ['fsns_3755',['fsns',['../classRadiation.html#a51f5029d29ffc61296dc89ac879c3f55',1,'Radiation']]], - ['fsnt_3756',['fsnt',['../classRadiation.html#a20f4c5b60d245576263ba50c105dc610',1,'Radiation']]] + ['f1_5factive_3741',['f1_active',['../classIntersectionCIF.html#addd5d1b2d4f051377f8b3b2b2fcc395e',1,'IntersectionCIF::f1_active()'],['../classUnionCIF.html#a2efa596306e1f101538ea7addef01c50',1,'UnionCIF::f1_active()']]], + ['f2_5factive_3742',['f2_active',['../classUnionCIF.html#a7a543347d220b1e1345c2af564cc0bd5',1,'UnionCIF::f2_active()'],['../classIntersectionCIF.html#a92f13c010706b380de68596e6ab778ec',1,'IntersectionCIF::f2_active()']]], + ['f_5fslow_3743',['F_slow',['../classMRISplitIntegrator.html#a088e107111ca012e026908b0c0b3cef7',1,'MRISplitIntegrator']]], + ['fast_5frhs_3744',['fast_rhs',['../classMRISplitIntegrator.html#a8f0b8ba2224608975dd1cfae5d811ffb',1,'MRISplitIntegrator']]], + ['fast_5frhs_5ffun_3745',['fast_rhs_fun',['../TI__fast__rhs__fun_8H.html#ac6afbd55bf5b7264098d44d9b8928f57',1,'TI_fast_rhs_fun.H']]], + ['fine_5fmask_3746',['fine_mask',['../classERF.html#a83c244120a15f0d9b9bca54e93976428',1,'ERF']]], + ['finished_5fwave_3747',['finished_wave',['../classERF.html#af282e3bdfdad38a0b898ed567ea446ee',1,'ERF']]], + ['fixed_5fdt_3748',['fixed_dt',['../classERF.html#acd88606a88916719171a267e9edf54c7',1,'ERF']]], + ['fixed_5ffast_5fdt_3749',['fixed_fast_dt',['../classERF.html#a20f8ed606dd006f84efa4ebed7b96130',1,'ERF']]], + ['fixed_5fmri_5fdt_5fratio_3750',['fixed_mri_dt_ratio',['../classERF.html#ad2e1a979c0ad68e87eaee349beb7e9fd',1,'ERF']]], + ['fixed_5ftotal_5fsolar_5firradiance_3751',['fixed_total_solar_irradiance',['../classRadiation.html#a0cdd06e704e50fd3f6f18781f7d4ec38',1,'Radiation']]], + ['flns_3752',['flns',['../classRadiation.html#a6a65d086e75212c5d372c2fbdb694843',1,'Radiation']]], + ['flnt_3753',['flnt',['../classRadiation.html#aff08760a7c9aaa416621ac1c5dd9ac45',1,'Radiation']]], + ['flux_5ftype_3754',['flux_type',['../classABLMost.html#ad837d92390012682056ffac0b5f9a8f9',1,'ABLMost']]], + ['force_5fstage1_5fsingle_5fsubstep_3755',['force_stage1_single_substep',['../structSolverChoice.html#a3f8ae511632557066f6662eec79591e1',1,'SolverChoice::force_stage1_single_substep()'],['../classMRISplitIntegrator.html#a5b2e5780482fdbeab2ce9c053557cbf8',1,'MRISplitIntegrator::force_stage1_single_substep()']]], + ['fpr_5fc_3756',['FPr_c',['../classERF.html#a34160ca20fb400ee285664117cb80512',1,'ERF']]], + ['fpr_5fu_3757',['FPr_u',['../classERF.html#a0ef3455d5b4fc9a178e023b233d389a4',1,'ERF']]], + ['fpr_5fv_3758',['FPr_v',['../classERF.html#a1dc7086aec533a042e6033706845b0c3',1,'ERF']]], + ['fpr_5fw_3759',['FPr_w',['../classERF.html#ac9a11403c2238d0d1e7b65b2d100dbaf',1,'ERF']]], + ['fsds_3760',['fsds',['../classRadiation.html#aed316beadd323289608d8f856ca4ce0c',1,'Radiation']]], + ['fsns_3761',['fsns',['../classRadiation.html#a51f5029d29ffc61296dc89ac879c3f55',1,'Radiation']]], + ['fsnt_3762',['fsnt',['../classRadiation.html#a20f4c5b60d245576263ba50c105dc610',1,'Radiation']]] ]; diff --git a/search/variables_6.js b/search/variables_6.js index 5e84f4b790..b5a88f59be 100644 --- a/search/variables_6.js +++ b/search/variables_6.js @@ -1,25 +1,25 @@ var searchData= [ - ['g1_3757',['g1',['../structUPWIND3.html#a552999e68e80fcc77c602ba6818df36c',1,'UPWIND3::g1()'],['../structCENTERED2.html#ac8bd01fa97a379612f9457f992ea0782',1,'CENTERED2::g1()'],['../structWENO__Z5.html#a920795e7ec43cf67356aaf8943fde456',1,'WENO_Z5::g1()'],['../structWENO__MZQ3.html#ad6c988889194e31f809b878a8b75390e',1,'WENO_MZQ3::g1()'],['../structWENO__Z3.html#acc8bf5960d4d7e92184f50911c0a4871',1,'WENO_Z3::g1()'],['../structWENO5.html#acedffa739822ba3574a74f6e3e6fe7a3',1,'WENO5::g1()'],['../structCENTERED6.html#a6ffd5cab531876c4cb61598e3021e401',1,'CENTERED6::g1()'],['../structUPWIND5.html#a6020e2c4e4c44b76a2456ac7d2636007',1,'UPWIND5::g1()'],['../structCENTERED4.html#a2ae59ff4c8afe044deeb7a0b2569e34a',1,'CENTERED4::g1()'],['../structWENO3.html#a0c57f25abcb2dfd9ded1393d14d83568',1,'WENO3::g1()']]], - ['g1_5f3_5f4_3758',['g1_3_4',['../structUPWINDALL.html#a5ec3aa15176050449c9d3024c0956e18',1,'UPWINDALL']]], - ['g1_5f5_5f6_3759',['g1_5_6',['../structUPWINDALL.html#a5d775740326820a724fb9b7b3cd24ebe',1,'UPWINDALL']]], - ['g2_3760',['g2',['../structUPWIND5.html#a37388f6bd9c8c8352387d531db414ef8',1,'UPWIND5::g2()'],['../structWENO__Z5.html#af15d70f8e0513f44fb8fbab8c6b2020a',1,'WENO_Z5::g2()'],['../structWENO__MZQ3.html#a074870251e62994daec13919faff1576',1,'WENO_MZQ3::g2()'],['../structWENO__Z3.html#aa7976a5cf48e2e1cd1feecbaaa2218f9',1,'WENO_Z3::g2()'],['../structWENO5.html#a4e300b80fa08a8a265ca1b3caa1fe009',1,'WENO5::g2()'],['../structWENO3.html#a7726242b3b06bf75643f8141d2ca78c8',1,'WENO3::g2()'],['../structCENTERED6.html#a32c3566f07adb5481cf94c54893a4206',1,'CENTERED6::g2()'],['../structCENTERED4.html#affba80f935c74285d66f7b86c7b859db',1,'CENTERED4::g2()'],['../structUPWIND3.html#a2a9ea3ce4eb7b5ba778a5a0a7a9a1922',1,'UPWIND3::g2()']]], - ['g2_5f3_5f4_3761',['g2_3_4',['../structUPWINDALL.html#a771832bce0ef052b6cfd438a385e2f1b',1,'UPWINDALL']]], - ['g2_5f5_5f6_3762',['g2_5_6',['../structUPWINDALL.html#ad549123976e1f955e7880cdee4871e36',1,'UPWINDALL']]], - ['g3_3763',['g3',['../structCENTERED6.html#addc1b756f97d4883080045a187e4d433',1,'CENTERED6::g3()'],['../structWENO5.html#acab4e47113826df9a8469d5647507385',1,'WENO5::g3()'],['../structWENO__MZQ3.html#a97cfb78afa5c496fb3194141f284556c',1,'WENO_MZQ3::g3()'],['../structWENO__Z5.html#a2249935126e5768605c37eb9879765eb',1,'WENO_Z5::g3()'],['../structUPWIND5.html#aa8f3c0ecf7c76a2952679bd5c366b867',1,'UPWIND5::g3()']]], - ['g3_5f5_5f6_3764',['g3_5_6',['../structUPWINDALL.html#a97d82cab1041d98ca70c6abc80286f6b',1,'UPWINDALL']]], - ['g_5fd_5feff_3765',['g_d_eff',['../classCloudRadProps.html#ae567379b95d6a04ffa0680568d057905',1,'CloudRadProps']]], - ['g_5flambda_3766',['g_lambda',['../classCloudRadProps.html#a58599e69fa4af17830d28c4836e386db',1,'CloudRadProps']]], - ['g_5fmu_3767',['g_mu',['../classCloudRadProps.html#a24ce2602b37e1f5c1becf3ba0baee9d1',1,'CloudRadProps']]], - ['gamaz_3768',['gamaz',['../classSAM.html#af47c1dda6481ee4549b60f2c03bdec18',1,'SAM']]], - ['gamma_3769',['Gamma',['../ERF__Constants_8H.html#afbb622bf3b404a3e7c77f3103b4d1231',1,'ERF_Constants.H']]], - ['gamma_5fh_3770',['gamma_h',['../structsimilarity__funs.html#a6c53efd885ed922115193bc9a36cb0e6',1,'similarity_funs']]], - ['gamma_5fm_3771',['gamma_m',['../structsimilarity__funs.html#ae78007489e8da2bf08c6f999381b9512',1,'similarity_funs']]], - ['gas_3772',['gas',['../structMamConstituents_1_1gaslist__t.html#aead26e24deeb3139776252191edc547b',1,'MamConstituents::gaslist_t']]], - ['gas_5fnames_3773',['gas_names',['../classOptics.html#aba268b2221309fdc437349b1427c5c6d',1,'Optics']]], - ['gaslist_3774',['gaslist',['../classMamConstituents.html#abd637475ed7adbc96892dc92b86d8f57',1,'MamConstituents::gaslist()'],['../classRadConstants.html#abaa201a157c245b8f20605e3d3c94938',1,'RadConstants::gaslist()']]], - ['gasnames_3775',['gasnames',['../classRadiation.html#a7d59cd8c1bc45b5c128726107a71b6bb',1,'Radiation']]], - ['geometric_5fradius_3776',['geometric_radius',['../classAerRadProps.html#a315308c2521564d2531785962659d292',1,'AerRadProps']]], - ['gravity_3777',['gravity',['../structmost__data.html#a7e3410c5a9916b84524bda4f324eec3b',1,'most_data::gravity()'],['../structSolverChoice.html#a47a54f2e44955202b5b437e4b1b4a61b',1,'SolverChoice::gravity()']]], - ['grid_5fstretching_5fratio_3778',['grid_stretching_ratio',['../structSolverChoice.html#a63b6fffe930de9eb25f92c2bafb00c00',1,'SolverChoice']]] + ['g1_3763',['g1',['../structUPWIND3.html#a552999e68e80fcc77c602ba6818df36c',1,'UPWIND3::g1()'],['../structCENTERED2.html#ac8bd01fa97a379612f9457f992ea0782',1,'CENTERED2::g1()'],['../structWENO__Z5.html#a920795e7ec43cf67356aaf8943fde456',1,'WENO_Z5::g1()'],['../structWENO__MZQ3.html#ad6c988889194e31f809b878a8b75390e',1,'WENO_MZQ3::g1()'],['../structWENO__Z3.html#acc8bf5960d4d7e92184f50911c0a4871',1,'WENO_Z3::g1()'],['../structWENO5.html#acedffa739822ba3574a74f6e3e6fe7a3',1,'WENO5::g1()'],['../structCENTERED6.html#a6ffd5cab531876c4cb61598e3021e401',1,'CENTERED6::g1()'],['../structUPWIND5.html#a6020e2c4e4c44b76a2456ac7d2636007',1,'UPWIND5::g1()'],['../structCENTERED4.html#a2ae59ff4c8afe044deeb7a0b2569e34a',1,'CENTERED4::g1()'],['../structWENO3.html#a0c57f25abcb2dfd9ded1393d14d83568',1,'WENO3::g1()']]], + ['g1_5f3_5f4_3764',['g1_3_4',['../structUPWINDALL.html#a5ec3aa15176050449c9d3024c0956e18',1,'UPWINDALL']]], + ['g1_5f5_5f6_3765',['g1_5_6',['../structUPWINDALL.html#a5d775740326820a724fb9b7b3cd24ebe',1,'UPWINDALL']]], + ['g2_3766',['g2',['../structUPWIND5.html#a37388f6bd9c8c8352387d531db414ef8',1,'UPWIND5::g2()'],['../structWENO__Z5.html#af15d70f8e0513f44fb8fbab8c6b2020a',1,'WENO_Z5::g2()'],['../structWENO__MZQ3.html#a074870251e62994daec13919faff1576',1,'WENO_MZQ3::g2()'],['../structWENO__Z3.html#aa7976a5cf48e2e1cd1feecbaaa2218f9',1,'WENO_Z3::g2()'],['../structWENO5.html#a4e300b80fa08a8a265ca1b3caa1fe009',1,'WENO5::g2()'],['../structWENO3.html#a7726242b3b06bf75643f8141d2ca78c8',1,'WENO3::g2()'],['../structCENTERED6.html#a32c3566f07adb5481cf94c54893a4206',1,'CENTERED6::g2()'],['../structCENTERED4.html#affba80f935c74285d66f7b86c7b859db',1,'CENTERED4::g2()'],['../structUPWIND3.html#a2a9ea3ce4eb7b5ba778a5a0a7a9a1922',1,'UPWIND3::g2()']]], + ['g2_5f3_5f4_3767',['g2_3_4',['../structUPWINDALL.html#a771832bce0ef052b6cfd438a385e2f1b',1,'UPWINDALL']]], + ['g2_5f5_5f6_3768',['g2_5_6',['../structUPWINDALL.html#ad549123976e1f955e7880cdee4871e36',1,'UPWINDALL']]], + ['g3_3769',['g3',['../structCENTERED6.html#addc1b756f97d4883080045a187e4d433',1,'CENTERED6::g3()'],['../structWENO5.html#acab4e47113826df9a8469d5647507385',1,'WENO5::g3()'],['../structWENO__MZQ3.html#a97cfb78afa5c496fb3194141f284556c',1,'WENO_MZQ3::g3()'],['../structWENO__Z5.html#a2249935126e5768605c37eb9879765eb',1,'WENO_Z5::g3()'],['../structUPWIND5.html#aa8f3c0ecf7c76a2952679bd5c366b867',1,'UPWIND5::g3()']]], + ['g3_5f5_5f6_3770',['g3_5_6',['../structUPWINDALL.html#a97d82cab1041d98ca70c6abc80286f6b',1,'UPWINDALL']]], + ['g_5fd_5feff_3771',['g_d_eff',['../classCloudRadProps.html#ae567379b95d6a04ffa0680568d057905',1,'CloudRadProps']]], + ['g_5flambda_3772',['g_lambda',['../classCloudRadProps.html#a58599e69fa4af17830d28c4836e386db',1,'CloudRadProps']]], + ['g_5fmu_3773',['g_mu',['../classCloudRadProps.html#a24ce2602b37e1f5c1becf3ba0baee9d1',1,'CloudRadProps']]], + ['gamaz_3774',['gamaz',['../classSAM.html#af47c1dda6481ee4549b60f2c03bdec18',1,'SAM']]], + ['gamma_3775',['Gamma',['../ERF__Constants_8H.html#afbb622bf3b404a3e7c77f3103b4d1231',1,'ERF_Constants.H']]], + ['gamma_5fh_3776',['gamma_h',['../structsimilarity__funs.html#a6c53efd885ed922115193bc9a36cb0e6',1,'similarity_funs']]], + ['gamma_5fm_3777',['gamma_m',['../structsimilarity__funs.html#ae78007489e8da2bf08c6f999381b9512',1,'similarity_funs']]], + ['gas_3778',['gas',['../structMamConstituents_1_1gaslist__t.html#aead26e24deeb3139776252191edc547b',1,'MamConstituents::gaslist_t']]], + ['gas_5fnames_3779',['gas_names',['../classOptics.html#aba268b2221309fdc437349b1427c5c6d',1,'Optics']]], + ['gaslist_3780',['gaslist',['../classMamConstituents.html#abd637475ed7adbc96892dc92b86d8f57',1,'MamConstituents::gaslist()'],['../classRadConstants.html#abaa201a157c245b8f20605e3d3c94938',1,'RadConstants::gaslist()']]], + ['gasnames_3781',['gasnames',['../classRadiation.html#a7d59cd8c1bc45b5c128726107a71b6bb',1,'Radiation']]], + ['geometric_5fradius_3782',['geometric_radius',['../classAerRadProps.html#a315308c2521564d2531785962659d292',1,'AerRadProps']]], + ['gravity_3783',['gravity',['../structmost__data.html#a7e3410c5a9916b84524bda4f324eec3b',1,'most_data::gravity()'],['../structSolverChoice.html#a47a54f2e44955202b5b437e4b1b4a61b',1,'SolverChoice::gravity()']]], + ['grid_5fstretching_5fratio_3784',['grid_stretching_ratio',['../structSolverChoice.html#a63b6fffe930de9eb25f92c2bafb00c00',1,'SolverChoice']]] ]; diff --git a/search/variables_7.js b/search/variables_7.js index 93e71404af..97d348935d 100644 --- a/search/variables_7.js +++ b/search/variables_7.js @@ -1,22 +1,22 @@ var searchData= [ - ['h2otrip_3779',['h2otrip',['../ERF__Constants_8H.html#af5689377f29be012360a846bd447e278',1,'ERF_Constants.H']]], - ['h_5fhavg_5fdensity_3780',['h_havg_density',['../classERF.html#a4dd7c603e65d230105a4f1e0afb4cf8a',1,'ERF']]], - ['h_5fhavg_5fpressure_3781',['h_havg_pressure',['../classERF.html#a413293737b0021c97b50c62756561446',1,'ERF']]], - ['h_5fhavg_5fqc_3782',['h_havg_qc',['../classERF.html#a45233bcc95ac50c112b7146595164a8d',1,'ERF']]], - ['h_5fhavg_5fqv_3783',['h_havg_qv',['../classERF.html#ae8de26569516b41e5dc3cbb3419e891c',1,'ERF']]], - ['h_5fhavg_5ftemperature_3784',['h_havg_temperature',['../classERF.html#a9683c7b07c287e57856ee5a9c99917a1',1,'ERF']]], - ['h_5frayleigh_5fptrs_3785',['h_rayleigh_ptrs',['../classERF.html#ad9939824ea7b7d06ab252fed28d5a911',1,'ERF']]], - ['h_5frhoqt_5fsrc_3786',['h_rhoqt_src',['../classERF.html#a3c5eca26a28dda3a981b3581abadfca0',1,'ERF']]], - ['h_5frhotheta_5fsrc_3787',['h_rhotheta_src',['../classERF.html#a87aad7caaf3b575734994b47628a2faf',1,'ERF']]], - ['h_5fsponge_5fptrs_3788',['h_sponge_ptrs',['../classERF.html#a20a0f0d26791321eb4bbba6baee9f159',1,'ERF']]], - ['h_5fu_5fgeos_3789',['h_u_geos',['../classERF.html#a911c70f76cf62f205a1ce152ec4cdb54',1,'ERF']]], - ['h_5fv_5fgeos_3790',['h_v_geos',['../classERF.html#a825daede57fae86805edffd85d5d9dab',1,'ERF']]], - ['h_5fw_5fsubsid_3791',['h_w_subsid',['../classERF.html#a1a5d0d0b4e8c196f56dfab98f245aff5',1,'ERF']]], - ['have_5fgeo_5fwind_5fprofile_3792',['have_geo_wind_profile',['../structSolverChoice.html#a65faffc1ea490b3934a9df768cfa26f1',1,'SolverChoice']]], - ['hub_5fheight_3793',['hub_height',['../classEWP.html#a2ee471b0dcad3057297b809f4c5141ab',1,'EWP::hub_height()'],['../classFitch.html#ae3af34c6c07fd2d8b9b081b5c7ceb443',1,'Fitch::hub_height()'],['../classSimpleAD.html#a4c17a08ad746b342bf62d7a1ad93781a',1,'SimpleAD::hub_height()'],['../classWindFarm.html#a6dfd6451498f50c17cb67c386d13ddfb',1,'WindFarm::hub_height()']]], - ['huge_5freal_3794',['huge_real',['../classModalAeroWateruptake.html#a7b99efd9601245afe2274c268afb5305',1,'ModalAeroWateruptake']]], - ['hwave_3795',['Hwave',['../classERF.html#aef05cf88e9e9d2b56112336761493977',1,'ERF']]], - ['hwave_5fonegrid_3796',['Hwave_onegrid',['../classERF.html#a11f2d48d9af9b8f4574975cae06838f1',1,'ERF']]], - ['hygro_5faer_3797',['hygro_aer',['../structPhysProp_1_1physprop__t.html#af60d655c402eb7e47763c631b9432552',1,'PhysProp::physprop_t']]] + ['h2otrip_3785',['h2otrip',['../ERF__Constants_8H.html#af5689377f29be012360a846bd447e278',1,'ERF_Constants.H']]], + ['h_5fhavg_5fdensity_3786',['h_havg_density',['../classERF.html#a4dd7c603e65d230105a4f1e0afb4cf8a',1,'ERF']]], + ['h_5fhavg_5fpressure_3787',['h_havg_pressure',['../classERF.html#a413293737b0021c97b50c62756561446',1,'ERF']]], + ['h_5fhavg_5fqc_3788',['h_havg_qc',['../classERF.html#a45233bcc95ac50c112b7146595164a8d',1,'ERF']]], + ['h_5fhavg_5fqv_3789',['h_havg_qv',['../classERF.html#ae8de26569516b41e5dc3cbb3419e891c',1,'ERF']]], + ['h_5fhavg_5ftemperature_3790',['h_havg_temperature',['../classERF.html#a9683c7b07c287e57856ee5a9c99917a1',1,'ERF']]], + ['h_5frayleigh_5fptrs_3791',['h_rayleigh_ptrs',['../classERF.html#ad9939824ea7b7d06ab252fed28d5a911',1,'ERF']]], + ['h_5frhoqt_5fsrc_3792',['h_rhoqt_src',['../classERF.html#a3c5eca26a28dda3a981b3581abadfca0',1,'ERF']]], + ['h_5frhotheta_5fsrc_3793',['h_rhotheta_src',['../classERF.html#a87aad7caaf3b575734994b47628a2faf',1,'ERF']]], + ['h_5fsponge_5fptrs_3794',['h_sponge_ptrs',['../classERF.html#a20a0f0d26791321eb4bbba6baee9f159',1,'ERF']]], + ['h_5fu_5fgeos_3795',['h_u_geos',['../classERF.html#a911c70f76cf62f205a1ce152ec4cdb54',1,'ERF']]], + ['h_5fv_5fgeos_3796',['h_v_geos',['../classERF.html#a825daede57fae86805edffd85d5d9dab',1,'ERF']]], + ['h_5fw_5fsubsid_3797',['h_w_subsid',['../classERF.html#a1a5d0d0b4e8c196f56dfab98f245aff5',1,'ERF']]], + ['have_5fgeo_5fwind_5fprofile_3798',['have_geo_wind_profile',['../structSolverChoice.html#a65faffc1ea490b3934a9df768cfa26f1',1,'SolverChoice']]], + ['hub_5fheight_3799',['hub_height',['../classEWP.html#a2ee471b0dcad3057297b809f4c5141ab',1,'EWP::hub_height()'],['../classFitch.html#ae3af34c6c07fd2d8b9b081b5c7ceb443',1,'Fitch::hub_height()'],['../classSimpleAD.html#a4c17a08ad746b342bf62d7a1ad93781a',1,'SimpleAD::hub_height()'],['../classWindFarm.html#a6dfd6451498f50c17cb67c386d13ddfb',1,'WindFarm::hub_height()']]], + ['huge_5freal_3800',['huge_real',['../classModalAeroWateruptake.html#a7b99efd9601245afe2274c268afb5305',1,'ModalAeroWateruptake']]], + ['hwave_3801',['Hwave',['../classERF.html#aef05cf88e9e9d2b56112336761493977',1,'ERF']]], + ['hwave_5fonegrid_3802',['Hwave_onegrid',['../classERF.html#a11f2d48d9af9b8f4574975cae06838f1',1,'ERF']]], + ['hygro_5faer_3803',['hygro_aer',['../structPhysProp_1_1physprop__t.html#af60d655c402eb7e47763c631b9432552',1,'PhysProp::physprop_t']]] ]; diff --git a/search/variables_8.js b/search/variables_8.js index e417221662..899ede23db 100644 --- a/search/variables_8.js +++ b/search/variables_8.js @@ -1,45 +1,45 @@ var searchData= [ - ['ice_5ffile_3798',['ice_file',['../classCloudRadProps.html#a4bdca9fbb3d26b9b013ea06b9385017e',1,'CloudRadProps']]], - ['icecldoptics_3799',['icecldoptics',['../classMamConstituents.html#a45adfa2e9bca7c7a7b0dd807779e94ac',1,'MamConstituents::icecldoptics()'],['../classOptics.html#a357f26f1bf42c917131a48782732ce03',1,'Optics::icecldoptics()']]], - ['iceopticsfile_3800',['iceopticsfile',['../classMamConstituents.html#a0e74835fc2592d78facf9e4d9ea36f1c',1,'MamConstituents']]], - ['icesize_5ftable_5fmin_5ftemp_3801',['icesize_table_min_temp',['../classRadConstants.html#ab527187d8cc457be894cb3b4d5f3a22b',1,'RadConstants']]], - ['idx_3802',['idx',['../structMamConstituents_1_1gas__t.html#a92407cc5cf2752a7f7626b6f034e2fd3',1,'MamConstituents::gas_t::idx()'],['../structMamConstituents_1_1aerosol__t.html#a417db05e152088ff32fa5ca0ed2fadcc',1,'MamConstituents::aerosol_t::idx()'],['../structMamConstituents_1_1modelist__t.html#a8b01fce25cf4e89d61786dc304af557a',1,'MamConstituents::modelist_t::idx()']]], - ['idx_5flw_5fdiag_3803',['idx_lw_diag',['../classRadConstants.html#a4be67e03614ad60a9a3e5b0a5296a232',1,'RadConstants']]], - ['idx_5fmmr_5fa_3804',['idx_mmr_a',['../structMamConstituents_1_1mode__component__t.html#a5325a6229804cf4ead4edd0ae3365368',1,'MamConstituents::mode_component_t']]], - ['idx_5fmmr_5fc_3805',['idx_mmr_c',['../structMamConstituents_1_1mode__component__t.html#a2068ed3ee6d1c031830fdd74950c9dab',1,'MamConstituents::mode_component_t']]], - ['idx_5fnir_5fdiag_3806',['idx_nir_diag',['../classRadConstants.html#a5eccb1fa499f9f02449912985f70aa8e',1,'RadConstants']]], - ['idx_5fnum_5fa_3807',['idx_num_a',['../structMamConstituents_1_1mode__component__t.html#a27f686068187bef4800b0f50d673f636',1,'MamConstituents::mode_component_t']]], - ['idx_5fnum_5fc_3808',['idx_num_c',['../structMamConstituents_1_1mode__component__t.html#afeac72ae7d7e859f79d4c4c2baf54473',1,'MamConstituents::mode_component_t']]], - ['idx_5fprops_3809',['idx_props',['../structMamConstituents_1_1mode__component__t.html#a7ee6b4be8e5ef923b0f0ac0d56a5ee6c',1,'MamConstituents::mode_component_t::idx_props()'],['../structMamConstituents_1_1modelist__t.html#a1e532f0738a48c0740d4af9f635bef5c',1,'MamConstituents::modelist_t::idx_props()']]], - ['idx_5fsw_5fdiag_3810',['idx_sw_diag',['../classRadConstants.html#aa8d069e0dd3bcec898e914167c02f4ee',1,'RadConstants']]], - ['idx_5fuv_5fdiag_3811',['idx_uv_diag',['../classRadConstants.html#ab6e2774dc2b5fbd26204c95bb601610c',1,'RadConstants']]], - ['igamma_3812',['iGamma',['../ERF__Constants_8H.html#ab24194b3b11ee04368e1087acda6bde7',1,'ERF_Constants.H']]], - ['ihirsfq_3813',['ihirsfq',['../classRadiation.html#aa15d7c4d015604b92db440a1c5b1c988',1,'Radiation']]], - ['imax_3814',['imax',['../classModalAeroWateruptake.html#a5cc5abb758503a218ee7331ce15abf4e',1,'ModalAeroWateruptake']]], - ['incompressible_3815',['incompressible',['../structSolverChoice.html#ad77ddc1a1eff7c49195d54b69aab46f5',1,'SolverChoice::incompressible()'],['../classMRISplitIntegrator.html#a0d098cde79e83464b8b019fca2d9c158',1,'MRISplitIntegrator::incompressible()']]], - ['init_5fshrink_3816',['init_shrink',['../classERF.html#ad353aa9e275612ff2110c5a1405c1176',1,'ERF']]], - ['init_5fsounding_5fideal_3817',['init_sounding_ideal',['../classERF.html#a2eb81c590271b429f132103c9af25830',1,'ERF']]], - ['init_5ftype_3818',['init_type',['../classERF.html#af5ac3d88a33a1a284bcc120ce0599cf7',1,'ERF']]], - ['input_5fbndry_5fplanes_3819',['input_bndry_planes',['../classERF.html#a80ad08512968ec45635df68abe66b1fc',1,'ERF']]], - ['input_5fsounding_5fdata_3820',['input_sounding_data',['../classERF.html#a83572d8dfad51158945b4a5ab06b2f72',1,'ERF']]], - ['input_5fsounding_5ffile_3821',['input_sounding_file',['../classERF.html#a536424e14c4139e4683b15c59e742362',1,'ERF']]], - ['input_5fsponge_5fdata_3822',['input_sponge_data',['../classERF.html#a8cb877a46fd94b5294425299dcb9cbaf',1,'ERF']]], - ['input_5fsponge_5ffile_3823',['input_sponge_file',['../classERF.html#a09640f950657e8bf63e9eafb6ce5e0a6',1,'ERF']]], - ['inputs_5fname_3824',['inputs_name',['../main_8cpp.html#aabaa127a3a319c1b86090d6c88568965',1,'inputs_name(): main.cpp'],['../writeJobInfo_8cpp.html#aabaa127a3a319c1b86090d6c88568965',1,'inputs_name(): main.cpp'],['../NCPlotFile_8H.html#aabaa127a3a319c1b86090d6c88568965',1,'inputs_name(): main.cpp']]], - ['int_3825',['Int',['../structncutils_1_1NCDType.html#ac5bfba212db12de3dfde52dc3ae3eb0c',1,'ncutils::NCDType']]], - ['ip_5f0_3826',['ip_0',['../ERF__Constants_8H.html#a8e89876f083cff186cc6124a1100e000',1,'ERF_Constants.H']]], - ['ir_5fd_3827',['iR_d',['../ERF__Constants_8H.html#a2c83556bc439f3f48ca5eb1cb5c81842',1,'ERF_Constants.H']]], - ['is_5fcmip6_5fvolc_3828',['is_cmip6_volc',['../classRadiation.html#a15ee15df795cea37aa3c93007f612cbd',1,'Radiation']]], - ['is_5fdensity_5fread_3829',['is_density_read',['../classReadBndryPlanes.html#a4bd406d7cec0850958383e33070a1c10',1,'ReadBndryPlanes']]], - ['is_5fke_5fread_3830',['is_KE_read',['../classReadBndryPlanes.html#a73ac00b0346e2510c6abf4fe6b08b100',1,'ReadBndryPlanes']]], - ['is_5fopen_3831',['is_open',['../classncutils_1_1NCFile.html#aa98d902ef67803393e80929bb73cb379',1,'ncutils::NCFile']]], - ['is_5fq1_5fread_3832',['is_q1_read',['../classReadBndryPlanes.html#ab1d7a9c8ad42eef46dbe0ce08c11c59b',1,'ReadBndryPlanes']]], - ['is_5fq2_5fread_3833',['is_q2_read',['../classReadBndryPlanes.html#a17e53d69ef900a4b14934f09a1a3c323',1,'ReadBndryPlanes']]], - ['is_5fqke_5fread_3834',['is_QKE_read',['../classReadBndryPlanes.html#a877b2f6dea2be4dd49c11424e2709aed',1,'ReadBndryPlanes']]], - ['is_5fscalar_5fread_3835',['is_scalar_read',['../classReadBndryPlanes.html#ab19118114d40ef7034e3072f3858bb59',1,'ReadBndryPlanes']]], - ['is_5ftemperature_5fread_3836',['is_temperature_read',['../classReadBndryPlanes.html#a4303d9f55f221509e6e91246a67c0a54',1,'ReadBndryPlanes']]], - ['is_5ftheta_5fread_3837',['is_theta_read',['../classReadBndryPlanes.html#a28a4ac197463cc8133d290b62efdf30a',1,'ReadBndryPlanes']]], - ['is_5fvelocity_5fread_3838',['is_velocity_read',['../classReadBndryPlanes.html#a14bf0864afdd66d2f497ad5372d526ff',1,'ReadBndryPlanes']]], - ['istep_3839',['istep',['../classERF.html#aefa640a036c25b7b770e88a5f838eb2a',1,'ERF']]] + ['ice_5ffile_3804',['ice_file',['../classCloudRadProps.html#a4bdca9fbb3d26b9b013ea06b9385017e',1,'CloudRadProps']]], + ['icecldoptics_3805',['icecldoptics',['../classMamConstituents.html#a45adfa2e9bca7c7a7b0dd807779e94ac',1,'MamConstituents::icecldoptics()'],['../classOptics.html#a357f26f1bf42c917131a48782732ce03',1,'Optics::icecldoptics()']]], + ['iceopticsfile_3806',['iceopticsfile',['../classMamConstituents.html#a0e74835fc2592d78facf9e4d9ea36f1c',1,'MamConstituents']]], + ['icesize_5ftable_5fmin_5ftemp_3807',['icesize_table_min_temp',['../classRadConstants.html#ab527187d8cc457be894cb3b4d5f3a22b',1,'RadConstants']]], + ['idx_3808',['idx',['../structMamConstituents_1_1gas__t.html#a92407cc5cf2752a7f7626b6f034e2fd3',1,'MamConstituents::gas_t::idx()'],['../structMamConstituents_1_1aerosol__t.html#a417db05e152088ff32fa5ca0ed2fadcc',1,'MamConstituents::aerosol_t::idx()'],['../structMamConstituents_1_1modelist__t.html#a8b01fce25cf4e89d61786dc304af557a',1,'MamConstituents::modelist_t::idx()']]], + ['idx_5flw_5fdiag_3809',['idx_lw_diag',['../classRadConstants.html#a4be67e03614ad60a9a3e5b0a5296a232',1,'RadConstants']]], + ['idx_5fmmr_5fa_3810',['idx_mmr_a',['../structMamConstituents_1_1mode__component__t.html#a5325a6229804cf4ead4edd0ae3365368',1,'MamConstituents::mode_component_t']]], + ['idx_5fmmr_5fc_3811',['idx_mmr_c',['../structMamConstituents_1_1mode__component__t.html#a2068ed3ee6d1c031830fdd74950c9dab',1,'MamConstituents::mode_component_t']]], + ['idx_5fnir_5fdiag_3812',['idx_nir_diag',['../classRadConstants.html#a5eccb1fa499f9f02449912985f70aa8e',1,'RadConstants']]], + ['idx_5fnum_5fa_3813',['idx_num_a',['../structMamConstituents_1_1mode__component__t.html#a27f686068187bef4800b0f50d673f636',1,'MamConstituents::mode_component_t']]], + ['idx_5fnum_5fc_3814',['idx_num_c',['../structMamConstituents_1_1mode__component__t.html#afeac72ae7d7e859f79d4c4c2baf54473',1,'MamConstituents::mode_component_t']]], + ['idx_5fprops_3815',['idx_props',['../structMamConstituents_1_1mode__component__t.html#a7ee6b4be8e5ef923b0f0ac0d56a5ee6c',1,'MamConstituents::mode_component_t::idx_props()'],['../structMamConstituents_1_1modelist__t.html#a1e532f0738a48c0740d4af9f635bef5c',1,'MamConstituents::modelist_t::idx_props()']]], + ['idx_5fsw_5fdiag_3816',['idx_sw_diag',['../classRadConstants.html#aa8d069e0dd3bcec898e914167c02f4ee',1,'RadConstants']]], + ['idx_5fuv_5fdiag_3817',['idx_uv_diag',['../classRadConstants.html#ab6e2774dc2b5fbd26204c95bb601610c',1,'RadConstants']]], + ['igamma_3818',['iGamma',['../ERF__Constants_8H.html#ab24194b3b11ee04368e1087acda6bde7',1,'ERF_Constants.H']]], + ['ihirsfq_3819',['ihirsfq',['../classRadiation.html#aa15d7c4d015604b92db440a1c5b1c988',1,'Radiation']]], + ['imax_3820',['imax',['../classModalAeroWateruptake.html#a5cc5abb758503a218ee7331ce15abf4e',1,'ModalAeroWateruptake']]], + ['incompressible_3821',['incompressible',['../structSolverChoice.html#ad77ddc1a1eff7c49195d54b69aab46f5',1,'SolverChoice::incompressible()'],['../classMRISplitIntegrator.html#a0d098cde79e83464b8b019fca2d9c158',1,'MRISplitIntegrator::incompressible()']]], + ['init_5fshrink_3822',['init_shrink',['../classERF.html#ad353aa9e275612ff2110c5a1405c1176',1,'ERF']]], + ['init_5fsounding_5fideal_3823',['init_sounding_ideal',['../classERF.html#a2eb81c590271b429f132103c9af25830',1,'ERF']]], + ['init_5ftype_3824',['init_type',['../classERF.html#af5ac3d88a33a1a284bcc120ce0599cf7',1,'ERF']]], + ['input_5fbndry_5fplanes_3825',['input_bndry_planes',['../classERF.html#a80ad08512968ec45635df68abe66b1fc',1,'ERF']]], + ['input_5fsounding_5fdata_3826',['input_sounding_data',['../classERF.html#a83572d8dfad51158945b4a5ab06b2f72',1,'ERF']]], + ['input_5fsounding_5ffile_3827',['input_sounding_file',['../classERF.html#a536424e14c4139e4683b15c59e742362',1,'ERF']]], + ['input_5fsponge_5fdata_3828',['input_sponge_data',['../classERF.html#a8cb877a46fd94b5294425299dcb9cbaf',1,'ERF']]], + ['input_5fsponge_5ffile_3829',['input_sponge_file',['../classERF.html#a09640f950657e8bf63e9eafb6ce5e0a6',1,'ERF']]], + ['inputs_5fname_3830',['inputs_name',['../main_8cpp.html#aabaa127a3a319c1b86090d6c88568965',1,'inputs_name(): main.cpp'],['../writeJobInfo_8cpp.html#aabaa127a3a319c1b86090d6c88568965',1,'inputs_name(): main.cpp'],['../NCPlotFile_8H.html#aabaa127a3a319c1b86090d6c88568965',1,'inputs_name(): main.cpp']]], + ['int_3831',['Int',['../structncutils_1_1NCDType.html#ac5bfba212db12de3dfde52dc3ae3eb0c',1,'ncutils::NCDType']]], + ['ip_5f0_3832',['ip_0',['../ERF__Constants_8H.html#a8e89876f083cff186cc6124a1100e000',1,'ERF_Constants.H']]], + ['ir_5fd_3833',['iR_d',['../ERF__Constants_8H.html#a2c83556bc439f3f48ca5eb1cb5c81842',1,'ERF_Constants.H']]], + ['is_5fcmip6_5fvolc_3834',['is_cmip6_volc',['../classRadiation.html#a15ee15df795cea37aa3c93007f612cbd',1,'Radiation']]], + ['is_5fdensity_5fread_3835',['is_density_read',['../classReadBndryPlanes.html#a4bd406d7cec0850958383e33070a1c10',1,'ReadBndryPlanes']]], + ['is_5fke_5fread_3836',['is_KE_read',['../classReadBndryPlanes.html#a73ac00b0346e2510c6abf4fe6b08b100',1,'ReadBndryPlanes']]], + ['is_5fopen_3837',['is_open',['../classncutils_1_1NCFile.html#aa98d902ef67803393e80929bb73cb379',1,'ncutils::NCFile']]], + ['is_5fq1_5fread_3838',['is_q1_read',['../classReadBndryPlanes.html#ab1d7a9c8ad42eef46dbe0ce08c11c59b',1,'ReadBndryPlanes']]], + ['is_5fq2_5fread_3839',['is_q2_read',['../classReadBndryPlanes.html#a17e53d69ef900a4b14934f09a1a3c323',1,'ReadBndryPlanes']]], + ['is_5fqke_5fread_3840',['is_QKE_read',['../classReadBndryPlanes.html#a877b2f6dea2be4dd49c11424e2709aed',1,'ReadBndryPlanes']]], + ['is_5fscalar_5fread_3841',['is_scalar_read',['../classReadBndryPlanes.html#ab19118114d40ef7034e3072f3858bb59',1,'ReadBndryPlanes']]], + ['is_5ftemperature_5fread_3842',['is_temperature_read',['../classReadBndryPlanes.html#a4303d9f55f221509e6e91246a67c0a54',1,'ReadBndryPlanes']]], + ['is_5ftheta_5fread_3843',['is_theta_read',['../classReadBndryPlanes.html#a28a4ac197463cc8133d290b62efdf30a',1,'ReadBndryPlanes']]], + ['is_5fvelocity_5fread_3844',['is_velocity_read',['../classReadBndryPlanes.html#a14bf0864afdd66d2f497ad5372d526ff',1,'ReadBndryPlanes']]], + ['istep_3845',['istep',['../classERF.html#aefa640a036c25b7b770e88a5f838eb2a',1,'ERF']]] ]; diff --git a/search/variables_9.js b/search/variables_9.js index dfd012d78f..d2fc1acf5d 100644 --- a/search/variables_9.js +++ b/search/variables_9.js @@ -1,5 +1,5 @@ var searchData= [ - ['jjm_3840',['jjm',['../structLinInterp_1_1InterpType.html#aa81271a903001f119594cdced62b748c',1,'LinInterp::InterpType']]], - ['jjp_3841',['jjp',['../structLinInterp_1_1InterpType.html#a4afbbafb5bb8bf9742bdb82b166bef76',1,'LinInterp::InterpType']]] + ['jjm_3846',['jjm',['../structLinInterp_1_1InterpType.html#aa81271a903001f119594cdced62b748c',1,'LinInterp::InterpType']]], + ['jjp_3847',['jjp',['../structLinInterp_1_1InterpType.html#a4afbbafb5bb8bf9742bdb82b166bef76',1,'LinInterp::InterpType']]] ]; diff --git a/search/variables_a.js b/search/variables_a.js index 1fc4ec5eaf..0c91db3c75 100644 --- a/search/variables_a.js +++ b/search/variables_a.js @@ -1,8 +1,8 @@ var searchData= [ - ['k_5fdist_5flw_3842',['k_dist_lw',['../classRrtmgp.html#a9b6fe178ed49089a3ba56db0909e7414',1,'Rrtmgp']]], - ['k_5fdist_5fsw_3843',['k_dist_sw',['../classRrtmgp.html#aa59a2a79cee48c24f60ec786e84edb26',1,'Rrtmgp']]], - ['kappa_3844',['kappa',['../structmost__data.html#a73da7dc37cb1555348e956a4e2c932fe',1,'most_data']]], - ['kappa_3845',['KAPPA',['../ERF__Constants_8H.html#a0f51e1ef58cb9a3add46666cc98e6093',1,'ERF_Constants.H']]], - ['khi_5flsm_3846',['khi_lsm',['../classMM5.html#a5e32c57a0a88abb64a9d2f9ff3c1a19a',1,'MM5::khi_lsm()'],['../classSLM.html#a22738df1091f651c9c541abda9e2d5e7',1,'SLM::khi_lsm()']]] + ['k_5fdist_5flw_3848',['k_dist_lw',['../classRrtmgp.html#a9b6fe178ed49089a3ba56db0909e7414',1,'Rrtmgp']]], + ['k_5fdist_5fsw_3849',['k_dist_sw',['../classRrtmgp.html#aa59a2a79cee48c24f60ec786e84edb26',1,'Rrtmgp']]], + ['kappa_3850',['kappa',['../structmost__data.html#a73da7dc37cb1555348e956a4e2c932fe',1,'most_data']]], + ['kappa_3851',['KAPPA',['../ERF__Constants_8H.html#a0f51e1ef58cb9a3add46666cc98e6093',1,'ERF_Constants.H']]], + ['khi_5flsm_3852',['khi_lsm',['../classMM5.html#a5e32c57a0a88abb64a9d2f9ff3c1a19a',1,'MM5::khi_lsm()'],['../classSLM.html#a22738df1091f651c9c541abda9e2d5e7',1,'SLM::khi_lsm()']]] ]; diff --git a/search/variables_b.js b/search/variables_b.js index 8ba833f1f4..c0bb5ae500 100644 --- a/search/variables_b.js +++ b/search/variables_b.js @@ -1,35 +1,35 @@ var searchData= [ - ['l_5fv_3847',['L_v',['../ERF__Constants_8H.html#aee80ef06f62b6528b776d02de062cdd5',1,'ERF_Constants.H']]], - ['lambm0_3848',['lambm0',['../classRadiation.html#a65e14eac1882d0877cb60c185b91f670',1,'Radiation']]], - ['last_5fcheck_5ffile_5fstep_3849',['last_check_file_step',['../classERF.html#a02722d16f3c26efe590702200f1296d7',1,'ERF']]], - ['last_5ffile_5fread_3850',['last_file_read',['../classReadBndryPlanes.html#a6a62ba4a2a722033004ff0d169b6382f',1,'ReadBndryPlanes']]], - ['last_5fplot_5ffile_5fstep_5f1_3851',['last_plot_file_step_1',['../classERF.html#a7d54d3f2317d06a8dfcde4f65cfc3e92',1,'ERF']]], - ['last_5fplot_5ffile_5fstep_5f2_3852',['last_plot_file_step_2',['../classERF.html#a09017292c9943ac2ed20ce7ed5c3c767',1,'ERF']]], - ['lat_5fice_3853',['lat_ice',['../ERF__Constants_8H.html#ab9605510ecc8468f94a0ba1842a0bf13',1,'ERF_Constants.H']]], - ['lat_5fvap_3854',['lat_vap',['../ERF__Constants_8H.html#a1a4a1b5aaf1d37a8a175a7b7177e9e2c',1,'ERF_Constants.H']]], - ['latitude_5flo_3855',['latitude_lo',['../structSolverChoice.html#adddf7760d02dee6c92d3ab21c845d8ef',1,'SolverChoice']]], - ['lcond_3856',['lcond',['../ERF__Constants_8H.html#a7b45c0074d559f423ac2d48e1b171518',1,'ERF_Constants.H']]], - ['les_5ftype_3857',['les_type',['../structTurbChoice.html#abbba68e0d699dd97701d31a0e37d5304',1,'TurbChoice']]], - ['lfus_3858',['lfus',['../ERF__Constants_8H.html#a0f65ea12b4405c50f1d777f7ca82dcfd',1,'ERF_Constants.H']]], - ['liqcldoptics_3859',['liqcldoptics',['../classMamConstituents.html#a090acb2786740c9e238ccd13de4471bb',1,'MamConstituents::liqcldoptics()'],['../classOptics.html#a87abc901496b039c596eed89b297a679',1,'Optics::liqcldoptics()']]], - ['liqopticsfile_3860',['liqopticsfile',['../classMamConstituents.html#ad22947a5d2761531d522eca254d86411',1,'MamConstituents']]], - ['liquid_5ffile_3861',['liquid_file',['../classCloudRadProps.html#a076ffd7ff44497eac9d3cace27964b0a',1,'CloudRadProps']]], - ['list_5fid_3862',['list_id',['../structMamConstituents_1_1modelist__t.html#a90b916987fc7b7cb87253d3bc3c4f94e',1,'MamConstituents::modelist_t::list_id()'],['../structMamConstituents_1_1aerlist__t.html#ab75334c58294e58e6f802fdc28fcb9c5',1,'MamConstituents::aerlist_t::list_id()'],['../structMamConstituents_1_1gaslist__t.html#a1936ba0848db011d9bc9635ace154696',1,'MamConstituents::gaslist_t::list_id()']]], - ['lmask_5flev_3863',['lmask_lev',['../classERF.html#a3f3e29874221e43e13e2a431e77e0e4e',1,'ERF']]], - ['longitude_5flo_3864',['longitude_lo',['../structSolverChoice.html#a678e249df6763ba01a9b2790dc3dc8b9',1,'SolverChoice']]], - ['lsm_3865',['lsm',['../classERF.html#ae0e9a78f120ba632d78cbf23c97b851c',1,'ERF']]], - ['lsm_5fdata_3866',['lsm_data',['../classERF.html#ad03da3399e893728741fac33100ce476',1,'ERF']]], - ['lsm_5ffab_5fflux_3867',['lsm_fab_flux',['../classSLM.html#a3bb65074894448f02b2e58b015dd580c',1,'SLM::lsm_fab_flux()'],['../classMM5.html#a65622ec442bb57f8a4bdcfd789882661',1,'MM5::lsm_fab_flux()']]], - ['lsm_5ffab_5fvars_3868',['lsm_fab_vars',['../classSLM.html#a6fa497f40e1d0994cb3c2fb121faf40a',1,'SLM::lsm_fab_vars()'],['../classMM5.html#a1efdd2eea7c6fdc9631dadf56a7da1a2',1,'MM5::lsm_fab_vars()']]], - ['lsm_5fflux_3869',['lsm_flux',['../classERF.html#aa5f6a6ceae0087393f386649d8bbbc31',1,'ERF']]], - ['lsm_5ftype_3870',['lsm_type',['../structSolverChoice.html#a43c1741535574c7e6f4fe6bf90552f31',1,'SolverChoice']]], - ['lsmvarmap_3871',['LsmVarMap',['../classMM5.html#a44610d042a53d114892687d87c9e7f10',1,'MM5::LsmVarMap()'],['../classSLM.html#acf0247edc5d92d5fb7b5183a524bf246',1,'SLM::LsmVarMap()']]], - ['lsmvarname_3872',['LsmVarName',['../classMM5.html#abb2bfd47b01eb3f85f6466a886a00dc9',1,'MM5::LsmVarName()'],['../classSLM.html#a41d6b4f925b97839d5cebec6d6a75133',1,'SLM::LsmVarName()']]], - ['lsub_3873',['lsub',['../ERF__Constants_8H.html#a3ab435b88eae71bef826cb01254ff33d',1,'ERF_Constants.H']]], - ['lw_5fabs_3874',['lw_abs',['../structPhysProp_1_1physprop__t.html#a7f49b6334fdf3ec5c8cbcef509a0cf7e',1,'PhysProp::physprop_t']]], - ['lw_5fband_5fmidpoints_3875',['lw_band_midpoints',['../classRadiation.html#a03b78a2a9376157b352274f4f6e6e591',1,'Radiation']]], - ['lw_5fhygro_5fabs_3876',['lw_hygro_abs',['../structPhysProp_1_1physprop__t.html#a2ceb8db8a17258bb21f1d0d53594ed05',1,'PhysProp::physprop_t']]], - ['lwave_3877',['Lwave',['../classERF.html#ad67b414a1a8b5bab6edeaf574f922825',1,'ERF']]], - ['lwave_5fonegrid_3878',['Lwave_onegrid',['../classERF.html#a83473e4b18de294a8b97dcdbbf048551',1,'ERF']]] + ['l_5fv_3853',['L_v',['../ERF__Constants_8H.html#aee80ef06f62b6528b776d02de062cdd5',1,'ERF_Constants.H']]], + ['lambm0_3854',['lambm0',['../classRadiation.html#a65e14eac1882d0877cb60c185b91f670',1,'Radiation']]], + ['last_5fcheck_5ffile_5fstep_3855',['last_check_file_step',['../classERF.html#a02722d16f3c26efe590702200f1296d7',1,'ERF']]], + ['last_5ffile_5fread_3856',['last_file_read',['../classReadBndryPlanes.html#a6a62ba4a2a722033004ff0d169b6382f',1,'ReadBndryPlanes']]], + ['last_5fplot_5ffile_5fstep_5f1_3857',['last_plot_file_step_1',['../classERF.html#a7d54d3f2317d06a8dfcde4f65cfc3e92',1,'ERF']]], + ['last_5fplot_5ffile_5fstep_5f2_3858',['last_plot_file_step_2',['../classERF.html#a09017292c9943ac2ed20ce7ed5c3c767',1,'ERF']]], + ['lat_5fice_3859',['lat_ice',['../ERF__Constants_8H.html#ab9605510ecc8468f94a0ba1842a0bf13',1,'ERF_Constants.H']]], + ['lat_5fvap_3860',['lat_vap',['../ERF__Constants_8H.html#a1a4a1b5aaf1d37a8a175a7b7177e9e2c',1,'ERF_Constants.H']]], + ['latitude_5flo_3861',['latitude_lo',['../structSolverChoice.html#adddf7760d02dee6c92d3ab21c845d8ef',1,'SolverChoice']]], + ['lcond_3862',['lcond',['../ERF__Constants_8H.html#a7b45c0074d559f423ac2d48e1b171518',1,'ERF_Constants.H']]], + ['les_5ftype_3863',['les_type',['../structTurbChoice.html#abbba68e0d699dd97701d31a0e37d5304',1,'TurbChoice']]], + ['lfus_3864',['lfus',['../ERF__Constants_8H.html#a0f65ea12b4405c50f1d777f7ca82dcfd',1,'ERF_Constants.H']]], + ['liqcldoptics_3865',['liqcldoptics',['../classMamConstituents.html#a090acb2786740c9e238ccd13de4471bb',1,'MamConstituents::liqcldoptics()'],['../classOptics.html#a87abc901496b039c596eed89b297a679',1,'Optics::liqcldoptics()']]], + ['liqopticsfile_3866',['liqopticsfile',['../classMamConstituents.html#ad22947a5d2761531d522eca254d86411',1,'MamConstituents']]], + ['liquid_5ffile_3867',['liquid_file',['../classCloudRadProps.html#a076ffd7ff44497eac9d3cace27964b0a',1,'CloudRadProps']]], + ['list_5fid_3868',['list_id',['../structMamConstituents_1_1modelist__t.html#a90b916987fc7b7cb87253d3bc3c4f94e',1,'MamConstituents::modelist_t::list_id()'],['../structMamConstituents_1_1aerlist__t.html#ab75334c58294e58e6f802fdc28fcb9c5',1,'MamConstituents::aerlist_t::list_id()'],['../structMamConstituents_1_1gaslist__t.html#a1936ba0848db011d9bc9635ace154696',1,'MamConstituents::gaslist_t::list_id()']]], + ['lmask_5flev_3869',['lmask_lev',['../classERF.html#a3f3e29874221e43e13e2a431e77e0e4e',1,'ERF']]], + ['longitude_5flo_3870',['longitude_lo',['../structSolverChoice.html#a678e249df6763ba01a9b2790dc3dc8b9',1,'SolverChoice']]], + ['lsm_3871',['lsm',['../classERF.html#ae0e9a78f120ba632d78cbf23c97b851c',1,'ERF']]], + ['lsm_5fdata_3872',['lsm_data',['../classERF.html#ad03da3399e893728741fac33100ce476',1,'ERF']]], + ['lsm_5ffab_5fflux_3873',['lsm_fab_flux',['../classSLM.html#a3bb65074894448f02b2e58b015dd580c',1,'SLM::lsm_fab_flux()'],['../classMM5.html#a65622ec442bb57f8a4bdcfd789882661',1,'MM5::lsm_fab_flux()']]], + ['lsm_5ffab_5fvars_3874',['lsm_fab_vars',['../classSLM.html#a6fa497f40e1d0994cb3c2fb121faf40a',1,'SLM::lsm_fab_vars()'],['../classMM5.html#a1efdd2eea7c6fdc9631dadf56a7da1a2',1,'MM5::lsm_fab_vars()']]], + ['lsm_5fflux_3875',['lsm_flux',['../classERF.html#aa5f6a6ceae0087393f386649d8bbbc31',1,'ERF']]], + ['lsm_5ftype_3876',['lsm_type',['../structSolverChoice.html#a43c1741535574c7e6f4fe6bf90552f31',1,'SolverChoice']]], + ['lsmvarmap_3877',['LsmVarMap',['../classMM5.html#a44610d042a53d114892687d87c9e7f10',1,'MM5::LsmVarMap()'],['../classSLM.html#acf0247edc5d92d5fb7b5183a524bf246',1,'SLM::LsmVarMap()']]], + ['lsmvarname_3878',['LsmVarName',['../classMM5.html#abb2bfd47b01eb3f85f6466a886a00dc9',1,'MM5::LsmVarName()'],['../classSLM.html#a41d6b4f925b97839d5cebec6d6a75133',1,'SLM::LsmVarName()']]], + ['lsub_3879',['lsub',['../ERF__Constants_8H.html#a3ab435b88eae71bef826cb01254ff33d',1,'ERF_Constants.H']]], + ['lw_5fabs_3880',['lw_abs',['../structPhysProp_1_1physprop__t.html#a7f49b6334fdf3ec5c8cbcef509a0cf7e',1,'PhysProp::physprop_t']]], + ['lw_5fband_5fmidpoints_3881',['lw_band_midpoints',['../classRadiation.html#a03b78a2a9376157b352274f4f6e6e591',1,'Radiation']]], + ['lw_5fhygro_5fabs_3882',['lw_hygro_abs',['../structPhysProp_1_1physprop__t.html#a2ceb8db8a17258bb21f1d0d53594ed05',1,'PhysProp::physprop_t']]], + ['lwave_3883',['Lwave',['../classERF.html#ad67b414a1a8b5bab6edeaf574f922825',1,'ERF']]], + ['lwave_5fonegrid_3884',['Lwave_onegrid',['../classERF.html#a83473e4b18de294a8b97dcdbbf048551',1,'ERF']]] ]; diff --git a/search/variables_c.js b/search/variables_c.js index d0cd3fef0e..aa71462ee1 100644 --- a/search/variables_c.js +++ b/search/variables_c.js @@ -1,189 +1,191 @@ var searchData= [ - ['m_5factive_3879',['m_active',['../classCIF.html#a1e3b931483e96527c09af4016a29d101',1,'CIF']]], - ['m_5faverages_3880',['m_averages',['../classMOSTAverage.html#a158b82286f1bed8b02da2c8b2ac7f4c0',1,'MOSTAverage']]], - ['m_5faxis_3881',['m_axis',['../classSAM.html#a37854ec84283a4229cf86b54cfcfc72b',1,'SAM::m_axis()'],['../classKessler.html#afea161a2b985d4c0eb4aa9390a808ab4',1,'Kessler::m_axis()'],['../classPlaneAverage.html#ab1c325b8a1241cb446bad96fa558e770',1,'PlaneAverage::m_axis()']]], - ['m_5fbc_5fextdir_5fvals_3882',['m_bc_extdir_vals',['../classERFPhysBCFunct__cons.html#a75abbe15fe3c056e3ee6c5b250bdac44',1,'ERFPhysBCFunct_cons::m_bc_extdir_vals()'],['../classERF.html#a199add69cee34c6611a5dc9ee965971c',1,'ERF::m_bc_extdir_vals()'],['../classERFPhysBCFunct__w__no__terrain.html#af10baf7824fa75f859317b7b0c8cc3f4',1,'ERFPhysBCFunct_w_no_terrain::m_bc_extdir_vals()'],['../classERFPhysBCFunct__w.html#afd4eed563a59fae4744eaac6ced6bb6b',1,'ERFPhysBCFunct_w::m_bc_extdir_vals()'],['../classERFPhysBCFunct__v.html#a7e67556be338a97384abe278d98f02e7',1,'ERFPhysBCFunct_v::m_bc_extdir_vals()'],['../classERFPhysBCFunct__u.html#a1d7949c78cfb3041588995139f0a9218',1,'ERFPhysBCFunct_u::m_bc_extdir_vals()']]], - ['m_5fbc_5fneumann_5fvals_3883',['m_bc_neumann_vals',['../classERFPhysBCFunct__cons.html#a4ddeefc7be1abe021ebcdb272fc9db45',1,'ERFPhysBCFunct_cons::m_bc_neumann_vals()'],['../classERFPhysBCFunct__u.html#a33fd3c8b07c1376a6e433637010dd509',1,'ERFPhysBCFunct_u::m_bc_neumann_vals()'],['../classERFPhysBCFunct__v.html#ad9053e6fef29f1cb09b0f90e497f03b0',1,'ERFPhysBCFunct_v::m_bc_neumann_vals()'],['../classERFPhysBCFunct__w.html#a618a6fa84ef741a75172135ce8481b05',1,'ERFPhysBCFunct_w::m_bc_neumann_vals()'],['../classERFPhysBCFunct__w__no__terrain.html#a5f98e8e83a78de87e1b5c720f3b2ea64',1,'ERFPhysBCFunct_w_no_terrain::m_bc_neumann_vals()'],['../classERF.html#a69ea003766c97b1a667b002b3661f0f2',1,'ERF::m_bc_neumann_vals()']]], - ['m_5fbdy_5ftime_5finterval_3884',['m_bdy_time_interval',['../classABLMost.html#a049bc06685178431599f3bfaa57d63bd',1,'ABLMost']]], - ['m_5fbox_3885',['m_box',['../classRadiation.html#a37098b6502fef13732ed996200b7f64c',1,'Radiation']]], - ['m_5fcba_3886',['m_cba',['../classERFFillPatcher.html#a35fb56b2946f596728b9ac793eb47c5e',1,'ERFFillPatcher']]], - ['m_5fcdm_3887',['m_cdm',['../classERFFillPatcher.html#a52af76dca01fd13bdb29834d4b9ca5e2',1,'ERFFillPatcher']]], - ['m_5fcenter_3888',['m_center',['../classFlowerIF.html#afde7bb14577df6460b603a3fb9c68c30',1,'FlowerIF']]], - ['m_5fcf_5fcrse_5fdata_5fnew_3889',['m_cf_crse_data_new',['../classERFFillPatcher.html#a89f24e6cfe30a2180b1667aead7edf28',1,'ERFFillPatcher']]], - ['m_5fcf_5fcrse_5fdata_5fold_3890',['m_cf_crse_data_old',['../classERFFillPatcher.html#ad6ac8a363c79d1a98703988478420586',1,'ERFFillPatcher']]], - ['m_5fcf_5fmask_3891',['m_cf_mask',['../classERFFillPatcher.html#a874bf44ab38e936013bbf8454a41a680',1,'ERFFillPatcher']]], - ['m_5fcgeom_3892',['m_cgeom',['../classERFFillPatcher.html#a5b1190e4ec0fe257d6d3fa886054dc2c',1,'ERFFillPatcher']]], - ['m_5fcheck_5fint_3893',['m_check_int',['../classERF.html#a69a3f925e95ec4244b0257f9de16d65a',1,'ERF']]], - ['m_5fcheck_5fper_3894',['m_check_per',['../classERF.html#a5fbf17cfc8d9e5b994783e05ec3594b2',1,'ERF']]], - ['m_5fcp_5fsoil_3895',['m_cp_soil',['../classMM5.html#a0bc2d572786956904d71c30db49e3ae2',1,'MM5::m_cp_soil()'],['../classSLM.html#a3c284ad4d275aa9ce80eca787cab87a4',1,'SLM::m_cp_soil()']]], - ['m_5fcrse_5ftimes_3896',['m_crse_times',['../classERFFillPatcher.html#a562ca1201d642f3a7dd5700a056776d9',1,'ERFFillPatcher']]], - ['m_5fd_5fsoil_3897',['m_d_soil',['../classMM5.html#a273c04f6eac3e48325dfce1e34e58df4',1,'MM5::m_d_soil()'],['../classSLM.html#a6ba8b659255822be9538ba66c22b2533',1,'SLM::m_d_soil()']]], - ['m_5fdata_3898',['m_data',['../structTimeInterpolatedData.html#a7021ade0b30697e6eef3df932447d4fc',1,'TimeInterpolatedData']]], - ['m_5fdata_5finterp_3899',['m_data_interp',['../classReadBndryPlanes.html#a5468d5d8813dc471dac1335611ec8dc9',1,'ReadBndryPlanes']]], - ['m_5fdata_5fn_3900',['m_data_n',['../classReadBndryPlanes.html#acc6e94621293c94d1322a8cafbf61ad4',1,'ReadBndryPlanes']]], - ['m_5fdata_5fnp1_3901',['m_data_np1',['../classReadBndryPlanes.html#ae34737833f599f3cb5ef945ac3f57f4b',1,'ReadBndryPlanes']]], - ['m_5fdata_5fnp2_3902',['m_data_np2',['../classReadBndryPlanes.html#a5338493101cfbb8eb27301f83aeca290',1,'ReadBndryPlanes']]], - ['m_5fdetj_5fcc_3903',['m_detJ_cc',['../classKessler.html#a534c115146bedf2e3f600ac351162252',1,'Kessler::m_detJ_cc()'],['../classSAM.html#a1b09febe32fbfebb402091fd31cd9996',1,'SAM::m_detJ_cc()']]], - ['m_5fdomain_5fbcs_5ftype_3904',['m_domain_bcs_type',['../classERFPhysBCFunct__cons.html#ab131fcff8649a5dde5f39fe890b6b383',1,'ERFPhysBCFunct_cons::m_domain_bcs_type()'],['../classERFPhysBCFunct__w__no__terrain.html#a1c27696ce2fb04cb8e0f9e41d2c21196',1,'ERFPhysBCFunct_w_no_terrain::m_domain_bcs_type()'],['../classERFPhysBCFunct__w.html#a052d31c743d030292761e95702615467',1,'ERFPhysBCFunct_w::m_domain_bcs_type()'],['../classERFPhysBCFunct__u.html#a90c9e642d2c31bc2245cf57f3fb4adc8',1,'ERFPhysBCFunct_u::m_domain_bcs_type()'],['../classERFPhysBCFunct__v.html#ae26c0b8c1a5145f1e1f2d44717745cfd',1,'ERFPhysBCFunct_v::m_domain_bcs_type()']]], - ['m_5fdomain_5fbcs_5ftype_5fd_3905',['m_domain_bcs_type_d',['../classERFPhysBCFunct__cons.html#aa39c1df9dc816a85f84c43c1b065be35',1,'ERFPhysBCFunct_cons::m_domain_bcs_type_d()'],['../classERFPhysBCFunct__u.html#a3b17acdd618c58f48856b4fa7a35abfc',1,'ERFPhysBCFunct_u::m_domain_bcs_type_d()'],['../classERFPhysBCFunct__v.html#a0bc0f76b47d1d805161695e977dad5fb',1,'ERFPhysBCFunct_v::m_domain_bcs_type_d()'],['../classERFPhysBCFunct__w.html#a87159676dd29c47ebd69e40b6dda5f1a',1,'ERFPhysBCFunct_w::m_domain_bcs_type_d()'],['../classERFPhysBCFunct__w__no__terrain.html#ad821ab72c32d159e12d2b80a718767bd',1,'ERFPhysBCFunct_w_no_terrain::m_domain_bcs_type_d()']]], - ['m_5fdr_3906',['m_dr',['../classFlowerIF.html#a6e09a1d51eb36041dcb175f8784b8eeb',1,'FlowerIF']]], - ['m_5fdt_3907',['m_dt',['../classMM5.html#a41e60b81361852b0e4577bd7e3f88062',1,'MM5::m_dt()'],['../classSLM.html#a48b1e4c0290b62bafb4f6acb9291aa68',1,'SLM::m_dt()']]], - ['m_5fdt_5fcrse_3908',['m_dt_crse',['../classERFFillPatcher.html#ae89877908970649653ae09c42d3c7b05',1,'ERFFillPatcher']]], - ['m_5fdx_3909',['m_dx',['../classPlaneAverage.html#ade7352e3a72a2e09561e031acd32cc8a',1,'PlaneAverage']]], - ['m_5fdz_5flsm_3910',['m_dz_lsm',['../classMM5.html#a754e507be4ac680c9f49ab0158afc4b5',1,'MM5::m_dz_lsm()'],['../classSLM.html#a6dcae265ee0a43c0d7ecdd52074431ce',1,'SLM::m_dz_lsm()']]], - ['m_5feddydiffs_5flev_3911',['m_eddyDiffs_lev',['../classABLMost.html#a05cc96f74b89c4e277fe3db4ea01d3fa',1,'ABLMost']]], - ['m_5fexp_5fmost_3912',['m_exp_most',['../classABLMost.html#ac3de35be0d6cf3841e9a868830fc42c5',1,'ABLMost']]], - ['m_5fextent_5frad_3913',['m_extent_rad',['../classReadBndryPlanes.html#ae341a8d70430128e78f7cac75e0d4e8a',1,'ReadBndryPlanes::m_extent_rad()'],['../classWriteBndryPlanes.html#a41799219d138892871e1a6e8c3755da1',1,'WriteBndryPlanes::m_extent_rad()']]], - ['m_5ff1_3914',['m_f1',['../classUnionCIF.html#a48c696814009301ff056340a2ebb601c',1,'UnionCIF::m_f1()'],['../classIntersectionCIF.html#a0b24d2c5c189c43b259c173c162aa1f1',1,'IntersectionCIF::m_f1()']]], - ['m_5ff2_3915',['m_f2',['../classUnionCIF.html#a150413e8d9e4bbd2b44e924c839f296a',1,'UnionCIF::m_f2()'],['../classIntersectionCIF.html#af11428d551013bf6318ef89873537a4e',1,'IntersectionCIF::m_f2()']]], - ['m_5ffac_5fcond_3916',['m_fac_cond',['../classKessler.html#a74746cef2381fd949a06be46f99a05c7',1,'Kessler::m_fac_cond()'],['../classSAM.html#a66b0ffc2f98c96c5a3b3c760a854be95',1,'SAM::m_fac_cond()']]], - ['m_5ffac_5ffus_3917',['m_fac_fus',['../classKessler.html#acaf08727482ff116185a6dbdf2bd54f9',1,'Kessler::m_fac_fus()'],['../classSAM.html#a53d38219476c32ba2dd751c02bcae53c',1,'SAM::m_fac_fus()']]], - ['m_5ffac_5fsub_3918',['m_fac_sub',['../classKessler.html#a2feda15429da3d8227d75cc3f6da71ba',1,'Kessler::m_fac_sub()'],['../classSAM.html#a8653cbf2c13ac3595f5f8710a3f1beec',1,'SAM::m_fac_sub()']]], - ['m_5ffact_5fnew_3919',['m_fact_new',['../classMOSTAverage.html#a960bae1d528aef6d0e7034dbea65a2c3',1,'MOSTAverage']]], - ['m_5ffact_5fold_3920',['m_fact_old',['../classMOSTAverage.html#ae1d62c88d62bbef8458d0084200f65f2',1,'MOSTAverage']]], - ['m_5ffactory_3921',['m_factory',['../classERF.html#abd4f9db387b864a97ac18c8dfe71f4e4',1,'ERF']]], - ['m_5ffba_3922',['m_fba',['../classERFFillPatcher.html#a297b1d2468ed152850c7bb6c156101b3',1,'ERFFillPatcher']]], - ['m_5ffdm_3923',['m_fdm',['../classERFFillPatcher.html#afef007cab3f3a1e4a7deea141f397e51',1,'ERFFillPatcher']]], - ['m_5ffgeom_3924',['m_fgeom',['../classERFFillPatcher.html#a12694a711f281b957f7015a98e5c9b77',1,'ERFFillPatcher']]], - ['m_5ffield_3925',['m_field',['../classPlaneAverage.html#a6c29e3eafbbb7028e801c513b29a1c09',1,'PlaneAverage']]], - ['m_5ffields_3926',['m_fields',['../classMOSTAverage.html#ad301df8e1ee46557a4d277c3f87fae69',1,'MOSTAverage']]], - ['m_5ffilename_3927',['m_filename',['../classReadBndryPlanes.html#a3a130c25c6b3c327e58d3e4687a051b9',1,'ReadBndryPlanes::m_filename()'],['../classWriteBndryPlanes.html#abbc94048dfd43b653b7754d785c11d2f',1,'WriteBndryPlanes::m_filename()']]], - ['m_5fgeom_3928',['m_geom',['../classRadiation.html#ae5477e7b80b52cebf89ec3b8bdce0f3c',1,'Radiation::m_geom()'],['../classPlaneAverage.html#ae359b042dfa8a0b951a3d34706c3c385',1,'PlaneAverage::m_geom()'],['../classSAM.html#a8242fff43eb2cf417036eb36f5e4a3d8',1,'SAM::m_geom()'],['../classKessler.html#a48f29ab8e5d1232ee83851fd904e9354',1,'Kessler::m_geom()'],['../classSLM.html#a870bfd56a5fe10dc6b7b8f0347a9b218',1,'SLM::m_geom()'],['../classMM5.html#a7edc95309bb52864bba5341f19262063',1,'MM5::m_geom()'],['../classWriteBndryPlanes.html#a007dc2174ebcc2e2d79e8f31f41255cb',1,'WriteBndryPlanes::m_geom()'],['../classReadBndryPlanes.html#af4c91eeb64f4e49767e97c1e72de06fc',1,'ReadBndryPlanes::m_geom()'],['../classMOSTAverage.html#aed9b6c726189d8858abba0a2a66feca1',1,'MOSTAverage::m_geom()'],['../classERFPhysBCFunct__w__no__terrain.html#a7f695c3d80d3c166dce59565c4d8dffc',1,'ERFPhysBCFunct_w_no_terrain::m_geom()'],['../classERFPhysBCFunct__w.html#a1e9f9a0981a60be4e8e3a2b906444878',1,'ERFPhysBCFunct_w::m_geom()'],['../classERFPhysBCFunct__v.html#a01f7c56f64ac414f4ec69ff8c45a2f2a',1,'ERFPhysBCFunct_v::m_geom()'],['../classERFPhysBCFunct__u.html#a12a1e078b61a3e00958bf0f3f69bfe5f',1,'ERFPhysBCFunct_u::m_geom()'],['../classERFPhysBCFunct__cons.html#a1a3121bc392962a3c3149a6e2db2791b',1,'ERFPhysBCFunct_cons::m_geom()'],['../classABLMost.html#a1795a510d08fbd88e6599e014f97b6c5',1,'ABLMost::m_geom()'],['../classTerrainIF.html#aeb902107efd92150abad59ec0a8cf088',1,'TerrainIF::m_geom()']]], - ['m_5fgocp_3929',['m_gOcp',['../classKessler.html#aac004df387a7f0725724f017ca3d4a99',1,'Kessler::m_gOcp()'],['../classSAM.html#a3a76b3fc76d33c147dcaab81a738f41c',1,'SAM::m_gOcp()']]], - ['m_5fgtoe_3930',['m_gtoe',['../classKessler.html#ae8749011028be638e3fb8051e22f83f1',1,'Kessler::m_gtoe()'],['../classSAM.html#a579b5a1e16d7b9d8d317e475a6a43705',1,'SAM::m_gtoe()']]], - ['m_5fhub_5fheight_3931',['m_hub_height',['../classNullWindFarm.html#ad403f4133b2292495e5dd949fcc59207',1,'NullWindFarm']]], - ['m_5fhwave_5flev_3932',['m_Hwave_lev',['../classABLMost.html#a644ccdc438574061ec7ae75cdc714ec6',1,'ABLMost']]], - ['m_5fi_5findx_3933',['m_i_indx',['../classMOSTAverage.html#a2f5fb25e7c5196338ee5a051708d8f62',1,'MOSTAverage']]], - ['m_5fifs_3934',['m_ifs',['../classUnionListIF.html#a89c2512bb20d220882024302d7a92a3f',1,'UnionListIF']]], - ['m_5fin_5frad_3935',['m_in_rad',['../classReadBndryPlanes.html#a8269a127a4db1fd93794dcb8062f5fa9',1,'ReadBndryPlanes::m_in_rad()'],['../classWriteBndryPlanes.html#a7b350ac1d0c6151ed748a575475f8fbd',1,'WriteBndryPlanes::m_in_rad()']]], - ['m_5fin_5ftimes_3936',['m_in_times',['../classReadBndryPlanes.html#adfe9045e42be78e2a735151d969183d7',1,'ReadBndryPlanes::m_in_times()'],['../classWriteBndryPlanes.html#a15fa114f52237b735599b6a5cac40d26',1,'WriteBndryPlanes::m_in_times()']]], - ['m_5fin_5ftimesteps_3937',['m_in_timesteps',['../classReadBndryPlanes.html#a7bfda76cde9aa1b8290577c40a612795',1,'ReadBndryPlanes::m_in_timesteps()'],['../classWriteBndryPlanes.html#a7cab948881900ffa97145c47221dcb44',1,'WriteBndryPlanes::m_in_timesteps()']]], - ['m_5finc_5fghost_3938',['m_inc_ghost',['../classPlaneAverage.html#abe59333d5fc9969465111df40dd9892e',1,'PlaneAverage']]], - ['m_5finside_3939',['m_inside',['../classFlowerIF.html#adabc11e60eca5148da34682a5c51058f',1,'FlowerIF']]], - ['m_5finterp_3940',['m_interp',['../classMOSTAverage.html#aeac5da9c3972fdde64f60720f88efe2e',1,'MOSTAverage::m_interp()'],['../classERFFillPatcher.html#a2fc352aecabd75ec92f5d17730683a1c',1,'ERFFillPatcher::m_interp()']]], - ['m_5fixtype_3941',['m_ixtype',['../classPlaneAverage.html#a45ad4c1f2922be9ba838bab13657385f',1,'PlaneAverage']]], - ['m_5fj_5findx_3942',['m_j_indx',['../classMOSTAverage.html#acdc75484e6ed5d2fadfb93573b6dded2',1,'MOSTAverage']]], - ['m_5fk_5fin_3943',['m_k_in',['../classMOSTAverage.html#ad570edb25d41640aa2d52122ae303884',1,'MOSTAverage']]], - ['m_5fk_5findx_3944',['m_k_indx',['../classMOSTAverage.html#afbe752293b7c2790b1994a2349261fda',1,'MOSTAverage']]], - ['m_5fk_5fsoil_3945',['m_k_soil',['../classMM5.html#ac5730f1413ae4a3dd5d4b2c683c41297',1,'MM5::m_k_soil()'],['../classSLM.html#aa674dfa04bde7d418f1195f707f84f5c',1,'SLM::m_k_soil()']]], - ['m_5flat_3946',['m_lat',['../classRadiation.html#ae6fe4540ef5931fb2ac34ad19c6fe74e',1,'Radiation']]], - ['m_5flev_3947',['m_lev',['../classERFPhysBCFunct__u.html#a898867b7e245b2ecf05ab7f5ce4a4504',1,'ERFPhysBCFunct_u::m_lev()'],['../classERFPhysBCFunct__w__no__terrain.html#a490eb84b4d60adb33dfe5f705b333b2d',1,'ERFPhysBCFunct_w_no_terrain::m_lev()'],['../classERFPhysBCFunct__w.html#a277641c1cc5a27c2a01e49d21a9c88f4',1,'ERFPhysBCFunct_w::m_lev()'],['../classERFPhysBCFunct__v.html#a22e73a039ee130b072f3a9ad079fc160',1,'ERFPhysBCFunct_v::m_lev()'],['../classERFPhysBCFunct__cons.html#ad393b48c02e838f75be60a655eed9fa6',1,'ERFPhysBCFunct_cons::m_lev()']]], - ['m_5flevel_3948',['m_level',['../classPlaneAverage.html#a6a25218bd5754ec121caab7e4acfc537',1,'PlaneAverage']]], - ['m_5fline_5faverage_3949',['m_line_average',['../classPlaneAverage.html#a998ec98b248ea4bd71284a2bd919fb0d',1,'PlaneAverage']]], - ['m_5fline_5fxcentroid_3950',['m_line_xcentroid',['../classPlaneAverage.html#a560dbd7059fb6cbb0421635c5d405d2b',1,'PlaneAverage']]], - ['m_5flmask_5flev_3951',['m_lmask_lev',['../classABLMost.html#aaa5bbc610662825ddd8a184b43f3541b',1,'ABLMost']]], - ['m_5flon_3952',['m_lon',['../classRadiation.html#a0069d200496f037a5bffa96e4bf9bce0',1,'Radiation']]], - ['m_5flsm_5fdata_5flev_3953',['m_lsm_data_lev',['../classLandSurface.html#a5a134e93d42328bfaa9611a9e625e1bb',1,'LandSurface::m_lsm_data_lev()'],['../classABLMost.html#a958aaaf9e040462197c88c6c77f2aaf6',1,'ABLMost::m_lsm_data_lev()']]], - ['m_5flsm_5fflux_5flev_3954',['m_lsm_flux_lev',['../classABLMost.html#a422336bc908d29f98dafb3b745b4f060',1,'ABLMost']]], - ['m_5flsm_5ffluxes_3955',['m_lsm_fluxes',['../classRadiation.html#a628ab4164c223bc55241535374a780cb',1,'Radiation']]], - ['m_5flsm_5fgeom_3956',['m_lsm_geom',['../classMM5.html#a5bb965e19ba475c78c8c9c8528fbf871',1,'MM5::m_lsm_geom()'],['../classNullSurf.html#ac722d317f14ff1793ce7a38362987513',1,'NullSurf::m_lsm_geom()'],['../classSLM.html#ac41680d479e44b54678787b662c55fef',1,'SLM::m_lsm_geom()']]], - ['m_5flsm_5fgeom_5flev_3957',['m_lsm_geom_lev',['../classLandSurface.html#a06a0bb4f12e604dbbd844bd4d2b0903f',1,'LandSurface']]], - ['m_5flsm_5fmodel_3958',['m_lsm_model',['../classLandSurface.html#a7415e46b046f76ef34902fa6ef1ef628',1,'LandSurface']]], - ['m_5flsm_5fsize_3959',['m_lsm_size',['../classMM5.html#a338909d8b32e73bee5188eb5f4e0e15d',1,'MM5::m_lsm_size()'],['../classNullSurf.html#a00480a80b00d313460c898669225b2ef',1,'NullSurf::m_lsm_size()'],['../classSLM.html#a4b4498e80099eadbb5405ec7095c07a8',1,'SLM::m_lsm_size()']]], - ['m_5flsm_5fzenith_3960',['m_lsm_zenith',['../classRadiation.html#a9ee4891cfb314df8458a47759de345d5',1,'Radiation']]], - ['m_5flwave_5flev_3961',['m_Lwave_lev',['../classABLMost.html#ab12af4a41dbc189d69850a81447434f7',1,'ABLMost']]], - ['m_5fma_3962',['m_ma',['../classABLMost.html#a466bfcda8ae4337d9c8781ab28e3f6fe',1,'ABLMost']]], - ['m_5fmax_5fstep_3963',['m_max_step',['../classMultiBlockContainer.html#a1f1ba45d36c26640b1d2817ae275a505',1,'MultiBlockContainer']]], - ['m_5fmaxlev_3964',['m_maxlev',['../classMOSTAverage.html#abc66735142b394193e3b6934ea817015',1,'MOSTAverage']]], - ['m_5fmoist_5fmodel_3965',['m_moist_model',['../classEulerianMicrophysics.html#a3d8916fc5900c54728d7549c68b21048',1,'EulerianMicrophysics']]], - ['m_5fmost_3966',['m_most',['../classERF.html#a051364b2373d8d86151c0b4a958035bd',1,'ERF']]], - ['m_5fnavg_3967',['m_navg',['../classMOSTAverage.html#a0554ee593b5deca61ef0d26ebd26f6d6',1,'MOSTAverage']]], - ['m_5fncell_5fline_3968',['m_ncell_line',['../classPlaneAverage.html#a049c64513c0ed306d7e68ef95df87033',1,'PlaneAverage']]], - ['m_5fncell_5fplane_3969',['m_ncell_plane',['../classPlaneAverage.html#a98ad1b7801e75ac43ddd3d06b0c5d7da',1,'PlaneAverage::m_ncell_plane()'],['../classMOSTAverage.html#a89b9ec10eb8dee9a8be7c9597a3f5008',1,'MOSTAverage::m_ncell_plane()']]], - ['m_5fncell_5fregion_3970',['m_ncell_region',['../classMOSTAverage.html#ab227f9a8e9224820c00fa8b223712b3e',1,'MOSTAverage']]], - ['m_5fncomp_3971',['m_ncomp',['../classERFFillPatcher.html#a61c68ee600be65606db582402599c1d4',1,'ERFFillPatcher::m_ncomp()'],['../classPlaneAverage.html#af07d85c4bd48f4bedc0b180001c728dc',1,'PlaneAverage::m_ncomp()']]], - ['m_5fng_3972',['m_ng',['../classPlaneAverage.html#a4a8c3eb911548a254ef75c24659b1317',1,'PlaneAverage']]], - ['m_5fnghost_3973',['m_nghost',['../classERFFillPatcher.html#afdb02cfc6d41b23967ff0a6f0e22b849',1,'ERFFillPatcher']]], - ['m_5fnghost_5fsubset_3974',['m_nghost_subset',['../classERFFillPatcher.html#a83a91e2dc7bd7c39a27327024814061c',1,'ERFFillPatcher']]], - ['m_5fnominal_5fpower_3975',['m_nominal_power',['../classNullWindFarm.html#aac5f552b2717ab7f177541c1bf09828a',1,'NullWindFarm']]], - ['m_5fnorm_5fvec_3976',['m_norm_vec',['../classMOSTAverage.html#a90d1df8bd48dd2bf45776a01ba1a89f7',1,'MOSTAverage']]], - ['m_5fnpetals_3977',['m_npetals',['../classFlowerIF.html#a13021976563f28b30e35c378d19a5d75',1,'FlowerIF']]], - ['m_5fnvar_3978',['m_nvar',['../classMOSTAverage.html#a94ece9d178d0e85296cce07bab556bc7',1,'MOSTAverage']]], - ['m_5fnz_5flsm_3979',['m_nz_lsm',['../classMM5.html#a9e2b3186622686e5aae850eb1dc93d28',1,'MM5::m_nz_lsm()'],['../classSLM.html#ac5eb0f0fb3b7c78777a95bad4b5370ee',1,'SLM::m_nz_lsm()']]], - ['m_5fout_5frad_3980',['m_out_rad',['../classReadBndryPlanes.html#acb820b3ebc4c07d210831e6081c47aa9',1,'ReadBndryPlanes::m_out_rad()'],['../classWriteBndryPlanes.html#a2ce490f5166966b52112f126c9dc4dd8',1,'WriteBndryPlanes::m_out_rad()']]], - ['m_5fowns_5fdata_3981',['m_owns_data',['../structTimeInterpolatedData.html#a6eeb9167e2d8051c16fdbb1e7fee54ed',1,'TimeInterpolatedData']]], - ['m_5fphi_3982',['m_phi',['../structCENTERED2.html#ac162099524c29536f1d08dcbb7c6c67a',1,'CENTERED2::m_phi()'],['../structWENO__Z5.html#a962862416f273b267eb55802eff59edf',1,'WENO_Z5::m_phi()'],['../structWENO__MZQ3.html#a106585bb6e78f7027658c9c56f3ae892',1,'WENO_MZQ3::m_phi()'],['../structWENO__Z3.html#a8269a48070f989c0183112ccd8e57489',1,'WENO_Z3::m_phi()'],['../structWENO5.html#a28727bda47dc47677cf20c4d4bbda9a8',1,'WENO5::m_phi()'],['../structWENO3.html#a13120486db8a71a2059a9c7c1928b416',1,'WENO3::m_phi()'],['../structUPWINDALL.html#a36acc81d9046b2b80cf3755aa46bc10c',1,'UPWINDALL::m_phi()'],['../structCENTERED6.html#a732a4a686c30a3233c939f453b74f0b9',1,'CENTERED6::m_phi()'],['../structUPWIND5.html#a26ff7f987df2f61ab60c121c02dd4295',1,'UPWIND5::m_phi()'],['../structCENTERED4.html#a2a0e8c62c2eb7e34a73c94f212a21cb3',1,'CENTERED4::m_phi()'],['../structUPWIND3.html#a4f184417f94f60775a46357fbafe1cca',1,'UPWIND3::m_phi()']]], - ['m_5fplane_5faverage_3983',['m_plane_average',['../classMOSTAverage.html#a81ad3bc2787e30025f8bee91bc5c9dc2',1,'MOSTAverage']]], - ['m_5fplot_5fint_5f1_3984',['m_plot_int_1',['../classERF.html#a57cfb4bfead8525174646964992c7e69',1,'ERF']]], - ['m_5fplot_5fint_5f2_3985',['m_plot_int_2',['../classERF.html#ad3311c9ceacd17f34bdb5e03cefa33b3',1,'ERF']]], - ['m_5fplot_5fper_5f1_3986',['m_plot_per_1',['../classERF.html#a3167adc9518cce649a90ab82e9f9c85d',1,'ERF']]], - ['m_5fplot_5fper_5f2_3987',['m_plot_per_2',['../classERF.html#aff879a9c686293a10a3a03027b765c51',1,'ERF']]], - ['m_5fpolicy_3988',['m_policy',['../classMOSTAverage.html#a0e87c91bf31d0e60a31b906081d24eea',1,'MOSTAverage']]], - ['m_5fpower_3989',['m_power',['../classNullWindFarm.html#a61554384fc601d7ae2fb758a8bc7f4f4',1,'NullWindFarm']]], - ['m_5fpp_5fprefix_3990',['m_pp_prefix',['../classMOSTAverage.html#a8e48f835a742b02f039aeb6bc520aef8',1,'MOSTAverage']]], - ['m_5fprecision_3991',['m_precision',['../classPlaneAverage.html#a1f08f5f76700c51c42243410ffce6e66',1,'PlaneAverage']]], - ['m_5fqmoist_5fsize_3992',['m_qmoist_size',['../classNullMoist.html#a645f66b91b08d84aa7451a9da0c11a72',1,'NullMoist::m_qmoist_size()'],['../classSAM.html#a4bf36ad050daafdcfea1aa83ad75f9cf',1,'SAM::m_qmoist_size()'],['../classKessler.html#ae94091e97ccba54c040030c98e52aa7c',1,'Kessler::m_qmoist_size()']]], - ['m_5fqstate_5fsize_3993',['m_qstate_size',['../classKessler.html#ad5167b56417db2cd78415b4654d6f7ca',1,'Kessler::m_qstate_size()'],['../classNullMoist.html#a3cb016aa9c0f1ee7534ad678723d1c59',1,'NullMoist::m_qstate_size()'],['../classSAM.html#a81c775ecb78f3f228a98a9c39d1d098d',1,'SAM::m_qstate_size()']]], - ['m_5fr_3994',['m_r',['../classFlowerIF.html#a09721c1438c00c21d1babb121dc3d447',1,'FlowerIF']]], - ['m_5fr2d_3995',['m_r2d',['../classERF.html#addf62bfc534515447b94e928ac0b7135',1,'ERF']]], - ['m_5fradius_3996',['m_radius',['../classMOSTAverage.html#a2c167351f6655ef3276f8e5b39439e91',1,'MOSTAverage']]], - ['m_5fratio_3997',['m_ratio',['../classERFFillPatcher.html#ab5ab5fa9bd525d2673c433633e0b3fba',1,'ERFFillPatcher']]], - ['m_5frdocp_3998',['m_rdOcp',['../classReadBndryPlanes.html#a7e0bbe82df8b302172937d7dbb981a2c',1,'ReadBndryPlanes::m_rdOcp()'],['../classSAM.html#a3b461d5620f6b9a08a1e62b60a463af7',1,'SAM::m_rdOcp()']]], - ['m_5frelax_5fmask_3999',['m_relax_mask',['../classERFFillPatcher.html#abad97ea0363653435fd9f922e10a53b2',1,'ERFFillPatcher']]], - ['m_5frotor_5frad_4000',['m_rotor_rad',['../classNullWindFarm.html#a06d46ff7212efd7893e94b99fa981b9d',1,'NullWindFarm']]], - ['m_5fset_5fmask_4001',['m_set_mask',['../classERFFillPatcher.html#a9d188e7b7e85221b257799a5a9c5098e',1,'ERFFillPatcher']]], - ['m_5fsign_4002',['m_sign',['../classFlowerIF.html#a1841ecb4de32a4763c2864784f0c22c4',1,'FlowerIF']]], - ['m_5fsst_5flev_4003',['m_sst_lev',['../classABLMost.html#ad8f1957bba407e17edb0a84ace515cde',1,'ABLMost']]], - ['m_5fstart_5fbdy_5ftime_4004',['m_start_bdy_time',['../classABLMost.html#a4fb97b28e44e9ff6930f18083923343a',1,'ABLMost']]], - ['m_5ft_5favg_4005',['m_t_avg',['../classMOSTAverage.html#a05905a4754c7eb39b766b96889b1bd47',1,'MOSTAverage']]], - ['m_5ft_5finit_4006',['m_t_init',['../classMOSTAverage.html#a3fe20fc4a4eb0b283f1d658b6237004c',1,'MOSTAverage']]], - ['m_5fterr_4007',['m_terr',['../classTerrainIF.html#a3e1f2814d20da7b5dd6d1d620b04784c',1,'TerrainIF']]], - ['m_5fterrain_5ftype_4008',['m_terrain_type',['../classERFPhysBCFunct__w.html#a96add99b86d3a03a872af7af85ad8e96',1,'ERFPhysBCFunct_w']]], - ['m_5ftheta_5fdir_4009',['m_theta_dir',['../classMM5.html#ab8187a0b9206d9c1d6632d494a149d1a',1,'MM5::m_theta_dir()'],['../classSLM.html#aec067697af550a8122138e57c4e0666d',1,'SLM::m_theta_dir()']]], - ['m_5fthrust_5fcoeff_4010',['m_thrust_coeff',['../classNullWindFarm.html#a7fe11fbaf6a246c60156e40aec3835f7',1,'NullWindFarm']]], - ['m_5fthrust_5fcoeff_5fstanding_4011',['m_thrust_coeff_standing',['../classNullWindFarm.html#a5a95464f19af9063228d23981f3a75cd',1,'NullWindFarm']]], - ['m_5ftime_4012',['m_time',['../structTimeInterpolatedData.html#a9b0102facc1d00011f48f95132955e27',1,'TimeInterpolatedData']]], - ['m_5ftime_5ffile_4013',['m_time_file',['../classReadBndryPlanes.html#a8027f415fce9acdc5ad53745016f67bf',1,'ReadBndryPlanes::m_time_file()'],['../classWriteBndryPlanes.html#a91c8abe5b1a15f5fe630db40230f08c1',1,'WriteBndryPlanes::m_time_file()']]], - ['m_5ftime_5fwindow_4014',['m_time_window',['../classMOSTAverage.html#ac95147c0d7961323ca8b079f63cd4be9',1,'MOSTAverage']]], - ['m_5ftinterp_4015',['m_tinterp',['../classReadBndryPlanes.html#a3f5e28f23e03b5c32f23ac953987728a',1,'ReadBndryPlanes']]], - ['m_5ftn_4016',['m_tn',['../classReadBndryPlanes.html#ade779c58aa5ea62cf1e03cbfaf98bb61',1,'ReadBndryPlanes']]], - ['m_5ftnp1_4017',['m_tnp1',['../classReadBndryPlanes.html#a4343c3c0761df0f96c58f8d268a43017',1,'ReadBndryPlanes']]], - ['m_5ftnp2_4018',['m_tnp2',['../classReadBndryPlanes.html#aca1dcdc531215bfd5a12fb286d064c8c',1,'ReadBndryPlanes']]], - ['m_5fu_5fbc_5fdata_4019',['m_u_bc_data',['../classERFPhysBCFunct__u.html#a603a1822cba514966ad201cfc676cdf6',1,'ERFPhysBCFunct_u']]], - ['m_5fuse_5freal_5fbcs_4020',['m_use_real_bcs',['../classERFPhysBCFunct__cons.html#a0e54453355d6a7c96044113c8827a008',1,'ERFPhysBCFunct_cons::m_use_real_bcs()'],['../classERFPhysBCFunct__w__no__terrain.html#a6ec9592d34b537392cbcb34ffb63f99a',1,'ERFPhysBCFunct_w_no_terrain::m_use_real_bcs()'],['../classERFPhysBCFunct__w.html#a6e6cdc32da147f7bc00d8c408b5df9a1',1,'ERFPhysBCFunct_w::m_use_real_bcs()'],['../classERFPhysBCFunct__u.html#a4a1ce4ec8f730cb61568aee6eceefe1f',1,'ERFPhysBCFunct_u::m_use_real_bcs()'],['../classERFPhysBCFunct__v.html#aa17ac5983f98d1b13f952fa7f2c39b54',1,'ERFPhysBCFunct_v::m_use_real_bcs()']]], - ['m_5fv_5fbc_5fdata_4021',['m_v_bc_data',['../classERFPhysBCFunct__v.html#a1abc171e8cfcd542f4d9e312e0f586c1',1,'ERFPhysBCFunct_v']]], - ['m_5fvar_5fnames_4022',['m_var_names',['../classReadBndryPlanes.html#aa5f533fb198d42785bfebe5cd8ae7131',1,'ReadBndryPlanes::m_var_names()'],['../classWriteBndryPlanes.html#a85703bf41a6ba0382f13a90f64ba417b',1,'WriteBndryPlanes::m_var_names()']]], - ['m_5fw2d_4023',['m_w2d',['../classERF.html#aa53035f34ba133b86172e180abda4209',1,'ERF']]], - ['m_5fw_5fbc_5fdata_4024',['m_w_bc_data',['../classERFPhysBCFunct__w.html#a4c66456080eb954ef8c80fc3dcfc4c3a',1,'ERFPhysBCFunct_w::m_w_bc_data()'],['../classERFPhysBCFunct__w__no__terrain.html#a061d0fb277d977056e7485d4ab4abc3c',1,'ERFPhysBCFunct_w_no_terrain::m_w_bc_data()']]], - ['m_5fwind_5fspeed_4025',['m_wind_speed',['../classNullWindFarm.html#a9beae3f8f39bb7bde432530da926d6ef',1,'NullWindFarm']]], - ['m_5fwindfarm_5fmodel_4026',['m_windfarm_model',['../classWindFarm.html#af3953694e6a246585c20f50436a65123',1,'WindFarm']]], - ['m_5fx_5fpos_4027',['m_x_pos',['../classMOSTAverage.html#a58c320eb48f9b8a1b0983d2770e9f3ea',1,'MOSTAverage']]], - ['m_5fxlo_4028',['m_xlo',['../classPlaneAverage.html#a42c7dfa900a0b69ba1d294455ca8ba51',1,'PlaneAverage']]], - ['m_5fxloc_4029',['m_xloc',['../classNullWindFarm.html#ac8ff132b0d2d52032ec19344ec6a74c6',1,'NullWindFarm']]], - ['m_5fy_5fpos_4030',['m_y_pos',['../classMOSTAverage.html#a1beb0dad926be2f2d9cb1de69a1a3374',1,'MOSTAverage']]], - ['m_5fyloc_4031',['m_yloc',['../classNullWindFarm.html#a86792dc0d8fb3dfc9b9646c38a2926da',1,'NullWindFarm']]], - ['m_5fz_5fphys_5fnd_4032',['m_z_phys_nd',['../classSAM.html#a51af1452ad89711f8ddaa554cdc49ee6',1,'SAM::m_z_phys_nd()'],['../classERFPhysBCFunct__u.html#aefe9bc994735627162154bc289a0de3c',1,'ERFPhysBCFunct_u::m_z_phys_nd()'],['../classKessler.html#aaead0b1bbb0693e5ef480fd15bcbe559',1,'Kessler::m_z_phys_nd()'],['../classMOSTAverage.html#a3a49018467b69573ef84df9cdfd86da4',1,'MOSTAverage::m_z_phys_nd()'],['../classERFPhysBCFunct__w.html#aa37508122179536336aa8dba19d34c1b',1,'ERFPhysBCFunct_w::m_z_phys_nd()'],['../classERFPhysBCFunct__v.html#afffa0e227916c179928f9a3eb7a07c3c',1,'ERFPhysBCFunct_v::m_z_phys_nd()'],['../classERFPhysBCFunct__cons.html#ad33ab704eb9b5d62a4db9317f40255dd',1,'ERFPhysBCFunct_cons::m_z_phys_nd()']]], - ['m_5fz_5fpos_4033',['m_z_pos',['../classMOSTAverage.html#a81ff1b7e8d026f0cd74147cbcc016d15',1,'MOSTAverage']]], - ['m_5fzref_4034',['m_zref',['../classMOSTAverage.html#af2f1477f6bc5e4b2f2ddee27d17dab9f',1,'MOSTAverage']]], - ['ma_5flist_4035',['ma_list',['../classMamConstituents.html#ab9703f219ce7a084e170017035dc269b',1,'MamConstituents']]], - ['mam_5faer_4036',['mam_aer',['../classAerRadProps.html#afb607ae14bfc3e46dd66c9e04627a57d',1,'AerRadProps']]], - ['mam_5fconsti_4037',['mam_consti',['../classAerRadProps.html#a66f750181cccc82c03268b0a4a245ecc',1,'AerRadProps::mam_consti()'],['../classMam4__aer.html#a2dcd6d3b6a38a2f0e8bc389c80fb4ae9',1,'Mam4_aer::mam_consti()']]], - ['mapfac_5fm_4038',['mapfac_m',['../classERF.html#a23aacdb72e9d2dfed8e2ebd2c2526497',1,'ERF']]], - ['mapfac_5fu_4039',['mapfac_u',['../classERF.html#a1e8afee1508b720dab56f5d044deb301',1,'ERF']]], - ['mapfac_5fv_4040',['mapfac_v',['../classERF.html#ae49b5055f9a7117fa15918a5daa775b7',1,'ERF']]], - ['mass_5fname_4041',['mass_name',['../structMamConstituents_1_1aerosol__t.html#a300418f68393143be3f4852641ac465b',1,'MamConstituents::aerosol_t::mass_name()'],['../structMamConstituents_1_1gas__t.html#ad63e38b410aa69ed3f76d6898b35b53a',1,'MamConstituents::gas_t::mass_name()']]], - ['max_5fiter_4042',['MAX_ITER',['../namespaceHSEutils.html#a10de540cb8ad96aea8cd080f4d1e72fa',1,'HSEutils']]], - ['max_5fk_5fat_5flevel_4043',['max_k_at_level',['../classERF.html#a9108040a44e5e64853ac7d6529538315',1,'ERF']]], - ['max_5fstep_4044',['max_step',['../classERF.html#a0634154e8e58379c495c3e7fe7c5e4d6',1,'ERF']]], - ['mdata_4045',['mdata',['../structadiabatic__charnock.html#a5c11064c35d6eefd22558180155d6ede',1,'adiabatic_charnock::mdata()'],['../structsurface__temp__wave__coupled.html#a44d84ddefc6dc5572f1b1e614996b288',1,'surface_temp_wave_coupled::mdata()'],['../structsurface__temp__mod__charnock.html#a98f673e5030f4509a8874466337f50c4',1,'surface_temp_mod_charnock::mdata()'],['../structsurface__temp__charnock.html#a073ad08e0d652e792b459878e10dc41b',1,'surface_temp_charnock::mdata()'],['../structsurface__temp.html#afec351f7cde260c6e96a27297cb4010f',1,'surface_temp::mdata()'],['../structsurface__flux__wave__coupled.html#a7c81c888df97ef0ff4dc54be9c4e163a',1,'surface_flux_wave_coupled::mdata()'],['../structsurface__flux__mod__charnock.html#a6fa441221eb1f30d65437ce890adfd46',1,'surface_flux_mod_charnock::mdata()'],['../structsurface__flux__charnock.html#a60030c5104987d6287efd5d9b996014c',1,'surface_flux_charnock::mdata()'],['../structsurface__flux.html#a960909fe387424192cf802afccdc7bed',1,'surface_flux::mdata()'],['../structadiabatic__wave__coupled.html#a812ea5ea7d6223e5512c372b3260d1bc',1,'adiabatic_wave_coupled::mdata()'],['../structadiabatic__mod__charnock.html#ad33aa4fea2aa05dbb4057dcef251e0da',1,'adiabatic_mod_charnock::mdata()'],['../structadiabatic.html#afdc69c66b9c49f67d4f2409bc1f3ce29',1,'adiabatic::mdata()']]], - ['mic_5ffab_5fvars_4046',['mic_fab_vars',['../classKessler.html#aa11214a3e579cc9d6309359b1c05e5ab',1,'Kessler::mic_fab_vars()'],['../classSAM.html#a36ee9e1e1a94d22304f46e064f16e11e',1,'SAM::mic_fab_vars()']]], - ['micro_4047',['micro',['../classERF.html#a4b7277d54649219f31fe286eee9d415a',1,'ERF']]], - ['micvarmap_4048',['MicVarMap',['../classKessler.html#a18164f048f846cd122de43803b49c1cb',1,'Kessler::MicVarMap()'],['../classSAM.html#a6008487ad12ada77acdcb3ee41371c98',1,'SAM::MicVarMap()']]], - ['min_5fk_5fat_5flevel_4049',['min_k_at_level',['../classERF.html#a46a3587ddcfacba35dcf52189cc1be86',1,'ERF']]], - ['modal_5foptics_5ffile_4050',['modal_optics_file',['../classMam4__aer.html#a396c0ab69e47a8cbc27c346aa2fb489d',1,'Mam4_aer']]], - ['mode_5ftype_5fnames_4051',['mode_type_names',['../classMamConstituents.html#a5c94b10764d82b018270ebf012cd657b',1,'MamConstituents']]], - ['modes_4052',['modes',['../classMamConstituents.html#a1692c29032818c08c3b1ac985a35d521',1,'MamConstituents']]], - ['moistscal_5fhoriz_5fadv_5ftype_4053',['moistscal_horiz_adv_type',['../structAdvChoice.html#a22f84c60e56d4b3bde6b7f9548c87af3',1,'AdvChoice']]], - ['moistscal_5fhoriz_5fupw_5ffrac_4054',['moistscal_horiz_upw_frac',['../structAdvChoice.html#a69b32bcee6cd30f3f88280d0ec49cd35',1,'AdvChoice']]], - ['moistscal_5fvert_5fadv_5ftype_4055',['moistscal_vert_adv_type',['../structAdvChoice.html#a2f888dfcb79cdb766ee04f21aada83ec',1,'AdvChoice']]], - ['moistscal_5fvert_5fupw_5ffrac_4056',['moistscal_vert_upw_frac',['../structAdvChoice.html#a334139583accdc5718a939b20b308bb9',1,'AdvChoice']]], - ['moisture_5ftype_4057',['moisture_type',['../structSolverChoice.html#aacbfbe6f4a3040db3efdc6dbf8fa291b',1,'SolverChoice']]], - ['molec_5fdiff_5ftype_4058',['molec_diff_type',['../structDiffChoice.html#aed5c75ec58e358a735d97869147b2baf',1,'DiffChoice']]], - ['mri_5fintegrator_5fmem_4059',['mri_integrator_mem',['../classERF.html#a09d0fb2bd609c898a665d9530a744585',1,'ERF']]], - ['mu_4060',['mu',['../structPhysProp_1_1physprop__t.html#aa23d4f11099641ffb9c395c327156980',1,'PhysProp::physprop_t']]], - ['muelq_4061',['muelq',['../ERF__Constants_8H.html#a0e5683feac33352111ce4445dbedbf45',1,'ERF_Constants.H']]], - ['mvelpp_4062',['mvelpp',['../classRadiation.html#ae4dacdbc7383b92511c2385bd59ed49a',1,'Radiation']]], - ['mwdair_4063',['mwdair',['../ERF__Constants_8H.html#a650da208ce885c0f6c9c742d26dc4b0e',1,'ERF_Constants.H']]], - ['mwwv_4064',['mwwv',['../ERF__Constants_8H.html#a75abd92a75952e8eefd06628c8c3487d',1,'ERF_Constants.H']]] + ['m_5factive_3885',['m_active',['../classCIF.html#a1e3b931483e96527c09af4016a29d101',1,'CIF']]], + ['m_5faverages_3886',['m_averages',['../classMOSTAverage.html#a158b82286f1bed8b02da2c8b2ac7f4c0',1,'MOSTAverage']]], + ['m_5faxis_3887',['m_axis',['../classSAM.html#a37854ec84283a4229cf86b54cfcfc72b',1,'SAM::m_axis()'],['../classKessler.html#afea161a2b985d4c0eb4aa9390a808ab4',1,'Kessler::m_axis()'],['../classPlaneAverage.html#ab1c325b8a1241cb446bad96fa558e770',1,'PlaneAverage::m_axis()']]], + ['m_5fbc_5fextdir_5fvals_3888',['m_bc_extdir_vals',['../classERFPhysBCFunct__cons.html#a75abbe15fe3c056e3ee6c5b250bdac44',1,'ERFPhysBCFunct_cons::m_bc_extdir_vals()'],['../classERF.html#a199add69cee34c6611a5dc9ee965971c',1,'ERF::m_bc_extdir_vals()'],['../classERFPhysBCFunct__w__no__terrain.html#af10baf7824fa75f859317b7b0c8cc3f4',1,'ERFPhysBCFunct_w_no_terrain::m_bc_extdir_vals()'],['../classERFPhysBCFunct__w.html#afd4eed563a59fae4744eaac6ced6bb6b',1,'ERFPhysBCFunct_w::m_bc_extdir_vals()'],['../classERFPhysBCFunct__v.html#a7e67556be338a97384abe278d98f02e7',1,'ERFPhysBCFunct_v::m_bc_extdir_vals()'],['../classERFPhysBCFunct__u.html#a1d7949c78cfb3041588995139f0a9218',1,'ERFPhysBCFunct_u::m_bc_extdir_vals()']]], + ['m_5fbc_5fneumann_5fvals_3889',['m_bc_neumann_vals',['../classERFPhysBCFunct__cons.html#a4ddeefc7be1abe021ebcdb272fc9db45',1,'ERFPhysBCFunct_cons::m_bc_neumann_vals()'],['../classERFPhysBCFunct__u.html#a33fd3c8b07c1376a6e433637010dd509',1,'ERFPhysBCFunct_u::m_bc_neumann_vals()'],['../classERFPhysBCFunct__v.html#ad9053e6fef29f1cb09b0f90e497f03b0',1,'ERFPhysBCFunct_v::m_bc_neumann_vals()'],['../classERFPhysBCFunct__w.html#a618a6fa84ef741a75172135ce8481b05',1,'ERFPhysBCFunct_w::m_bc_neumann_vals()'],['../classERFPhysBCFunct__w__no__terrain.html#a5f98e8e83a78de87e1b5c720f3b2ea64',1,'ERFPhysBCFunct_w_no_terrain::m_bc_neumann_vals()'],['../classERF.html#a69ea003766c97b1a667b002b3661f0f2',1,'ERF::m_bc_neumann_vals()']]], + ['m_5fbdy_5ftime_5finterval_3890',['m_bdy_time_interval',['../classABLMost.html#a049bc06685178431599f3bfaa57d63bd',1,'ABLMost']]], + ['m_5fbox_3891',['m_box',['../classRadiation.html#a37098b6502fef13732ed996200b7f64c',1,'Radiation']]], + ['m_5fcba_3892',['m_cba',['../classERFFillPatcher.html#a35fb56b2946f596728b9ac793eb47c5e',1,'ERFFillPatcher']]], + ['m_5fcdm_3893',['m_cdm',['../classERFFillPatcher.html#a52af76dca01fd13bdb29834d4b9ca5e2',1,'ERFFillPatcher']]], + ['m_5fcenter_3894',['m_center',['../classFlowerIF.html#afde7bb14577df6460b603a3fb9c68c30',1,'FlowerIF']]], + ['m_5fcf_5fcrse_5fdata_5fnew_3895',['m_cf_crse_data_new',['../classERFFillPatcher.html#a89f24e6cfe30a2180b1667aead7edf28',1,'ERFFillPatcher']]], + ['m_5fcf_5fcrse_5fdata_5fold_3896',['m_cf_crse_data_old',['../classERFFillPatcher.html#ad6ac8a363c79d1a98703988478420586',1,'ERFFillPatcher']]], + ['m_5fcf_5fmask_3897',['m_cf_mask',['../classERFFillPatcher.html#a874bf44ab38e936013bbf8454a41a680',1,'ERFFillPatcher']]], + ['m_5fcgeom_3898',['m_cgeom',['../classERFFillPatcher.html#a5b1190e4ec0fe257d6d3fa886054dc2c',1,'ERFFillPatcher']]], + ['m_5fcheck_5fint_3899',['m_check_int',['../classERF.html#a69a3f925e95ec4244b0257f9de16d65a',1,'ERF']]], + ['m_5fcheck_5fper_3900',['m_check_per',['../classERF.html#a5fbf17cfc8d9e5b994783e05ec3594b2',1,'ERF']]], + ['m_5fcp_5fsoil_3901',['m_cp_soil',['../classMM5.html#a0bc2d572786956904d71c30db49e3ae2',1,'MM5::m_cp_soil()'],['../classSLM.html#a3c284ad4d275aa9ce80eca787cab87a4',1,'SLM::m_cp_soil()']]], + ['m_5fcrse_5ftimes_3902',['m_crse_times',['../classERFFillPatcher.html#a562ca1201d642f3a7dd5700a056776d9',1,'ERFFillPatcher']]], + ['m_5fd_5fsoil_3903',['m_d_soil',['../classMM5.html#a273c04f6eac3e48325dfce1e34e58df4',1,'MM5::m_d_soil()'],['../classSLM.html#a6ba8b659255822be9538ba66c22b2533',1,'SLM::m_d_soil()']]], + ['m_5fdata_3904',['m_data',['../structTimeInterpolatedData.html#a7021ade0b30697e6eef3df932447d4fc',1,'TimeInterpolatedData']]], + ['m_5fdata_5finterp_3905',['m_data_interp',['../classReadBndryPlanes.html#a5468d5d8813dc471dac1335611ec8dc9',1,'ReadBndryPlanes']]], + ['m_5fdata_5fn_3906',['m_data_n',['../classReadBndryPlanes.html#acc6e94621293c94d1322a8cafbf61ad4',1,'ReadBndryPlanes']]], + ['m_5fdata_5fnp1_3907',['m_data_np1',['../classReadBndryPlanes.html#ae34737833f599f3cb5ef945ac3f57f4b',1,'ReadBndryPlanes']]], + ['m_5fdata_5fnp2_3908',['m_data_np2',['../classReadBndryPlanes.html#a5338493101cfbb8eb27301f83aeca290',1,'ReadBndryPlanes']]], + ['m_5fdetj_5fcc_3909',['m_detJ_cc',['../classKessler.html#a534c115146bedf2e3f600ac351162252',1,'Kessler::m_detJ_cc()'],['../classSAM.html#a1b09febe32fbfebb402091fd31cd9996',1,'SAM::m_detJ_cc()']]], + ['m_5fdomain_5fbcs_5ftype_3910',['m_domain_bcs_type',['../classERFPhysBCFunct__cons.html#ab131fcff8649a5dde5f39fe890b6b383',1,'ERFPhysBCFunct_cons::m_domain_bcs_type()'],['../classERFPhysBCFunct__w__no__terrain.html#a1c27696ce2fb04cb8e0f9e41d2c21196',1,'ERFPhysBCFunct_w_no_terrain::m_domain_bcs_type()'],['../classERFPhysBCFunct__w.html#a052d31c743d030292761e95702615467',1,'ERFPhysBCFunct_w::m_domain_bcs_type()'],['../classERFPhysBCFunct__u.html#a90c9e642d2c31bc2245cf57f3fb4adc8',1,'ERFPhysBCFunct_u::m_domain_bcs_type()'],['../classERFPhysBCFunct__v.html#ae26c0b8c1a5145f1e1f2d44717745cfd',1,'ERFPhysBCFunct_v::m_domain_bcs_type()']]], + ['m_5fdomain_5fbcs_5ftype_5fd_3911',['m_domain_bcs_type_d',['../classERFPhysBCFunct__cons.html#aa39c1df9dc816a85f84c43c1b065be35',1,'ERFPhysBCFunct_cons::m_domain_bcs_type_d()'],['../classERFPhysBCFunct__u.html#a3b17acdd618c58f48856b4fa7a35abfc',1,'ERFPhysBCFunct_u::m_domain_bcs_type_d()'],['../classERFPhysBCFunct__v.html#a0bc0f76b47d1d805161695e977dad5fb',1,'ERFPhysBCFunct_v::m_domain_bcs_type_d()'],['../classERFPhysBCFunct__w.html#a87159676dd29c47ebd69e40b6dda5f1a',1,'ERFPhysBCFunct_w::m_domain_bcs_type_d()'],['../classERFPhysBCFunct__w__no__terrain.html#ad821ab72c32d159e12d2b80a718767bd',1,'ERFPhysBCFunct_w_no_terrain::m_domain_bcs_type_d()']]], + ['m_5fdr_3912',['m_dr',['../classFlowerIF.html#a6e09a1d51eb36041dcb175f8784b8eeb',1,'FlowerIF']]], + ['m_5fdt_3913',['m_dt',['../classMM5.html#a41e60b81361852b0e4577bd7e3f88062',1,'MM5::m_dt()'],['../classSLM.html#a48b1e4c0290b62bafb4f6acb9291aa68',1,'SLM::m_dt()']]], + ['m_5fdt_5fcrse_3914',['m_dt_crse',['../classERFFillPatcher.html#ae89877908970649653ae09c42d3c7b05',1,'ERFFillPatcher']]], + ['m_5fdx_3915',['m_dx',['../classPlaneAverage.html#ade7352e3a72a2e09561e031acd32cc8a',1,'PlaneAverage']]], + ['m_5fdz_5flsm_3916',['m_dz_lsm',['../classMM5.html#a754e507be4ac680c9f49ab0158afc4b5',1,'MM5::m_dz_lsm()'],['../classSLM.html#a6dcae265ee0a43c0d7ecdd52074431ce',1,'SLM::m_dz_lsm()']]], + ['m_5feddydiffs_5flev_3917',['m_eddyDiffs_lev',['../classABLMost.html#a05cc96f74b89c4e277fe3db4ea01d3fa',1,'ABLMost']]], + ['m_5fexp_5fmost_3918',['m_exp_most',['../classABLMost.html#ac3de35be0d6cf3841e9a868830fc42c5',1,'ABLMost']]], + ['m_5fextent_5frad_3919',['m_extent_rad',['../classWriteBndryPlanes.html#a41799219d138892871e1a6e8c3755da1',1,'WriteBndryPlanes::m_extent_rad()'],['../classReadBndryPlanes.html#ae341a8d70430128e78f7cac75e0d4e8a',1,'ReadBndryPlanes::m_extent_rad()']]], + ['m_5ff1_3920',['m_f1',['../classUnionCIF.html#a48c696814009301ff056340a2ebb601c',1,'UnionCIF::m_f1()'],['../classIntersectionCIF.html#a0b24d2c5c189c43b259c173c162aa1f1',1,'IntersectionCIF::m_f1()']]], + ['m_5ff2_3921',['m_f2',['../classUnionCIF.html#a150413e8d9e4bbd2b44e924c839f296a',1,'UnionCIF::m_f2()'],['../classIntersectionCIF.html#af11428d551013bf6318ef89873537a4e',1,'IntersectionCIF::m_f2()']]], + ['m_5ffac_5fcond_3922',['m_fac_cond',['../classKessler.html#a74746cef2381fd949a06be46f99a05c7',1,'Kessler::m_fac_cond()'],['../classSAM.html#a66b0ffc2f98c96c5a3b3c760a854be95',1,'SAM::m_fac_cond()']]], + ['m_5ffac_5ffus_3923',['m_fac_fus',['../classSAM.html#a53d38219476c32ba2dd751c02bcae53c',1,'SAM::m_fac_fus()'],['../classKessler.html#acaf08727482ff116185a6dbdf2bd54f9',1,'Kessler::m_fac_fus()']]], + ['m_5ffac_5fsub_3924',['m_fac_sub',['../classKessler.html#a2feda15429da3d8227d75cc3f6da71ba',1,'Kessler::m_fac_sub()'],['../classSAM.html#a8653cbf2c13ac3595f5f8710a3f1beec',1,'SAM::m_fac_sub()']]], + ['m_5ffact_5fnew_3925',['m_fact_new',['../classMOSTAverage.html#a960bae1d528aef6d0e7034dbea65a2c3',1,'MOSTAverage']]], + ['m_5ffact_5fold_3926',['m_fact_old',['../classMOSTAverage.html#ae1d62c88d62bbef8458d0084200f65f2',1,'MOSTAverage']]], + ['m_5ffactory_3927',['m_factory',['../classERF.html#abd4f9db387b864a97ac18c8dfe71f4e4',1,'ERF']]], + ['m_5ffba_3928',['m_fba',['../classERFFillPatcher.html#a297b1d2468ed152850c7bb6c156101b3',1,'ERFFillPatcher']]], + ['m_5ffdm_3929',['m_fdm',['../classERFFillPatcher.html#afef007cab3f3a1e4a7deea141f397e51',1,'ERFFillPatcher']]], + ['m_5ffgeom_3930',['m_fgeom',['../classERFFillPatcher.html#a12694a711f281b957f7015a98e5c9b77',1,'ERFFillPatcher']]], + ['m_5ffield_3931',['m_field',['../classPlaneAverage.html#a6c29e3eafbbb7028e801c513b29a1c09',1,'PlaneAverage']]], + ['m_5ffields_3932',['m_fields',['../classMOSTAverage.html#ad301df8e1ee46557a4d277c3f87fae69',1,'MOSTAverage']]], + ['m_5ffilename_3933',['m_filename',['../classWriteBndryPlanes.html#abbc94048dfd43b653b7754d785c11d2f',1,'WriteBndryPlanes::m_filename()'],['../classReadBndryPlanes.html#a3a130c25c6b3c327e58d3e4687a051b9',1,'ReadBndryPlanes::m_filename()']]], + ['m_5fgeom_3934',['m_geom',['../classPlaneAverage.html#ae359b042dfa8a0b951a3d34706c3c385',1,'PlaneAverage::m_geom()'],['../classRadiation.html#ae5477e7b80b52cebf89ec3b8bdce0f3c',1,'Radiation::m_geom()'],['../classSAM.html#a8242fff43eb2cf417036eb36f5e4a3d8',1,'SAM::m_geom()'],['../classKessler.html#a48f29ab8e5d1232ee83851fd904e9354',1,'Kessler::m_geom()'],['../classSLM.html#a870bfd56a5fe10dc6b7b8f0347a9b218',1,'SLM::m_geom()'],['../classMM5.html#a7edc95309bb52864bba5341f19262063',1,'MM5::m_geom()'],['../classWriteBndryPlanes.html#a007dc2174ebcc2e2d79e8f31f41255cb',1,'WriteBndryPlanes::m_geom()'],['../classReadBndryPlanes.html#af4c91eeb64f4e49767e97c1e72de06fc',1,'ReadBndryPlanes::m_geom()'],['../classMOSTAverage.html#aed9b6c726189d8858abba0a2a66feca1',1,'MOSTAverage::m_geom()'],['../classERFPhysBCFunct__w__no__terrain.html#a7f695c3d80d3c166dce59565c4d8dffc',1,'ERFPhysBCFunct_w_no_terrain::m_geom()'],['../classERFPhysBCFunct__w.html#a1e9f9a0981a60be4e8e3a2b906444878',1,'ERFPhysBCFunct_w::m_geom()'],['../classERFPhysBCFunct__v.html#a01f7c56f64ac414f4ec69ff8c45a2f2a',1,'ERFPhysBCFunct_v::m_geom()'],['../classERFPhysBCFunct__u.html#a12a1e078b61a3e00958bf0f3f69bfe5f',1,'ERFPhysBCFunct_u::m_geom()'],['../classERFPhysBCFunct__cons.html#a1a3121bc392962a3c3149a6e2db2791b',1,'ERFPhysBCFunct_cons::m_geom()'],['../classABLMost.html#a1795a510d08fbd88e6599e014f97b6c5',1,'ABLMost::m_geom()'],['../classTerrainIF.html#aeb902107efd92150abad59ec0a8cf088',1,'TerrainIF::m_geom()']]], + ['m_5fgocp_3935',['m_gOcp',['../classKessler.html#aac004df387a7f0725724f017ca3d4a99',1,'Kessler::m_gOcp()'],['../classSAM.html#a3a76b3fc76d33c147dcaab81a738f41c',1,'SAM::m_gOcp()']]], + ['m_5fgtoe_3936',['m_gtoe',['../classKessler.html#ae8749011028be638e3fb8051e22f83f1',1,'Kessler::m_gtoe()'],['../classSAM.html#a579b5a1e16d7b9d8d317e475a6a43705',1,'SAM::m_gtoe()']]], + ['m_5fhub_5fheight_3937',['m_hub_height',['../classNullWindFarm.html#ad403f4133b2292495e5dd949fcc59207',1,'NullWindFarm']]], + ['m_5fhwave_5flev_3938',['m_Hwave_lev',['../classABLMost.html#a644ccdc438574061ec7ae75cdc714ec6',1,'ABLMost']]], + ['m_5fi_5findx_3939',['m_i_indx',['../classMOSTAverage.html#a2f5fb25e7c5196338ee5a051708d8f62',1,'MOSTAverage']]], + ['m_5fifs_3940',['m_ifs',['../classUnionListIF.html#a89c2512bb20d220882024302d7a92a3f',1,'UnionListIF']]], + ['m_5fin_5frad_3941',['m_in_rad',['../classReadBndryPlanes.html#a8269a127a4db1fd93794dcb8062f5fa9',1,'ReadBndryPlanes::m_in_rad()'],['../classWriteBndryPlanes.html#a7b350ac1d0c6151ed748a575475f8fbd',1,'WriteBndryPlanes::m_in_rad()']]], + ['m_5fin_5ftimes_3942',['m_in_times',['../classReadBndryPlanes.html#adfe9045e42be78e2a735151d969183d7',1,'ReadBndryPlanes::m_in_times()'],['../classWriteBndryPlanes.html#a15fa114f52237b735599b6a5cac40d26',1,'WriteBndryPlanes::m_in_times()']]], + ['m_5fin_5ftimesteps_3943',['m_in_timesteps',['../classReadBndryPlanes.html#a7bfda76cde9aa1b8290577c40a612795',1,'ReadBndryPlanes::m_in_timesteps()'],['../classWriteBndryPlanes.html#a7cab948881900ffa97145c47221dcb44',1,'WriteBndryPlanes::m_in_timesteps()']]], + ['m_5finc_5fghost_3944',['m_inc_ghost',['../classPlaneAverage.html#abe59333d5fc9969465111df40dd9892e',1,'PlaneAverage']]], + ['m_5finside_3945',['m_inside',['../classFlowerIF.html#adabc11e60eca5148da34682a5c51058f',1,'FlowerIF']]], + ['m_5finterp_3946',['m_interp',['../classMOSTAverage.html#aeac5da9c3972fdde64f60720f88efe2e',1,'MOSTAverage::m_interp()'],['../classERFFillPatcher.html#a2fc352aecabd75ec92f5d17730683a1c',1,'ERFFillPatcher::m_interp()']]], + ['m_5fixtype_3947',['m_ixtype',['../classPlaneAverage.html#a45ad4c1f2922be9ba838bab13657385f',1,'PlaneAverage']]], + ['m_5fj_5findx_3948',['m_j_indx',['../classMOSTAverage.html#acdc75484e6ed5d2fadfb93573b6dded2',1,'MOSTAverage']]], + ['m_5fk_5fin_3949',['m_k_in',['../classMOSTAverage.html#ad570edb25d41640aa2d52122ae303884',1,'MOSTAverage']]], + ['m_5fk_5findx_3950',['m_k_indx',['../classMOSTAverage.html#afbe752293b7c2790b1994a2349261fda',1,'MOSTAverage']]], + ['m_5fk_5fsoil_3951',['m_k_soil',['../classMM5.html#ac5730f1413ae4a3dd5d4b2c683c41297',1,'MM5::m_k_soil()'],['../classSLM.html#aa674dfa04bde7d418f1195f707f84f5c',1,'SLM::m_k_soil()']]], + ['m_5flat_3952',['m_lat',['../classRadiation.html#ae6fe4540ef5931fb2ac34ad19c6fe74e',1,'Radiation']]], + ['m_5flev_3953',['m_lev',['../classERFPhysBCFunct__v.html#a22e73a039ee130b072f3a9ad079fc160',1,'ERFPhysBCFunct_v::m_lev()'],['../classERFPhysBCFunct__w__no__terrain.html#a490eb84b4d60adb33dfe5f705b333b2d',1,'ERFPhysBCFunct_w_no_terrain::m_lev()'],['../classERFPhysBCFunct__w.html#a277641c1cc5a27c2a01e49d21a9c88f4',1,'ERFPhysBCFunct_w::m_lev()'],['../classERFPhysBCFunct__u.html#a898867b7e245b2ecf05ab7f5ce4a4504',1,'ERFPhysBCFunct_u::m_lev()'],['../classERFPhysBCFunct__cons.html#ad393b48c02e838f75be60a655eed9fa6',1,'ERFPhysBCFunct_cons::m_lev()']]], + ['m_5flevel_3954',['m_level',['../classPlaneAverage.html#a6a25218bd5754ec121caab7e4acfc537',1,'PlaneAverage']]], + ['m_5fline_5faverage_3955',['m_line_average',['../classPlaneAverage.html#a998ec98b248ea4bd71284a2bd919fb0d',1,'PlaneAverage']]], + ['m_5fline_5fxcentroid_3956',['m_line_xcentroid',['../classPlaneAverage.html#a560dbd7059fb6cbb0421635c5d405d2b',1,'PlaneAverage']]], + ['m_5flmask_5flev_3957',['m_lmask_lev',['../classABLMost.html#aaa5bbc610662825ddd8a184b43f3541b',1,'ABLMost']]], + ['m_5flon_3958',['m_lon',['../classRadiation.html#a0069d200496f037a5bffa96e4bf9bce0',1,'Radiation']]], + ['m_5flsm_5fdata_5flev_3959',['m_lsm_data_lev',['../classABLMost.html#a958aaaf9e040462197c88c6c77f2aaf6',1,'ABLMost::m_lsm_data_lev()'],['../classLandSurface.html#a5a134e93d42328bfaa9611a9e625e1bb',1,'LandSurface::m_lsm_data_lev()']]], + ['m_5flsm_5fflux_5flev_3960',['m_lsm_flux_lev',['../classABLMost.html#a422336bc908d29f98dafb3b745b4f060',1,'ABLMost']]], + ['m_5flsm_5ffluxes_3961',['m_lsm_fluxes',['../classRadiation.html#a628ab4164c223bc55241535374a780cb',1,'Radiation']]], + ['m_5flsm_5fgeom_3962',['m_lsm_geom',['../classMM5.html#a5bb965e19ba475c78c8c9c8528fbf871',1,'MM5::m_lsm_geom()'],['../classNullSurf.html#ac722d317f14ff1793ce7a38362987513',1,'NullSurf::m_lsm_geom()'],['../classSLM.html#ac41680d479e44b54678787b662c55fef',1,'SLM::m_lsm_geom()']]], + ['m_5flsm_5fgeom_5flev_3963',['m_lsm_geom_lev',['../classLandSurface.html#a06a0bb4f12e604dbbd844bd4d2b0903f',1,'LandSurface']]], + ['m_5flsm_5fmodel_3964',['m_lsm_model',['../classLandSurface.html#a7415e46b046f76ef34902fa6ef1ef628',1,'LandSurface']]], + ['m_5flsm_5fsize_3965',['m_lsm_size',['../classNullSurf.html#a00480a80b00d313460c898669225b2ef',1,'NullSurf::m_lsm_size()'],['../classSLM.html#a4b4498e80099eadbb5405ec7095c07a8',1,'SLM::m_lsm_size()'],['../classMM5.html#a338909d8b32e73bee5188eb5f4e0e15d',1,'MM5::m_lsm_size()']]], + ['m_5flsm_5fzenith_3966',['m_lsm_zenith',['../classRadiation.html#a9ee4891cfb314df8458a47759de345d5',1,'Radiation']]], + ['m_5flwave_5flev_3967',['m_Lwave_lev',['../classABLMost.html#ab12af4a41dbc189d69850a81447434f7',1,'ABLMost']]], + ['m_5fma_3968',['m_ma',['../classABLMost.html#a466bfcda8ae4337d9c8781ab28e3f6fe',1,'ABLMost']]], + ['m_5fmax_5fstep_3969',['m_max_step',['../classMultiBlockContainer.html#a1f1ba45d36c26640b1d2817ae275a505',1,'MultiBlockContainer']]], + ['m_5fmaxlev_3970',['m_maxlev',['../classMOSTAverage.html#abc66735142b394193e3b6934ea817015',1,'MOSTAverage']]], + ['m_5fmoist_5fmodel_3971',['m_moist_model',['../classEulerianMicrophysics.html#a3d8916fc5900c54728d7549c68b21048',1,'EulerianMicrophysics']]], + ['m_5fmost_3972',['m_most',['../classERF.html#a051364b2373d8d86151c0b4a958035bd',1,'ERF']]], + ['m_5fnavg_3973',['m_navg',['../classMOSTAverage.html#a0554ee593b5deca61ef0d26ebd26f6d6',1,'MOSTAverage']]], + ['m_5fncell_5fline_3974',['m_ncell_line',['../classPlaneAverage.html#a049c64513c0ed306d7e68ef95df87033',1,'PlaneAverage']]], + ['m_5fncell_5fplane_3975',['m_ncell_plane',['../classPlaneAverage.html#a98ad1b7801e75ac43ddd3d06b0c5d7da',1,'PlaneAverage::m_ncell_plane()'],['../classMOSTAverage.html#a89b9ec10eb8dee9a8be7c9597a3f5008',1,'MOSTAverage::m_ncell_plane()']]], + ['m_5fncell_5fregion_3976',['m_ncell_region',['../classMOSTAverage.html#ab227f9a8e9224820c00fa8b223712b3e',1,'MOSTAverage']]], + ['m_5fncomp_3977',['m_ncomp',['../classERFFillPatcher.html#a61c68ee600be65606db582402599c1d4',1,'ERFFillPatcher::m_ncomp()'],['../classPlaneAverage.html#af07d85c4bd48f4bedc0b180001c728dc',1,'PlaneAverage::m_ncomp()']]], + ['m_5fng_3978',['m_ng',['../classPlaneAverage.html#a4a8c3eb911548a254ef75c24659b1317',1,'PlaneAverage']]], + ['m_5fnghost_3979',['m_nghost',['../classERFFillPatcher.html#afdb02cfc6d41b23967ff0a6f0e22b849',1,'ERFFillPatcher']]], + ['m_5fnghost_5fsubset_3980',['m_nghost_subset',['../classERFFillPatcher.html#a83a91e2dc7bd7c39a27327024814061c',1,'ERFFillPatcher']]], + ['m_5fnominal_5fpower_3981',['m_nominal_power',['../classNullWindFarm.html#aac5f552b2717ab7f177541c1bf09828a',1,'NullWindFarm']]], + ['m_5fnorm_5fvec_3982',['m_norm_vec',['../classMOSTAverage.html#a90d1df8bd48dd2bf45776a01ba1a89f7',1,'MOSTAverage']]], + ['m_5fnpetals_3983',['m_npetals',['../classFlowerIF.html#a13021976563f28b30e35c378d19a5d75',1,'FlowerIF']]], + ['m_5fnvar_3984',['m_nvar',['../classMOSTAverage.html#a94ece9d178d0e85296cce07bab556bc7',1,'MOSTAverage']]], + ['m_5fnz_5flsm_3985',['m_nz_lsm',['../classMM5.html#a9e2b3186622686e5aae850eb1dc93d28',1,'MM5::m_nz_lsm()'],['../classSLM.html#ac5eb0f0fb3b7c78777a95bad4b5370ee',1,'SLM::m_nz_lsm()']]], + ['m_5fout_5frad_3986',['m_out_rad',['../classReadBndryPlanes.html#acb820b3ebc4c07d210831e6081c47aa9',1,'ReadBndryPlanes::m_out_rad()'],['../classWriteBndryPlanes.html#a2ce490f5166966b52112f126c9dc4dd8',1,'WriteBndryPlanes::m_out_rad()']]], + ['m_5fowns_5fdata_3987',['m_owns_data',['../structTimeInterpolatedData.html#a6eeb9167e2d8051c16fdbb1e7fee54ed',1,'TimeInterpolatedData']]], + ['m_5fphi_3988',['m_phi',['../structWENO__Z5.html#a962862416f273b267eb55802eff59edf',1,'WENO_Z5::m_phi()'],['../structWENO__MZQ3.html#a106585bb6e78f7027658c9c56f3ae892',1,'WENO_MZQ3::m_phi()'],['../structCENTERED4.html#a2a0e8c62c2eb7e34a73c94f212a21cb3',1,'CENTERED4::m_phi()'],['../structWENO__Z3.html#a8269a48070f989c0183112ccd8e57489',1,'WENO_Z3::m_phi()'],['../structWENO5.html#a28727bda47dc47677cf20c4d4bbda9a8',1,'WENO5::m_phi()'],['../structWENO3.html#a13120486db8a71a2059a9c7c1928b416',1,'WENO3::m_phi()'],['../structUPWINDALL.html#a36acc81d9046b2b80cf3755aa46bc10c',1,'UPWINDALL::m_phi()'],['../structCENTERED6.html#a732a4a686c30a3233c939f453b74f0b9',1,'CENTERED6::m_phi()'],['../structUPWIND5.html#a26ff7f987df2f61ab60c121c02dd4295',1,'UPWIND5::m_phi()'],['../structUPWIND3.html#a4f184417f94f60775a46357fbafe1cca',1,'UPWIND3::m_phi()'],['../structCENTERED2.html#ac162099524c29536f1d08dcbb7c6c67a',1,'CENTERED2::m_phi()']]], + ['m_5fplane_5faverage_3989',['m_plane_average',['../classMOSTAverage.html#a81ad3bc2787e30025f8bee91bc5c9dc2',1,'MOSTAverage']]], + ['m_5fplot_5fint_5f1_3990',['m_plot_int_1',['../classERF.html#a57cfb4bfead8525174646964992c7e69',1,'ERF']]], + ['m_5fplot_5fint_5f2_3991',['m_plot_int_2',['../classERF.html#ad3311c9ceacd17f34bdb5e03cefa33b3',1,'ERF']]], + ['m_5fplot_5fper_5f1_3992',['m_plot_per_1',['../classERF.html#a3167adc9518cce649a90ab82e9f9c85d',1,'ERF']]], + ['m_5fplot_5fper_5f2_3993',['m_plot_per_2',['../classERF.html#aff879a9c686293a10a3a03027b765c51',1,'ERF']]], + ['m_5fpolicy_3994',['m_policy',['../classMOSTAverage.html#a0e87c91bf31d0e60a31b906081d24eea',1,'MOSTAverage']]], + ['m_5fpower_3995',['m_power',['../classNullWindFarm.html#a61554384fc601d7ae2fb758a8bc7f4f4',1,'NullWindFarm']]], + ['m_5fpp_5fprefix_3996',['m_pp_prefix',['../classMOSTAverage.html#a8e48f835a742b02f039aeb6bc520aef8',1,'MOSTAverage']]], + ['m_5fprecision_3997',['m_precision',['../classPlaneAverage.html#a1f08f5f76700c51c42243410ffce6e66',1,'PlaneAverage']]], + ['m_5fqmoist_5fsize_3998',['m_qmoist_size',['../classNullMoist.html#a645f66b91b08d84aa7451a9da0c11a72',1,'NullMoist::m_qmoist_size()'],['../classKessler.html#ae94091e97ccba54c040030c98e52aa7c',1,'Kessler::m_qmoist_size()'],['../classSAM.html#a4bf36ad050daafdcfea1aa83ad75f9cf',1,'SAM::m_qmoist_size()']]], + ['m_5fqstate_5fsize_3999',['m_qstate_size',['../classKessler.html#ad5167b56417db2cd78415b4654d6f7ca',1,'Kessler::m_qstate_size()'],['../classNullMoist.html#a3cb016aa9c0f1ee7534ad678723d1c59',1,'NullMoist::m_qstate_size()'],['../classSAM.html#a81c775ecb78f3f228a98a9c39d1d098d',1,'SAM::m_qstate_size()']]], + ['m_5fr_4000',['m_r',['../classFlowerIF.html#a09721c1438c00c21d1babb121dc3d447',1,'FlowerIF']]], + ['m_5fr2d_4001',['m_r2d',['../classERF.html#addf62bfc534515447b94e928ac0b7135',1,'ERF']]], + ['m_5fradius_4002',['m_radius',['../classMOSTAverage.html#a2c167351f6655ef3276f8e5b39439e91',1,'MOSTAverage']]], + ['m_5fratio_4003',['m_ratio',['../classERFFillPatcher.html#ab5ab5fa9bd525d2673c433633e0b3fba',1,'ERFFillPatcher']]], + ['m_5frdocp_4004',['m_rdOcp',['../classReadBndryPlanes.html#a7e0bbe82df8b302172937d7dbb981a2c',1,'ReadBndryPlanes::m_rdOcp()'],['../classSAM.html#a3b461d5620f6b9a08a1e62b60a463af7',1,'SAM::m_rdOcp()']]], + ['m_5frelax_5fmask_4005',['m_relax_mask',['../classERFFillPatcher.html#abad97ea0363653435fd9f922e10a53b2',1,'ERFFillPatcher']]], + ['m_5frot_5ffields_4006',['m_rot_fields',['../classMOSTAverage.html#a733f1b5c94de8ee530f4f257510cb277',1,'MOSTAverage']]], + ['m_5frotate_4007',['m_rotate',['../classABLMost.html#ab107efa0b6bdf80ee44d232919f6a7ad',1,'ABLMost::m_rotate()'],['../classMOSTAverage.html#a7d43a66f7518f75e694e0582dd40ec44',1,'MOSTAverage::m_rotate()']]], + ['m_5frotor_5frad_4008',['m_rotor_rad',['../classNullWindFarm.html#a06d46ff7212efd7893e94b99fa981b9d',1,'NullWindFarm']]], + ['m_5fset_5fmask_4009',['m_set_mask',['../classERFFillPatcher.html#a9d188e7b7e85221b257799a5a9c5098e',1,'ERFFillPatcher']]], + ['m_5fsign_4010',['m_sign',['../classFlowerIF.html#a1841ecb4de32a4763c2864784f0c22c4',1,'FlowerIF']]], + ['m_5fsst_5flev_4011',['m_sst_lev',['../classABLMost.html#ad8f1957bba407e17edb0a84ace515cde',1,'ABLMost']]], + ['m_5fstart_5fbdy_5ftime_4012',['m_start_bdy_time',['../classABLMost.html#a4fb97b28e44e9ff6930f18083923343a',1,'ABLMost']]], + ['m_5ft_5favg_4013',['m_t_avg',['../classMOSTAverage.html#a05905a4754c7eb39b766b96889b1bd47',1,'MOSTAverage']]], + ['m_5ft_5finit_4014',['m_t_init',['../classMOSTAverage.html#a3fe20fc4a4eb0b283f1d658b6237004c',1,'MOSTAverage']]], + ['m_5fterr_4015',['m_terr',['../classTerrainIF.html#a3e1f2814d20da7b5dd6d1d620b04784c',1,'TerrainIF']]], + ['m_5fterrain_5ftype_4016',['m_terrain_type',['../classERFPhysBCFunct__w.html#a96add99b86d3a03a872af7af85ad8e96',1,'ERFPhysBCFunct_w']]], + ['m_5ftheta_5fdir_4017',['m_theta_dir',['../classMM5.html#ab8187a0b9206d9c1d6632d494a149d1a',1,'MM5::m_theta_dir()'],['../classSLM.html#aec067697af550a8122138e57c4e0666d',1,'SLM::m_theta_dir()']]], + ['m_5fthrust_5fcoeff_4018',['m_thrust_coeff',['../classNullWindFarm.html#a7fe11fbaf6a246c60156e40aec3835f7',1,'NullWindFarm']]], + ['m_5fthrust_5fcoeff_5fstanding_4019',['m_thrust_coeff_standing',['../classNullWindFarm.html#a5a95464f19af9063228d23981f3a75cd',1,'NullWindFarm']]], + ['m_5ftime_4020',['m_time',['../structTimeInterpolatedData.html#a9b0102facc1d00011f48f95132955e27',1,'TimeInterpolatedData']]], + ['m_5ftime_5ffile_4021',['m_time_file',['../classReadBndryPlanes.html#a8027f415fce9acdc5ad53745016f67bf',1,'ReadBndryPlanes::m_time_file()'],['../classWriteBndryPlanes.html#a91c8abe5b1a15f5fe630db40230f08c1',1,'WriteBndryPlanes::m_time_file()']]], + ['m_5ftime_5fwindow_4022',['m_time_window',['../classMOSTAverage.html#ac95147c0d7961323ca8b079f63cd4be9',1,'MOSTAverage']]], + ['m_5ftinterp_4023',['m_tinterp',['../classReadBndryPlanes.html#a3f5e28f23e03b5c32f23ac953987728a',1,'ReadBndryPlanes']]], + ['m_5ftn_4024',['m_tn',['../classReadBndryPlanes.html#ade779c58aa5ea62cf1e03cbfaf98bb61',1,'ReadBndryPlanes']]], + ['m_5ftnp1_4025',['m_tnp1',['../classReadBndryPlanes.html#a4343c3c0761df0f96c58f8d268a43017',1,'ReadBndryPlanes']]], + ['m_5ftnp2_4026',['m_tnp2',['../classReadBndryPlanes.html#aca1dcdc531215bfd5a12fb286d064c8c',1,'ReadBndryPlanes']]], + ['m_5fu_5fbc_5fdata_4027',['m_u_bc_data',['../classERFPhysBCFunct__u.html#a603a1822cba514966ad201cfc676cdf6',1,'ERFPhysBCFunct_u']]], + ['m_5fuse_5freal_5fbcs_4028',['m_use_real_bcs',['../classERFPhysBCFunct__u.html#a4a1ce4ec8f730cb61568aee6eceefe1f',1,'ERFPhysBCFunct_u::m_use_real_bcs()'],['../classERFPhysBCFunct__cons.html#a0e54453355d6a7c96044113c8827a008',1,'ERFPhysBCFunct_cons::m_use_real_bcs()'],['../classERFPhysBCFunct__w__no__terrain.html#a6ec9592d34b537392cbcb34ffb63f99a',1,'ERFPhysBCFunct_w_no_terrain::m_use_real_bcs()'],['../classERFPhysBCFunct__w.html#a6e6cdc32da147f7bc00d8c408b5df9a1',1,'ERFPhysBCFunct_w::m_use_real_bcs()'],['../classERFPhysBCFunct__v.html#aa17ac5983f98d1b13f952fa7f2c39b54',1,'ERFPhysBCFunct_v::m_use_real_bcs()']]], + ['m_5fv_5fbc_5fdata_4029',['m_v_bc_data',['../classERFPhysBCFunct__v.html#a1abc171e8cfcd542f4d9e312e0f586c1',1,'ERFPhysBCFunct_v']]], + ['m_5fvar_5fnames_4030',['m_var_names',['../classReadBndryPlanes.html#aa5f533fb198d42785bfebe5cd8ae7131',1,'ReadBndryPlanes::m_var_names()'],['../classWriteBndryPlanes.html#a85703bf41a6ba0382f13a90f64ba417b',1,'WriteBndryPlanes::m_var_names()']]], + ['m_5fw2d_4031',['m_w2d',['../classERF.html#aa53035f34ba133b86172e180abda4209',1,'ERF']]], + ['m_5fw_5fbc_5fdata_4032',['m_w_bc_data',['../classERFPhysBCFunct__w.html#a4c66456080eb954ef8c80fc3dcfc4c3a',1,'ERFPhysBCFunct_w::m_w_bc_data()'],['../classERFPhysBCFunct__w__no__terrain.html#a061d0fb277d977056e7485d4ab4abc3c',1,'ERFPhysBCFunct_w_no_terrain::m_w_bc_data()']]], + ['m_5fwind_5fspeed_4033',['m_wind_speed',['../classNullWindFarm.html#a9beae3f8f39bb7bde432530da926d6ef',1,'NullWindFarm']]], + ['m_5fwindfarm_5fmodel_4034',['m_windfarm_model',['../classWindFarm.html#af3953694e6a246585c20f50436a65123',1,'WindFarm']]], + ['m_5fx_5fpos_4035',['m_x_pos',['../classMOSTAverage.html#a58c320eb48f9b8a1b0983d2770e9f3ea',1,'MOSTAverage']]], + ['m_5fxlo_4036',['m_xlo',['../classPlaneAverage.html#a42c7dfa900a0b69ba1d294455ca8ba51',1,'PlaneAverage']]], + ['m_5fxloc_4037',['m_xloc',['../classNullWindFarm.html#ac8ff132b0d2d52032ec19344ec6a74c6',1,'NullWindFarm']]], + ['m_5fy_5fpos_4038',['m_y_pos',['../classMOSTAverage.html#a1beb0dad926be2f2d9cb1de69a1a3374',1,'MOSTAverage']]], + ['m_5fyloc_4039',['m_yloc',['../classNullWindFarm.html#a86792dc0d8fb3dfc9b9646c38a2926da',1,'NullWindFarm']]], + ['m_5fz_5fphys_5fnd_4040',['m_z_phys_nd',['../classERFPhysBCFunct__u.html#aefe9bc994735627162154bc289a0de3c',1,'ERFPhysBCFunct_u::m_z_phys_nd()'],['../classERFPhysBCFunct__v.html#afffa0e227916c179928f9a3eb7a07c3c',1,'ERFPhysBCFunct_v::m_z_phys_nd()'],['../classERFPhysBCFunct__w.html#aa37508122179536336aa8dba19d34c1b',1,'ERFPhysBCFunct_w::m_z_phys_nd()'],['../classMOSTAverage.html#a3a49018467b69573ef84df9cdfd86da4',1,'MOSTAverage::m_z_phys_nd()'],['../classKessler.html#aaead0b1bbb0693e5ef480fd15bcbe559',1,'Kessler::m_z_phys_nd()'],['../classSAM.html#a51af1452ad89711f8ddaa554cdc49ee6',1,'SAM::m_z_phys_nd()'],['../classERFPhysBCFunct__cons.html#ad33ab704eb9b5d62a4db9317f40255dd',1,'ERFPhysBCFunct_cons::m_z_phys_nd()']]], + ['m_5fz_5fpos_4041',['m_z_pos',['../classMOSTAverage.html#a81ff1b7e8d026f0cd74147cbcc016d15',1,'MOSTAverage']]], + ['m_5fzref_4042',['m_zref',['../classMOSTAverage.html#af2f1477f6bc5e4b2f2ddee27d17dab9f',1,'MOSTAverage']]], + ['ma_5flist_4043',['ma_list',['../classMamConstituents.html#ab9703f219ce7a084e170017035dc269b',1,'MamConstituents']]], + ['mam_5faer_4044',['mam_aer',['../classAerRadProps.html#afb607ae14bfc3e46dd66c9e04627a57d',1,'AerRadProps']]], + ['mam_5fconsti_4045',['mam_consti',['../classAerRadProps.html#a66f750181cccc82c03268b0a4a245ecc',1,'AerRadProps::mam_consti()'],['../classMam4__aer.html#a2dcd6d3b6a38a2f0e8bc389c80fb4ae9',1,'Mam4_aer::mam_consti()']]], + ['mapfac_5fm_4046',['mapfac_m',['../classERF.html#a23aacdb72e9d2dfed8e2ebd2c2526497',1,'ERF']]], + ['mapfac_5fu_4047',['mapfac_u',['../classERF.html#a1e8afee1508b720dab56f5d044deb301',1,'ERF']]], + ['mapfac_5fv_4048',['mapfac_v',['../classERF.html#ae49b5055f9a7117fa15918a5daa775b7',1,'ERF']]], + ['mass_5fname_4049',['mass_name',['../structMamConstituents_1_1aerosol__t.html#a300418f68393143be3f4852641ac465b',1,'MamConstituents::aerosol_t::mass_name()'],['../structMamConstituents_1_1gas__t.html#ad63e38b410aa69ed3f76d6898b35b53a',1,'MamConstituents::gas_t::mass_name()']]], + ['max_5fiter_4050',['MAX_ITER',['../namespaceHSEutils.html#a10de540cb8ad96aea8cd080f4d1e72fa',1,'HSEutils']]], + ['max_5fk_5fat_5flevel_4051',['max_k_at_level',['../classERF.html#a9108040a44e5e64853ac7d6529538315',1,'ERF']]], + ['max_5fstep_4052',['max_step',['../classERF.html#a0634154e8e58379c495c3e7fe7c5e4d6',1,'ERF']]], + ['mdata_4053',['mdata',['../structadiabatic__charnock.html#a5c11064c35d6eefd22558180155d6ede',1,'adiabatic_charnock::mdata()'],['../structsurface__temp__wave__coupled.html#a44d84ddefc6dc5572f1b1e614996b288',1,'surface_temp_wave_coupled::mdata()'],['../structsurface__temp__mod__charnock.html#a98f673e5030f4509a8874466337f50c4',1,'surface_temp_mod_charnock::mdata()'],['../structsurface__temp__charnock.html#a073ad08e0d652e792b459878e10dc41b',1,'surface_temp_charnock::mdata()'],['../structsurface__temp.html#afec351f7cde260c6e96a27297cb4010f',1,'surface_temp::mdata()'],['../structsurface__flux__wave__coupled.html#a7c81c888df97ef0ff4dc54be9c4e163a',1,'surface_flux_wave_coupled::mdata()'],['../structsurface__flux__mod__charnock.html#a6fa441221eb1f30d65437ce890adfd46',1,'surface_flux_mod_charnock::mdata()'],['../structsurface__flux__charnock.html#a60030c5104987d6287efd5d9b996014c',1,'surface_flux_charnock::mdata()'],['../structsurface__flux.html#a960909fe387424192cf802afccdc7bed',1,'surface_flux::mdata()'],['../structadiabatic__wave__coupled.html#a812ea5ea7d6223e5512c372b3260d1bc',1,'adiabatic_wave_coupled::mdata()'],['../structadiabatic__mod__charnock.html#ad33aa4fea2aa05dbb4057dcef251e0da',1,'adiabatic_mod_charnock::mdata()'],['../structadiabatic.html#afdc69c66b9c49f67d4f2409bc1f3ce29',1,'adiabatic::mdata()']]], + ['mic_5ffab_5fvars_4054',['mic_fab_vars',['../classKessler.html#aa11214a3e579cc9d6309359b1c05e5ab',1,'Kessler::mic_fab_vars()'],['../classSAM.html#a36ee9e1e1a94d22304f46e064f16e11e',1,'SAM::mic_fab_vars()']]], + ['micro_4055',['micro',['../classERF.html#a4b7277d54649219f31fe286eee9d415a',1,'ERF']]], + ['micvarmap_4056',['MicVarMap',['../classKessler.html#a18164f048f846cd122de43803b49c1cb',1,'Kessler::MicVarMap()'],['../classSAM.html#a6008487ad12ada77acdcb3ee41371c98',1,'SAM::MicVarMap()']]], + ['min_5fk_5fat_5flevel_4057',['min_k_at_level',['../classERF.html#a46a3587ddcfacba35dcf52189cc1be86',1,'ERF']]], + ['modal_5foptics_5ffile_4058',['modal_optics_file',['../classMam4__aer.html#a396c0ab69e47a8cbc27c346aa2fb489d',1,'Mam4_aer']]], + ['mode_5ftype_5fnames_4059',['mode_type_names',['../classMamConstituents.html#a5c94b10764d82b018270ebf012cd657b',1,'MamConstituents']]], + ['modes_4060',['modes',['../classMamConstituents.html#a1692c29032818c08c3b1ac985a35d521',1,'MamConstituents']]], + ['moistscal_5fhoriz_5fadv_5ftype_4061',['moistscal_horiz_adv_type',['../structAdvChoice.html#a22f84c60e56d4b3bde6b7f9548c87af3',1,'AdvChoice']]], + ['moistscal_5fhoriz_5fupw_5ffrac_4062',['moistscal_horiz_upw_frac',['../structAdvChoice.html#a69b32bcee6cd30f3f88280d0ec49cd35',1,'AdvChoice']]], + ['moistscal_5fvert_5fadv_5ftype_4063',['moistscal_vert_adv_type',['../structAdvChoice.html#a2f888dfcb79cdb766ee04f21aada83ec',1,'AdvChoice']]], + ['moistscal_5fvert_5fupw_5ffrac_4064',['moistscal_vert_upw_frac',['../structAdvChoice.html#a334139583accdc5718a939b20b308bb9',1,'AdvChoice']]], + ['moisture_5ftype_4065',['moisture_type',['../structSolverChoice.html#aacbfbe6f4a3040db3efdc6dbf8fa291b',1,'SolverChoice']]], + ['molec_5fdiff_5ftype_4066',['molec_diff_type',['../structDiffChoice.html#aed5c75ec58e358a735d97869147b2baf',1,'DiffChoice']]], + ['mri_5fintegrator_5fmem_4067',['mri_integrator_mem',['../classERF.html#a09d0fb2bd609c898a665d9530a744585',1,'ERF']]], + ['mu_4068',['mu',['../structPhysProp_1_1physprop__t.html#aa23d4f11099641ffb9c395c327156980',1,'PhysProp::physprop_t']]], + ['muelq_4069',['muelq',['../ERF__Constants_8H.html#a0e5683feac33352111ce4445dbedbf45',1,'ERF_Constants.H']]], + ['mvelpp_4070',['mvelpp',['../classRadiation.html#ae4dacdbc7383b92511c2385bd59ed49a',1,'Radiation']]], + ['mwdair_4071',['mwdair',['../ERF__Constants_8H.html#a650da208ce885c0f6c9c742d26dc4b0e',1,'ERF_Constants.H']]], + ['mwwv_4072',['mwwv',['../ERF__Constants_8H.html#a75abd92a75952e8eefd06628c8c3487d',1,'ERF_Constants.H']]] ]; diff --git a/search/variables_d.js b/search/variables_d.js index 61104498a9..bd9b90c32d 100644 --- a/search/variables_d.js +++ b/search/variables_d.js @@ -1,53 +1,53 @@ var searchData= [ - ['n_5fdiag_4065',['n_diag',['../classMam4__aer.html#afe4495578dc4adefe7b2ab2780aee8ee',1,'Mam4_aer']]], - ['n_5fdiag_4066',['N_DIAG',['../classMamConstituents.html#a05b4d113513de18b2e7bbdc4e9cb4dbf',1,'MamConstituents']]], - ['n_5fg_5fd_4067',['n_g_d',['../classCloudRadProps.html#a40e14de999dd323f0cc8db50f46031e8',1,'CloudRadProps']]], - ['n_5frad_5fcnst_4068',['n_rad_cnst',['../classMamConstituents.html#a75a27a90ef149368fc0a7676daeb4a84',1,'MamConstituents']]], - ['naer_4069',['naer',['../classRadiation.html#a59a37de7bc777e2ecac052a59d7a0aec',1,'Radiation']]], - ['name_4070',['name',['../structNDArray.html#a0d3be2b45f3fb008d12ec17dfd6abf09',1,'NDArray::name()'],['../classCloudRadProps.html#a7c91a5b46f8d85666e0ca0d1de8d23aa',1,'CloudRadProps::name()']]], - ['names_4071',['names',['../structMamConstituents_1_1modes__t.html#aa0ef7c08a80971086ecc620e6d7a6d31',1,'MamConstituents::modes_t']]], - ['nbndlw_4072',['nbndlw',['../classRadConstants.html#a960db6e337b49d1d4a714615a5fa4b7e',1,'RadConstants']]], - ['nbndsw_4073',['nbndsw',['../classRadConstants.html#a2d23948379a116a266cfd943b3275be4',1,'RadConstants']]], - ['nc_5fbdy_5ffile_4074',['nc_bdy_file',['../classERF.html#a7e9040f32464f1a6dee6e0384393451d',1,'ERF']]], - ['nc_5finit_5ffile_4075',['nc_init_file',['../classERF.html#a7ef14f6028b577eba70aef46b508be19',1,'ERF']]], - ['ncid_4076',['ncid',['../structncutils_1_1NCDim.html#a3272d1768518ba020b9bcd0d3699d544',1,'ncutils::NCDim::ncid()'],['../structncutils_1_1NCVar.html#a233d94aa3ccbef1cc12565340bcc7218',1,'ncutils::NCVar::ncid()'],['../classncutils_1_1NCGroup.html#a860fe8aaf1cd7859541c67594fb8eabd',1,'ncutils::NCGroup::ncid()']]], - ['ncoef_4077',['ncoef',['../classMam4__aer.html#afcd94bccbfcc44e6a5d8262abc42a9ca',1,'Mam4_aer::ncoef()'],['../structPhysProp_1_1physprop__t.html#acc1135d01fd7ca5a6f0ba980e23e5a55',1,'PhysProp::physprop_t::ncoef()']]], - ['ncol_4078',['ncol',['../classRadiation.html#a8f47b85f948822c0e450beddb92373f4',1,'Radiation::ncol()'],['../classMam4__aer.html#aaf29baf8a0903c3401e8577e811f5d18',1,'Mam4_aer::ncol()'],['../classAerRadProps.html#a551936497e3a360746d6bfd53513d508',1,'AerRadProps::ncol()']]], - ['ncomp_5fcons_4079',['ncomp_cons',['../classMRISplitIntegrator.html#a69e19ac4b8c02d71269e741e71b74c23',1,'MRISplitIntegrator']]], - ['ncorr_4080',['ncorr',['../structSolverChoice.html#a3b9fef36e4613507eef87379c2c9bf03',1,'SolverChoice']]], - ['net_5fflux_4081',['net_flux',['../classRadiation.html#a12afbdd30cf76b0bc083324cf22cbb73',1,'Radiation']]], - ['ng_5fdens_5fhse_4082',['ng_dens_hse',['../classERF.html#addf0fb2aae0efaa649c69685a4dcca83',1,'ERF']]], - ['ng_5fpres_5fhse_4083',['ng_pres_hse',['../classERF.html#a87dc6c0720462bfd088c909289cdca0b',1,'ERF']]], - ['ngas_4084',['ngas',['../classRadiation.html#aefc2fcddcd44a0c6d9ae06ec60e9ce37',1,'Radiation::ngas()'],['../classRrtmgp.html#a4b8b61c7a7fadac5b1cdd968144a5c01',1,'Rrtmgp::ngas()'],['../classOptics.html#abb94e5d9dc89e539796740c6f0b9a229',1,'Optics::ngas()'],['../structMamConstituents_1_1gaslist__t.html#a5fc9f5eeb290c5185e68bd2bf6f46618',1,'MamConstituents::gaslist_t::ngas()'],['../classAerRadProps.html#ae41f31dfce03d5b3952114e12436bec9',1,'AerRadProps::ngas()']]], - ['nlambda_4085',['nlambda',['../classCloudRadProps.html#a3ef54947677ddd898a7b6ded241db03c',1,'CloudRadProps']]], - ['nlev_4086',['nlev',['../classKessler.html#a8f9e3afdab979a19d8dfb0c4bdee471d',1,'Kessler::nlev()'],['../classSAM.html#a7da420869410dc959c2442962524259f',1,'SAM::nlev()'],['../classAerRadProps.html#a3854326c4b23eedef970611ab3a639dd',1,'AerRadProps::nlev()'],['../classMam4__aer.html#add9c70abae797f609d24a8ed47848030',1,'Mam4_aer::nlev()'],['../classRadiation.html#a65f94329afd4aad11489c87e5174c462',1,'Radiation::nlev()']]], - ['nlwbands_4087',['nlwbands',['../classRadConstants.html#a55471805ae99ef61cb9b0935bd1803f2',1,'RadConstants::nlwbands()'],['../classRadiation.html#ab4451562115b24b40e0f04cae677c6e3',1,'Radiation::nlwbands()'],['../classCloudRadProps.html#ab7f6932c5559602939b8a32fa42ca1ca',1,'CloudRadProps::nlwbands()'],['../classMam4__aer.html#abc58cbc8ee25e23731610007e0f62fe4',1,'Mam4_aer::nlwbands()'],['../classAerRadProps.html#af2dc3b884340390993212e03e99112af',1,'AerRadProps::nlwbands()']]], - ['nlwgpts_4088',['nlwgpts',['../classRadiation.html#a89625b089dbe4acbc85a7241fcbd3839',1,'Radiation']]], - ['nmodes_4089',['nmodes',['../classAerRadProps.html#a3bd718612795e1c875ad70da941cc89a',1,'AerRadProps::nmodes()'],['../classMam4__aer.html#adbd78e8ffa0bdd728b97ca66d08fb717',1,'Mam4_aer::nmodes()'],['../structMamConstituents_1_1modes__t.html#a9a549b30ee2d05c0bfe777b4625e7083',1,'MamConstituents::modes_t::nmodes()'],['../structMamConstituents_1_1modelist__t.html#aea57993996ab18dffe7ab00bc5e6c15e',1,'MamConstituents::modelist_t::nmodes()']]], - ['nmu_4090',['nmu',['../classCloudRadProps.html#ae7091519e3c4dfa0929e088c6234be73',1,'CloudRadProps']]], - ['no_5fsubstep_4091',['no_substep',['../classMRISplitIntegrator.html#abb86ebaf6ca5a42e59670d2b15549658',1,'MRISplitIntegrator']]], - ['no_5fsubstep_5ffun_4092',['no_substep_fun',['../TI__no__substep__fun_8H.html#a4cad8180e91d2eabd5638651fc24bcc7',1,'TI_no_substep_fun.H']]], - ['no_5fsubstepping_4093',['no_substepping',['../structSolverChoice.html#a35e0c82996e345337368bc720bbd6070',1,'SolverChoice::no_substepping()'],['../classMRISplitIntegrator.html#afa0623b638cd29d3f307d34ef5a98d0f',1,'MRISplitIntegrator::no_substepping()']]], - ['nominal_5fpower_4094',['nominal_power',['../classEWP.html#a00497b6ecc9493be40be6ce4f5ae02c5',1,'EWP::nominal_power()'],['../classWindFarm.html#aa542d50137f25dcb568fafc483a83178',1,'WindFarm::nominal_power()'],['../classSimpleAD.html#af9dae2d9db9de431b450e61c55a83ffe',1,'SimpleAD::nominal_power()'],['../classFitch.html#afeb1ae13c307eeb71af9dfa8d97a3f7e',1,'Fitch::nominal_power()']]], - ['npcf_4095',['npcf',['../classWaterVaporSat.html#abd48ae5df93e45c8d4bab8e1e985838b',1,'WaterVaporSat']]], - ['nradgas_4096',['nradgas',['../classRadConstants.html#acc3330716cd598dc36881b44c70687c5',1,'RadConstants']]], - ['nrh_4097',['nrh',['../classAerRadProps.html#aa21297bb80600126531f2d324f6d9c2f',1,'AerRadProps::nrh()'],['../classRadConstants.html#aaa19beec8cd86a9e09db7a2b34a7d883',1,'RadConstants::nrh()']]], - ['nspec_4098',['nspec',['../structMamConstituents_1_1mode__component__t.html#aa35e198644fe29379bc9d3830f2423c8',1,'MamConstituents::mode_component_t::nspec()'],['../classMam4__aer.html#a5167f5c7a13a42532cf945dcaa687c77',1,'Mam4_aer::nspec()']]], - ['nsubsteps_4099',['nsubsteps',['../classERF.html#aa3db2dd1b65310c66c4038650c22aaee',1,'ERF']]], - ['nswbands_4100',['nswbands',['../classAerRadProps.html#aded12109795a3f22556faecdd3fb3d03',1,'AerRadProps::nswbands()'],['../classCloudRadProps.html#aeee4ab1a6887ab34c966028c45079199',1,'CloudRadProps::nswbands()'],['../classMam4__aer.html#a72698fc4a4a0c54752ec0e76f161184f',1,'Mam4_aer::nswbands()'],['../classRadConstants.html#abf9d73367a1b46631bd2fae4516732c2',1,'RadConstants::nswbands()'],['../classRadiation.html#a2df876dcb21da075dc834af545a2c0ed',1,'Radiation::nswbands()']]], - ['nswgpts_4101',['nswgpts',['../classRadiation.html#a6569e23160036eb2186d6142e2387d9f',1,'Radiation']]], - ['null_5fbc_4102',['null_bc',['../ERF__FillPatch_8cpp.html#a85a7293fad1a59ed566bcea306373abc',1,'ERF_FillPatch.cpp']]], - ['null_5fbc_5ffor_5ffill_4103',['null_bc_for_fill',['../Plotfile_8cpp.html#aeb56b4bca6dfa0e3b81d3f983926e8a2',1,'Plotfile.cpp']]], - ['num_5faeroes_4104',['num_aeroes',['../classAerRadProps.html#af174fea4281252e1cf87c621ab532aeb',1,'AerRadProps']]], - ['num_5fboxes_5fat_5flevel_4105',['num_boxes_at_level',['../classERF.html#adcd9f23975ffa605247b41d391c2a2f0',1,'ERF']]], - ['num_5ffiles_5fat_5flevel_4106',['num_files_at_level',['../classERF.html#a610a988f46e0496e6dbd0471ae817f75',1,'ERF']]], - ['num_5fmode_5ftypes_4107',['num_mode_types',['../classMamConstituents.html#a484fb8cc2efd161663df96136f6397a8',1,'MamConstituents']]], - ['num_5fspec_5ftypes_4108',['num_spec_types',['../classMamConstituents.html#a17b5c0080c2027fd08a2f3fcd7818333',1,'MamConstituents']]], - ['num_5fto_5fmass_5faer_4109',['num_to_mass_aer',['../structPhysProp_1_1physprop__t.html#aacc68f3bfaf1bcb4d76c0e49aa3d81fb',1,'PhysProp::physprop_t']]], - ['numaerosols_4110',['numaerosols',['../structMamConstituents_1_1aerlist__t.html#afae9af8c61b9fee3afdd374fffaab123',1,'MamConstituents::aerlist_t']]], - ['numdiffcoeff_4111',['NumDiffCoeff',['../structSolverChoice.html#a6dba64151e2e2f958e7c0e55db477bf2',1,'SolverChoice']]], - ['nzerog_4112',['nzerog',['../ERF__Constants_8H.html#a1d5b108314147320a74eaccbfa0d09b0',1,'ERF_Constants.H']]], - ['nzeror_4113',['nzeror',['../ERF__Constants_8H.html#aaa2fd2941341ea7699a9acfb434b2ee1',1,'ERF_Constants.H']]], - ['nzeros_4114',['nzeros',['../ERF__Constants_8H.html#ae56996ced8497f129d813e2f9c94786e',1,'ERF_Constants.H']]] + ['n_5fdiag_4073',['n_diag',['../classMam4__aer.html#afe4495578dc4adefe7b2ab2780aee8ee',1,'Mam4_aer']]], + ['n_5fdiag_4074',['N_DIAG',['../classMamConstituents.html#a05b4d113513de18b2e7bbdc4e9cb4dbf',1,'MamConstituents']]], + ['n_5fg_5fd_4075',['n_g_d',['../classCloudRadProps.html#a40e14de999dd323f0cc8db50f46031e8',1,'CloudRadProps']]], + ['n_5frad_5fcnst_4076',['n_rad_cnst',['../classMamConstituents.html#a75a27a90ef149368fc0a7676daeb4a84',1,'MamConstituents']]], + ['naer_4077',['naer',['../classRadiation.html#a59a37de7bc777e2ecac052a59d7a0aec',1,'Radiation']]], + ['name_4078',['name',['../structNDArray.html#a0d3be2b45f3fb008d12ec17dfd6abf09',1,'NDArray::name()'],['../classCloudRadProps.html#a7c91a5b46f8d85666e0ca0d1de8d23aa',1,'CloudRadProps::name()']]], + ['names_4079',['names',['../structMamConstituents_1_1modes__t.html#aa0ef7c08a80971086ecc620e6d7a6d31',1,'MamConstituents::modes_t']]], + ['nbndlw_4080',['nbndlw',['../classRadConstants.html#a960db6e337b49d1d4a714615a5fa4b7e',1,'RadConstants']]], + ['nbndsw_4081',['nbndsw',['../classRadConstants.html#a2d23948379a116a266cfd943b3275be4',1,'RadConstants']]], + ['nc_5fbdy_5ffile_4082',['nc_bdy_file',['../classERF.html#a7e9040f32464f1a6dee6e0384393451d',1,'ERF']]], + ['nc_5finit_5ffile_4083',['nc_init_file',['../classERF.html#a7ef14f6028b577eba70aef46b508be19',1,'ERF']]], + ['ncid_4084',['ncid',['../structncutils_1_1NCDim.html#a3272d1768518ba020b9bcd0d3699d544',1,'ncutils::NCDim::ncid()'],['../structncutils_1_1NCVar.html#a233d94aa3ccbef1cc12565340bcc7218',1,'ncutils::NCVar::ncid()'],['../classncutils_1_1NCGroup.html#a860fe8aaf1cd7859541c67594fb8eabd',1,'ncutils::NCGroup::ncid()']]], + ['ncoef_4085',['ncoef',['../classMam4__aer.html#afcd94bccbfcc44e6a5d8262abc42a9ca',1,'Mam4_aer::ncoef()'],['../structPhysProp_1_1physprop__t.html#acc1135d01fd7ca5a6f0ba980e23e5a55',1,'PhysProp::physprop_t::ncoef()']]], + ['ncol_4086',['ncol',['../classRadiation.html#a8f47b85f948822c0e450beddb92373f4',1,'Radiation::ncol()'],['../classMam4__aer.html#aaf29baf8a0903c3401e8577e811f5d18',1,'Mam4_aer::ncol()'],['../classAerRadProps.html#a551936497e3a360746d6bfd53513d508',1,'AerRadProps::ncol()']]], + ['ncomp_5fcons_4087',['ncomp_cons',['../classMRISplitIntegrator.html#a69e19ac4b8c02d71269e741e71b74c23',1,'MRISplitIntegrator']]], + ['ncorr_4088',['ncorr',['../structSolverChoice.html#a3b9fef36e4613507eef87379c2c9bf03',1,'SolverChoice']]], + ['net_5fflux_4089',['net_flux',['../classRadiation.html#a12afbdd30cf76b0bc083324cf22cbb73',1,'Radiation']]], + ['ng_5fdens_5fhse_4090',['ng_dens_hse',['../classERF.html#addf0fb2aae0efaa649c69685a4dcca83',1,'ERF']]], + ['ng_5fpres_5fhse_4091',['ng_pres_hse',['../classERF.html#a87dc6c0720462bfd088c909289cdca0b',1,'ERF']]], + ['ngas_4092',['ngas',['../classRadiation.html#aefc2fcddcd44a0c6d9ae06ec60e9ce37',1,'Radiation::ngas()'],['../classRrtmgp.html#a4b8b61c7a7fadac5b1cdd968144a5c01',1,'Rrtmgp::ngas()'],['../classOptics.html#abb94e5d9dc89e539796740c6f0b9a229',1,'Optics::ngas()'],['../structMamConstituents_1_1gaslist__t.html#a5fc9f5eeb290c5185e68bd2bf6f46618',1,'MamConstituents::gaslist_t::ngas()'],['../classAerRadProps.html#ae41f31dfce03d5b3952114e12436bec9',1,'AerRadProps::ngas()']]], + ['nlambda_4093',['nlambda',['../classCloudRadProps.html#a3ef54947677ddd898a7b6ded241db03c',1,'CloudRadProps']]], + ['nlev_4094',['nlev',['../classKessler.html#a8f9e3afdab979a19d8dfb0c4bdee471d',1,'Kessler::nlev()'],['../classSAM.html#a7da420869410dc959c2442962524259f',1,'SAM::nlev()'],['../classAerRadProps.html#a3854326c4b23eedef970611ab3a639dd',1,'AerRadProps::nlev()'],['../classMam4__aer.html#add9c70abae797f609d24a8ed47848030',1,'Mam4_aer::nlev()'],['../classRadiation.html#a65f94329afd4aad11489c87e5174c462',1,'Radiation::nlev()']]], + ['nlwbands_4095',['nlwbands',['../classRadConstants.html#a55471805ae99ef61cb9b0935bd1803f2',1,'RadConstants::nlwbands()'],['../classRadiation.html#ab4451562115b24b40e0f04cae677c6e3',1,'Radiation::nlwbands()'],['../classCloudRadProps.html#ab7f6932c5559602939b8a32fa42ca1ca',1,'CloudRadProps::nlwbands()'],['../classMam4__aer.html#abc58cbc8ee25e23731610007e0f62fe4',1,'Mam4_aer::nlwbands()'],['../classAerRadProps.html#af2dc3b884340390993212e03e99112af',1,'AerRadProps::nlwbands()']]], + ['nlwgpts_4096',['nlwgpts',['../classRadiation.html#a89625b089dbe4acbc85a7241fcbd3839',1,'Radiation']]], + ['nmodes_4097',['nmodes',['../classAerRadProps.html#a3bd718612795e1c875ad70da941cc89a',1,'AerRadProps::nmodes()'],['../classMam4__aer.html#adbd78e8ffa0bdd728b97ca66d08fb717',1,'Mam4_aer::nmodes()'],['../structMamConstituents_1_1modes__t.html#a9a549b30ee2d05c0bfe777b4625e7083',1,'MamConstituents::modes_t::nmodes()'],['../structMamConstituents_1_1modelist__t.html#aea57993996ab18dffe7ab00bc5e6c15e',1,'MamConstituents::modelist_t::nmodes()']]], + ['nmu_4098',['nmu',['../classCloudRadProps.html#ae7091519e3c4dfa0929e088c6234be73',1,'CloudRadProps']]], + ['no_5fsubstep_4099',['no_substep',['../classMRISplitIntegrator.html#abb86ebaf6ca5a42e59670d2b15549658',1,'MRISplitIntegrator']]], + ['no_5fsubstep_5ffun_4100',['no_substep_fun',['../TI__no__substep__fun_8H.html#a4cad8180e91d2eabd5638651fc24bcc7',1,'TI_no_substep_fun.H']]], + ['no_5fsubstepping_4101',['no_substepping',['../structSolverChoice.html#a35e0c82996e345337368bc720bbd6070',1,'SolverChoice::no_substepping()'],['../classMRISplitIntegrator.html#afa0623b638cd29d3f307d34ef5a98d0f',1,'MRISplitIntegrator::no_substepping()']]], + ['nominal_5fpower_4102',['nominal_power',['../classEWP.html#a00497b6ecc9493be40be6ce4f5ae02c5',1,'EWP::nominal_power()'],['../classWindFarm.html#aa542d50137f25dcb568fafc483a83178',1,'WindFarm::nominal_power()'],['../classSimpleAD.html#af9dae2d9db9de431b450e61c55a83ffe',1,'SimpleAD::nominal_power()'],['../classFitch.html#afeb1ae13c307eeb71af9dfa8d97a3f7e',1,'Fitch::nominal_power()']]], + ['npcf_4103',['npcf',['../classWaterVaporSat.html#abd48ae5df93e45c8d4bab8e1e985838b',1,'WaterVaporSat']]], + ['nradgas_4104',['nradgas',['../classRadConstants.html#acc3330716cd598dc36881b44c70687c5',1,'RadConstants']]], + ['nrh_4105',['nrh',['../classAerRadProps.html#aa21297bb80600126531f2d324f6d9c2f',1,'AerRadProps::nrh()'],['../classRadConstants.html#aaa19beec8cd86a9e09db7a2b34a7d883',1,'RadConstants::nrh()']]], + ['nspec_4106',['nspec',['../structMamConstituents_1_1mode__component__t.html#aa35e198644fe29379bc9d3830f2423c8',1,'MamConstituents::mode_component_t::nspec()'],['../classMam4__aer.html#a5167f5c7a13a42532cf945dcaa687c77',1,'Mam4_aer::nspec()']]], + ['nsubsteps_4107',['nsubsteps',['../classERF.html#aa3db2dd1b65310c66c4038650c22aaee',1,'ERF']]], + ['nswbands_4108',['nswbands',['../classAerRadProps.html#aded12109795a3f22556faecdd3fb3d03',1,'AerRadProps::nswbands()'],['../classCloudRadProps.html#aeee4ab1a6887ab34c966028c45079199',1,'CloudRadProps::nswbands()'],['../classMam4__aer.html#a72698fc4a4a0c54752ec0e76f161184f',1,'Mam4_aer::nswbands()'],['../classRadConstants.html#abf9d73367a1b46631bd2fae4516732c2',1,'RadConstants::nswbands()'],['../classRadiation.html#a2df876dcb21da075dc834af545a2c0ed',1,'Radiation::nswbands()']]], + ['nswgpts_4109',['nswgpts',['../classRadiation.html#a6569e23160036eb2186d6142e2387d9f',1,'Radiation']]], + ['null_5fbc_4110',['null_bc',['../ERF__FillPatch_8cpp.html#a85a7293fad1a59ed566bcea306373abc',1,'ERF_FillPatch.cpp']]], + ['null_5fbc_5ffor_5ffill_4111',['null_bc_for_fill',['../Plotfile_8cpp.html#aeb56b4bca6dfa0e3b81d3f983926e8a2',1,'Plotfile.cpp']]], + ['num_5faeroes_4112',['num_aeroes',['../classAerRadProps.html#af174fea4281252e1cf87c621ab532aeb',1,'AerRadProps']]], + ['num_5fboxes_5fat_5flevel_4113',['num_boxes_at_level',['../classERF.html#adcd9f23975ffa605247b41d391c2a2f0',1,'ERF']]], + ['num_5ffiles_5fat_5flevel_4114',['num_files_at_level',['../classERF.html#a610a988f46e0496e6dbd0471ae817f75',1,'ERF']]], + ['num_5fmode_5ftypes_4115',['num_mode_types',['../classMamConstituents.html#a484fb8cc2efd161663df96136f6397a8',1,'MamConstituents']]], + ['num_5fspec_5ftypes_4116',['num_spec_types',['../classMamConstituents.html#a17b5c0080c2027fd08a2f3fcd7818333',1,'MamConstituents']]], + ['num_5fto_5fmass_5faer_4117',['num_to_mass_aer',['../structPhysProp_1_1physprop__t.html#aacc68f3bfaf1bcb4d76c0e49aa3d81fb',1,'PhysProp::physprop_t']]], + ['numaerosols_4118',['numaerosols',['../structMamConstituents_1_1aerlist__t.html#afae9af8c61b9fee3afdd374fffaab123',1,'MamConstituents::aerlist_t']]], + ['numdiffcoeff_4119',['NumDiffCoeff',['../structSolverChoice.html#a6dba64151e2e2f958e7c0e55db477bf2',1,'SolverChoice']]], + ['nzerog_4120',['nzerog',['../ERF__Constants_8H.html#a1d5b108314147320a74eaccbfa0d09b0',1,'ERF_Constants.H']]], + ['nzeror_4121',['nzeror',['../ERF__Constants_8H.html#aaa2fd2941341ea7699a9acfb434b2ee1',1,'ERF_Constants.H']]], + ['nzeros_4122',['nzeros',['../ERF__Constants_8H.html#ae56996ced8497f129d813e2f9c94786e',1,'ERF_Constants.H']]] ]; diff --git a/search/variables_e.js b/search/variables_e.js index 801aa085ce..3a06e0df72 100644 --- a/search/variables_e.js +++ b/search/variables_e.js @@ -1,12 +1,12 @@ var searchData= [ - ['obliqr_4115',['obliqr',['../classRadiation.html#a4c1a53e6acb0412aab13695bb9b0aa1d',1,'Radiation']]], - ['oldcldoptics_4116',['oldcldoptics',['../classMamConstituents.html#adb5b880a08c3d173d929ba90d43a8344',1,'MamConstituents']]], - ['olen_4117',['olen',['../classABLMost.html#a0d6aa5a113a45ae1e56c0284241cfd01',1,'ABLMost']]], - ['omeps_4118',['omeps',['../ERF__Constants_8H.html#af04ee89db2f653c028681f044bd16222',1,'ERF_Constants.H']]], - ['optics_4119',['optics',['../classRadiation.html#ab0464f3862987a09a9f4713937a984c3',1,'Radiation']]], - ['opticsmethod_4120',['opticsmethod',['../structPhysProp_1_1physprop__t.html#aa4cb3b830849d849a08227041fff62cd',1,'PhysProp::physprop_t']]], - ['output_5f1d_5fcolumn_4121',['output_1d_column',['../classERF.html#ad17ff2753e754ff3eb1330612b820b5f',1,'ERF']]], - ['output_5fbndry_5fplanes_4122',['output_bndry_planes',['../classERF.html#a7c448670f7a5cadd6fe56f7e615c9eb6',1,'ERF']]], - ['owned_4123',['owned',['../structNDArray.html#a0a1c90304eddb4d078132a1c1f45bef9',1,'NDArray']]] + ['obliqr_4123',['obliqr',['../classRadiation.html#a4c1a53e6acb0412aab13695bb9b0aa1d',1,'Radiation']]], + ['oldcldoptics_4124',['oldcldoptics',['../classMamConstituents.html#adb5b880a08c3d173d929ba90d43a8344',1,'MamConstituents']]], + ['olen_4125',['olen',['../classABLMost.html#a0d6aa5a113a45ae1e56c0284241cfd01',1,'ABLMost']]], + ['omeps_4126',['omeps',['../ERF__Constants_8H.html#af04ee89db2f653c028681f044bd16222',1,'ERF_Constants.H']]], + ['optics_4127',['optics',['../classRadiation.html#ab0464f3862987a09a9f4713937a984c3',1,'Radiation']]], + ['opticsmethod_4128',['opticsmethod',['../structPhysProp_1_1physprop__t.html#aa4cb3b830849d849a08227041fff62cd',1,'PhysProp::physprop_t']]], + ['output_5f1d_5fcolumn_4129',['output_1d_column',['../classERF.html#ad17ff2753e754ff3eb1330612b820b5f',1,'ERF']]], + ['output_5fbndry_5fplanes_4130',['output_bndry_planes',['../classERF.html#a7c448670f7a5cadd6fe56f7e615c9eb6',1,'ERF']]], + ['owned_4131',['owned',['../structNDArray.html#a0a1c90304eddb4d078132a1c1f45bef9',1,'NDArray']]] ]; diff --git a/search/variables_f.js b/search/variables_f.js index 4be0fcfb2a..d962583c2c 100644 --- a/search/variables_f.js +++ b/search/variables_f.js @@ -1,76 +1,76 @@ var searchData= [ - ['p_5f0_4124',['p_0',['../ERF__Constants_8H.html#a994fea25f28c33c2e8f1e9c63d5b8b56',1,'ERF_Constants.H']]], - ['p_5finp_5fsound_5fd_4125',['p_inp_sound_d',['../structInputSoundingData.html#a0db7861e0fee3f8f0760c6685df3176f',1,'InputSoundingData']]], - ['pb_5famp_4126',['pb_amp',['../structTurbulentPerturbation.html#a4b075473cfeaf70617e053cf77db0168',1,'TurbulentPerturbation']]], - ['pb_5fba_4127',['pb_ba',['../structTurbulentPerturbation.html#a37cd2d582d2102a94d25a3fa6631e8dc',1,'TurbulentPerturbation']]], - ['pb_5fcell_4128',['pb_cell',['../structTurbulentPerturbation.html#a6c1c35c60d8c8a7e66c770d78fb314ef',1,'TurbulentPerturbation']]], - ['pb_5finterval_4129',['pb_interval',['../structTurbulentPerturbation.html#aa6a26d1d85a580dd957ae567d2ceaa7d',1,'TurbulentPerturbation']]], - ['pb_5flocal_5fetime_4130',['pb_local_etime',['../structTurbulentPerturbation.html#a287ae1e88114174731f07a5dceaefc19',1,'TurbulentPerturbation']]], - ['pb_5fmag_4131',['pb_mag',['../structTurbulentPerturbation.html#aabd79eb1dab7153b890242e036b32f2a',1,'TurbulentPerturbation']]], - ['pb_5fnetzero_4132',['pb_netZero',['../structTurbulentPerturbation.html#a6f4fb5bdc199eb01791ef8dbc2040961',1,'TurbulentPerturbation']]], - ['pbl_5fmynn_5fa1_4133',['pbl_mynn_A1',['../structTurbChoice.html#a1d65cf1a08660a3d7464755da8c70a38',1,'TurbChoice']]], - ['pbl_5fmynn_5fa2_4134',['pbl_mynn_A2',['../structTurbChoice.html#a03e64a895e160cddef42f93bb6fed6e3',1,'TurbChoice']]], - ['pbl_5fmynn_5fb1_4135',['pbl_mynn_B1',['../structTurbChoice.html#ac8533193bb1789d8713f156443ac6801',1,'TurbChoice']]], - ['pbl_5fmynn_5fb2_4136',['pbl_mynn_B2',['../structTurbChoice.html#a6b61f96e8842316dd867ab6523967ff1',1,'TurbChoice']]], - ['pbl_5fmynn_5fc1_4137',['pbl_mynn_C1',['../structTurbChoice.html#a81257c2f6df7923e67b95b20150439b4',1,'TurbChoice']]], - ['pbl_5fmynn_5fc2_4138',['pbl_mynn_C2',['../structTurbChoice.html#a0696e8178c638da6cf94c4a1d8e4358b',1,'TurbChoice']]], - ['pbl_5fmynn_5fc3_4139',['pbl_mynn_C3',['../structTurbChoice.html#a5129ba60955a0990ef80166638acaa07',1,'TurbChoice']]], - ['pbl_5fmynn_5fc4_4140',['pbl_mynn_C4',['../structTurbChoice.html#afa27861e0ffa1f4c9373d465d1db378f',1,'TurbChoice']]], - ['pbl_5fmynn_5fc5_4141',['pbl_mynn_C5',['../structTurbChoice.html#a86360cd9caf3bf7a97e09a9118c5d2b5',1,'TurbChoice']]], - ['pbl_5ftype_4142',['pbl_type',['../structTurbChoice.html#a15b9bb58cde72bab3f5714934125f3f9',1,'TurbChoice']]], - ['pbl_5fysu_5fcoriolis_5ffreq_4143',['pbl_ysu_coriolis_freq',['../structTurbChoice.html#ac20bc5ed8f1482a520b623dc9cc1ef52',1,'TurbChoice']]], - ['pbl_5fysu_5fland_5fribcr_4144',['pbl_ysu_land_Ribcr',['../structTurbChoice.html#a96c1a42307db82ece270acdac75da9a3',1,'TurbChoice']]], - ['pbl_5fysu_5fover_5fland_4145',['pbl_ysu_over_land',['../structTurbChoice.html#a788407e8223bc8e19ee41f8107a92491',1,'TurbChoice']]], - ['pbl_5fysu_5funst_5fribcr_4146',['pbl_ysu_unst_Ribcr',['../structTurbChoice.html#af274e04335b259bb7b35f7c836f8310f',1,'TurbChoice']]], - ['pcf_4147',['pcf',['../classWaterVaporSat.html#ac945aefc06aef842e140df159ec62c05',1,'WaterVaporSat']]], - ['pdel_4148',['pdel',['../classRadiation.html#ad1aed51aea035b6dfefcbe571a2d7b34',1,'Radiation']]], - ['pdeldry_4149',['pdeldry',['../classAerRadProps.html#a1bf28a8f87d617095d3cf88cf7ef738e',1,'AerRadProps']]], - ['pert_5finterval_4150',['pert_interval',['../classERF.html#a52761522e295887435c10853d8c7dc37',1,'ERF']]], - ['pert_5ftype_4151',['pert_type',['../structSolverChoice.html#abfd94767b3721755632c45a5ef290544',1,'SolverChoice']]], - ['phys_5fbc_5ftype_4152',['phys_bc_type',['../classERF.html#ae6df94c25ac21bf6a2e856a9901e3a15',1,'ERF']]], - ['physbcs_5fcons_4153',['physbcs_cons',['../classERF.html#a2e9b04043853d25f2d76edbc0bed2e72',1,'ERF']]], - ['physbcs_5fu_4154',['physbcs_u',['../classERF.html#a64e55e5ae9df06433146db657eb9e72e',1,'ERF']]], - ['physbcs_5fv_4155',['physbcs_v',['../classERF.html#a79231b5cfd4576a742e46ae0082b5121',1,'ERF']]], - ['physbcs_5fw_4156',['physbcs_w',['../classERF.html#a45c8ecd777f47732993777a0afb8e140',1,'ERF']]], - ['physbcs_5fw_5fno_5fterrain_4157',['physbcs_w_no_terrain',['../classERF.html#a4d717bb9fe936fd1a124d0d3e720f9d1',1,'ERF']]], - ['physprop_4158',['physprop',['../classPhysProp.html#ae519d9ff501f4705b2b2f336c8f38e47',1,'PhysProp']]], - ['physprop_5ffile_4159',['physprop_file',['../structMamConstituents_1_1aerosol__t.html#a171adbde051fa00b94b7e0bfbd22d348',1,'MamConstituents::aerosol_t']]], - ['physprop_5ffiles_4160',['physprop_files',['../structMamConstituents_1_1modelist__t.html#ae4724929e731b1a00e0212d4c73495b4',1,'MamConstituents::modelist_t']]], - ['physprop_5fid_4161',['physprop_id',['../structMamConstituents_1_1aerosol__t.html#a6f7c83043cfbdc552c9ef9bcad6f24ed',1,'MamConstituents::aerosol_t']]], - ['pi_4162',['PI',['../ERF__Constants_8H.html#a988c4efd6fd0d855e241e77a73191428',1,'ERF_Constants.H']]], - ['pi43_4163',['pi43',['../classModalAeroWateruptake.html#a4a9705a6205eb9fad502289968668b77',1,'ModalAeroWateruptake']]], - ['pint_4164',['pint',['../classRadiation.html#a2f96bdaa65b73119271e1592fac6c569',1,'Radiation']]], - ['piotwo_4165',['PIoTwo',['../ERF__Constants_8H.html#ad51e17db99d11b190b2b57a23a518f7e',1,'ERF_Constants.H']]], - ['plot_5ffile_5f1_4166',['plot_file_1',['../classERF.html#aa54aaa938a18d34caa4d86e977647899',1,'ERF']]], - ['plot_5ffile_5f2_4167',['plot_file_2',['../classERF.html#a18fa84b06132715757d97ec38678aa2c',1,'ERF']]], - ['plot_5ffile_5flsm_4168',['plot_file_lsm',['../classLandSurface.html#af9c26970ce04b58725b9529fcc2fc62f',1,'LandSurface']]], - ['plot_5ffile_5fon_5frestart_4169',['plot_file_on_restart',['../classERF.html#adc00038dfe4c332e5d15f621184c69e8',1,'ERF']]], - ['plot_5flsm_4170',['plot_lsm',['../classERF.html#afc653b103aa26c56acafed85cdd95f52',1,'ERF']]], - ['plot_5fvar_5fnames_5f1_4171',['plot_var_names_1',['../classERF.html#a6865cf87abbb5aab0db00ff3b1ce94ac',1,'ERF']]], - ['plot_5fvar_5fnames_5f2_4172',['plot_var_names_2',['../classERF.html#a79705c02d6f25fbdcec14ca2432e5da1',1,'ERF']]], - ['plotfile_5ftype_4173',['plotfile_type',['../classERF.html#ae7b9991150042eb38e2abc89399c0c7c',1,'ERF']]], - ['pm_5finteg_4174',['pm_integ',['../structInputSoundingData.html#a30ed369fe55e1a25d9f1e871c70506d0',1,'InputSoundingData']]], - ['pmid_4175',['pmid',['../classAerRadProps.html#ab56e110ccf8deaa71d452a64e69b8647',1,'AerRadProps::pmid()'],['../classRadiation.html#a32121d70e2b9720750b3a72fdc2a6ef9',1,'Radiation::pmid()']]], - ['poisson_5fabstol_4176',['poisson_abstol',['../structSolverChoice.html#ad7f586d62fb0872ba0340fb03d462c64',1,'SolverChoice']]], - ['poisson_5freltol_4177',['poisson_reltol',['../structSolverChoice.html#a238b0871f38f8b134ff3fe5af0d05479',1,'SolverChoice']]], - ['post_5fupdate_4178',['post_update',['../classMRISplitIntegrator.html#a02e299d44fcd24c67717267dd15a7895',1,'MRISplitIntegrator']]], - ['post_5fupdate_5ffun_4179',['post_update_fun',['../TI__slow__rhs__fun_8H.html#afd90eac481ef47af3b095c56653098e8',1,'TI_slow_rhs_fun.H']]], - ['power_4180',['power',['../classEWP.html#ab9a34e54d36268a3f7a0b376543bbff5',1,'EWP::power()'],['../classFitch.html#a88af1c4430e37f4950396b5a92e9ba03',1,'Fitch::power()'],['../classSimpleAD.html#a4beb1f1734f5ba3b037cd6c89d79b351',1,'SimpleAD::power()'],['../classWindFarm.html#aea801fd8c22bf9d4bdcec847f4e7f50a',1,'WindFarm::power()']]], - ['pp_5fprefix_4181',['pp_prefix',['../structSpongeChoice.html#af06b59184315514abdadd3b54c073909',1,'SpongeChoice::pp_prefix()'],['../classERF.html#a59df30e7a5537c8543bb00772bd98b58',1,'ERF::pp_prefix()'],['../structTurbChoice.html#a6b8e56e5ace640df7834c013c6788020',1,'TurbChoice::pp_prefix()'],['../structTurbulentPerturbation.html#a40f3307cf523b625489b8591869bbb47',1,'TurbulentPerturbation::pp_prefix()'],['../structDiffChoice.html#a9e8b6878f4d18ee6fe61a220612d70df',1,'DiffChoice::pp_prefix()'],['../structSolverChoice.html#a4b0edf29a032ff18b10a42825fa9e4b6',1,'SolverChoice::pp_prefix()'],['../structAdvChoice.html#a667cbedb89514e330b6ca144298857da',1,'AdvChoice::pp_prefix()']]], - ['pr_5ft_4182',['Pr_t',['../structTurbChoice.html#ae1bec6cf14226b68f692f86daa1c5566',1,'TurbChoice']]], - ['pr_5ft_5finv_4183',['Pr_t_inv',['../structTurbChoice.html#aa90aa6c577f632a8c4582a3538d98ad5',1,'TurbChoice']]], - ['pre_5fupdate_4184',['pre_update',['../classMRISplitIntegrator.html#a5c76e162725bceaa3f6c0dac2928bcd6',1,'MRISplitIntegrator']]], - ['pre_5fupdate_5ffun_4185',['pre_update_fun',['../TI__slow__rhs__fun_8H.html#aadc7f4c039b08417963410e7f76bb2dd',1,'TI_slow_rhs_fun.H']]], - ['prefi_4186',['prefi',['../structPhysProp_1_1physprop__t.html#ad1a2b4cadbb2d65df2caff3232e1ab63',1,'PhysProp::physprop_t::prefi()'],['../classMam4__aer.html#adffbde9f294834c29b86c8d74f4155b8',1,'Mam4_aer::prefi()']]], - ['prefr_4187',['prefr',['../structPhysProp_1_1physprop__t.html#adfa6696c636955b4f5388f5c83795afb',1,'PhysProp::physprop_t::prefr()'],['../classMam4__aer.html#a7211d56f004f39cd34118af3c380a71e',1,'Mam4_aer::prefr()']]], - ['pres1d_4188',['pres1d',['../classSAM.html#a77e43f5c8a68a43f8109aa18b71fa64e',1,'SAM']]], - ['press_5fref_5finp_5fsound_4189',['press_ref_inp_sound',['../structInputSoundingData.html#a09ac90305ea3a4559d83ca589678a5aa',1,'InputSoundingData']]], - ['previouscputimeused_4190',['previousCPUTimeUsed',['../classERF.html#a1f412097e565c23acb4c17c67db10e22',1,'ERF']]], - ['prob_4191',['prob',['../classERF.html#a60e8cb933f237903e3fbcd6376c26db0',1,'ERF']]], - ['profile_5fint_4192',['profile_int',['../classERF.html#a633cd0b44d2e38f02c23e953aecd69eb',1,'ERF']]], - ['project_5fevery_5fstage_4193',['project_every_stage',['../structSolverChoice.html#afa4e734fc983ec9e6a0382fc369c309e',1,'SolverChoice']]], - ['prop_4194',['prop',['../classMamConstituents.html#af4a85a7b8e8e4a677c8d34970487f14e',1,'MamConstituents']]], - ['props_4195',['props',['../structMamConstituents_1_1mode__component__t.html#a3f9b94d6f306e89f1be96830e442fb10',1,'MamConstituents::mode_component_t']]], - ['pt_5ftype_4196',['pt_type',['../structTurbulentPerturbation.html#ad0d78e0adbb21ae36f4483dd30e15d58',1,'TurbulentPerturbation']]] + ['p_5f0_4132',['p_0',['../ERF__Constants_8H.html#a994fea25f28c33c2e8f1e9c63d5b8b56',1,'ERF_Constants.H']]], + ['p_5finp_5fsound_5fd_4133',['p_inp_sound_d',['../structInputSoundingData.html#a0db7861e0fee3f8f0760c6685df3176f',1,'InputSoundingData']]], + ['pb_5famp_4134',['pb_amp',['../structTurbulentPerturbation.html#a4b075473cfeaf70617e053cf77db0168',1,'TurbulentPerturbation']]], + ['pb_5fba_4135',['pb_ba',['../structTurbulentPerturbation.html#a37cd2d582d2102a94d25a3fa6631e8dc',1,'TurbulentPerturbation']]], + ['pb_5fcell_4136',['pb_cell',['../structTurbulentPerturbation.html#a6c1c35c60d8c8a7e66c770d78fb314ef',1,'TurbulentPerturbation']]], + ['pb_5finterval_4137',['pb_interval',['../structTurbulentPerturbation.html#aa6a26d1d85a580dd957ae567d2ceaa7d',1,'TurbulentPerturbation']]], + ['pb_5flocal_5fetime_4138',['pb_local_etime',['../structTurbulentPerturbation.html#a287ae1e88114174731f07a5dceaefc19',1,'TurbulentPerturbation']]], + ['pb_5fmag_4139',['pb_mag',['../structTurbulentPerturbation.html#aabd79eb1dab7153b890242e036b32f2a',1,'TurbulentPerturbation']]], + ['pb_5fnetzero_4140',['pb_netZero',['../structTurbulentPerturbation.html#a6f4fb5bdc199eb01791ef8dbc2040961',1,'TurbulentPerturbation']]], + ['pbl_5fmynn_5fa1_4141',['pbl_mynn_A1',['../structTurbChoice.html#a1d65cf1a08660a3d7464755da8c70a38',1,'TurbChoice']]], + ['pbl_5fmynn_5fa2_4142',['pbl_mynn_A2',['../structTurbChoice.html#a03e64a895e160cddef42f93bb6fed6e3',1,'TurbChoice']]], + ['pbl_5fmynn_5fb1_4143',['pbl_mynn_B1',['../structTurbChoice.html#ac8533193bb1789d8713f156443ac6801',1,'TurbChoice']]], + ['pbl_5fmynn_5fb2_4144',['pbl_mynn_B2',['../structTurbChoice.html#a6b61f96e8842316dd867ab6523967ff1',1,'TurbChoice']]], + ['pbl_5fmynn_5fc1_4145',['pbl_mynn_C1',['../structTurbChoice.html#a81257c2f6df7923e67b95b20150439b4',1,'TurbChoice']]], + ['pbl_5fmynn_5fc2_4146',['pbl_mynn_C2',['../structTurbChoice.html#a0696e8178c638da6cf94c4a1d8e4358b',1,'TurbChoice']]], + ['pbl_5fmynn_5fc3_4147',['pbl_mynn_C3',['../structTurbChoice.html#a5129ba60955a0990ef80166638acaa07',1,'TurbChoice']]], + ['pbl_5fmynn_5fc4_4148',['pbl_mynn_C4',['../structTurbChoice.html#afa27861e0ffa1f4c9373d465d1db378f',1,'TurbChoice']]], + ['pbl_5fmynn_5fc5_4149',['pbl_mynn_C5',['../structTurbChoice.html#a86360cd9caf3bf7a97e09a9118c5d2b5',1,'TurbChoice']]], + ['pbl_5ftype_4150',['pbl_type',['../structTurbChoice.html#a15b9bb58cde72bab3f5714934125f3f9',1,'TurbChoice']]], + ['pbl_5fysu_5fcoriolis_5ffreq_4151',['pbl_ysu_coriolis_freq',['../structTurbChoice.html#ac20bc5ed8f1482a520b623dc9cc1ef52',1,'TurbChoice']]], + ['pbl_5fysu_5fland_5fribcr_4152',['pbl_ysu_land_Ribcr',['../structTurbChoice.html#a96c1a42307db82ece270acdac75da9a3',1,'TurbChoice']]], + ['pbl_5fysu_5fover_5fland_4153',['pbl_ysu_over_land',['../structTurbChoice.html#a788407e8223bc8e19ee41f8107a92491',1,'TurbChoice']]], + ['pbl_5fysu_5funst_5fribcr_4154',['pbl_ysu_unst_Ribcr',['../structTurbChoice.html#af274e04335b259bb7b35f7c836f8310f',1,'TurbChoice']]], + ['pcf_4155',['pcf',['../classWaterVaporSat.html#ac945aefc06aef842e140df159ec62c05',1,'WaterVaporSat']]], + ['pdel_4156',['pdel',['../classRadiation.html#ad1aed51aea035b6dfefcbe571a2d7b34',1,'Radiation']]], + ['pdeldry_4157',['pdeldry',['../classAerRadProps.html#a1bf28a8f87d617095d3cf88cf7ef738e',1,'AerRadProps']]], + ['pert_5finterval_4158',['pert_interval',['../classERF.html#a52761522e295887435c10853d8c7dc37',1,'ERF']]], + ['pert_5ftype_4159',['pert_type',['../structSolverChoice.html#abfd94767b3721755632c45a5ef290544',1,'SolverChoice']]], + ['phys_5fbc_5ftype_4160',['phys_bc_type',['../classERF.html#ae6df94c25ac21bf6a2e856a9901e3a15',1,'ERF']]], + ['physbcs_5fcons_4161',['physbcs_cons',['../classERF.html#a2e9b04043853d25f2d76edbc0bed2e72',1,'ERF']]], + ['physbcs_5fu_4162',['physbcs_u',['../classERF.html#a64e55e5ae9df06433146db657eb9e72e',1,'ERF']]], + ['physbcs_5fv_4163',['physbcs_v',['../classERF.html#a79231b5cfd4576a742e46ae0082b5121',1,'ERF']]], + ['physbcs_5fw_4164',['physbcs_w',['../classERF.html#a45c8ecd777f47732993777a0afb8e140',1,'ERF']]], + ['physbcs_5fw_5fno_5fterrain_4165',['physbcs_w_no_terrain',['../classERF.html#a4d717bb9fe936fd1a124d0d3e720f9d1',1,'ERF']]], + ['physprop_4166',['physprop',['../classPhysProp.html#ae519d9ff501f4705b2b2f336c8f38e47',1,'PhysProp']]], + ['physprop_5ffile_4167',['physprop_file',['../structMamConstituents_1_1aerosol__t.html#a171adbde051fa00b94b7e0bfbd22d348',1,'MamConstituents::aerosol_t']]], + ['physprop_5ffiles_4168',['physprop_files',['../structMamConstituents_1_1modelist__t.html#ae4724929e731b1a00e0212d4c73495b4',1,'MamConstituents::modelist_t']]], + ['physprop_5fid_4169',['physprop_id',['../structMamConstituents_1_1aerosol__t.html#a6f7c83043cfbdc552c9ef9bcad6f24ed',1,'MamConstituents::aerosol_t']]], + ['pi_4170',['PI',['../ERF__Constants_8H.html#a988c4efd6fd0d855e241e77a73191428',1,'ERF_Constants.H']]], + ['pi43_4171',['pi43',['../classModalAeroWateruptake.html#a4a9705a6205eb9fad502289968668b77',1,'ModalAeroWateruptake']]], + ['pint_4172',['pint',['../classRadiation.html#a2f96bdaa65b73119271e1592fac6c569',1,'Radiation']]], + ['piotwo_4173',['PIoTwo',['../ERF__Constants_8H.html#ad51e17db99d11b190b2b57a23a518f7e',1,'ERF_Constants.H']]], + ['plot_5ffile_5f1_4174',['plot_file_1',['../classERF.html#aa54aaa938a18d34caa4d86e977647899',1,'ERF']]], + ['plot_5ffile_5f2_4175',['plot_file_2',['../classERF.html#a18fa84b06132715757d97ec38678aa2c',1,'ERF']]], + ['plot_5ffile_5flsm_4176',['plot_file_lsm',['../classLandSurface.html#af9c26970ce04b58725b9529fcc2fc62f',1,'LandSurface']]], + ['plot_5ffile_5fon_5frestart_4177',['plot_file_on_restart',['../classERF.html#adc00038dfe4c332e5d15f621184c69e8',1,'ERF']]], + ['plot_5flsm_4178',['plot_lsm',['../classERF.html#afc653b103aa26c56acafed85cdd95f52',1,'ERF']]], + ['plot_5fvar_5fnames_5f1_4179',['plot_var_names_1',['../classERF.html#a6865cf87abbb5aab0db00ff3b1ce94ac',1,'ERF']]], + ['plot_5fvar_5fnames_5f2_4180',['plot_var_names_2',['../classERF.html#a79705c02d6f25fbdcec14ca2432e5da1',1,'ERF']]], + ['plotfile_5ftype_4181',['plotfile_type',['../classERF.html#ae7b9991150042eb38e2abc89399c0c7c',1,'ERF']]], + ['pm_5finteg_4182',['pm_integ',['../structInputSoundingData.html#a30ed369fe55e1a25d9f1e871c70506d0',1,'InputSoundingData']]], + ['pmid_4183',['pmid',['../classAerRadProps.html#ab56e110ccf8deaa71d452a64e69b8647',1,'AerRadProps::pmid()'],['../classRadiation.html#a32121d70e2b9720750b3a72fdc2a6ef9',1,'Radiation::pmid()']]], + ['poisson_5fabstol_4184',['poisson_abstol',['../structSolverChoice.html#ad7f586d62fb0872ba0340fb03d462c64',1,'SolverChoice']]], + ['poisson_5freltol_4185',['poisson_reltol',['../structSolverChoice.html#a238b0871f38f8b134ff3fe5af0d05479',1,'SolverChoice']]], + ['post_5fupdate_4186',['post_update',['../classMRISplitIntegrator.html#a02e299d44fcd24c67717267dd15a7895',1,'MRISplitIntegrator']]], + ['post_5fupdate_5ffun_4187',['post_update_fun',['../TI__slow__rhs__fun_8H.html#afd90eac481ef47af3b095c56653098e8',1,'TI_slow_rhs_fun.H']]], + ['power_4188',['power',['../classEWP.html#ab9a34e54d36268a3f7a0b376543bbff5',1,'EWP::power()'],['../classFitch.html#a88af1c4430e37f4950396b5a92e9ba03',1,'Fitch::power()'],['../classSimpleAD.html#a4beb1f1734f5ba3b037cd6c89d79b351',1,'SimpleAD::power()'],['../classWindFarm.html#aea801fd8c22bf9d4bdcec847f4e7f50a',1,'WindFarm::power()']]], + ['pp_5fprefix_4189',['pp_prefix',['../structSpongeChoice.html#af06b59184315514abdadd3b54c073909',1,'SpongeChoice::pp_prefix()'],['../classERF.html#a59df30e7a5537c8543bb00772bd98b58',1,'ERF::pp_prefix()'],['../structTurbChoice.html#a6b8e56e5ace640df7834c013c6788020',1,'TurbChoice::pp_prefix()'],['../structTurbulentPerturbation.html#a40f3307cf523b625489b8591869bbb47',1,'TurbulentPerturbation::pp_prefix()'],['../structDiffChoice.html#a9e8b6878f4d18ee6fe61a220612d70df',1,'DiffChoice::pp_prefix()'],['../structSolverChoice.html#a4b0edf29a032ff18b10a42825fa9e4b6',1,'SolverChoice::pp_prefix()'],['../structAdvChoice.html#a667cbedb89514e330b6ca144298857da',1,'AdvChoice::pp_prefix()']]], + ['pr_5ft_4190',['Pr_t',['../structTurbChoice.html#ae1bec6cf14226b68f692f86daa1c5566',1,'TurbChoice']]], + ['pr_5ft_5finv_4191',['Pr_t_inv',['../structTurbChoice.html#aa90aa6c577f632a8c4582a3538d98ad5',1,'TurbChoice']]], + ['pre_5fupdate_4192',['pre_update',['../classMRISplitIntegrator.html#a5c76e162725bceaa3f6c0dac2928bcd6',1,'MRISplitIntegrator']]], + ['pre_5fupdate_5ffun_4193',['pre_update_fun',['../TI__slow__rhs__fun_8H.html#aadc7f4c039b08417963410e7f76bb2dd',1,'TI_slow_rhs_fun.H']]], + ['prefi_4194',['prefi',['../structPhysProp_1_1physprop__t.html#ad1a2b4cadbb2d65df2caff3232e1ab63',1,'PhysProp::physprop_t::prefi()'],['../classMam4__aer.html#adffbde9f294834c29b86c8d74f4155b8',1,'Mam4_aer::prefi()']]], + ['prefr_4195',['prefr',['../structPhysProp_1_1physprop__t.html#adfa6696c636955b4f5388f5c83795afb',1,'PhysProp::physprop_t::prefr()'],['../classMam4__aer.html#a7211d56f004f39cd34118af3c380a71e',1,'Mam4_aer::prefr()']]], + ['pres1d_4196',['pres1d',['../classSAM.html#a77e43f5c8a68a43f8109aa18b71fa64e',1,'SAM']]], + ['press_5fref_5finp_5fsound_4197',['press_ref_inp_sound',['../structInputSoundingData.html#a09ac90305ea3a4559d83ca589678a5aa',1,'InputSoundingData']]], + ['previouscputimeused_4198',['previousCPUTimeUsed',['../classERF.html#a1f412097e565c23acb4c17c67db10e22',1,'ERF']]], + ['prob_4199',['prob',['../classERF.html#a60e8cb933f237903e3fbcd6376c26db0',1,'ERF']]], + ['profile_5fint_4200',['profile_int',['../classERF.html#a633cd0b44d2e38f02c23e953aecd69eb',1,'ERF']]], + ['project_5fevery_5fstage_4201',['project_every_stage',['../structSolverChoice.html#afa4e734fc983ec9e6a0382fc369c309e',1,'SolverChoice']]], + ['prop_4202',['prop',['../classMamConstituents.html#af4a85a7b8e8e4a677c8d34970487f14e',1,'MamConstituents']]], + ['props_4203',['props',['../structMamConstituents_1_1mode__component__t.html#a3f9b94d6f306e89f1be96830e442fb10',1,'MamConstituents::mode_component_t']]], + ['pt_5ftype_4204',['pt_type',['../structTurbulentPerturbation.html#ad0d78e0adbb21ae36f4483dd30e15d58',1,'TurbulentPerturbation']]] ]; diff --git a/structcustom__flux-members.html b/structcustom__flux-members.html index 48ef45bb8a..bc02df0dec 100644 --- a/structcustom__flux-members.html +++ b/structcustom__flux-members.html @@ -89,7 +89,7 @@

                          This is the complete list of members for custom_flux, including all inherited members.

                          - + diff --git a/structcustom__flux.html b/structcustom__flux.html index be30c689da..b223d7a256 100644 --- a/structcustom__flux.html +++ b/structcustom__flux.html @@ -107,8 +107,8 @@ Public Member Functions - - + + @@ -151,14 +151,14 @@

                          -
                          1389  : zlo(l_zlo) {}
                          -
                          int zlo
                          Definition: MOSTStress.H:1624
                          +
                          1399  : zlo(l_zlo) {}
                          +
                          int zlo
                          Definition: MOSTStress.H:1639

                          Member Function Documentation

                          - -

                          ◆ compute_q_flux()

                          + +

                          ◆ compute_q_flux()

                          @@ -206,7 +206,7 @@

                          - + @@ -286,39 +286,45 @@

                          -
                          1413  {
                          -
                          1414  amrex::Real rho, eta;
                          -
                          1415 
                          -
                          1416  int ic, jc;
                          -
                          1417  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
                          -
                          1418  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
                          -
                          1419  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
                          -
                          1420  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
                          -
                          1421 
                          -
                          1422  rho = cons_arr(ic,jc,zlo,Rho_comp);
                          -
                          1423 
                          -
                          1424  amrex::Real qstar = q_star_arr(ic,jc,zlo);
                          -
                          1425  amrex::Real moflux = (std::abs(qstar) > eps) ? -rho * qstar : 0.0;
                          -
                          1426  amrex::Real deltaz = dz * (zlo - k);
                          -
                          1427 
                          -
                          1428  if (exp_most) amrex::Abort("Explicit MOST stress not implemented for custom moisture flux");
                          -
                          1429 
                          -
                          1430  int ie, je;
                          -
                          1431  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
                          -
                          1432  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
                          -
                          1433  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
                          -
                          1434  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
                          -
                          1435  eta = eta_arr(ie,je,zlo,EddyDiff::Q_v); // == rho * alpha [kg/m^3 * m^2/s]
                          -
                          1436  eta = amrex::max(eta,eta_eps);
                          -
                          1437  dest_arr(i,j,k,icomp+n) = dest_arr(i,j,zlo,icomp+n) - moflux*rho/eta*deltaz;
                          -
                          1438 
                          -
                          1439  return moflux;
                          -
                          1440  }
                          +
                          1423  {
                          +
                          1424  amrex::Real rho, eta;
                          +
                          1425 
                          +
                          1426  int ic, jc;
                          +
                          1427  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
                          +
                          1428  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
                          +
                          1429  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
                          +
                          1430  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
                          +
                          1431 
                          +
                          1432  rho = cons_arr(ic,jc,zlo,Rho_comp);
                          +
                          1433 
                          +
                          1434  amrex::Real qstar = q_star_arr(ic,jc,zlo);
                          +
                          1435  amrex::Real moflux = (std::abs(qstar) > eps) ? -rho * qstar : 0.0;
                          +
                          1436  amrex::Real deltaz = dz * (zlo - k);
                          +
                          1437 
                          +
                          1438  if (exp_most) {
                          +
                          1439  // surface gradient equal to gradient at first zface
                          +
                          1440  amrex::Real qvgrad = ( cons_arr(ic,jc,zlo+1,RhoQ1_comp)/cons_arr(ic,jc,zlo+1,Rho_comp)
                          +
                          1441  - cons_arr(ic,jc,zlo ,RhoQ1_comp)/cons_arr(ic,jc,zlo ,Rho_comp)) / (0.5*(dz+dz1));
                          +
                          1442  dest_arr(i,j,k,icomp+n) = cons_arr(ic,jc,zlo,RhoQ1_comp) - rho*qvgrad * deltaz;
                          +
                          1443  } else {
                          +
                          1444  int ie, je;
                          +
                          1445  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
                          +
                          1446  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
                          +
                          1447  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
                          +
                          1448  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
                          +
                          1449  eta = eta_arr(ie,je,zlo,EddyDiff::Q_v); // == rho * alpha [kg/m^3 * m^2/s]
                          +
                          1450  eta = amrex::max(eta,eta_eps);
                          +
                          1451  dest_arr(i,j,k,icomp+n) = dest_arr(i,j,zlo,icomp+n) - moflux*rho/eta*deltaz;
                          +
                          1452  }
                          +
                          1453 
                          +
                          1454  return moflux;
                          +
                          1455  }
                          #define Rho_comp
                          Definition: IndexDefines.H:12
                          +
                          #define RhoQ1_comp
                          Definition: IndexDefines.H:17
                          @ Q_v
                          Definition: IndexDefines.H:132
                          @ rho
                          Definition: Kessler.H:30
                          -
                          const amrex::Real eta_eps
                          Definition: MOSTStress.H:1626
                          -
                          const amrex::Real eps
                          Definition: MOSTStress.H:1625
                          +
                          const amrex::Real eta_eps
                          Definition: MOSTStress.H:1641
                          +
                          const amrex::Real eps
                          Definition: MOSTStress.H:1640
                          @@ -451,39 +457,39 @@

                          -
                          1463  {
                          -
                          1464  amrex::Real rho, eta;
                          -
                          1465 
                          -
                          1466  int ic, jc;
                          -
                          1467  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
                          -
                          1468  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
                          -
                          1469  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
                          -
                          1470  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
                          -
                          1471 
                          -
                          1472  rho = cons_arr(ic,jc,zlo,Rho_comp);
                          -
                          1473 
                          -
                          1474  amrex::Real tstar = t_star_arr(ic,jc,zlo);
                          -
                          1475  amrex::Real moflux = (std::abs(tstar) > eps) ? -rho * tstar : 0.0;
                          -
                          1476  amrex::Real deltaz = dz * (zlo - k);
                          -
                          1477 
                          -
                          1478  if (exp_most) {
                          -
                          1479  // surface gradient equal to gradient at first zface
                          -
                          1480  amrex::Real thetagrad = ( cons_arr(ic,jc,zlo+1,RhoTheta_comp)/cons_arr(ic,jc,zlo+1,Rho_comp)
                          -
                          1481  - cons_arr(ic,jc,zlo ,RhoTheta_comp)/cons_arr(ic,jc,zlo ,Rho_comp)) / (0.5*(dz+dz1));
                          -
                          1482  dest_arr(i,j,k,icomp+n) = cons_arr(ic,jc,zlo,RhoTheta_comp) - rho*thetagrad * deltaz;
                          -
                          1483  } else {
                          -
                          1484  int ie, je;
                          -
                          1485  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
                          -
                          1486  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
                          -
                          1487  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
                          -
                          1488  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
                          -
                          1489  eta = eta_arr(ie,je,zlo,EddyDiff::Theta_v); // == rho * alpha [kg/m^3 * m^2/s]
                          -
                          1490  eta = amrex::max(eta,eta_eps);
                          -
                          1491  dest_arr(i,j,k,icomp+n) = dest_arr(i,j,zlo,icomp+n) - moflux*rho/eta*deltaz;
                          -
                          1492  }
                          -
                          1493 
                          -
                          1494  return moflux;
                          -
                          1495  }
                          +
                          1478  {
                          +
                          1479  amrex::Real rho, eta;
                          +
                          1480 
                          +
                          1481  int ic, jc;
                          +
                          1482  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
                          +
                          1483  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
                          +
                          1484  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
                          +
                          1485  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
                          +
                          1486 
                          +
                          1487  rho = cons_arr(ic,jc,zlo,Rho_comp);
                          +
                          1488 
                          +
                          1489  amrex::Real tstar = t_star_arr(ic,jc,zlo);
                          +
                          1490  amrex::Real moflux = (std::abs(tstar) > eps) ? -rho * tstar : 0.0;
                          +
                          1491  amrex::Real deltaz = dz * (zlo - k);
                          +
                          1492 
                          +
                          1493  if (exp_most) {
                          +
                          1494  // surface gradient equal to gradient at first zface
                          +
                          1495  amrex::Real thetagrad = ( cons_arr(ic,jc,zlo+1,RhoTheta_comp)/cons_arr(ic,jc,zlo+1,Rho_comp)
                          +
                          1496  - cons_arr(ic,jc,zlo ,RhoTheta_comp)/cons_arr(ic,jc,zlo ,Rho_comp)) / (0.5*(dz+dz1));
                          +
                          1497  dest_arr(i,j,k,icomp+n) = cons_arr(ic,jc,zlo,RhoTheta_comp) - rho*thetagrad * deltaz;
                          +
                          1498  } else {
                          +
                          1499  int ie, je;
                          +
                          1500  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
                          +
                          1501  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
                          +
                          1502  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
                          +
                          1503  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
                          +
                          1504  eta = eta_arr(ie,je,zlo,EddyDiff::Theta_v); // == rho * alpha [kg/m^3 * m^2/s]
                          +
                          1505  eta = amrex::max(eta,eta_eps);
                          +
                          1506  dest_arr(i,j,k,icomp+n) = dest_arr(i,j,zlo,icomp+n) - moflux*rho/eta*deltaz;
                          +
                          1507  }
                          +
                          1508 
                          +
                          1509  return moflux;
                          +
                          1510  }
                          #define RhoTheta_comp
                          Definition: IndexDefines.H:13
                          @ Theta_v
                          Definition: IndexDefines.H:128
                          @@ -600,50 +606,50 @@

                          -
                          1515  {
                          -
                          1516  amrex::Real velx, vely, rho, eta;
                          -
                          1517  int jy, ic, jc;
                          -
                          1518 
                          -
                          1519  int iylo = i <= lbound(vely_arr).x ? lbound(vely_arr).x : i-1;
                          -
                          1520  int iyhi = i > ubound(vely_arr).x ? ubound(vely_arr).x : i;
                          -
                          1521 
                          -
                          1522  jy = j < lbound(vely_arr).y ? lbound(vely_arr).y : j;
                          -
                          1523  jy = jy > ubound(vely_arr).y-1 ? ubound(vely_arr).y-1 : jy;
                          -
                          1524 
                          -
                          1525  ic = i < lbound(cons_arr).x+1 ? lbound(cons_arr).x+1 : i;
                          -
                          1526  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
                          -
                          1527  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
                          -
                          1528  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
                          -
                          1529 
                          -
                          1530  velx = velx_arr(i,j,zlo);
                          -
                          1531  vely = 0.25*( vely_arr(iyhi,jy,zlo)+vely_arr(iyhi,jy+1,zlo)
                          -
                          1532  + vely_arr(iylo,jy,zlo)+vely_arr(iylo,jy+1,zlo) );
                          -
                          1533  rho = 0.5 *( cons_arr(ic-1,jc,zlo,Rho_comp)
                          -
                          1534  + cons_arr(ic ,jc,zlo,Rho_comp) );
                          -
                          1535 
                          -
                          1536  amrex::Real ustar = 0.5 * ( u_star_arr(ic-1,jc,zlo) + u_star_arr(ic,jc,zlo) );
                          -
                          1537  amrex::Real wsp = sqrt(velx*velx+vely*vely);
                          -
                          1538  amrex::Real stressx = rho * ustar * ustar * velx / wsp;
                          -
                          1539  amrex::Real deltaz = dz * (zlo - k);
                          -
                          1540 
                          -
                          1541  if (exp_most) {
                          -
                          1542  // surface gradient equal to gradient at first zface
                          -
                          1543  amrex::Real ugrad = (velx_arr(i,j,zlo+1) - velx) / (0.5*(dz+dz1));
                          -
                          1544  dest_arr(i,j,k,icomp) = velx - ugrad * deltaz;
                          -
                          1545  } else {
                          -
                          1546  int ie, je;
                          -
                          1547  ie = i < lbound(eta_arr).x+1 ? lbound(eta_arr).x+1 : i;
                          -
                          1548  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
                          -
                          1549  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
                          -
                          1550  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
                          -
                          1551  eta = 0.5 *( eta_arr(ie-1,je,zlo,EddyDiff::Mom_v)
                          -
                          1552  + eta_arr(ie ,je,zlo,EddyDiff::Mom_v) );
                          -
                          1553  eta = amrex::max(eta,eta_eps);
                          -
                          1554  dest_arr(i,j,k,icomp) = dest_arr(i,j,zlo,icomp) - stressx/eta*deltaz;
                          -
                          1555  }
                          -
                          1556 
                          -
                          1557  return stressx;
                          -
                          1558  }
                          +
                          1530  {
                          +
                          1531  amrex::Real velx, vely, rho, eta;
                          +
                          1532  int jy, ic, jc;
                          +
                          1533 
                          +
                          1534  int iylo = i <= lbound(vely_arr).x ? lbound(vely_arr).x : i-1;
                          +
                          1535  int iyhi = i > ubound(vely_arr).x ? ubound(vely_arr).x : i;
                          +
                          1536 
                          +
                          1537  jy = j < lbound(vely_arr).y ? lbound(vely_arr).y : j;
                          +
                          1538  jy = jy > ubound(vely_arr).y-1 ? ubound(vely_arr).y-1 : jy;
                          +
                          1539 
                          +
                          1540  ic = i < lbound(cons_arr).x+1 ? lbound(cons_arr).x+1 : i;
                          +
                          1541  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
                          +
                          1542  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
                          +
                          1543  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
                          +
                          1544 
                          +
                          1545  velx = velx_arr(i,j,zlo);
                          +
                          1546  vely = 0.25*( vely_arr(iyhi,jy,zlo)+vely_arr(iyhi,jy+1,zlo)
                          +
                          1547  + vely_arr(iylo,jy,zlo)+vely_arr(iylo,jy+1,zlo) );
                          +
                          1548  rho = 0.5 *( cons_arr(ic-1,jc,zlo,Rho_comp)
                          +
                          1549  + cons_arr(ic ,jc,zlo,Rho_comp) );
                          +
                          1550 
                          +
                          1551  amrex::Real ustar = 0.5 * ( u_star_arr(ic-1,jc,zlo) + u_star_arr(ic,jc,zlo) );
                          +
                          1552  amrex::Real wsp = sqrt(velx*velx+vely*vely);
                          +
                          1553  amrex::Real stressx = rho * ustar * ustar * velx / wsp;
                          +
                          1554  amrex::Real deltaz = dz * (zlo - k);
                          +
                          1555 
                          +
                          1556  if (exp_most) {
                          +
                          1557  // surface gradient equal to gradient at first zface
                          +
                          1558  amrex::Real ugrad = (velx_arr(i,j,zlo+1) - velx) / (0.5*(dz+dz1));
                          +
                          1559  dest_arr(i,j,k,icomp) = velx - ugrad * deltaz;
                          +
                          1560  } else {
                          +
                          1561  int ie, je;
                          +
                          1562  ie = i < lbound(eta_arr).x+1 ? lbound(eta_arr).x+1 : i;
                          +
                          1563  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
                          +
                          1564  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
                          +
                          1565  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
                          +
                          1566  eta = 0.5 *( eta_arr(ie-1,je,zlo,EddyDiff::Mom_v)
                          +
                          1567  + eta_arr(ie ,je,zlo,EddyDiff::Mom_v) );
                          +
                          1568  eta = amrex::max(eta,eta_eps);
                          +
                          1569  dest_arr(i,j,k,icomp) = dest_arr(i,j,zlo,icomp) - stressx/eta*deltaz;
                          +
                          1570  }
                          +
                          1571 
                          +
                          1572  return stressx;
                          +
                          1573  }
                          @ Mom_v
                          Definition: IndexDefines.H:127
                          @@ -759,50 +765,50 @@

                          -
                          1578  {
                          -
                          1579  amrex::Real velx, vely, rho, eta;
                          -
                          1580  int ix, ic, jc;
                          -
                          1581 
                          -
                          1582  ix = i < lbound(velx_arr).x ? lbound(velx_arr).x : i;
                          -
                          1583  ix = ix > ubound(velx_arr).x ? ubound(velx_arr).x : ix;
                          -
                          1584 
                          -
                          1585  int jxlo = j <= lbound(velx_arr).y ? lbound(velx_arr).y : j-1;
                          -
                          1586  int jxhi = j > ubound(velx_arr).y ? ubound(velx_arr).y : j;
                          -
                          1587 
                          -
                          1588  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
                          -
                          1589  jc = j < lbound(cons_arr).y+1 ? lbound(cons_arr).y+1 : j;
                          -
                          1590  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
                          -
                          1591  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
                          -
                          1592 
                          -
                          1593  velx = 0.25*( velx_arr(ix,jxhi,zlo)+velx_arr(ix+1,jxhi,zlo)
                          -
                          1594  + velx_arr(ix,jxlo,zlo)+velx_arr(ix+1,jxlo,zlo) );
                          -
                          1595  vely = vely_arr(i,j,zlo);
                          -
                          1596  rho = 0.5*( cons_arr(ic,jc-1,zlo,Rho_comp)
                          -
                          1597  + cons_arr(ic,jc ,zlo,Rho_comp) );
                          -
                          1598 
                          -
                          1599  amrex::Real ustar = 0.5 * ( u_star_arr(ic,jc-1,zlo) + u_star_arr(ic,jc,zlo) );
                          -
                          1600  amrex::Real wsp = sqrt(velx*velx+vely*vely);
                          -
                          1601  amrex::Real stressy = rho * ustar * ustar * vely / wsp;
                          -
                          1602  amrex::Real deltaz = dz * (zlo - k);
                          -
                          1603 
                          -
                          1604  if (exp_most) {
                          -
                          1605  // surface gradient equal to gradient at first zface
                          -
                          1606  amrex::Real vgrad = (vely_arr(i,j,zlo+1) - vely) / (0.5*(dz+dz1));
                          -
                          1607  dest_arr(i,j,k,icomp) = vely - vgrad * deltaz;
                          -
                          1608  } else {
                          -
                          1609  int ie, je;
                          -
                          1610  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
                          -
                          1611  je = j < lbound(eta_arr).y+1 ? lbound(eta_arr).y+1 : j;
                          -
                          1612  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
                          -
                          1613  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
                          -
                          1614  eta = 0.5*( eta_arr(ie,je-1,zlo,EddyDiff::Mom_v)
                          -
                          1615  + eta_arr(ie,je ,zlo,EddyDiff::Mom_v) );
                          -
                          1616  eta = amrex::max(eta,eta_eps);
                          -
                          1617  dest_arr(i,j,k,icomp) = dest_arr(i,j,zlo,icomp) - stressy/eta*deltaz;
                          -
                          1618  }
                          -
                          1619 
                          -
                          1620  return stressy;
                          -
                          1621  }
                          +
                          1593  {
                          +
                          1594  amrex::Real velx, vely, rho, eta;
                          +
                          1595  int ix, ic, jc;
                          +
                          1596 
                          +
                          1597  ix = i < lbound(velx_arr).x ? lbound(velx_arr).x : i;
                          +
                          1598  ix = ix > ubound(velx_arr).x ? ubound(velx_arr).x : ix;
                          +
                          1599 
                          +
                          1600  int jxlo = j <= lbound(velx_arr).y ? lbound(velx_arr).y : j-1;
                          +
                          1601  int jxhi = j > ubound(velx_arr).y ? ubound(velx_arr).y : j;
                          +
                          1602 
                          +
                          1603  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
                          +
                          1604  jc = j < lbound(cons_arr).y+1 ? lbound(cons_arr).y+1 : j;
                          +
                          1605  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
                          +
                          1606  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
                          +
                          1607 
                          +
                          1608  velx = 0.25*( velx_arr(ix,jxhi,zlo)+velx_arr(ix+1,jxhi,zlo)
                          +
                          1609  + velx_arr(ix,jxlo,zlo)+velx_arr(ix+1,jxlo,zlo) );
                          +
                          1610  vely = vely_arr(i,j,zlo);
                          +
                          1611  rho = 0.5*( cons_arr(ic,jc-1,zlo,Rho_comp)
                          +
                          1612  + cons_arr(ic,jc ,zlo,Rho_comp) );
                          +
                          1613 
                          +
                          1614  amrex::Real ustar = 0.5 * ( u_star_arr(ic,jc-1,zlo) + u_star_arr(ic,jc,zlo) );
                          +
                          1615  amrex::Real wsp = sqrt(velx*velx+vely*vely);
                          +
                          1616  amrex::Real stressy = rho * ustar * ustar * vely / wsp;
                          +
                          1617  amrex::Real deltaz = dz * (zlo - k);
                          +
                          1618 
                          +
                          1619  if (exp_most) {
                          +
                          1620  // surface gradient equal to gradient at first zface
                          +
                          1621  amrex::Real vgrad = (vely_arr(i,j,zlo+1) - vely) / (0.5*(dz+dz1));
                          +
                          1622  dest_arr(i,j,k,icomp) = vely - vgrad * deltaz;
                          +
                          1623  } else {
                          +
                          1624  int ie, je;
                          +
                          1625  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
                          +
                          1626  je = j < lbound(eta_arr).y+1 ? lbound(eta_arr).y+1 : j;
                          +
                          1627  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
                          +
                          1628  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
                          +
                          1629  eta = 0.5*( eta_arr(ie,je-1,zlo,EddyDiff::Mom_v)
                          +
                          1630  + eta_arr(ie,je ,zlo,EddyDiff::Mom_v) );
                          +
                          1631  eta = amrex::max(eta,eta_eps);
                          +
                          1632  dest_arr(i,j,k,icomp) = dest_arr(i,j,zlo,icomp) - stressy/eta*deltaz;
                          +
                          1633  }
                          +
                          1634 
                          +
                          1635  return stressy;
                          +
                          1636  }

                          @@ -827,7 +833,7 @@

                          -

                          Referenced by compute_q_flux(), and compute_t_flux().

                          +

                          Referenced by compute_q_flux(), and compute_t_flux().

                          @@ -851,7 +857,7 @@

                          -

                          Referenced by compute_q_flux(), compute_t_flux(), compute_u_flux(), and compute_v_flux().

                          +

                          Referenced by compute_q_flux(), compute_t_flux(), compute_u_flux(), and compute_v_flux().

                          @@ -875,7 +881,7 @@

                          -

                          Referenced by compute_q_flux(), compute_t_flux(), compute_u_flux(), and compute_v_flux().

                          +

                          Referenced by compute_q_flux(), compute_t_flux(), compute_u_flux(), and compute_v_flux().

                          diff --git a/structcustom__flux.js b/structcustom__flux.js index 1cbb84bbc7..b0ac57dbaf 100644 --- a/structcustom__flux.js +++ b/structcustom__flux.js @@ -1,7 +1,7 @@ var structcustom__flux = [ [ "custom_flux", "structcustom__flux.html#aa9715fd8b84d6df19fa17c89a703210a", null ], - [ "compute_q_flux", "structcustom__flux.html#aca20f274a2d45502698a74ed9b839b02", null ], + [ "compute_q_flux", "structcustom__flux.html#ae9e13bc10b4594df556671d9a042b48b", null ], [ "compute_t_flux", "structcustom__flux.html#abb193ac77724a6452a6068c3b5954081", null ], [ "compute_u_flux", "structcustom__flux.html#a6ab8b167f190f9b0c4c6adb05acfff40", null ], [ "compute_v_flux", "structcustom__flux.html#a2fe8dd883e33e274f6e44f9c0c5cf118", null ], diff --git a/structdonelan__flux-members.html b/structdonelan__flux-members.html index a8ced78c6b..53b130c227 100644 --- a/structdonelan__flux-members.html +++ b/structdonelan__flux-members.html @@ -89,7 +89,7 @@

                          This is the complete list of members for donelan_flux, including all inherited members.

                          compute_q_flux(const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &q_star_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) constcustom_fluxinline
                          compute_q_flux(const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &q_star_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) constcustom_fluxinline
                          compute_t_flux(const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &t_star_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) constcustom_fluxinline
                          compute_u_flux(const int &i, const int &j, const int &k, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &velx_arr, const amrex::Array4< const amrex::Real > &vely_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &u_star_arr, const amrex::Array4< amrex::Real > &dest_arr) constcustom_fluxinline
                          compute_v_flux(const int &i, const int &j, const int &k, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &velx_arr, const amrex::Array4< const amrex::Real > &vely_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &u_star_arr, const amrex::Array4< amrex::Real > &dest_arr) constcustom_fluxinline
                           custom_flux (int l_zlo)
                           
                          AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_q_flux (const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &q_star_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) const
                           
                          AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_q_flux (const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &q_star_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) const
                           
                          AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_t_flux (const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &t_star_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) const
                           
                          AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_u_flux (const int &i, const int &j, const int &k, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &velx_arr, const amrex::Array4< const amrex::Real > &vely_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &u_star_arr, const amrex::Array4< amrex::Real > &dest_arr) const
                          const amrex::Real & , dz1,
                          - + diff --git a/structdonelan__flux.html b/structdonelan__flux.html index 89b31ef7d3..153260b97e 100644 --- a/structdonelan__flux.html +++ b/structdonelan__flux.html @@ -107,8 +107,8 @@ Public Member Functions - - + + @@ -149,14 +149,14 @@

                          -
                          1118  : zlo(l_zlo) {}
                          -
                          int zlo
                          Definition: MOSTStress.H:1378
                          +
                          1123  : zlo(l_zlo) {}
                          +
                          int zlo
                          Definition: MOSTStress.H:1388

                          Member Function Documentation

                          - -

                          ◆ compute_q_flux()

                          + +

                          ◆ compute_q_flux()

                          @@ -204,7 +204,7 @@

                          - + @@ -284,41 +284,46 @@

                          -
                          1142  {
                          -
                          1143  amrex::Real rho, eta, qv;
                          -
                          1144 
                          -
                          1145  int ic, jc;
                          -
                          1146  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
                          -
                          1147  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
                          -
                          1148  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
                          -
                          1149  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
                          -
                          1150 
                          -
                          1151  rho = cons_arr(ic,jc,zlo,Rho_comp);
                          -
                          1152  qv = cons_arr(ic,jc,zlo,RhoQ1_comp) / rho;
                          -
                          1153 
                          -
                          1154  // TODO: Integrate MOST with moisture and DONELAN FLUX type
                          -
                          1155  amrex::Real moflux = 0.0;
                          -
                          1156  amrex::Real deltaz = dz * (zlo - k);
                          -
                          1157 
                          -
                          1158  if (exp_most) amrex::Abort("Explicit MOST stress not implemented for Donelan moisture flux");
                          -
                          1159 
                          -
                          1160  int ie, je;
                          -
                          1161  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
                          -
                          1162  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
                          -
                          1163  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
                          -
                          1164  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
                          -
                          1165  eta = eta_arr(ie,je,zlo,EddyDiff::Q_v); // == rho * alpha [kg/m^3 * m^2/s]
                          -
                          1166  eta = amrex::max(eta,eta_eps);
                          -
                          1167  dest_arr(i,j,k,icomp+n) = rho*(qv - moflux*rho/eta*deltaz);
                          -
                          1168 
                          -
                          1169  return moflux;
                          -
                          1170  }
                          +
                          1147  {
                          +
                          1148  amrex::Real rho, eta, qv;
                          +
                          1149 
                          +
                          1150  int ic, jc;
                          +
                          1151  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
                          +
                          1152  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
                          +
                          1153  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
                          +
                          1154  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
                          +
                          1155 
                          +
                          1156  rho = cons_arr(ic,jc,zlo,Rho_comp);
                          +
                          1157  qv = cons_arr(ic,jc,zlo,RhoQ1_comp) / rho;
                          +
                          1158 
                          +
                          1159  // TODO: Integrate MOST with moisture and DONELAN FLUX type
                          +
                          1160  amrex::Real moflux = 0.0;
                          +
                          1161  amrex::Real deltaz = dz * (zlo - k);
                          +
                          1162 
                          +
                          1163  if (exp_most) {
                          +
                          1164  // surface gradient equal to gradient at first zface
                          +
                          1165  amrex::Real qvgrad = ( cons_arr(ic,jc,zlo+1,RhoQ1_comp)/cons_arr(ic,jc,zlo+1,Rho_comp)
                          +
                          1166  - cons_arr(ic,jc,zlo ,RhoQ1_comp)/cons_arr(ic,jc,zlo ,Rho_comp)) / (0.5*(dz+dz1));
                          +
                          1167  dest_arr(i,j,k,icomp+n) = cons_arr(ic,jc,zlo,RhoQ1_comp) - rho*qvgrad * deltaz;
                          +
                          1168  } else {
                          +
                          1169  int ie, je;
                          +
                          1170  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
                          +
                          1171  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
                          +
                          1172  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
                          +
                          1173  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
                          +
                          1174  eta = eta_arr(ie,je,zlo,EddyDiff::Q_v); // == rho * alpha [kg/m^3 * m^2/s]
                          +
                          1175  eta = amrex::max(eta,eta_eps);
                          +
                          1176  dest_arr(i,j,k,icomp+n) = rho*(qv - moflux*rho/eta*deltaz);
                          +
                          1177  }
                          +
                          1178 
                          +
                          1179  return moflux;
                          +
                          1180  }
                          #define Rho_comp
                          Definition: IndexDefines.H:12
                          #define RhoQ1_comp
                          Definition: IndexDefines.H:17
                          @ Q_v
                          Definition: IndexDefines.H:132
                          @ rho
                          Definition: Kessler.H:30
                          @ qv
                          Definition: Kessler.H:36
                          -
                          const amrex::Real eta_eps
                          Definition: MOSTStress.H:1379
                          +
                          const amrex::Real eta_eps
                          Definition: MOSTStress.H:1389
                          @@ -451,45 +456,45 @@

                          -
                          1193  {
                          -
                          1194  amrex::Real rho, theta, eta;
                          -
                          1195 
                          -
                          1196  int ic, jc;
                          -
                          1197  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
                          -
                          1198  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
                          -
                          1199  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
                          -
                          1200  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
                          -
                          1201 
                          -
                          1202  rho = cons_arr(ic,jc,zlo,Rho_comp);
                          -
                          1203  theta = cons_arr(ic,jc,zlo,RhoTheta_comp) / rho;
                          -
                          1204 
                          -
                          1205  amrex::Real Cd = 0.0012;
                          -
                          1206  amrex::Real wsp_mean = umm_arr(ic,jc,zlo);
                          -
                          1207  amrex::Real theta_surf = t_surf_arr(ic,jc,zlo);
                          -
                          1208  amrex::Real theta_mean = tm_arr(ic,jc,zlo);
                          -
                          1209  amrex::Real moflux = Cd * wsp_mean * (theta_surf - theta_mean);
                          -
                          1210  amrex::Real deltaz = dz * (zlo - k);
                          +
                          1203  {
                          +
                          1204  amrex::Real rho, theta, eta;
                          +
                          1205 
                          +
                          1206  int ic, jc;
                          +
                          1207  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
                          +
                          1208  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
                          +
                          1209  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
                          +
                          1210  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
                          1211 
                          -
                          1212  if (exp_most) {
                          -
                          1213  // surface gradient equal to gradient at first zface
                          -
                          1214  amrex::Real thetagrad = (cons_arr(ic,jc,zlo+1,RhoTheta_comp) - cons_arr(ic,jc,zlo,RhoTheta_comp)) / (0.5*(dz+dz1));
                          -
                          1215  dest_arr(i,j,k,icomp+n) = cons_arr(ic,jc,zlo,RhoTheta_comp) - thetagrad * deltaz;
                          -
                          1216  } else {
                          -
                          1217  int ie, je;
                          -
                          1218  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
                          -
                          1219  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
                          -
                          1220  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
                          -
                          1221  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
                          -
                          1222  eta = eta_arr(ie,je,zlo,EddyDiff::Theta_v); // == rho * alpha [kg/m^3 * m^2/s]
                          -
                          1223  eta = amrex::max(eta,eta_eps);
                          -
                          1224  // Note: Kh = eta/rho
                          -
                          1225  // hfx = -Kh dT/dz ==> +ve hfx corresponds to heating from the surface
                          -
                          1226  // Extrapolate from klo to ghost cell a distance of -deltaz; negative signs cancel
                          -
                          1227  dest_arr(i,j,k,icomp+n) = rho*(theta + moflux*rho/eta*deltaz);
                          -
                          1228  }
                          -
                          1229 
                          -
                          1230  return moflux;
                          -
                          1231  }
                          +
                          1212  rho = cons_arr(ic,jc,zlo,Rho_comp);
                          +
                          1213  theta = cons_arr(ic,jc,zlo,RhoTheta_comp) / rho;
                          +
                          1214 
                          +
                          1215  amrex::Real Cd = 0.0012;
                          +
                          1216  amrex::Real wsp_mean = umm_arr(ic,jc,zlo);
                          +
                          1217  amrex::Real theta_surf = t_surf_arr(ic,jc,zlo);
                          +
                          1218  amrex::Real theta_mean = tm_arr(ic,jc,zlo);
                          +
                          1219  amrex::Real moflux = Cd * wsp_mean * (theta_surf - theta_mean);
                          +
                          1220  amrex::Real deltaz = dz * (zlo - k);
                          +
                          1221 
                          +
                          1222  if (exp_most) {
                          +
                          1223  // surface gradient equal to gradient at first zface
                          +
                          1224  amrex::Real thetagrad = (cons_arr(ic,jc,zlo+1,RhoTheta_comp) - cons_arr(ic,jc,zlo,RhoTheta_comp)) / (0.5*(dz+dz1));
                          +
                          1225  dest_arr(i,j,k,icomp+n) = cons_arr(ic,jc,zlo,RhoTheta_comp) - thetagrad * deltaz;
                          +
                          1226  } else {
                          +
                          1227  int ie, je;
                          +
                          1228  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
                          +
                          1229  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
                          +
                          1230  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
                          +
                          1231  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
                          +
                          1232  eta = eta_arr(ie,je,zlo,EddyDiff::Theta_v); // == rho * alpha [kg/m^3 * m^2/s]
                          +
                          1233  eta = amrex::max(eta,eta_eps);
                          +
                          1234  // Note: Kh = eta/rho
                          +
                          1235  // hfx = -Kh dT/dz ==> +ve hfx corresponds to heating from the surface
                          +
                          1236  // Extrapolate from klo to ghost cell a distance of -deltaz; negative signs cancel
                          +
                          1237  dest_arr(i,j,k,icomp+n) = rho*(theta + moflux*rho/eta*deltaz);
                          +
                          1238  }
                          +
                          1239 
                          +
                          1240  return moflux;
                          +
                          1241  }
                          #define RhoTheta_comp
                          Definition: IndexDefines.H:13
                          @ Theta_v
                          Definition: IndexDefines.H:128
                          @ theta
                          Definition: MM5.H:20
                          @@ -607,59 +612,59 @@

                          -
                          1251  {
                          -
                          1252  amrex::Real velx, vely, rho, eta;
                          -
                          1253  int jy, ic, jc;
                          -
                          1254 
                          -
                          1255  int iylo = i <= lbound(vely_arr).x ? lbound(vely_arr).x : i-1;
                          -
                          1256  int iyhi = i > ubound(vely_arr).x ? ubound(vely_arr).x : i;
                          -
                          1257 
                          -
                          1258  jy = j < lbound(vely_arr).y ? lbound(vely_arr).y : j;
                          -
                          1259  jy = jy > ubound(vely_arr).y-1 ? ubound(vely_arr).y-1 : jy;
                          -
                          1260 
                          -
                          1261  ic = i < lbound(cons_arr).x+1 ? lbound(cons_arr).x+1 : i;
                          -
                          1262  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
                          -
                          1263  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
                          -
                          1264  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
                          -
                          1265 
                          -
                          1266  velx = velx_arr(i,j,zlo);
                          -
                          1267  vely = 0.25*( vely_arr(iyhi,jy,zlo)+vely_arr(iyhi,jy+1,zlo)
                          -
                          1268  + vely_arr(iylo,jy,zlo)+vely_arr(iylo,jy+1,zlo) );
                          -
                          1269  rho = 0.5 *( cons_arr(ic-1,jc,zlo,Rho_comp)
                          -
                          1270  + cons_arr(ic ,jc,zlo,Rho_comp) );
                          -
                          1271 
                          -
                          1272  amrex::Real Cd = 0.001;
                          -
                          1273  const amrex::Real c = 7e-5;
                          -
                          1274  amrex::Real wsp = sqrt(velx*velx+vely*vely);
                          -
                          1275  amrex::Real wsp_mean = 0.5 * ( umm_arr(ic-1,jc,zlo) + umm_arr(ic,jc,zlo) );
                          -
                          1276  if (wsp_mean <= 5.0) {
                          -
                          1277  Cd = 0.001;
                          -
                          1278  } else if (wsp_mean < 25.0 && wsp_mean > 5.0) {
                          -
                          1279  Cd = 0.001 + c * (wsp_mean - 5.0);
                          -
                          1280  } else {
                          -
                          1281  Cd = 0.0024;
                          -
                          1282  }
                          -
                          1283  amrex::Real stressx = rho * Cd * velx * wsp;
                          -
                          1284  amrex::Real deltaz = dz * (zlo - k);
                          -
                          1285 
                          -
                          1286  if (exp_most) {
                          -
                          1287  // surface gradient equal to gradient at first zface
                          -
                          1288  amrex::Real ugrad = (velx_arr(i,j,zlo+1) - velx) / (0.5*(dz+dz1));
                          -
                          1289  dest_arr(i,j,k,icomp) = velx - ugrad * deltaz;
                          +
                          1261  {
                          +
                          1262  amrex::Real velx, vely, rho, eta;
                          +
                          1263  int jy, ic, jc;
                          +
                          1264 
                          +
                          1265  int iylo = i <= lbound(vely_arr).x ? lbound(vely_arr).x : i-1;
                          +
                          1266  int iyhi = i > ubound(vely_arr).x ? ubound(vely_arr).x : i;
                          +
                          1267 
                          +
                          1268  jy = j < lbound(vely_arr).y ? lbound(vely_arr).y : j;
                          +
                          1269  jy = jy > ubound(vely_arr).y-1 ? ubound(vely_arr).y-1 : jy;
                          +
                          1270 
                          +
                          1271  ic = i < lbound(cons_arr).x+1 ? lbound(cons_arr).x+1 : i;
                          +
                          1272  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
                          +
                          1273  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
                          +
                          1274  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
                          +
                          1275 
                          +
                          1276  velx = velx_arr(i,j,zlo);
                          +
                          1277  vely = 0.25*( vely_arr(iyhi,jy,zlo)+vely_arr(iyhi,jy+1,zlo)
                          +
                          1278  + vely_arr(iylo,jy,zlo)+vely_arr(iylo,jy+1,zlo) );
                          +
                          1279  rho = 0.5 *( cons_arr(ic-1,jc,zlo,Rho_comp)
                          +
                          1280  + cons_arr(ic ,jc,zlo,Rho_comp) );
                          +
                          1281 
                          +
                          1282  amrex::Real Cd = 0.001;
                          +
                          1283  const amrex::Real c = 7e-5;
                          +
                          1284  amrex::Real wsp = sqrt(velx*velx+vely*vely);
                          +
                          1285  amrex::Real wsp_mean = 0.5 * ( umm_arr(ic-1,jc,zlo) + umm_arr(ic,jc,zlo) );
                          +
                          1286  if (wsp_mean <= 5.0) {
                          +
                          1287  Cd = 0.001;
                          +
                          1288  } else if (wsp_mean < 25.0 && wsp_mean > 5.0) {
                          +
                          1289  Cd = 0.001 + c * (wsp_mean - 5.0);
                          1290  } else {
                          -
                          1291  int ie, je;
                          -
                          1292  ie = i < lbound(eta_arr).x+1 ? lbound(eta_arr).x+1 : i;
                          -
                          1293  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
                          -
                          1294  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
                          -
                          1295  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
                          -
                          1296  eta = 0.5 *( eta_arr(ie-1,je,zlo,EddyDiff::Mom_v)
                          -
                          1297  + eta_arr(ie ,je,zlo,EddyDiff::Mom_v) );
                          -
                          1298  eta = amrex::max(eta,eta_eps);
                          -
                          1299  dest_arr(i,j,k,icomp) = dest_arr(i,j,zlo,icomp) - stressx/eta*deltaz;
                          -
                          1300  }
                          -
                          1301 
                          -
                          1302  return stressx;
                          -
                          1303  }
                          +
                          1291  Cd = 0.0024;
                          +
                          1292  }
                          +
                          1293  amrex::Real stressx = rho * Cd * velx * wsp;
                          +
                          1294  amrex::Real deltaz = dz * (zlo - k);
                          +
                          1295 
                          +
                          1296  if (exp_most) {
                          +
                          1297  // surface gradient equal to gradient at first zface
                          +
                          1298  amrex::Real ugrad = (velx_arr(i,j,zlo+1) - velx) / (0.5*(dz+dz1));
                          +
                          1299  dest_arr(i,j,k,icomp) = velx - ugrad * deltaz;
                          +
                          1300  } else {
                          +
                          1301  int ie, je;
                          +
                          1302  ie = i < lbound(eta_arr).x+1 ? lbound(eta_arr).x+1 : i;
                          +
                          1303  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
                          +
                          1304  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
                          +
                          1305  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
                          +
                          1306  eta = 0.5 *( eta_arr(ie-1,je,zlo,EddyDiff::Mom_v)
                          +
                          1307  + eta_arr(ie ,je,zlo,EddyDiff::Mom_v) );
                          +
                          1308  eta = amrex::max(eta,eta_eps);
                          +
                          1309  dest_arr(i,j,k,icomp) = dest_arr(i,j,zlo,icomp) - stressx/eta*deltaz;
                          +
                          1310  }
                          +
                          1311 
                          +
                          1312  return stressx;
                          +
                          1313  }
                          @ Mom_v
                          Definition: IndexDefines.H:127
                          @@ -775,59 +780,59 @@

                          -
                          1323  {
                          -
                          1324  amrex::Real velx, vely, rho, eta;
                          -
                          1325  int ix, ic, jc;
                          -
                          1326 
                          -
                          1327  ix = i < lbound(velx_arr).x ? lbound(velx_arr).x : i;
                          -
                          1328  ix = ix > ubound(velx_arr).x ? ubound(velx_arr).x : ix;
                          -
                          1329 
                          -
                          1330  int jxlo = j <= lbound(velx_arr).y ? lbound(velx_arr).y : j-1;
                          -
                          1331  int jxhi = j > ubound(velx_arr).y ? ubound(velx_arr).y : j;
                          -
                          1332 
                          -
                          1333  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
                          -
                          1334  jc = j < lbound(cons_arr).y+1 ? lbound(cons_arr).y+1 : j;
                          -
                          1335  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
                          -
                          1336  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
                          -
                          1337 
                          -
                          1338  velx = 0.25*( velx_arr(ix,jxhi,zlo)+velx_arr(ix+1,jxhi,zlo)
                          -
                          1339  + velx_arr(ix,jxlo,zlo)+velx_arr(ix+1,jxlo,zlo) );
                          -
                          1340  vely = vely_arr(i,j,zlo);
                          -
                          1341  rho = 0.5*( cons_arr(ic,jc-1,zlo,Rho_comp)
                          -
                          1342  + cons_arr(ic,jc ,zlo,Rho_comp) );
                          -
                          1343 
                          -
                          1344  amrex::Real Cd = 0.001;
                          -
                          1345  const amrex::Real c = 7e-5;
                          -
                          1346  amrex::Real wsp = sqrt(velx*velx+vely*vely);
                          -
                          1347  amrex::Real wsp_mean = 0.5 * ( umm_arr(ic,jc-1,zlo) + umm_arr(ic,jc,zlo) );
                          -
                          1348  if (wsp_mean <= 5.0) {
                          -
                          1349  Cd = 0.001;
                          -
                          1350  } else if (wsp_mean < 25.0 && wsp_mean > 5.0) {
                          -
                          1351  Cd = 0.001 + c * (wsp_mean - 5.0);
                          -
                          1352  } else {
                          -
                          1353  Cd = 0.0024;
                          -
                          1354  }
                          -
                          1355  amrex::Real stressy = rho * Cd * vely * wsp;
                          -
                          1356  amrex::Real deltaz = dz * (zlo - k);
                          -
                          1357 
                          -
                          1358  if (exp_most) {
                          -
                          1359  // surface gradient equal to gradient at first zface
                          -
                          1360  amrex::Real vgrad = (vely_arr(i,j,zlo+1) - vely) / (0.5*(dz+dz1));
                          -
                          1361  dest_arr(i,j,k,icomp) = vely - vgrad * deltaz;
                          +
                          1333  {
                          +
                          1334  amrex::Real velx, vely, rho, eta;
                          +
                          1335  int ix, ic, jc;
                          +
                          1336 
                          +
                          1337  ix = i < lbound(velx_arr).x ? lbound(velx_arr).x : i;
                          +
                          1338  ix = ix > ubound(velx_arr).x ? ubound(velx_arr).x : ix;
                          +
                          1339 
                          +
                          1340  int jxlo = j <= lbound(velx_arr).y ? lbound(velx_arr).y : j-1;
                          +
                          1341  int jxhi = j > ubound(velx_arr).y ? ubound(velx_arr).y : j;
                          +
                          1342 
                          +
                          1343  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
                          +
                          1344  jc = j < lbound(cons_arr).y+1 ? lbound(cons_arr).y+1 : j;
                          +
                          1345  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
                          +
                          1346  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
                          +
                          1347 
                          +
                          1348  velx = 0.25*( velx_arr(ix,jxhi,zlo)+velx_arr(ix+1,jxhi,zlo)
                          +
                          1349  + velx_arr(ix,jxlo,zlo)+velx_arr(ix+1,jxlo,zlo) );
                          +
                          1350  vely = vely_arr(i,j,zlo);
                          +
                          1351  rho = 0.5*( cons_arr(ic,jc-1,zlo,Rho_comp)
                          +
                          1352  + cons_arr(ic,jc ,zlo,Rho_comp) );
                          +
                          1353 
                          +
                          1354  amrex::Real Cd = 0.001;
                          +
                          1355  const amrex::Real c = 7e-5;
                          +
                          1356  amrex::Real wsp = sqrt(velx*velx+vely*vely);
                          +
                          1357  amrex::Real wsp_mean = 0.5 * ( umm_arr(ic,jc-1,zlo) + umm_arr(ic,jc,zlo) );
                          +
                          1358  if (wsp_mean <= 5.0) {
                          +
                          1359  Cd = 0.001;
                          +
                          1360  } else if (wsp_mean < 25.0 && wsp_mean > 5.0) {
                          +
                          1361  Cd = 0.001 + c * (wsp_mean - 5.0);
                          1362  } else {
                          -
                          1363  int ie, je;
                          -
                          1364  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
                          -
                          1365  je = j < lbound(eta_arr).y+1 ? lbound(eta_arr).y+1 : j;
                          -
                          1366  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
                          -
                          1367  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
                          -
                          1368  eta = 0.5*( eta_arr(ie,je-1,zlo,EddyDiff::Mom_v)
                          -
                          1369  + eta_arr(ie,je ,zlo,EddyDiff::Mom_v) );
                          -
                          1370  eta = amrex::max(eta,eta_eps);
                          -
                          1371  dest_arr(i,j,k,icomp) = dest_arr(i,j,zlo,icomp) - stressy/eta*deltaz;
                          -
                          1372  }
                          -
                          1373 
                          -
                          1374  return stressy;
                          -
                          1375  }
                          +
                          1363  Cd = 0.0024;
                          +
                          1364  }
                          +
                          1365  amrex::Real stressy = rho * Cd * vely * wsp;
                          +
                          1366  amrex::Real deltaz = dz * (zlo - k);
                          +
                          1367 
                          +
                          1368  if (exp_most) {
                          +
                          1369  // surface gradient equal to gradient at first zface
                          +
                          1370  amrex::Real vgrad = (vely_arr(i,j,zlo+1) - vely) / (0.5*(dz+dz1));
                          +
                          1371  dest_arr(i,j,k,icomp) = vely - vgrad * deltaz;
                          +
                          1372  } else {
                          +
                          1373  int ie, je;
                          +
                          1374  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
                          +
                          1375  je = j < lbound(eta_arr).y+1 ? lbound(eta_arr).y+1 : j;
                          +
                          1376  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
                          +
                          1377  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
                          +
                          1378  eta = 0.5*( eta_arr(ie,je-1,zlo,EddyDiff::Mom_v)
                          +
                          1379  + eta_arr(ie,je ,zlo,EddyDiff::Mom_v) );
                          +
                          1380  eta = amrex::max(eta,eta_eps);
                          +
                          1381  dest_arr(i,j,k,icomp) = dest_arr(i,j,zlo,icomp) - stressy/eta*deltaz;
                          +
                          1382  }
                          +
                          1383 
                          +
                          1384  return stressy;
                          +
                          1385  }

                          @@ -852,7 +857,7 @@

                          -

                          Referenced by compute_q_flux(), compute_t_flux(), compute_u_flux(), and compute_v_flux().

                          +

                          Referenced by compute_q_flux(), compute_t_flux(), compute_u_flux(), and compute_v_flux().

                          @@ -876,7 +881,7 @@

                          -

                          Referenced by compute_q_flux(), compute_t_flux(), compute_u_flux(), and compute_v_flux().

                          +

                          Referenced by compute_q_flux(), compute_t_flux(), compute_u_flux(), and compute_v_flux().

                          diff --git a/structdonelan__flux.js b/structdonelan__flux.js index 013322babe..87be1c08e7 100644 --- a/structdonelan__flux.js +++ b/structdonelan__flux.js @@ -1,7 +1,7 @@ var structdonelan__flux = [ [ "donelan_flux", "structdonelan__flux.html#a804902863523b5f641c44aadc3602e97", null ], - [ "compute_q_flux", "structdonelan__flux.html#a8d0fc02fd064b22206380d593b628efa", null ], + [ "compute_q_flux", "structdonelan__flux.html#adb397919f3dc33f33d8bdc7b99c52efc", null ], [ "compute_t_flux", "structdonelan__flux.html#a999e3bdb322d29fcdfbd51047fb32ee0", null ], [ "compute_u_flux", "structdonelan__flux.html#a44a032acc6bd6f42ff90f5a0ac14f4cf", null ], [ "compute_v_flux", "structdonelan__flux.html#ad2da09025b821f79782fa580010c4df2", null ], diff --git a/structmoeng__flux-members.html b/structmoeng__flux-members.html index 72d30287f2..be4d03a898 100644 --- a/structmoeng__flux-members.html +++ b/structmoeng__flux-members.html @@ -89,7 +89,7 @@

                          This is the complete list of members for moeng_flux, including all inherited members.

                          compute_q_flux(const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) constdonelan_fluxinline
                          compute_q_flux(const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) constdonelan_fluxinline
                          compute_t_flux(const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &umm_arr, const amrex::Array4< const amrex::Real > &tm_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &t_surf_arr, const amrex::Array4< amrex::Real > &dest_arr) constdonelan_fluxinline
                          compute_u_flux(const int &i, const int &j, const int &k, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &velx_arr, const amrex::Array4< const amrex::Real > &vely_arr, const amrex::Array4< const amrex::Real > &umm_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) constdonelan_fluxinline
                          compute_v_flux(const int &i, const int &j, const int &k, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &velx_arr, const amrex::Array4< const amrex::Real > &vely_arr, const amrex::Array4< const amrex::Real > &umm_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) constdonelan_fluxinline
                           donelan_flux (int l_zlo)
                           
                          AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_q_flux (const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) const
                           
                          AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_q_flux (const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) const
                           
                          AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_t_flux (const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &umm_arr, const amrex::Array4< const amrex::Real > &tm_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &t_surf_arr, const amrex::Array4< amrex::Real > &dest_arr) const
                           
                          AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_u_flux (const int &i, const int &j, const int &k, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &velx_arr, const amrex::Array4< const amrex::Real > &vely_arr, const amrex::Array4< const amrex::Real > &umm_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) const
                          const amrex::Real & , dz1,
                          - + diff --git a/structmoeng__flux.html b/structmoeng__flux.html index 97a1989393..5c94de665e 100644 --- a/structmoeng__flux.html +++ b/structmoeng__flux.html @@ -107,8 +107,8 @@ Public Member Functions - - + + @@ -152,13 +152,13 @@

                          828  : zlo(l_zlo) {}
                          -
                          int zlo
                          Definition: MOSTStress.H:1106
                          +
                          int zlo
                          Definition: MOSTStress.H:1111

                          Member Function Documentation

                          - -

                          ◆ compute_q_flux()

                          + +

                          ◆ compute_q_flux()

                          @@ -206,7 +206,7 @@

                          - + @@ -302,25 +302,30 @@

                          865  amrex::Real moflux = 0.0;
                          866  amrex::Real deltaz = dz * (zlo - k);
                          867 
                          -
                          868  if (exp_most) amrex::Abort("Explicit MOST stress not implemented for Moeng moisture flux");
                          -
                          869 
                          -
                          870  int ie, je;
                          -
                          871  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
                          -
                          872  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
                          -
                          873  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
                          -
                          874  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
                          -
                          875  eta = eta_arr(ie,je,zlo,EddyDiff::Q_v); // == rho * alpha [kg/m^3 * m^2/s]
                          -
                          876  eta = amrex::max(eta,eta_eps);
                          -
                          877  dest_arr(i,j,k,icomp+n) = rho*(qv - moflux*rho/eta*deltaz);
                          -
                          878 
                          -
                          879  return moflux;
                          -
                          880  }
                          +
                          868  if (exp_most) {
                          +
                          869  // surface gradient equal to gradient at first zface
                          +
                          870  amrex::Real qvgrad = ( cons_arr(ic,jc,zlo+1,RhoQ1_comp)/cons_arr(ic,jc,zlo+1,Rho_comp)
                          +
                          871  - cons_arr(ic,jc,zlo ,RhoQ1_comp)/cons_arr(ic,jc,zlo ,Rho_comp)) / (0.5*(dz+dz1));
                          +
                          872  dest_arr(i,j,k,icomp+n) = cons_arr(ic,jc,zlo,RhoQ1_comp) - rho*qvgrad * deltaz;
                          +
                          873  } else {
                          +
                          874  int ie, je;
                          +
                          875  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
                          +
                          876  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
                          +
                          877  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
                          +
                          878  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
                          +
                          879  eta = eta_arr(ie,je,zlo,EddyDiff::Q_v); // == rho * alpha [kg/m^3 * m^2/s]
                          +
                          880  eta = amrex::max(eta,eta_eps);
                          +
                          881  dest_arr(i,j,k,icomp+n) = rho*(qv - moflux*rho/eta*deltaz);
                          +
                          882  }
                          +
                          883 
                          +
                          884  return moflux;
                          +
                          885  }
                          #define Rho_comp
                          Definition: IndexDefines.H:12
                          #define RhoQ1_comp
                          Definition: IndexDefines.H:17
                          @ Q_v
                          Definition: IndexDefines.H:132
                          @ rho
                          Definition: Kessler.H:30
                          @ qv
                          Definition: Kessler.H:36
                          -
                          const amrex::Real eta_eps
                          Definition: MOSTStress.H:1108
                          +
                          const amrex::Real eta_eps
                          Definition: MOSTStress.H:1113
                          @@ -453,67 +458,67 @@

                          -
                          903  {
                          -
                          904  amrex::Real velx, vely, rho, theta, eta;
                          -
                          905  int ix, jx, iy, jy, ic, jc;
                          -
                          906 
                          -
                          907  ix = i < lbound(velx_arr).x ? lbound(velx_arr).x : i;
                          -
                          908  jx = j < lbound(velx_arr).y ? lbound(velx_arr).y : j;
                          -
                          909  ix = ix > ubound(velx_arr).x-1 ? ubound(velx_arr).x-1 : ix;
                          -
                          910  jx = jx > ubound(velx_arr).y ? ubound(velx_arr).y : jx;
                          +
                          908  {
                          +
                          909  amrex::Real velx, vely, rho, theta, eta;
                          +
                          910  int ix, jx, iy, jy, ic, jc;
                          911 
                          -
                          912  iy = i < lbound(vely_arr).x ? lbound(vely_arr).x : i;
                          -
                          913  jy = j < lbound(vely_arr).y ? lbound(vely_arr).y : j;
                          -
                          914  iy = iy > ubound(vely_arr).x ? ubound(vely_arr).x : iy;
                          -
                          915  jy = jy > ubound(vely_arr).y-1 ? ubound(vely_arr).y-1 : jy;
                          +
                          912  ix = i < lbound(velx_arr).x ? lbound(velx_arr).x : i;
                          +
                          913  jx = j < lbound(velx_arr).y ? lbound(velx_arr).y : j;
                          +
                          914  ix = ix > ubound(velx_arr).x-1 ? ubound(velx_arr).x-1 : ix;
                          +
                          915  jx = jx > ubound(velx_arr).y ? ubound(velx_arr).y : jx;
                          916 
                          -
                          917  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
                          -
                          918  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
                          -
                          919  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
                          -
                          920  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
                          +
                          917  iy = i < lbound(vely_arr).x ? lbound(vely_arr).x : i;
                          +
                          918  jy = j < lbound(vely_arr).y ? lbound(vely_arr).y : j;
                          +
                          919  iy = iy > ubound(vely_arr).x ? ubound(vely_arr).x : iy;
                          +
                          920  jy = jy > ubound(vely_arr).y-1 ? ubound(vely_arr).y-1 : jy;
                          921 
                          -
                          922  velx = 0.5 *( velx_arr(ix,jx,zlo) + velx_arr(ix+1,jx ,zlo) );
                          -
                          923  vely = 0.5 *( vely_arr(iy,jy,zlo) + vely_arr(iy ,jy+1,zlo) );
                          -
                          924  rho = cons_arr(ic,jc,zlo,Rho_comp);
                          -
                          925  theta = cons_arr(ic,jc,zlo,RhoTheta_comp) / rho;
                          +
                          922  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
                          +
                          923  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
                          +
                          924  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
                          +
                          925  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
                          926 
                          -
                          927  amrex::Real theta_mean = tm_arr(ic,jc,zlo);
                          -
                          928  amrex::Real wsp_mean = umm_arr(ic,jc,zlo);
                          -
                          929  amrex::Real ustar = u_star_arr(ic,jc,zlo);
                          -
                          930  amrex::Real tstar = t_star_arr(ic,jc,zlo);
                          -
                          931  amrex::Real theta_surf = t_surf_arr(ic,jc,zlo);
                          -
                          932 
                          -
                          933  amrex::Real wsp = sqrt(velx*velx+vely*vely);
                          -
                          934  amrex::Real num1 = wsp * (theta_mean-theta_surf);
                          -
                          935  amrex::Real num2 = wsp_mean * (theta-theta_mean);
                          -
                          936  amrex::Real moflux = (std::abs(tstar) > eps) ?
                          -
                          937  -tstar*ustar*(num1+num2)/((theta_mean-theta_surf)*wsp_mean) : 0.0;
                          -
                          938  amrex::Real deltaz = dz * (zlo - k);
                          -
                          939 
                          -
                          940  if (exp_most) {
                          -
                          941  // surface gradient equal to gradient at first zface
                          -
                          942  amrex::Real thetagrad = (cons_arr(ic,jc,zlo+1,RhoTheta_comp) - cons_arr(ic,jc,zlo,RhoTheta_comp)) / (0.5*(dz+dz1));
                          -
                          943  dest_arr(i,j,k,icomp+n) = cons_arr(ic,jc,zlo,RhoTheta_comp) - thetagrad * deltaz;
                          -
                          944  } else {
                          -
                          945  int ie, je;
                          -
                          946  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
                          -
                          947  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
                          -
                          948  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
                          -
                          949  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
                          -
                          950  eta = eta_arr(ie,je,zlo,EddyDiff::Theta_v); // == rho * alpha [kg/m^3 * m^2/s]
                          -
                          951  eta = amrex::max(eta,eta_eps);
                          -
                          952  // Note: Kh = eta/rho
                          -
                          953  // hfx = -Kh dT/dz ==> +ve hfx corresponds to heating from the surface
                          -
                          954  // Extrapolate from klo to ghost cell a distance of -deltaz; negative signs cancel
                          -
                          955  dest_arr(i,j,k,icomp+n) = rho*(theta + moflux*rho/eta*deltaz);
                          -
                          956  }
                          -
                          957 
                          -
                          958  return moflux;
                          -
                          959  }
                          +
                          927  velx = 0.5 *( velx_arr(ix,jx,zlo) + velx_arr(ix+1,jx ,zlo) );
                          +
                          928  vely = 0.5 *( vely_arr(iy,jy,zlo) + vely_arr(iy ,jy+1,zlo) );
                          +
                          929  rho = cons_arr(ic,jc,zlo,Rho_comp);
                          +
                          930  theta = cons_arr(ic,jc,zlo,RhoTheta_comp) / rho;
                          +
                          931 
                          +
                          932  amrex::Real theta_mean = tm_arr(ic,jc,zlo);
                          +
                          933  amrex::Real wsp_mean = umm_arr(ic,jc,zlo);
                          +
                          934  amrex::Real ustar = u_star_arr(ic,jc,zlo);
                          +
                          935  amrex::Real tstar = t_star_arr(ic,jc,zlo);
                          +
                          936  amrex::Real theta_surf = t_surf_arr(ic,jc,zlo);
                          +
                          937 
                          +
                          938  amrex::Real wsp = sqrt(velx*velx+vely*vely);
                          +
                          939  amrex::Real num1 = wsp * (theta_mean-theta_surf);
                          +
                          940  amrex::Real num2 = wsp_mean * (theta-theta_mean);
                          +
                          941  amrex::Real moflux = (std::abs(tstar) > eps) ?
                          +
                          942  -tstar*ustar*(num1+num2)/((theta_mean-theta_surf)*wsp_mean) : 0.0;
                          +
                          943  amrex::Real deltaz = dz * (zlo - k);
                          +
                          944 
                          +
                          945  if (exp_most) {
                          +
                          946  // surface gradient equal to gradient at first zface
                          +
                          947  amrex::Real thetagrad = (cons_arr(ic,jc,zlo+1,RhoTheta_comp) - cons_arr(ic,jc,zlo,RhoTheta_comp)) / (0.5*(dz+dz1));
                          +
                          948  dest_arr(i,j,k,icomp+n) = cons_arr(ic,jc,zlo,RhoTheta_comp) - thetagrad * deltaz;
                          +
                          949  } else {
                          +
                          950  int ie, je;
                          +
                          951  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
                          +
                          952  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
                          +
                          953  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
                          +
                          954  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
                          +
                          955  eta = eta_arr(ie,je,zlo,EddyDiff::Theta_v); // == rho * alpha [kg/m^3 * m^2/s]
                          +
                          956  eta = amrex::max(eta,eta_eps);
                          +
                          957  // Note: Kh = eta/rho
                          +
                          958  // hfx = -Kh dT/dz ==> +ve hfx corresponds to heating from the surface
                          +
                          959  // Extrapolate from klo to ghost cell a distance of -deltaz; negative signs cancel
                          +
                          960  dest_arr(i,j,k,icomp+n) = rho*(theta + moflux*rho/eta*deltaz);
                          +
                          961  }
                          +
                          962 
                          +
                          963  return moflux;
                          +
                          964  }
                          #define RhoTheta_comp
                          Definition: IndexDefines.H:13
                          @ Theta_v
                          Definition: IndexDefines.H:128
                          @ theta
                          Definition: MM5.H:20
                          -
                          const amrex::Real eps
                          Definition: MOSTStress.H:1107
                          +
                          const amrex::Real eps
                          Definition: MOSTStress.H:1112
                          @@ -628,59 +633,59 @@

                          -
                          979  {
                          -
                          980  amrex::Real velx, vely, rho, eta;
                          -
                          981  int jy, ic, jc;
                          -
                          982 
                          -
                          983  int iylo = i <= lbound(vely_arr).x ? lbound(vely_arr).x : i-1;
                          -
                          984  int iyhi = i > ubound(vely_arr).x ? ubound(vely_arr).x : i;
                          -
                          985 
                          -
                          986  jy = j < lbound(vely_arr).y ? lbound(vely_arr).y : j;
                          -
                          987  jy = jy > ubound(vely_arr).y-1 ? ubound(vely_arr).y-1 : jy;
                          -
                          988 
                          -
                          989  ic = i < lbound(cons_arr).x+1 ? lbound(cons_arr).x+1 : i;
                          -
                          990  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
                          -
                          991  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
                          -
                          992  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
                          +
                          984  {
                          +
                          985  amrex::Real velx, vely, rho, eta;
                          +
                          986  int jy, ic, jc;
                          +
                          987 
                          +
                          988  int iylo = i <= lbound(vely_arr).x ? lbound(vely_arr).x : i-1;
                          +
                          989  int iyhi = i > ubound(vely_arr).x ? ubound(vely_arr).x : i;
                          +
                          990 
                          +
                          991  jy = j < lbound(vely_arr).y ? lbound(vely_arr).y : j;
                          +
                          992  jy = jy > ubound(vely_arr).y-1 ? ubound(vely_arr).y-1 : jy;
                          993 
                          -
                          994  velx = velx_arr(i,j,zlo);
                          -
                          995  vely = 0.25*( vely_arr(iyhi,jy,zlo)+vely_arr(iyhi,jy+1,zlo)
                          -
                          996  + vely_arr(iylo,jy,zlo)+vely_arr(iylo,jy+1,zlo) );
                          -
                          997  rho = 0.5 *( cons_arr(ic-1,jc,zlo,Rho_comp)
                          -
                          998  + cons_arr(ic ,jc,zlo,Rho_comp) );
                          -
                          999 
                          -
                          1000  amrex::Real umean = um_arr(i,j,zlo);
                          -
                          1001  amrex::Real wsp_mean = 0.5 * ( umm_arr(ic-1,jc,zlo) + umm_arr(ic,jc,zlo) );
                          -
                          1002  amrex::Real ustar = 0.5 * ( u_star_arr(ic-1,jc,zlo) + u_star_arr(ic,jc,zlo) );
                          -
                          1003 
                          -
                          1004  // Note: The surface mean shear stress is decomposed into tau_xz by
                          -
                          1005  // multiplying the modeled shear stress (rho*ustar^2) with
                          -
                          1006  // a factor of umean/wsp_mean for directionality; this factor
                          -
                          1007  // modifies the denominator from what is in Moeng 1984.
                          -
                          1008  amrex::Real wsp = sqrt(velx*velx+vely*vely);
                          -
                          1009  amrex::Real num1 = wsp * umean;
                          -
                          1010  amrex::Real num2 = wsp_mean * (velx-umean);
                          -
                          1011  amrex::Real stressx = rho*ustar*ustar * (num1+num2)/(wsp_mean*wsp_mean);
                          -
                          1012  amrex::Real deltaz = dz * (zlo - k);
                          -
                          1013 
                          -
                          1014  if (exp_most) {
                          -
                          1015  // surface gradient equal to gradient at first zface
                          -
                          1016  amrex::Real ugrad = (velx_arr(i,j,zlo+1) - velx) / (0.5*(dz+dz1));
                          -
                          1017  dest_arr(i,j,k,icomp) = velx - ugrad * deltaz;
                          -
                          1018  } else {
                          -
                          1019  int ie, je;
                          -
                          1020  ie = i < lbound(eta_arr).x+1 ? lbound(eta_arr).x+1 : i;
                          -
                          1021  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
                          -
                          1022  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
                          -
                          1023  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
                          -
                          1024  eta = 0.5 *( eta_arr(ie-1,je,zlo,EddyDiff::Mom_v)
                          -
                          1025  + eta_arr(ie ,je,zlo,EddyDiff::Mom_v) );
                          -
                          1026  eta = amrex::max(eta,eta_eps);
                          -
                          1027  dest_arr(i,j,k,icomp) = dest_arr(i,j,zlo,icomp) - stressx/eta*deltaz;
                          -
                          1028  }
                          -
                          1029 
                          -
                          1030  return stressx;
                          -
                          1031  }
                          +
                          994  ic = i < lbound(cons_arr).x+1 ? lbound(cons_arr).x+1 : i;
                          +
                          995  jc = j < lbound(cons_arr).y ? lbound(cons_arr).y : j;
                          +
                          996  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
                          +
                          997  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
                          +
                          998 
                          +
                          999  velx = velx_arr(i,j,zlo);
                          +
                          1000  vely = 0.25*( vely_arr(iyhi,jy,zlo)+vely_arr(iyhi,jy+1,zlo)
                          +
                          1001  + vely_arr(iylo,jy,zlo)+vely_arr(iylo,jy+1,zlo) );
                          +
                          1002  rho = 0.5 *( cons_arr(ic-1,jc,zlo,Rho_comp)
                          +
                          1003  + cons_arr(ic ,jc,zlo,Rho_comp) );
                          +
                          1004 
                          +
                          1005  amrex::Real umean = um_arr(i,j,zlo);
                          +
                          1006  amrex::Real wsp_mean = 0.5 * ( umm_arr(ic-1,jc,zlo) + umm_arr(ic,jc,zlo) );
                          +
                          1007  amrex::Real ustar = 0.5 * ( u_star_arr(ic-1,jc,zlo) + u_star_arr(ic,jc,zlo) );
                          +
                          1008 
                          +
                          1009  // Note: The surface mean shear stress is decomposed into tau_xz by
                          +
                          1010  // multiplying the modeled shear stress (rho*ustar^2) with
                          +
                          1011  // a factor of umean/wsp_mean for directionality; this factor
                          +
                          1012  // modifies the denominator from what is in Moeng 1984.
                          +
                          1013  amrex::Real wsp = sqrt(velx*velx+vely*vely);
                          +
                          1014  amrex::Real num1 = wsp * umean;
                          +
                          1015  amrex::Real num2 = wsp_mean * (velx-umean);
                          +
                          1016  amrex::Real stressx = rho*ustar*ustar * (num1+num2)/(wsp_mean*wsp_mean);
                          +
                          1017  amrex::Real deltaz = dz * (zlo - k);
                          +
                          1018 
                          +
                          1019  if (exp_most) {
                          +
                          1020  // surface gradient equal to gradient at first zface
                          +
                          1021  amrex::Real ugrad = (velx_arr(i,j,zlo+1) - velx) / (0.5*(dz+dz1));
                          +
                          1022  dest_arr(i,j,k,icomp) = velx - ugrad * deltaz;
                          +
                          1023  } else {
                          +
                          1024  int ie, je;
                          +
                          1025  ie = i < lbound(eta_arr).x+1 ? lbound(eta_arr).x+1 : i;
                          +
                          1026  je = j < lbound(eta_arr).y ? lbound(eta_arr).y : j;
                          +
                          1027  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
                          +
                          1028  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
                          +
                          1029  eta = 0.5 *( eta_arr(ie-1,je,zlo,EddyDiff::Mom_v)
                          +
                          1030  + eta_arr(ie ,je,zlo,EddyDiff::Mom_v) );
                          +
                          1031  eta = amrex::max(eta,eta_eps);
                          +
                          1032  dest_arr(i,j,k,icomp) = dest_arr(i,j,zlo,icomp) - stressx/eta*deltaz;
                          +
                          1033  }
                          +
                          1034 
                          +
                          1035  return stressx;
                          +
                          1036  }
                          @ Mom_v
                          Definition: IndexDefines.H:127
                          @@ -796,59 +801,59 @@

                          -
                          1051  {
                          -
                          1052  amrex::Real velx, vely, rho, eta;
                          -
                          1053  int ix, ic, jc;
                          -
                          1054 
                          -
                          1055  ix = i < lbound(velx_arr).x ? lbound(velx_arr).x : i;
                          -
                          1056  ix = ix > ubound(velx_arr).x ? ubound(velx_arr).x : ix;
                          -
                          1057 
                          -
                          1058  int jxlo = j <= lbound(velx_arr).y ? lbound(velx_arr).y : j-1;
                          -
                          1059  int jxhi = j > ubound(velx_arr).y ? ubound(velx_arr).y : j;
                          -
                          1060 
                          -
                          1061  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
                          -
                          1062  jc = j < lbound(cons_arr).y+1 ? lbound(cons_arr).y+1 : j;
                          -
                          1063  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
                          -
                          1064  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
                          +
                          1056  {
                          +
                          1057  amrex::Real velx, vely, rho, eta;
                          +
                          1058  int ix, ic, jc;
                          +
                          1059 
                          +
                          1060  ix = i < lbound(velx_arr).x ? lbound(velx_arr).x : i;
                          +
                          1061  ix = ix > ubound(velx_arr).x ? ubound(velx_arr).x : ix;
                          +
                          1062 
                          +
                          1063  int jxlo = j <= lbound(velx_arr).y ? lbound(velx_arr).y : j-1;
                          +
                          1064  int jxhi = j > ubound(velx_arr).y ? ubound(velx_arr).y : j;
                          1065 
                          -
                          1066  velx = 0.25*( velx_arr(ix,jxhi,zlo)+velx_arr(ix+1,jxhi,zlo)
                          -
                          1067  + velx_arr(ix,jxlo,zlo)+velx_arr(ix+1,jxlo,zlo) );
                          -
                          1068  vely = vely_arr(i,j,zlo);
                          -
                          1069  rho = 0.5*( cons_arr(ic,jc-1,zlo,Rho_comp)
                          -
                          1070  + cons_arr(ic,jc ,zlo,Rho_comp) );
                          -
                          1071 
                          -
                          1072  amrex::Real vmean = vm_arr(i,j,zlo);
                          -
                          1073  amrex::Real wsp_mean = 0.5 * ( umm_arr(ic,jc-1,zlo) + umm_arr(ic,jc,zlo) );
                          -
                          1074  amrex::Real ustar = 0.5 * ( u_star_arr(ic,jc-1,zlo) + u_star_arr(ic,jc,zlo) );
                          -
                          1075 
                          -
                          1076  // Note: The surface mean shear stress is decomposed into tau_yz by
                          -
                          1077  // multiplying the modeled shear stress (rho*ustar^2) with
                          -
                          1078  // a factor of vmean/wsp_mean for directionality; this factor
                          -
                          1079  // modifies the denominator from what is in Moeng 1984.
                          -
                          1080  amrex::Real wsp = sqrt(velx*velx+vely*vely);
                          -
                          1081  amrex::Real num1 = wsp * vmean;
                          -
                          1082  amrex::Real num2 = wsp_mean * (vely-vmean);
                          -
                          1083  amrex::Real stressy = rho*ustar*ustar * (num1+num2)/(wsp_mean*wsp_mean);
                          -
                          1084  amrex::Real deltaz = dz * (zlo - k);
                          -
                          1085 
                          -
                          1086  if (exp_most) {
                          -
                          1087  // surface gradient equal to gradient at first zface
                          -
                          1088  amrex::Real vgrad = (vely_arr(i,j,zlo+1) - vely) / (0.5*(dz+dz1));
                          -
                          1089  dest_arr(i,j,k,icomp) = vely - vgrad * deltaz;
                          -
                          1090  } else {
                          -
                          1091  int ie, je;
                          -
                          1092  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
                          -
                          1093  je = j < lbound(eta_arr).y+1 ? lbound(eta_arr).y+1 : j;
                          -
                          1094  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
                          -
                          1095  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
                          -
                          1096  eta = 0.5*( eta_arr(ie,je-1,zlo,EddyDiff::Mom_v)
                          -
                          1097  + eta_arr(ie,je ,zlo,EddyDiff::Mom_v) );
                          -
                          1098  eta = amrex::max(eta,eta_eps);
                          -
                          1099  dest_arr(i,j,k,icomp) = dest_arr(i,j,zlo,icomp) - stressy/eta*deltaz;
                          -
                          1100  }
                          -
                          1101 
                          -
                          1102  return stressy;
                          -
                          1103  }
                          +
                          1066  ic = i < lbound(cons_arr).x ? lbound(cons_arr).x : i;
                          +
                          1067  jc = j < lbound(cons_arr).y+1 ? lbound(cons_arr).y+1 : j;
                          +
                          1068  ic = ic > ubound(cons_arr).x ? ubound(cons_arr).x : ic;
                          +
                          1069  jc = jc > ubound(cons_arr).y ? ubound(cons_arr).y : jc;
                          +
                          1070 
                          +
                          1071  velx = 0.25*( velx_arr(ix,jxhi,zlo)+velx_arr(ix+1,jxhi,zlo)
                          +
                          1072  + velx_arr(ix,jxlo,zlo)+velx_arr(ix+1,jxlo,zlo) );
                          +
                          1073  vely = vely_arr(i,j,zlo);
                          +
                          1074  rho = 0.5*( cons_arr(ic,jc-1,zlo,Rho_comp)
                          +
                          1075  + cons_arr(ic,jc ,zlo,Rho_comp) );
                          +
                          1076 
                          +
                          1077  amrex::Real vmean = vm_arr(i,j,zlo);
                          +
                          1078  amrex::Real wsp_mean = 0.5 * ( umm_arr(ic,jc-1,zlo) + umm_arr(ic,jc,zlo) );
                          +
                          1079  amrex::Real ustar = 0.5 * ( u_star_arr(ic,jc-1,zlo) + u_star_arr(ic,jc,zlo) );
                          +
                          1080 
                          +
                          1081  // Note: The surface mean shear stress is decomposed into tau_yz by
                          +
                          1082  // multiplying the modeled shear stress (rho*ustar^2) with
                          +
                          1083  // a factor of vmean/wsp_mean for directionality; this factor
                          +
                          1084  // modifies the denominator from what is in Moeng 1984.
                          +
                          1085  amrex::Real wsp = sqrt(velx*velx+vely*vely);
                          +
                          1086  amrex::Real num1 = wsp * vmean;
                          +
                          1087  amrex::Real num2 = wsp_mean * (vely-vmean);
                          +
                          1088  amrex::Real stressy = rho*ustar*ustar * (num1+num2)/(wsp_mean*wsp_mean);
                          +
                          1089  amrex::Real deltaz = dz * (zlo - k);
                          +
                          1090 
                          +
                          1091  if (exp_most) {
                          +
                          1092  // surface gradient equal to gradient at first zface
                          +
                          1093  amrex::Real vgrad = (vely_arr(i,j,zlo+1) - vely) / (0.5*(dz+dz1));
                          +
                          1094  dest_arr(i,j,k,icomp) = vely - vgrad * deltaz;
                          +
                          1095  } else {
                          +
                          1096  int ie, je;
                          +
                          1097  ie = i < lbound(eta_arr).x ? lbound(eta_arr).x : i;
                          +
                          1098  je = j < lbound(eta_arr).y+1 ? lbound(eta_arr).y+1 : j;
                          +
                          1099  ie = ie > ubound(eta_arr).x ? ubound(eta_arr).x : ie;
                          +
                          1100  je = je > ubound(eta_arr).y ? ubound(eta_arr).y : je;
                          +
                          1101  eta = 0.5*( eta_arr(ie,je-1,zlo,EddyDiff::Mom_v)
                          +
                          1102  + eta_arr(ie,je ,zlo,EddyDiff::Mom_v) );
                          +
                          1103  eta = amrex::max(eta,eta_eps);
                          +
                          1104  dest_arr(i,j,k,icomp) = dest_arr(i,j,zlo,icomp) - stressy/eta*deltaz;
                          +
                          1105  }
                          +
                          1106 
                          +
                          1107  return stressy;
                          +
                          1108  }
                          @@ -897,7 +902,7 @@

                          -

                          Referenced by compute_q_flux(), compute_t_flux(), compute_u_flux(), and compute_v_flux().

                          +

                          Referenced by compute_q_flux(), compute_t_flux(), compute_u_flux(), and compute_v_flux().

                          @@ -921,7 +926,7 @@

                          -

                          Referenced by compute_q_flux(), compute_t_flux(), compute_u_flux(), and compute_v_flux().

                          +

                          Referenced by compute_q_flux(), compute_t_flux(), compute_u_flux(), and compute_v_flux().

                          diff --git a/structmoeng__flux.js b/structmoeng__flux.js index f602ae557a..47d6c1e1aa 100644 --- a/structmoeng__flux.js +++ b/structmoeng__flux.js @@ -1,7 +1,7 @@ var structmoeng__flux = [ [ "moeng_flux", "structmoeng__flux.html#a2843a181e875e6599b04964c28117900", null ], - [ "compute_q_flux", "structmoeng__flux.html#aee217bd58d625b3fb9e80a9fc4e9189f", null ], + [ "compute_q_flux", "structmoeng__flux.html#a5d40e64bd085af2f4c63cfa1e9e20aa6", null ], [ "compute_t_flux", "structmoeng__flux.html#a946d89f0b1c8287c83bea9ff628bdb1e", null ], [ "compute_u_flux", "structmoeng__flux.html#a2451f21fea8f87cec2e5f626c36489cb", null ], [ "compute_v_flux", "structmoeng__flux.html#a5ec0786b043f57c8c41edfd677dde8c9", null ],

                          compute_q_flux(const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) constmoeng_fluxinline
                          compute_q_flux(const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) constmoeng_fluxinline
                          compute_t_flux(const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &velx_arr, const amrex::Array4< const amrex::Real > &vely_arr, const amrex::Array4< const amrex::Real > &umm_arr, const amrex::Array4< const amrex::Real > &tm_arr, const amrex::Array4< const amrex::Real > &u_star_arr, const amrex::Array4< const amrex::Real > &t_star_arr, const amrex::Array4< const amrex::Real > &t_surf_arr, const amrex::Array4< amrex::Real > &dest_arr) constmoeng_fluxinline
                          compute_u_flux(const int &i, const int &j, const int &k, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &velx_arr, const amrex::Array4< const amrex::Real > &vely_arr, const amrex::Array4< const amrex::Real > &umm_arr, const amrex::Array4< const amrex::Real > &um_arr, const amrex::Array4< const amrex::Real > &u_star_arr, const amrex::Array4< amrex::Real > &dest_arr) constmoeng_fluxinline
                          compute_v_flux(const int &i, const int &j, const int &k, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &velx_arr, const amrex::Array4< const amrex::Real > &vely_arr, const amrex::Array4< const amrex::Real > &umm_arr, const amrex::Array4< const amrex::Real > &vm_arr, const amrex::Array4< const amrex::Real > &u_star_arr, const amrex::Array4< amrex::Real > &dest_arr) constmoeng_fluxinline
                           moeng_flux (int l_zlo)
                           
                          AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_q_flux (const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) const
                           
                          AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_q_flux (const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< const amrex::Real > &, const amrex::Array4< amrex::Real > &dest_arr) const
                           
                          AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_t_flux (const int &i, const int &j, const int &k, const int &n, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &velx_arr, const amrex::Array4< const amrex::Real > &vely_arr, const amrex::Array4< const amrex::Real > &umm_arr, const amrex::Array4< const amrex::Real > &tm_arr, const amrex::Array4< const amrex::Real > &u_star_arr, const amrex::Array4< const amrex::Real > &t_star_arr, const amrex::Array4< const amrex::Real > &t_surf_arr, const amrex::Array4< amrex::Real > &dest_arr) const
                           
                          AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real compute_u_flux (const int &i, const int &j, const int &k, const int &icomp, const amrex::Real &dz, const amrex::Real &dz1, const bool &exp_most, const amrex::Array4< const amrex::Real > &eta_arr, const amrex::Array4< const amrex::Real > &cons_arr, const amrex::Array4< const amrex::Real > &velx_arr, const amrex::Array4< const amrex::Real > &vely_arr, const amrex::Array4< const amrex::Real > &umm_arr, const amrex::Array4< const amrex::Real > &um_arr, const amrex::Array4< const amrex::Real > &u_star_arr, const amrex::Array4< amrex::Real > &dest_arr) const
                          const amrex::Real & , dz1,