I want to solve the differential equation using PYTHON.Net in DWSim using odeint
import math
def dehyd (y,z)
.
.
.
k0=value
Ea=value
k=k0math.exp (-Ea/(RT))
.
.
.
return()
Error- math function is not defined
why it is showing as an error
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I want to solve the differential equation using PYTHON.Net in DWSim using odeint
import math
def dehyd (y,z)
.
.
.
k0=value
Ea=value
k=k0math.exp (-Ea/(RT))
.
.
.
return()
Error- math function is not defined
why it is showing as an error