TroglodyteDerivations commited on
Commit
84f3f79
1 Parent(s): 7ad740f

Updated line 145 with: ax2.set_xscale('log', base=10)

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -142,7 +142,7 @@ class MultiLimbCoreModel:
142
  ax2.plot(self.simulation_times, self.inductor_emfs, label='Induced EMF', color='red')
143
  ax2.set_xlabel('Time (s)')
144
  ax2.set_ylabel('EMF')
145
- ax2.set_yscale('log', base=10)
146
  ax2.legend()
147
  ax2.set_title('Induced EMF Over Time (Log-Scale)')
148
  plt.tight_layout()
 
142
  ax2.plot(self.simulation_times, self.inductor_emfs, label='Induced EMF', color='red')
143
  ax2.set_xlabel('Time (s)')
144
  ax2.set_ylabel('EMF')
145
+ ax2.set_xscale('log', base=10)
146
  ax2.legend()
147
  ax2.set_title('Induced EMF Over Time (Log-Scale)')
148
  plt.tight_layout()