-
Notifications
You must be signed in to change notification settings - Fork 0
/
bodyHelper.R
106 lines (81 loc) · 2.27 KB
/
bodyHelper.R
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# for iQuaCalc (Lite)
# bodyHelper.R
source('bodyHTML.R')
# body <- dashboardBody(
body <- (
tabItems(
tabItem(tabName = 'home',
homeStuff
),
tabItem(tabName = 'un_ionized_ammonia',
ammoniaStuff
),
tabItem(tabName = "gas_sat",
# h3('Dissolved Gas Calculations'),
gasSatStuff
),
tabItem(tabName = "gas_tgp",
# h3('Dissolved Gas Calculations'),
totalGasPressureStuff
),
tabItem(tabName = "o2_tank_duration",
# h3('Dissolved Gas Calculations'),
o2TankDurationStuff
),
# tabItem(tabName = "gasses",
# # h3('Dissolved Gas Calculations'),
# dissolvedGasStuff
# ),
tabItem(tabName = 'poStoToPpm',
poStoToPpmStuff
),
tabItem(tabName = "tanks",
h2('Calculate Tank Area & Volume'),
# tankStuff,
h2('404: Not yet implemented in this demo')
),
tabItem(tabName = 'scratch_pad',
h2('Experimental: Conversion Scratchpad'),
scratchpadStuff
),
tabItem(tabName = 't_s_alk',
t_s_alk_ConversionStuff
),
tabItem(tabName = 'ammonia_conversion',
ammoniaConversionStuff
),
tabItem(tabName = 'gas_conversion',
gasConversionStuff
),
tabItem(tabName = 'length',
h3('Length Converters'),
lengthConversionStuff
),
tabItem(tabName = 'area',
h3('Area Converters'),
areaConversionStuff
),
tabItem(tabName = 'vol',
h3('Volume Converters'),
volConversionStuff
),
tabItem(tabName = 'flowVolume',
# h3('Flow Volume Conversion'),
flowRateConversionStuff
),
tabItem(tabName = 'hydraulic_load',
hydraulicLoadConversionStuff
),
tabItem(tabName = 'biomass',
biomassConversionStuff
),
tabItem(tabName = 'length_weight',
# h3('Analyze Length-Weight Data'),
lengthWeightStuff
),
tabItem(tabName = 'wq_map',
# h3('Analyze Length-Weight Data'),
wqMapStuff
)
) # ---end tabItems
) # ---- end body