Overflow error in Python program

2024/7/8 8:18:37

Please help me to understand why this code doesn't work. I know there is something very stupid wrong. This should be an implementation of the fourth order Runge kutta algorithm to solve Lorentz system of equations. I can't use any function because is an assignment.The errors are:

Warning (from warnings module): File"/Users/giuseppenegro/Desktop/loretnz.py", line 21 fy =x*ro-y-x*zRuntimeWarning: overflow encountered in double_scalars

Warning (from warnings module): File"/Users/giuseppenegro/Desktop/loretnz.py", line 22 fz =x*y-beta*zRuntimeWarning: overflow encountered in double_scalars

Warning (from warnings module): File"/Users/giuseppenegro/Desktop/loretnz.py", line 22 fz =x*y-beta*zRuntimeWarning: invalid value encountered in double_scalars

Warning (from warnings module): File"/Users/giuseppenegro/Desktop/loretnz.py", line 32r+=(k1+2*k2+2*k3+k4)/6 RuntimeWarning: invalid value encountered inadd

from numpy import array,arange,zeros
from pylab import plot,xlim,show
ro=28
beta=8/3
sigma=10
a=0
b=50
r=array([0.0,1.0,0.0],float)N=10
h=(b-a)/N
tpoints=arange(a,b,h)
xpoints=[]
ypoints=[]
zpoints=[]
def f(r,t):x=r[0]y=r[1]z=r[2]fx =sigma*(y-x)fy =x*ro-y-x*zfz =x*y-beta*zreturn array([fx,fy,fz],float)
for t in tpoints:xpoints.append(r[0])ypoints.append(r[1])zpoints.append(r[2])k1=h*f(r,t)k2=h*f(r+0.5*k1,0.5*h+t)k3=h*f(r+0.5*k2+0.5,0.5*h+t)k4=h*f(r+k3,t+h)r+=(k1+2*k2+2*k3+k4)/6
Answer

The Runge-Kutta methods need to advance in small steps, 5 is not a small step. Try setting N to 1000.0 instead (the decimal is to make sure that (b-a)/N != 0).

https://en.xdnf.cn/q/119861.html

Related Q&A

python login 163 mail server

When I use this script to login the 163 mail server,there is something wrong! My python env is python 2.7.8 Please help me!import imaplibdef open_connect(verbose=False):host = imap.163.comport = 993if …

How to get list of keys that share a value with another key within the same dictionary?

I have a dictionary of unique keys where some keys share the same value. For example:D = {ida:{key:1},idb:{key:2},idc:{key:3},idd:{key:3},ide:{key:4},idf:{key:4},idg:{key:4}}I want a list of keys that…

Sqlite3 Error: near question mark: syntax error [duplicate]

This question already has answers here:Parameterized query binding table name as parameter gives error(3 answers)How to use variables in SQL statement in Python?(5 answers)Closed last year.I am trying…

running bs4 scraper needs to be redefined to enrich the dataset - some issues

got a bs4 scraper that works with selenium - see far below: well - it works fine so far: see far below my approach to fetch some data form the given page: clutch.co/il/it-services To enrich the scrap…

Uploading a file in a embed discord.py (not a image)

Im trying to upload a file directly in a embed, I can upload the file but I dont find the way to put it in the embed. What I want is not displaying the file but uploading it so we can download it, is i…

Cannot install psycopg2 on virtualenv

Hi I use manjaro Linux and I tryed to install psycopg2 packge inside virtualenv but it gave errror error: command gcc failed with exit status 1. Then in the console I tryed gcc --version it saidbash: …

how to execute different print function based on the users input

I am a complete beginner to coding and python so It is probably very simple. So my problem is that am learning how to put if and else function based on the users input and i dont know how to connect be…

matplotlib - AttributeError: module numbers has no attribute Integral

I am a newbie to python and i am trying to learn online. I tried importing matplotlib on python 3.6 but i keep getting this error:problem in matplotlib - AttributeError: module numbers has no attribute…

How to extract social information from a given website?

I have a Website URL Like www.example.comI want to collect social information from this website like : facebook url (facebook.com/example ), twitter url ( twitter.com/example ) etc., if available anywh…

Check if string is of nine digits then exit function in python

I have a function in python that returns different output of strings (Text). And I have different parts that I should check for the string and if the string is of nine digits or contains 9 digits then …