#import streamlit as st #import pandas as pd import numpy as np #import string import matplotlib.pyplot as plt #import time import csv import math plt.style.use('_mpl-gallery-nogrid') #manually importing Class definitions class Particle(object): # change __init__ structure to 3d def __init__(self,xPos,yPos,zPos,temp): self.x = xPos self.y = yPos self.z = zPos self.t = temp self.Sx = 0 self.Sy = 0 self.Sz = 0 def changeTemp(self,newTemp): self.t = newTemp def changeX(self,newX): self.x = newX/changeFactor def changeY(self,newY): self.y = newY def changeZ(self,newZ): self.z = newZ def changeVX(self,newXVel): self.Sx = newXVel def changeVY(self,newYVel): self.Sy = newYVel def changeVZ(self,newZVel): self.Sz = newZVel class Plate(Particle): def __init__(self,xPos,yPos,zPos): self.x = xPos self.y = yPos self.z = zPos self.t = 60 self.Sx = 0 self.Sy = 0 self.Sz = 0 #operates under the assumption of an unmoving plate of constant temperature def changeTemp(self,newTemp): self.t = 60 def changeVX(self,newXVel): self.Sx = 0 def changeVY(self,newYVel): self.Sy = 0 def changeVZ(self,newZVel): self.Sz = 0 basepS = int(input("What is base side length?")) frameNum = int(input("How many files (not including F)?")) h = int(input("How tall is the model (including base)?")) time = float(input("How many seconds per file?")) tempArray = np.array([[None]*h]*frameNum) # will store average temp per layer for all files t=0 num=0 while(numl*math.sqrt(2/3)-.01): tempTot+=T[j] n+=1 j+=1 tempArray[num][l]=tempTot/n l+=1 num+=1 t+=time print(tempArray) i=0 while(i