-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplot_AtenaVSOpensees_test.py
63 lines (49 loc) · 1.77 KB
/
plot_AtenaVSOpensees_test.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
import numpy as np
import matplotlib.pylab as plt
from matplotlib.backends.backend_pdf import PdfPages
import subprocess
output_filename = 'Atena_Opensees.pdf'
Atena_files = [
'Atena_Result/drift_UnPunched_8story_Dmax_ELF_barBucklingModel.txt',
'Atena_Result/drift_UnPunched_8story_Dmax_MRSA_barBucklingModel.txt',
'Atena_Result/load_UnPunched_8story_Dmax_ELF_barBucklingModel.txt',
'Atena_Result/load_UnPunched_8story_Dmax_MRSA_barBucklingModel.txt',
]
OpenSees_files = [
'Output/nodeDisp_regular.txt',
'Output/node1R_regular.txt',
]
pp = PdfPages(output_filename)
fig = plt.figure()
figure = fig.add_subplot(111)
Atena_ELF_x = np.loadtxt(Atena_files[0])
Atena_ELF_y = np.loadtxt(Atena_files[2])
Atena_MERSA_x = np.loadtxt(Atena_files[1])
Atena_MERSA_y = np.loadtxt(Atena_files[3])
# Atena
plt.plot(Atena_ELF_x, Atena_ELF_y * 2, lw=2, label='Atena ELF')
# OpenSeeS
eff_height = 72 #ft
OpenSees_x = np.loadtxt(OpenSees_files[0])
OpenSees_y = np.loadtxt(OpenSees_files[1])
plt.plot(((OpenSees_x[:, 16] - OpenSees_x[:, 13]) / 13.0 * 5.0 / 12.0 + OpenSees_x[:, 13]) / eff_height / 12 * 100, -OpenSees_y[:, 1] / 1000.0, lw=1, label='Opensees ELF - 0.2 fracture')
plt.xlim(0, 5)
# plt.ylim(-800, 800)
plt.legend(loc=0, shadow=True, numpoints=1)
plt.xlabel("Effective Height Drift [%]")
plt.ylabel("Base Shear [kips]")
plt.minorticks_on()
plt.grid(b=True, which='major', alpha=1)
# plt.grid(b=True, which='minor', alpha=0.2)
plt.tight_layout()
pp.savefig(fig)
plt.legend(loc=0, shadow=True, numpoints=1)
plt.xlabel("Effective Height Drift [%]")
plt.ylabel("Base Shear [kips]")
plt.minorticks_on()
plt.grid(b=True, which='major', alpha=1)
# plt.grid(b=True, which='minor', alpha=0.2)
plt.tight_layout()
pp.savefig(fig)
pp.close()
subprocess.Popen([output_filename], shell=True)