[Solved] Python math.exp function Syntax

[ad_1]

D[case] = (Dref[case]*((50/ t)^ m )) * ( math.exp((20/6)*((1/295) – (1/Temp)))

It seems to be extra parentheses

Try

D[case] = (Dref[case]*((50/ t)^ m )) * math.exp((20/6)*((1/295) – (1/Temp)))

1

[ad_2]

solved Python math.exp function Syntax