import sympy as smp from matplotlib import pyplot as plt import numpy as nmp from scipy.integrate import solve_ivp p = 1.225 # air density m = 0.003 # mass of the plane a = (9.3/180)*nmp.pi # angle of attack ar = 0.86 # aspect ratio s = 0.017 # wing area g = 9.807 # acceleration of free fall cla = (nmp.pi*ar)/1+nmp.sqrt(1+(ar/2)**2) # lift slope derivative cl = cla*a # lift coefficient e = 0.9 # oswald efficiency factor ε = 1/(nmp.pi*e*ar) # induced darg factor cd = 0.02 + ε*(cl**2) def airplane(t,f): v, γ, h, r = f return [-cd(p*v**2)*s/(2*m)-g*nmp.sin(γ), ((cl*(p*v**2/2))-g*nmp.cos(γ))/v, v*nmp.sin(γ), v*nmp.cos(γ)] solution = solve_ivp(airplane, (0,1000),[3.7,((-11/180)*nmp.pi),2.0,0.0]) print(solution) 哪里有 type error
时间: 2023-12-29 19:05:27 浏览: 190
python调试文件时发生import requests报错.doc
5星 · 资源好评率100%
根据提供的代码,没有明显的类型错误。然而,可能会在以下情况下引发类型错误:
1. 在调用solve_ivp函数时,初始条件的数据类型与函数定义的参数类型不匹配。
2. 在计算cd、cl、ε等变量时,涉及到除法或其他运算,可能导致数值类型错误。
3. 在函数airplane中,返回的列表中的元素数据类型与函数定义的返回类型不匹配。
要确定具体的类型错误位置,可以尝试打印相关变量或添加类型检查语句来调试代码。例如,在函数中添加print语句来输出变量的类型,或使用type函数检查变量的类型。
希望这些提示能帮助你找到类型错误的位置,并解决问题。
阅读全文