just formating

This commit is contained in:
Brantegger Georg
2023-01-26 08:42:13 +01:00
parent 355805241c
commit 07ce4f070d

View File

@@ -231,8 +231,8 @@ class Druckrohrleitung_class:
return self.p0 return self.p0
def timestep_characteristic_method(self): def timestep_characteristic_method(self):
# use the method of characteristics to calculate the pressure and velocities at all nodes except the boundary ones # use the method of characteristics to calculate the pressure and velocities at all nodes except the boundary ones
# they are set with the .set_boundary_conditions_next_timestep() method beforehand # they are set with the .set_boundary_conditions_next_timestep() method beforehand
# constants for cleaner formula # constants for cleaner formula
nn = self.n_seg+1 # number of nodes nn = self.n_seg+1 # number of nodes
@@ -265,8 +265,8 @@ class Druckrohrleitung_class:
self.v_old = self.v.copy() self.v_old = self.v.copy()
def timestep_characteristic_method_vectorized(self): def timestep_characteristic_method_vectorized(self):
# use the method of characteristics to calculate the pressure and velocities at all nodes except the boundary ones # use the method of characteristics to calculate the pressure and velocities at all nodes except the boundary ones
# they are set with the .set_boundary_conditions_next_timestep() method beforehand # they are set with the .set_boundary_conditions_next_timestep() method beforehand
# constants for cleaner formula # constants for cleaner formula
rho = self.density # density of liquid rho = self.density # density of liquid