Problem with Closed BREP

Hi,

I need a closed BREP for calculating Volume and some other details.

I have tried MERGE to join BREPs (in red circles) as shown on PNG… than, CAP this joined BREPs… But NO success…

What is wrong with my algorithm??

Please help…

Volume_Analysis.gh (16.3 KB)
Volume_Analysis.3dm (276.2 KB)

Though there is issues with the GH code it seems from analysis of your input Geometry in the Rhino file using ShowEdges command that if you joined the half of the hull it would leave naked interior edges on the bow. (See Pink line where cursor is in image below) I fixed this by manually joining those edges first then the rest of the hull before putting it into Grasshopper

Also the Hull in the Rhino geometry did not have a stern piece modelled. So cap would not work as there was no planar loops to close.

With a stern piece and not naked edges on the first half of the hull in Rhino, Then all the code you need is this.

Thank you Matt… Problem solved