Ich baue ein Mesh-Gitter für das x-Grid und x-Vektor und auch Zeitraster ein, aber ich habe wieder ein Array für x
(Position), die nur zwischen 0 und 20 liegen sollte und t
(Zeit) wäre von 0 bis 1000, also um eine Wärmeleitungsgleichung zu lösen. Aber jedes Mal, wenn ich für zB möchte, mache ich die Anzahl der Schritte 10, erhalte ich eine Fehlermeldung:IndexError: Index 10 ist außerhalb der Grenzen für Achse 0 mit Größe 10
"Traceback (most recent call last):
File "/home/universe/Desktop/Python/Heat_1.py", line 33, in <module>
x[i] = a + i*h
IndexError: index 10 is out of bounds for axis 0 with size 10"
Hier mein Code:
from math import sin,pi
import numpy
import numpy as np
#Constant variables
N = int(input("Number of intervals in x (<=20):"))
M = int(input("Number of time steps (<=1000):"))
#Some initialised varibles
a = 0.0
b = 1.0
t_min = 0.0
t_max = 0.5
# Array Variables
x = np.linspace(a,b, M)
t = np.linspace(t_min, t_max, M)
#Some scalar variables
n = [] # the number of x-steps
i, s = [], [] # The position and time
# Get the number of x-steps to use
for n in range(0,N):
if n > 0 or n <= N:
continue
# Get the number of time steps to use
for m in range(0,M):
if m > 0 or n <= M:
continue
# Set up x-grid and x-vector
h =(b-a)/n
for i in range(0,N+1):
x[i] = a + i*h
# Set up time-grid
k = (t_max - t_min)/m
for s in range(0, M+1):
t[s] = t_min + k*s
print(x,t)
Arrays sind Null indexiert dh 0-9 –