Skip to content

Commit

Permalink
Pipe improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
armancodv committed Jan 8, 2020
1 parent 4ed71cf commit e347670
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Pipe.m
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@

% Reynolds number
function re = calculate_reynolds_number_inner(obj)
re = obj.mass_flow_rate * obj.length / (pi * obj.radius_inner^2 * obj.dynamic_viscosity_fluid);
re = 2 * obj.mass_flow_rate / (pi * obj.radius_inner * obj.dynamic_viscosity_fluid);
end

% Prandtl number
Expand Down

1 comment on commit e347670

@fkdyc
Copy link

@fkdyc fkdyc commented on e347670 Jul 21, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how can i use this file,the code all divide into different file,how can i transfer them like use a program

Please sign in to comment.