I would like to calculate the shell surface of any mesh imported into fipy via gmsh similar to cell Volumes:
sum(mesh.cellVolumes)
So far i have located the outside Faces with:
f = FaceVariable(mesh=mesh,value=False, name='Aussen')
f.value[where(mesh.exteriorFaces == True)] = True
I would like to sum the faceVolumes if those exist in fipy somewhere, is this the way to go?