This commit is contained in:
Oscar Suescun Elizalde 2025-03-26 12:23:29 +01:00
parent f204cdd5bc
commit db1e0817bc
2 changed files with 0 additions and 31 deletions

View File

@ -149,14 +149,6 @@ if __name__ == '__main__':
ax.plot3D(I, fCarga, E, label = material) ax.plot3D(I, fCarga, E, label = material)
if material == 'PLACOND':
datos = {
'E' : E.tolist(),
'I' : I.tolist(),
'f' : fCarga.tolist()
}
with open('resultados_ensayos.json', 'w') as f: json.dump(datos, f, indent=4)
ax.set_xlabel('Corriente [A]') ax.set_xlabel('Corriente [A]')
ax.set_ylabel('Frecuencia [Hz]') ax.set_ylabel('Frecuencia [Hz]')
ax.set_zlabel('Tension [V]') ax.set_zlabel('Tension [V]')

View File

@ -1,23 +0,0 @@
{
"E": [
175.66197827609287,
160.81787128674983,
145.4009250653107,
104.3877062608225,
95.01237852797996
],
"I": [
2.085,
1.87,
1.635,
0.965,
0.79
],
"f": [
138.9,
139.6,
140.6,
144.3,
145.3
]
}