-
Notifications
You must be signed in to change notification settings - Fork 10
/
alcon.py
executable file
·79 lines (65 loc) · 1.95 KB
/
alcon.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
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
#!/usr/bin/env python
'''This file is the main program of ALCON.'''
# Copyright 2014 Wenjun Deng <[email protected]>
#
# This file is part of ALCON.
#
# ALCON is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# ALCON is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with ALCON. If not, see <http://www.gnu.org/licenses/>.
__version__ = '2014-05-24 13:22:42-04:00'
import sys
import wctimer
import alcon_input
import alcon_eqdata
import alcon_solver
import alcon_output
def main(argv = None):
# Create timer object
wct = wctimer.WCTimer(5)
# Start the timer for total time
wct.start(0)
wct.name(0, 'Total')
# Parse input parameters
wct.name(1, 'Parse input')
wct.start(1)
if argv is None:
argv = sys.argv[1:]
input_ = alcon_input.parse(argv, __version__)
wct.pause(1)
# Load equilibrium data
wct.name(2, 'Load eq. data')
wct.start(2)
eqdata = alcon_eqdata.EqData(input_)
wct.pause(2)
# Prepare output directory
wct.name(4, 'Output')
wct.start(4)
alcon_output.prepare_dir(input_)
wct.pause(4)
# Initialize solver and solve continua
wct.name(3, 'Solver')
wct.start(3)
solver = alcon_solver.Solver(input_, eqdata)
solver.solve()
wct.pause(3)
# Write output data to files
wct.start(4)
alcon_output.write_omegas(solver)
wct.pause(4)
# Stop total timer and print out timer summary
wct.pause(0)
if input_.v >= 1:
wct.print_summary(0)
# End of def main():
if __name__ == '__main__':
main()