Skip to content

Commit 0e0c9b0

Browse files
committed
Update simulation duration in tutorial6.py
1 parent 978d5fd commit 0e0c9b0

7 files changed

+4643
-4705
lines changed

docs/tutorials/ot_plot_tutorial1.svg

+141-141
Loading

docs/tutorials/ot_plot_tutorial2.svg

+339-278
Loading

docs/tutorials/ot_plot_tutorial3.svg

+1,005-1,005
Loading

docs/tutorials/ot_plot_tutorial4.svg

+584-584
Loading

docs/tutorials/ot_plot_tutorial5.svg

+659-659
Loading

docs/tutorials/ot_plot_tutorial6.svg

+1,912-2,035
Loading

tutorials/tutorial6.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
T_inf = 273.15+10
1919

2020
def main():
21-
ot = openterrace.Simulate(t_end=3600*24*30, dt=5)
21+
ot = openterrace.Simulate(t_end=3600*24*14, dt=5)
2222

2323
fluid = ot.create_phase(n=101, type='fluid')
2424
fluid.select_substance_on_the_fly(rho=1000, cp=4200, k=0.6)
@@ -33,7 +33,7 @@ def main():
3333
parameter='T',
3434
position=(slice(None, None, None), -1)
3535
)
36-
fluid.select_output(times=range(0, 3600*24*60+3600*24, 3600*24*2))
36+
fluid.select_output(times=range(0, 60*60*24*15, 3600*24*1))
3737

3838
# Calculate surface area of each node
3939
As = fluid.domain.dx*np.pi*D
@@ -45,7 +45,7 @@ def main():
4545
As[-1] = As[-1]/2 + np.pi*(D/2)**2
4646

4747
# Overall heat transfer coefficient
48-
U = 10
48+
U = 0.05
4949

5050
# Thermal resistance
5151
R = 1/(U*As)

0 commit comments

Comments
 (0)