I tried to understand the code of aneurysm.py. However, there is one issue which I cannot understand. What is the meaning of "normal_dot_vel": 2.540? The detailed code is below.
I think this code refers to the boundary condition of the outlet region and normal_dot_vel represents the volume flow. Is this correct? However, I cannot understand how the flow rate value of 2.540 is calculated.
If someone has knowledge of this code, please provide information. Thank you for your cooperation.
yes, you are right. The normal_dot_vel represents the volumetric flow rate.
Volumetric flow rate is calculated with inlet area and the mean velocity at the inlet: vfr = inlet_area * mean_inlet_vel
With a velocity magnitude of the parabolic velocity profile at the inlet: inlet_vel = 1.5 you can approximate the mean velocity with: mean_inlet_vel = 0.5 * inlet_vel
The scaled inlet area is: inlet_area = 21.1284 * (0.4**2)
This results in: vfr = 2.54