-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.py
34 lines (30 loc) · 864 Bytes
/
main.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
# -*- coding: utf-8 -*-
"""
Created on Thu Jun 29 11:24:31 2023
@author: chandela
"""
#USE THIS ONE - ayushi
from getNlNodesElems import getNlNodesElem
from getElemCent import getElemCent
from runNonlocalFip import runNonlocalFip
from createAllNlElsetsInRegionParaNConftest import createVolume
from plot import plotNl
from dictionary import thisdict
if __name__=="__main__":
runOnly = thisdict['runOnly']
if runOnly.lower() == 'getnlnodeselem':
getNlNodesElem()
elif runOnly.lower() == 'getelemcent':
getElemCent()
elif runOnly.lower() == 'createvolume':
createVolume()
elif runOnly.lower() == 'plotnl':
plotNl()
elif runOnly.lower() == 'runnonlocalfip':
runNonlocalFip()
else:
getNlNodesElem()
getElemCent()
createVolume()
plotNl()
runNonlocalFip()