I have this code which needs to be plotted perfectly. I’m new to python. The error is as mentioned above. Any kind of help would be appreciated.
JavaScript
x
70
70
1
#Variable Initialization
2
#%pylab inline
3
# (a) Curie Temperature for h = 15 W/m^2
4
# (b) Value of h for cure temp = 50 deg C
5
6
import math
7
import numpy
8
from numpy import roots
9
import matplotlib
10
from matplotlib import pyplot
11
Tsurr = 30+273; #[K] - Temperature of surrounding
12
Tf = 20+273; #[K] - Temperature of Fluid Flow
13
e=.5; # Emissivity of Surface
14
a = .8; # Absorptivity of Surface
15
G = 2000; #[W/m^2] - Irradiation falling on surface
16
h=15; #[W/m^2.k] - Thermal Convectivity from plate to air
17
stfncnstt=5.67*math.pow(10,(-8)); # [W/m^2.K^4] - Stefan Boltzmann Constant
18
T=375; #[K] Value initially assumed for trial-error approach
19
#Using Eq 1.3a & 1.7 and trial-and error approach of Newton Raphson
20
#calculations and results
21
while(1>0):
22
f=((a*G)-(h*(T-Tf)+e*stfncnstt*(T*T*T*T - Tsurr*Tsurr*Tsurr*Tsurr)));
23
fd=(-h*T-4*e*stfncnstt*T*T*T);
24
Tn=T-f/fd;
25
if(((a*G)-(h*(Tn-Tf)+e*stfncnstt*(Tn*Tn*Tn*Tn - Tsurr*Tsurr*Tsurr*Tsurr)))<.01):
26
break;
27
T=Tn;
28
29
print '%s %.2f %s' %("n (a) Cure Temperature of Plate =",T-273.,"degCn");
30
#solution (b)
31
Treq=50+273;
32
#def T(h):
33
# t=375;
34
# while(1>0):
35
# f=((a*G)-(h*(t-Tf)+e*stfncnstt*(t*t*t*t - Tsurr*Tsurr*Tsurr*Tsurr)));
36
# fd=(-h*t-4*e*stfncnstt*t*t*t);
37
# Tn=t-f/fd;
38
# if((a*G)-(h*(Tn-Tf)+e*stfncnstt*(Tn*Tn*Tn*Tn - Tsurr*Tsurr*Tsurr*Tsurr))<.01):
39
# break;
40
# tnew=Tn;
41
# return tnew;
42
rot=numpy.zeros(4);
43
rt=0;
44
45
def T(h):
46
coeff = ([-e*stfncnstt, 0,0, -h, a*G+h*Tf+e*stfncnstt*Tsurr*Tsurr*Tsurr*Tsurr]);
47
rot=numpy.roots(coeff);
48
for i in range (0,3):
49
if rot[i]<250 and rot[i]>0:
50
rt=rot[i];
51
return rt;
52
Error at this part. The function is not working.! What can be the error. Please suggest.
53
h = range(0,100)
54
tn=range(0,100)
55
for i in range (0,100):
56
tn[i] = T(i) -273;
57
58
Ti=50+273;
59
hnew=((a*G)-(e*stfncnstt*(Ti*Ti*Ti*Ti - Tsurr*Tsurr*Tsurr*Tsurr)))/(Ti-Tf);
60
61
pyplot.plot(h,tn);
62
pyplot.xlabel("h (W m^2/K)");
63
pyplot.ylabel("T (C)");
64
pyplot.show();
65
print '%s %.2f %s' %("n (b) Air flow must provide a convection of =",hnew," W/m^2.K");
66
#print '%s' %("n The code for the graph requires more than 10 min to run. ")
67
#print '%s' %("n To run it, please remove comments. It is perfectly correct. The reason it takes such a long time")
68
#print '%s' %("n is that it needs to calculate using Newton raphson method at 100 points. Each point itself takes a minute.")
69
#END
70
Advertisement
Answer
it will say
JavaScript
1
2
1
UnboundLocalError: local variable 'rt' referenced before assignment
2
since you have assigned something to rt rt=rot[i]
, rt
is recognized as a local variable then. If you want to make it global, make it global explicitly using global rt
:
JavaScript
1
4
1
def T(h):
2
global rt
3
#do sth....
4
note that even if the assignment is not executed, the intepreter will still see assigned var as local:
JavaScript
1
21
21
1
In [136]: var=2
2
def foo(): :
3
if False: :
4
var=4 :
5
print var :
6
:
7
8
In [137]: foo()
9
---------------------------------------------------------------------------
10
UnboundLocalError Traceback (most recent call last)
11
<ipython-input-137-624891b0d01a> in <module>()
12
----> 1 foo()
13
14
<ipython-input-136-ab29dd655074> in foo()
15
3 if False:
16
4 var=4
17
----> 5 print var
18
6
19
20
UnboundLocalError: local variable 'var' referenced before assignment
21