- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 Euler 和 Range-Kutta 方法解决 Spring 质量问题并比较绘图。我已经为 Euler 和 Runge-Kutta 编写了函数,但是在调用函数解决我的问题之后,我的绘图似乎没有显示任何数据。请帮我修复情节并检查我的代码是否有任何错误,谢谢
#function Euler
def euler ( y, t, dt, derivative):
y_next = y + derivative(y, t) * dt
return y_next
# function Runge-Kutta
# 2nd order Runge-Kutta method routine
def Runge_Kutta (y, time, dt, derivative):
k0 = dt * derivative (y, time)
k1 = dt * derivative (y + k0, time + dt)
y_next = y + 0.5 * (k0 + k1)
return y_next
这是我要解决的问题
[![""" A spring and mass system. the coefficient of friction \mu is not negligible.generate a position vs. time plot for the motion of the mass, given an initial displacement x = 0.2m , spring constant k = 42 N/m , mass m =0.25 Kg, coefficient of friction \mu = 0.15 and initial velocity v = 0
F = -kx +/-mu mg """
from pylab import *
from Runge_Kutta_routine import Runge_Kutta
from eulerODE import euler
N = 500 #input ("How many number of steps to take?")
x0 = 0.2
v0 = 0.0
tau = 3.0 #input ("What is the total time of the simulation in seconds?")
dt = tau /float ( N-1)
k = 41.0 #input (" what is the spring constant?")
m = 0.25 #input ("what is the mass of the bob?")
gravity = 9.8
mu = 0.15 #input ("what is the coefficient of friction?")
""" we create a Nx2 array for storing the results of our calculations. Each 2- element row will be used for the state of the system at one instant, and each instant is separated by time dt. the first element in each row will denote position, the second would be velocity"""
y = zeros (\[N,2\])
y \[0,0\] = x0
y \[0,1\] = v0
def SpringMass (state, time):
""" we break this second order DE into two first order DE introducing dx/ dt = v & dv/dt = kx/ m +/- mu g....
Note that the direction of the frictional force changes depending on the sign of the velocity, we handle this with an if statement."""
g0 = state\[1\]
if g0 > 0:
g1 = -k/m * state \[0\] - gravity * mu
else:
g1 = -k/m * state \[0\] + gravity * mu
return array (\[g0, g1\])
# Now we do the calculations
# loop only N-1 so that we don;t run into a problem addresssing y\[N+1\] on the last point
for j in range (N-1):
#y \[j+1\] = euler ( y\[j\] , 0, dt, SpringMass)
y \[j+1\] = Runge_Kutta ( y\[j\], 0 , dt, SpringMass)
# Now we plot the result
time = linspace ( 0 , tau, N)
plot ( time, y\[:,0\], 'b-', label ='position')
xlabel('time')
ylabel('position')
show()][1]][1]
最佳答案
看起来你的循环以 for j in range (N-1):
开始计算数组 y
是缩进的,所以 Python 认为这些行是函数 SpringMass
。由于这些行位于 return
语句之后,因此它们永远不会被执行。
要更正此问题,请移动这些行,使 for
行没有缩进,而其他行只有四个空格的缩进。看看是否能解决您的问题。
请注意,您在此处编写的代码仍然无法运行。你在方括号前有多余的反斜杠,你在一个未命名的模块中编写你的 Euler
和 Runge_Kutta
函数,但主代码期望它们在两个不同的模块中,等等。你也有很多坏作风的例子。这些问题可能是您尚未得到任何(其他)答案的原因。帮自己一个忙,在此处发布和 clean up your style 之前清理代码.
关于python - 尝试通过 Euler 和 Runge_Kutta 方法求解二阶 DE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37408700/
我正在尝试将欧拉旋转顺序从现有的 xyz 转换为 zxy。谁能帮我做这件事?谢谢。 编辑:我发现这篇非常有用的文章,认为它可以帮助其他人在同一条道路上 - http://knol.google.com
考虑修改后的欧拉问题 #4——“找出最大回文数,它是 100 到 9999 之间的两个数字的乘积。” rev :: Int -> Int rev x = rev' x 0 rev' :: Int ->
例如,我如何在 R 中输入值 e^2? 最佳答案 R 表达式 exp(1) 代表e,并且 exp(2) 代表e^2。 这是有效的,因为 exp 是以 e 为底的求幂函数。 关于R编程: How do
我正在尝试了解 Euler Tour 算法以及为什么它在树遍历中很受欢迎。但是,我看不出 Euler Tour 和树的预序遍历之间的区别。 假设你有一棵树: A / \ B
我一直在尝试对 Euler #22 问题中的这些名称进行排序。我尝试了很多方法来交换字符串。我每次都有问题。有些是随机的符号;有些是随机的。在其他情况下,我在交换时出现了溢出(?)的名字(就像在尝试交
我想为游戏创建一些 physx,我从小例子开始了解它是如何工作的。在此期间我遇到了一些问题,但我在 90% 内解决了它们。 为了创建我的示例,我研究了一些其他示例并创建了我使用的示例:codeflow
/* The prime factors of 13195 are 5, 7, 13 and 29. What is the largest prime factor of the number 60
我正在研究 Problem 8 of Project Euler我必须从给定的 1000 位数字中找到 13 个连续数字的最大乘积。我将该数字存储在一个文本文件中,然后将其输入到我的源代码中。我的代码
我目前正在尝试解决二体问题,然后我可以升级到更多行星,但它不起作用。它正在输出我不可能的位置。有谁知道是什么原因造成的? 这是我使用的代码: day = 60*60*24 # Constants G
我最近一直在研究毕达哥拉斯三元组和 Euler Bricks并且想知道生成所有这些的最佳方法是什么。 我从更广泛的阅读中知道有 10 个 c n: break
在我当前的 Project Euler problem 5 ,我有一个“有效”的解决方案。它适用于较小的数字(问题中的示例),但不适用于实际问题,因为我在强行使用它,并且程序没有完成。 问题的解释如下
基于标准定义,Eulerian Path是图中的一条路径,它恰好访问每条边一次。 现在,我试图在有向图中找到欧拉路径。我知道欧拉电路的算法。如果一个图有欧拉回路,它就有欧拉路径,这似乎是微不足道的。
我正在研究项目欧拉程序是为了“启蒙”,而不仅仅是解决它们。我已经在 80x80 矩阵上使用动态程序解决了问题 81,但是当我尝试使用统一成本搜索解决它时,我的程序消失在永无止境。我只想知道使用统一成本
我有一个关于 Project Euler 问题和使用循环展开优化的问题。 问题描述:2520是能被1到10的每一个数整除而没有余数的最小数。能被 1 到 20 的所有数字整除的最小正数是多少? 解决方
我正在使用以下行旋转 SCNNode: let rotate = SCNAction.rotateByAngle(CGFloat(M_PI), aroundAxis:SCNVector3Make(0
我想获得更精确的 1/7,但它被截断了。如何在转换有理数时获得更好的精度? >>> str(1.0/7)[:50] '0.142857142857' 最佳答案 Python 有一个用于任意精度计算的内
我正在处理项目 euler 中的问题 401,我在 python 中编写了我的解决方案,但它需要几天时间才能运行,显然我需要加快速度或使用不同的方法。我在 Haskell 中遇到了一个看起来与我的 p
我正在处理 Project Euler 的第四个问题并且遇到了 stackoverflow 异常。我不是在寻求解决问题的帮助,我只是想解释为什么我会收到 stackoverflow 异常。这通常是因为
我已经做了几天 Euler 项目,我不得不承认它很有趣。但是,如果有一些更专注于计算机科学而不是数学的东西,那就太好了。这样的事情对于练习算法和数据结构会很有趣,例如在准备编码面试时。 最佳答案 您可
13195 的质因数是 5、7、13 和 29。 数字 600851475143 的最大质因数是多少? 我自己在Project Euler上解决了这个问题,很慢,后来在某人的github账号上找到了这
我是一名优秀的程序员,十分优秀!