coolfluid / coolfluid3

COOLFluiD is a collaborative simulation environment focused on complex multi-physics simulations
http://coolfluid.github.com
76 stars 77 forks source link

Mesh simplifications #176

Closed wdeconinck closed 12 years ago

wdeconinck commented 12 years ago

Removed functions:

The correct way to access is now respectively:

entities.geometry_space().get_coordinates(...);
entities.geometry_space().put_coordinates(...);
entities.geometry_space().allocate_coordinates(...);
entities.geometry_space().connectivity();
entities.geometry_space().connectivity()[elem_idx];

It is more straightforward where it is accessed from, and is of course the same for all other Spaces as well.

tlmquintino commented 12 years ago

Well done.