Skip to content

Commit

Permalink
Update solar.py
Browse files Browse the repository at this point in the history
  • Loading branch information
knc6 authored Sep 27, 2024
1 parent 975af47 commit 2098f5f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion jarvis/analysis/solarefficiency/solar.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@
from scipy.interpolate import interp1d
from numpy import interp
import scipy.constants as constants
from scipy.integrate import simps
try:
from scipy.integrate import simps
except:
from scipy.integrate import simpson as simps
pass
import matplotlib.pyplot as plt


Expand Down

0 comments on commit 2098f5f

Please sign in to comment.