![]() |
Return values for use outside of function - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: Return values for use outside of function (/thread-25833.html) |
Return values for use outside of function - willowman - Apr-13-2020 Hi all, I have written a function which contains a loop which gradually builds a displacement vector. I would like to plot this generated displacement vector against time once the loop has completed the calculation of displacement for all time steps. # Set constants tvector = t # tVector is an array holding the time vector f1vector = 0 f2vector = F2 f3vector = F3 xi = 0.025 omega_n = OmegaC omega_d = OmegaC*((1-0.025**2)**0.5) k = modalK[0,0] delta_t = t[1]-t[0] u_0 = 0 v_0 = 0 n = 0 #Function to calculate displacement from a time and force vector def calculateResponse(tvector, f2vector, f3vector): # Compute constants A1-D1 (captures dynamic characteristics of the system) A = math.e**(-xi*omega_n*delta_t)*((xi/(math.sqrt(1-(xi**2))))*np.sin(omega_d*delta_t)+np.cos(omega_d*delta_t)) B = math.e**(-xi*omega_n*delta_t)*((1/omega_d*np.sin(omega_d*delta_t))) C = (1/k)*(((2*xi)/(omega_n*delta_t)) + math.e**(-xi*omega_n*delta_t)*((((1-2*(xi**2))/(omega_d*delta_t))-(xi/(math.sqrt(1-(xi**2)))))*math.sin(omega_d*delta_t)-(1+((2*xi)/(omega_n*delta_t)))*np.cos(omega_d*delta_t))) D = (1/k)*(1-((2*xi)/(omega_n*delta_t))+math.e**(-xi*omega_n*delta_t)*(((2*(xi**2)-1)/(omega_d*delta_t))*np.sin(omega_d*delta_t)+((2*xi)/(omega_n*delta_t))*np.cos(omega_d*delta_t))) A1 = -math.e**(-xi*omega_n*delta_t)*((omega_n/(math.sqrt(1-(xi**2))))*np.sin(omega_d*delta_t)) B1 = math.e**(-xi*omega_n*delta_t)*(np.cos(omega_d*delta_t)-((xi)/(math.sqrt(1-(xi**2))))*np.sin(omega_d*delta_t)) C1 =(1/k)*(-(1/delta_t)+math.e**(-xi*omega_n*delta_t)*((((omega_n)/(math.sqrt(1-(xi**2))))+((xi)/(delta_t*math.sqrt(1-(xi**2)))))*np.sin(omega_d*delta_t)+(1/delta_t)*np.cos(omega_d*delta_t))) D1 =(1/k)*((1/delta_t)-(math.e**(-xi*omega_n*delta_t)/delta_t)*((xi/(math.sqrt(1-(xi**2))))*np.sin(omega_d*delta_t)+np.cos(omega_d*delta_t))) u_n = u_0 v_n = v_0 uVector = [u_n] vVector = [v_n] print (uVector) for n, timestep in enumerate(tvector): # Extract the force values at the beginning and end of this timestep F_n = f1vector + (0.00313418*f2vector[n]) + (0.00505446*f3vector[n]) #print (n) #print (F_n) if n == (len(tvector)) - 1 : F_n_1 = F_n #print (F_n_1) else: F_n_1 = f1vector + (0.00382305*f2vector[n+1]) + (0.00505446*f3vector[n+1]) #print (F_n_1) u_n_1 = A*u_n+B*v_n+C*F_n+D*F_n_1 v_n_1 = A1*u_n+B1*v_n+C1*F_n+D1*F_n_1 uVector.append(u_n_1) vVector.append(v_n_1) # Update the initial conditions (for use on next iteration of for loop) u_n = u_n_1 v_n = v_n_1 #print (uVector) return (uVector) systemResponse = calculateResponse(tvector, f2vector, f3vector)When I run this code I get this error. I made a quick check that uVector was being created properly within the for loop by printing once the loop was finished by adding the following to the code: # Set constants tvector = t # tVector is an array holding the time vector f1vector = 0 f2vector = F2 f3vector = F3 xi = 0.025 omega_n = OmegaC omega_d = OmegaC*((1-0.025**2)**0.5) k = modalK[0,0] delta_t = t[1]-t[0] u_0 = 0 v_0 = 0 n = 0 #Function to calculate displacement from a time and force vector def calculateResponse(tvector, f2vector, f3vector): # Compute constants A1-D1 (captures dynamic characteristics of the system) A = math.e**(-xi*omega_n*delta_t)*((xi/(math.sqrt(1-(xi**2))))*np.sin(omega_d*delta_t)+np.cos(omega_d*delta_t)) B = math.e**(-xi*omega_n*delta_t)*((1/omega_d*np.sin(omega_d*delta_t))) C = (1/k)*(((2*xi)/(omega_n*delta_t)) + math.e**(-xi*omega_n*delta_t)*((((1-2*(xi**2))/(omega_d*delta_t))-(xi/(math.sqrt(1-(xi**2)))))*math.sin(omega_d*delta_t)-(1+((2*xi)/(omega_n*delta_t)))*np.cos(omega_d*delta_t))) D = (1/k)*(1-((2*xi)/(omega_n*delta_t))+math.e**(-xi*omega_n*delta_t)*(((2*(xi**2)-1)/(omega_d*delta_t))*np.sin(omega_d*delta_t)+((2*xi)/(omega_n*delta_t))*np.cos(omega_d*delta_t))) A1 = -math.e**(-xi*omega_n*delta_t)*((omega_n/(math.sqrt(1-(xi**2))))*np.sin(omega_d*delta_t)) B1 = math.e**(-xi*omega_n*delta_t)*(np.cos(omega_d*delta_t)-((xi)/(math.sqrt(1-(xi**2))))*np.sin(omega_d*delta_t)) C1 =(1/k)*(-(1/delta_t)+math.e**(-xi*omega_n*delta_t)*((((omega_n)/(math.sqrt(1-(xi**2))))+((xi)/(delta_t*math.sqrt(1-(xi**2)))))*np.sin(omega_d*delta_t)+(1/delta_t)*np.cos(omega_d*delta_t))) D1 =(1/k)*((1/delta_t)-(math.e**(-xi*omega_n*delta_t)/delta_t)*((xi/(math.sqrt(1-(xi**2))))*np.sin(omega_d*delta_t)+np.cos(omega_d*delta_t))) u_n = u_0 v_n = v_0 uVector = [u_n] vVector = [v_n] print (uVector) for n, timestep in enumerate(tvector): # Extract the force values at the beginning and end of this timestep F_n = f1vector + (0.00313418*f2vector[n]) + (0.00505446*f3vector[n]) #print (n) #print (F_n) if n == (len(tvector)) - 1 : F_n_1 = F_n #print (F_n_1) else: F_n_1 = f1vector + (0.00382305*f2vector[n+1]) + (0.00505446*f3vector[n+1]) #print (F_n_1) u_n_1 = A*u_n+B*v_n+C*F_n+D*F_n_1 v_n_1 = A1*u_n+B1*v_n+C1*F_n+D1*F_n_1 uVector.append(u_n_1) vVector.append(v_n_1) # Update the initial conditions (for use on next iteration of for loop) u_n = u_n_1 v_n = v_n_1 print (uVector) return (uVector) systemResponse = calculateResponse(tvector, f2vector, f3vector)And the output is as expected. I need uVector to be available outside the function in order to plot it.Please any help would be massively appreciated!! RE: Return values for use outside of function - buran - Apr-13-2020 your function returns uVector (no need of the brackets, by the way) and you assign the value returned by the function to systemResponse . You must use that name, not uVector (which is local to function scope only, i.e. it doesn't exists outside the function).By the way, instead of systemResponse you can use uVector , without any problem, if that name is more meaningful, e.g.uVector = calculateResponse(tvector, f2vector, f3vector) |