membrane_curvature
├── __init__.py
├── core.py *
├── curvature.py --> this would contain H, K
├── surface.py --> this would contain z_ref, derive_surface, normalized_grid
├── data
├── tests
├── ...
core.py is expected to be replaced by base.py (PR #43)
This PR fixes #21
In this PR:
membrane_curvature
folder restructured.membrane_curvatre/tests
, renamedtest_mdakit_membcurv.py
totest_membrane_curvature.py
.test_membrane_curvature.py
curvature.py
andsurface.py
added as a replacement forlib/mods.py
.Previous folder structure:
updated structure:
core.py
is expected to be replaced bybase.py
(PR #43)