Continuum Membrane
Loading...
Searching...
No Matches
Continuum Membrane & Dynamics

NERDSS - Continuum Membrane & Dynamics tool expands the model to continuum membranes established with triangular mesh and optimized using an energy function. The installation instructions and dependencies are provided in README.rst. The first step requires setting up the triangular mesh model to approximate the membrane's geometry applying Loop's subdivision method. The lowest energy search model minimizes the membrane energy evaluated by the energy function. The Brownian Dynamics model simulates the moving membrane's surface with a displacement equation, performed on the limit surface with the help of a conversion matrix. Three types of boundary conditions are available: Fixed, Periodic, and Free, all defined for "ghost vertices" on the boundary of the triangular mesh.

Installation

To install the model, follow these steps:

  1. Clone this repository to your local machine. You can use git as follows or download zip from github webpage.
git clone https://github.com/mjohn218/continuum_membrane.git
  1. Install the required libraries: GSL (GNU scientific library) and OpenMP (if parallelization is needed)

Compile and Run

To compile and run continuum membrane lowest energy conformation search with OpenMP parallelization. See section 5 for model details.

OpenMP parallel:

make omp
./bin/continuum_membrane

Embarrasingly parallel for multiple parameter sets:

make multi
./bin/continuum_membrane_multithreading

No parallel:

make serial
./bin/continuum_membrane

To compile and run membrane Brownian dynamics simulation. See section 6 for model details.

make dyna
./bin/membrane_dynamics

Parameters

Input parameter file is located in the root directory: continuum_membrane/input.params

Energy Function and Lowest Energy Search

The goal for the lowest energy search model is to minimize the membrane energy evaluated by the energy function, which is the sum of membrane bending energy, area constraint energy (or elastic area change energy), and volume constraint energy:

E = E_B + E_S + E_V = \int_S \frac{1}{2}\kappa (2H-C_0)^2 dS + \frac{1}{2} \mu_S \frac{(S-S_0)^2}{S_0} + \frac{1}{2} \mu_V \frac{(V-V_0)^2}{V_0}

where:

  • \kappa : membrane bending constant kcMembraneBending
  • H : mean membrane culvature
  • C_0 : spontaneous curvature of the membrane c0Membrane
  • \mu_S : membrane streching modulus usMembraneStretching
  • S : global membrane area
  • S_0 : target membrane area
  • \mu_V : volume constraint coefficient uvVolumeConstraint
  • V : global volume
  • V_0 : target volume

Membrane Brownian Dynamics

Membrane Brownian Dynamics model runs a step-wise simulation of the moving membrane surface with the following equation:

\Delta X = -\frac{D\Delta t}{k_b T} \nabla E + \sqrt{2D\Delta t} (N(0,1))

where:

  • \Delta X: displacement of point on limit surface
  • D: diffusion constant of the membrane
  • \Delta t: time step
  • N(0,1): standard normal distribution

Note that the displacement of membrane according to the equation above is performed on the limit surface, not the control mesh. In this case, a conversion matrix helps to convert between triangular mesh and limit surface, as currently the points on the limit surface represented by the mesh point are chosen to represent the surface.

M_{s} = C M_{m}

M_{m} = C^{-1} M_{s}

Boundary Conditions

Three types of boundary conditions are provided currently in both models. Note that "ghost vertices" are defined as points on the boundary of the triangular mesh that only serve to provide reference when calculating limit surface on the boundary, as calculating position of a point on the limit surface require the coordinates of 12 neighboring vertices (if regular). However, the "ghost vertices" themselves do not correspond to real points on the surface.

  • Fixed: 2 rings of ghost vertices are fixed in space
  • Periodic: 3 rings of ghost vertices that mimics the movement of the vertices on the opposite side of the membrane.
  • Free: 2 rings of ghost vertices are generated after movement by forming parallelogram extend from the real points on the control mesh

For Developers

A detailed doxygen style documentation is available in continuum_membrane/html/index.html. We are working on getting the documentation online, but currently you will need to clone the repository and view it locally.

Cite Continuum Membrane

If you use or modify continuum membrane model, in addition to citing NERDSS, please be kind and cite us:

  1. Continuum Membrane Implementation Fu, Y., Yogurtcu, O.N., Kothari, R., Thorkelsdottir, G., Sodt, A.J. & Johnson, M.E. (2019) An implicit lipid model for efficient reaction-diffusion simulations of protein binding to surfaces of arbitrary topology. J Chem Phys. 151 (12), 124115. <doi:%6010.1063/1.5120516%60_>
  2. Membrane energies and insertion Fu, Y., Zeno, W., Stachowiak, J. & Johnson, M.E. A continuum membrane model predicts curvature sensing by helix insertion. Submitted (2021) Available on bioRxiv

License

This project is licensed under the MIT License - see the LICENSE file for details.

Reference

  1. Helfrich, W. (1973). Elastic properties of lipid bilayers: theory and possible experiments. Zeitschrift fur Naturforschung C, 28(11), 693-703.