Skip to content
Snippets Groups Projects
Commit 103b07c1 authored by Chaofan Chen's avatar Chaofan Chen Committed by Dmitri Naumov
Browse files

[PL] BHE; Fix cross-sect. comp. inlet/outlet pipe.

The result is the same, but semantically it was in wrong order.
parent 0f40aab1
No related branches found
No related tags found
No related merge requests found
......@@ -140,8 +140,8 @@ private:
public:
std::array<double, number_of_unknowns> const cross_section_areas = {
{_pipes.inlet.area(), _pipes.inlet.area(),
borehole_geometry.area() / 2 - _pipes.outlet.area(),
{_pipes.inlet.area(), _pipes.outlet.area(),
borehole_geometry.area() / 2 - _pipes.inlet.area(),
borehole_geometry.area() / 2 - _pipes.outlet.area()}};
private:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment