Groundwater Modelling Advice: Difference between revisions
Content deleted Content added
Line 34:
<span style="color:#3776ab">'''if'''</span><span style="color:black"> __name__ == </span><span style="color:green">"__main__"</span><span style="color:black">:</span>
<span style="color:black"> use_us_units = </span><span style="color:#3776ab">False</span>
<span style="color:black"> orifice_coefficent_value = </span><span style="color:#3776ab">0.002 </span><span style="color:#808080"># Orifice coefficient</span>
<span style="color:black"> depth_max_value = </span><span style="color:#3776ab">2.0 </span><span style="color:#808080"># Maximum depth (in meters or feet)</span>
<span style="color:black"> depth_step_value = </span><span style="color:#3776ab">0.02 </span><span style="color:#808080"># Value to increment by (in meters or feet)</span><br>
<span style="color:black"> out_filename = </span><span style="color:green">"orifice_depth_vs_discharge.csv"</span><br>
<span style="color:black"> generate_orifice_depth_vs_discharge(use_us_units, orifice_coefficent_value, depth_max_value, depth_step_value, out_filename)</span>
| |||