-
Notifications
You must be signed in to change notification settings - Fork 0
/
DataAnalysis_RPA.py
executable file
·27 lines (18 loc) · 1.05 KB
/
DataAnalysis_RPA.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
#!/usr/bin/env python3
# ------------------------------------------- User's Input -----------------------------------------
ProjectDirectory = "{PROJECT_DIR}"
#
# Available methods:
#
# "rPT2", "RPA+MBPT3", "MBPT3",
# "RPA", "RPA+ALL_CORRECTIONS", "MP3",
# "JCTC2024", "ph-RPA(3)"
#
Method = "JCTC2024"
SmallBasisXNumber = 3
# --------------------------------------- End of User's Input --------------------------------------
import sys
import os
sys.path.append(os.path.abspath("{ROOT_DIR}"))
import CSV_RPA
CSV_RPA.Make(ProjectDirectory, Method, SmallBasisXNumber)