-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_plots.py
48 lines (36 loc) · 919 Bytes
/
main_plots.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Mon Dec 17 04:15:50 2018
@author: ricktjwong
"""
import matplotlib.pyplot as plt
import modules.plots.microprocessor_ceramic_plots as mcp
import modules.plots.natural_convection_sweep as ncs
import modules.plots.forced_convection_sweep as fcs
import modules.plots.simulated_annealing_analysis as sa
plt.rcParams["font.family"] = "Times New Roman"
plt.rcParams["font.size"] = 14
plt.rcParams['lines.linewidth'] = 2
plt.rcParams.update({'figure.autolayout': True})
plt.rcParams['mathtext.default'] = 'regular'
plt.rcParams['figure.figsize'] = (15, 10)
"""
Question 3:
No Heat Sink
Ceramic-Microprocessor cooling
"""
mcp.plot_figures()
"""
Question 4:
Heat Sink with Natural Convection
"""
ncs.plot_sweeps()
sa.plot_action_costs()
"""
Question 5
Heat Sink with Forced Convection
Estimated total run time is 2 hours
"""
fcs.plot_sweeps()
plt.show()