create account

How to create infinite structures for Molecular Dynamics simulations? by dexterdev

View this thread on: hive.blogpeakd.comecency.com
· @dexterdev · (edited)
$46.08
How to create infinite structures for Molecular Dynamics simulations?
Hello, my dear friends!
@dexterdev is back after a long gap.

Today I will discuss on creating *infinite* molecular structures for MD simulations!!! (**Sounds impossible task... Right?**)

In MD(molecular dynamics) forums etc, you will find these queries very often. For example:
- See this research gate link: [How to create an infinite graphene sheet with proper periodicity?](https://www.researchgate.net/post/How_to_create_an_infinite_graphene_sheet_with_proper_periodicity). 
- Another link from namd-l forums: [Infinite Armchair Single Wall Carbon Nanotubes and Periodic Boundary Conditions (PBC)](https://www.ks.uiuc.edu/Research/namd/mailing_list/namd-l.2006-2007/3141.html)

So I thought why not document this problem with a solution on STEEM blockchain.

There are times when you require to create infinite molecular structures("infinite" in the sense that the molecules in one simulation cell are covalently bonded at the interface to the respective molecules in the adjacent periodic images) in MD simulations. For example, if you want to learn how a DNA chain or protein interacts with a Carbon nanotube, you may want to keep this particular nanotube structure span whole periodic cells. It seems impossible at first sight. But there are some hacks through which we can create such structures. I will explain this in the context of VMD and NAMD softwares. As I have explained in my previous articles, VMD is a visualization software for molecular dynamics(MD) trajectories and NAMD is a MD engine.

![](https://i.imgur.com/Jtl1xHd.gif)<center>
*Different periodic images of an all-atom simulation system, where the carbon nanotube(cyan) technically spans infinitely(in the sense the nanotube is covalently bonded at the interface of different periodic images) in the z-direction(blue axis). The white transparent box is waterbox and the purple molecule is a protein.*</center>


## Repository

https://github.com/dexterdev/STEEMIT/tree/master/INFINITE_CNT

## What will I learn?

You will learn how to set up a molecular dynamics system where molecular structures should extent in its periodic cells infinitely. 

**Softwares used:** VMD, NAMD
**Necessary Plugin for connecting bonds between periodic images:** [topotools](https://www.ks.uiuc.edu/Research/vmd/plugins/topotools/)
(Topotools comes with latest versions of VMD)
If you are not familiar with VMD and NAMD etc, please follow my past articles. Links in **References**.

## Difficulty

Intermediate

## System

**The System comprises of:** 
- Carbon nanotube(armchair CNT(5,10)) 
(5,10) are [chirality numbers](http://www.photon.t.u-tokyo.ac.jp/~maruyama/kataura/chirality.html). It is of no significance here for this article.
- Aβ [intrinsically disordered protein](https://en.wikipedia.org/wiki/Intrinsically_disordered_proteins)(from [1Z0Q.pdb](https://www.rcsb.org/structure/1z0q)) 
- Waterbox with TIP3P water model 
- NaCl ions with concentration 150mM/litre to neutralize the total charge in system

## Tutorial Content

This tutorial is broken down into the following sections:
- Creating CNT psf,pdb files using Nanobuilder VMD plugin
- Adding the IDP(intrinsically disordered protein) to the system and positioning it properly
- Adding Waterbox and ions
- Using topotools to modify the structure by adding bonds in CNT C atoms between self and periodic image
- Equilibration RUN setup
- Verifying Carbon bonds between self and periodic cell are functioning properly

## Creating CNT psf,pdb files

This is pretty straightforward. Open `Carbon Nanostructure builder` tool from VMD>Extensions>Modeling. 

![](https://i.imgur.com/itvqXWN.png)

Choose CNT options accordingly. Chirality numbers and length of tube etc. Once the structure is created, create the pdb psf files using:

```
animate write pdb CNT.pdb
animate write psf CNT.psf
```

in VMD Tk console.

## Adding the IDP to the system and positioning it properly

The IDP structure can be downloaded from PDB databank([LINK](https://www.rcsb.org/structure/1z0q)). The PDB id is 1Z0Q. Load the CNT structure and you can position the loaded IDP wherever appropriate(VMD hotkey for moving molecule is `8`). Merge the structures in VMD. Save the merged structures. 

## Adding Waterbox and ions

```
package require solvate
solvate ./OUT.psf ./OUT.pdb -minmax {{-30.56800079345703 -11.4019999504089355 0.0} {40.322999954223633 47.20600128173828 119.11799621582031}} -o OUT_water -s WB
```

The above script can be used to add water. Change the coordinates appropriately. Add ions using Autoionize from here VMD>Extensions>Modeling.

## Using topotools 

There is a major issue in the structure we have created now. The CNT terminates at box edges of the "self" simulation cell. Which means there is a minor gap between this structure and the CNT in the next periodic cells. Topotools can be used to modify the structure by adding bonds in CNT C atoms between self and periodic images.

![](https://i.imgur.com/MEeMaGM.png)
*(self-red,periodic-green. See there is no bond between red and green tubes, which can create unnecessary artifacts.)*


![](https://i.imgur.com/8WrE0WH.png)
*(The distance between the "supposed to be" carbon-carbon bond, is lesser than the usual 1.4 Angstroms.)*

So how do we create infinite CNT is the question. There is a hack possible with the aid of topotools. Topotools can create bonds between atoms. The format is as below:

```
package require topotools
topo addbond $atom-index1 $atom-index2
```

For example in the above figure, we need a bond between atom 22 and 1403. The respective atom indices are 21 and 1402.

```
topo addbond 21 1402
```

You do this for the multiple selections. To make things easier in terms of getting at least the required atom indices, you can use the below selection commands(The selections lie in the 0.9 Angstrom edges of the nanotube):

```
set sel [atomselect top “segname TUB and z<0.9”]
$sel get index
set sel [atomselect top “segname TUB and z>122.5”]    
#(118.2 = 123.2-0.9)
$sel get index
```

After applying that topo command, let us see the image:
![](https://i.imgur.com/15tyEVs.png)

It seems like something has gone wrong. The bond went in between self molecules rather than between self and periodic cell. This problem which is a VMD rendition one will persist in our simulation. But we can verify if there is a proper bond between self and periodic cell structure by running a small simulation. We will come to that section later.

## Equilibration RUN setup

```
structure          ./OUT_water_ionized_bondcorrection.psf
coordinates        ./OUT_water_ionized_bondcorrection.pdb

set temperature    298
set outputname     test


firsttimestep       0


#############################################################
## SIMULATION PARAMETERS                                   ##
#############################################################

# Input
paraTypeCharmm      on
parameters           ./par_water_ions.prm
parameters           ./par_nanotubes.inp
parameters           ./par_all36_prot.prm

temperature         $temperature

# Force-Field Parameters
exclude             scaled1-4
1-4scaling          1.0
cutoff              12.
switching           on
switchdist          10.
pairlistdist        15.0
margin               8.0

# Integrator Parameters
# fullElectFrequency*timestep <=4.0
# stable time steps:
#       with rigidBonds=all: electro:6fs;short-rangeNB:2fs;bonded:2fs
#       otherwise          :         2fs               2fs        1fs
timestep            2.0  ;# 2fs/step
rigidBonds         all  ;# Needed for 2fs steps
useSettle           on
nonbondedFreq       1
fullElectFrequency  2
stepspercycle       10
zeroMomentum        yes


# Constant Temperature Control
langevin            off    ;# do langevin dynamics
langevinDamping     5     ;# damping coefficient (gamma) of 5/ps
langevinTemp        $temperature
langevinHydrogen    off    ;# don't couple langevin bath to hydrogens

#temperature coupling for temperature coupling
tCouple             on
tCoupleTemp         $temperature


# Periodic Boundary Conditions
# center of the periodic box; NOT ORIGIN!!!
cellBasisVector1 71 0 0
cellBasisVector2 0 68 0
cellBasisVector3 0 0 124
cellOrigin 10.136194229125977 18.867944717407227 61.83677673339844
#add appropriate numbers at # above

wrapAll             on


# PME (for full-system periodic electrostatics)
# multiples of 2,3,5 & >=dimensions above
PME                 yes
PMEGridSizeX        90
PMEGridSizeY        90
PMEGridSizeZ        150
#add appropriate numbers at # above

# Constant Pressure Control (variable volume)
useGroupPressure      yes ;# needed for rigidBonds
useFlexibleCell       no
useConstantArea       no

langevinPiston       on
langevinPistonTarget  1.01325 ;#  in bar -> 1 atm
langevinPistonPeriod  100.
langevinPistonDecay   50.
langevinPistonTemp    $temperature


# Output
outputName          $outputname

restartfreq         50000           
dcdfreq             10000                
xstFreq             10000
outputEnergies      10000
outputPressure      10000

#############################################################
## EXECUTION SCRIPT                                        ##
#############################################################

# Minimization
minimize            5000
reinitvels          $temperature

run 111000  ;# 222ps
```

## Verifying Carbon bonds between self and periodic cell are functioning properly

To verify the topotools hack, we can check the the evolution of carbon-crbon bonds in the CNT at the interface. Between our indices 21 and 1402, the bond distance starts at 1.07 Angstroms. It spikes to 1.57 at minimization and evolves towards 1.44 which is great! Now once you feel the system is equilibrated, you can restart the simulation with fixing the CNT atoms in simulation setup.

![](https://i.imgur.com/RFZY8OS.png)
*The above figure shows the evolution of C-C (between 21 and 1402 indices) bond distances w.r.t time. The time we simulated for is around 222ps. See the distance between carbon-carbon bonds saturating towards 1.44-ish Angstroms, which is what we need.*

![](https://i.imgur.com/DwEt8Cu.gif)
*(Evolution of distances - A gif.)*

## Necessary Files

All necessary files are uploaded in Github. 
LINK: https://github.com/dexterdev/STEEMIT/tree/master/INFINITE_CNT


## References
### My previous posts:
To learn about VMD and PDB file format, see here:
- https://steemit.com/steemstem/@dexterdev/visualizing-bio-molecules-in-computer-part-1-let-us-inspect-a-pdb-file-and-see-it-using-vmd
- https://steemit.com/steemstem/@dexterdev/visualizing-bio-molecules-in-computer-part-2-introduction-to-tcl-scripting-environment-in-vmd-1-sbd-prize-task-inside

To learn about the concepts in All-atom molecular dynamics see articles below:

- https://steemit.com/steemstem/@dexterdev/classical-molecular-dynamics-series-part-1-the-fundamentals
- https://steemit.com/steemstem/@dexterdev/classical-molecular-dynamics-series-part-2-the-force-field
- https://steemit.com/steemstem/@dexterdev/classical-molecular-dynamics-series-part-3-solving-the-molecular-dynamics-equation

To setup and run simulations in NAMD software, see below:
- https://steemit.com/steemstem/@dexterdev/classical-molecular-dynamics-series-part-4a-let-us-setup-a-simulation-and-run-it
- https://steemit.com/steemstem/@dexterdev/classical-molecular-dynamics-series-part-4b-running-small-systems-on-your-computer
- https://steemit.com/steemstem/@dexterdev/let-us-cool-dmpc-bilayer-lipids-an-18-day-long-molecular-dynamics-experiment-on-hpc-facility

### Textbook references for learning theory of Molecular Dynamics:

- "Statistical Mechanics: Theory and Molecular Simulations" by Mark E. Tuckerman
- "Molecular Modelling: Principles and Applications" by Andrew R. Leach
- "Computer Simulation of Liquids" by D. J. Tildesley and M.P. Allen

### References specific to NAMD and VMD:

- [NAMD userguide](http://www.ks.uiuc.edu/Research/namd/cvs/ug.pdf)
- [NAMD tutorial](http://www.ks.uiuc.edu/Training/Tutorials/namd/namd-tutorial-unix.pdf)
- [VMD userguide](http://www.ks.uiuc.edu/Research/vmd/vmd-1.9.1/ug.pdf)
- [VMD tutorial](http://www.ks.uiuc.edu/Training/TutorialsOverview/vmd/vmd-tutorial.pdf)




# #steemSTEM

#steemSTEM is a very vibrant community on top of STEEM blockchain for Science, Technology, Engineering and Mathematics (STEM). If you wish to support steemstem visit the links below:



<center>**Have you voted for steemSTEM Witness?**</center>

<center><a href='https://steemconnect.com/sign/account_witness_vote?approve=1&witness=stem.witness'><img src='https://i.imgur.com/DbWoeI7.gif'></a></center><hr>


Quick link for [voting for the SteemSTEM Witness](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=stem.witness)(@stem.witness) 

Delegation links for [@steemstem](https://steemit.com/@steemstem) gives ROI of 65% of curation rewards 

(quick delegation links: [50SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=50%20SP) | [100SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=100%20SP) | [500SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=500%20SP) | [1000SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=1000%20SP) | [5000SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=5000%20SP) | [10000SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=10000%20SP)).


Also visit the steemstem app here: https://www.steemstem.io



---

**<center>All images without image sources are my creations :)</center>**

## <center>Follow me @dexterdev</center>

---
<center>

     ____ _______  ______ _________ ____ ______    
    /  _ /  __\  \//__ __/  __/  __/  _ /  __/ \ |\
    | | \|  \  \  /  / \ |  \ |  \/| | \|  \ | | //
    | |_/|  /_ /  \  | | |  /_|    | |_/|  /_| \// 
    \____\____/__/\\ \_/ \____\_/\_\____\____\__/


</center>
---


<center>https://steemitimages.com/DQmVM9FmLfAYojdB7Ex2ooGhkZMGHht3NzPLUSEvwSvpjTd/dexter.png
credit: @mathowl</center>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 445 others
properties (23)
authordexterdev
permlinkhow-to-create-infinite-structures-in-molecular-dynamics-simulations
categorysteemstem
json_metadata{"tags":["steemstem","utopian-io","science","computational-biophysics","molecular-dynamics"],"users":["dexterdev","stem.witness","mathowl"],"image":["https://i.imgur.com/Jtl1xHd.gif","https://i.imgur.com/itvqXWN.png","https://i.imgur.com/MEeMaGM.png","https://i.imgur.com/8WrE0WH.png","https://i.imgur.com/15tyEVs.png","https://i.imgur.com/RFZY8OS.png","https://i.imgur.com/DwEt8Cu.gif","https://i.imgur.com/DbWoeI7.gif","https://steemitimages.com/DQmVM9FmLfAYojdB7Ex2ooGhkZMGHht3NzPLUSEvwSvpjTd/dexter.png"],"links":["https://www.researchgate.net/post/How_to_create_an_infinite_graphene_sheet_with_proper_periodicity","https://www.ks.uiuc.edu/Research/namd/mailing_list/namd-l.2006-2007/3141.html","https://github.com/dexterdev/STEEMIT/tree/master/INFINITE_CNT","https://www.ks.uiuc.edu/Research/vmd/plugins/topotools/","http://www.photon.t.u-tokyo.ac.jp/~maruyama/kataura/chirality.html","https://en.wikipedia.org/wiki/Intrinsically_disordered_proteins","https://www.rcsb.org/structure/1z0q","https://steemit.com/steemstem/@dexterdev/visualizing-bio-molecules-in-computer-part-1-let-us-inspect-a-pdb-file-and-see-it-using-vmd","https://steemit.com/steemstem/@dexterdev/visualizing-bio-molecules-in-computer-part-2-introduction-to-tcl-scripting-environment-in-vmd-1-sbd-prize-task-inside","https://steemit.com/steemstem/@dexterdev/classical-molecular-dynamics-series-part-1-the-fundamentals","https://steemit.com/steemstem/@dexterdev/classical-molecular-dynamics-series-part-2-the-force-field","https://steemit.com/steemstem/@dexterdev/classical-molecular-dynamics-series-part-3-solving-the-molecular-dynamics-equation","https://steemit.com/steemstem/@dexterdev/classical-molecular-dynamics-series-part-4a-let-us-setup-a-simulation-and-run-it","https://steemit.com/steemstem/@dexterdev/classical-molecular-dynamics-series-part-4b-running-small-systems-on-your-computer","https://steemit.com/steemstem/@dexterdev/let-us-cool-dmpc-bilayer-lipids-an-18-day-long-molecular-dynamics-experiment-on-hpc-facility","http://www.ks.uiuc.edu/Research/namd/cvs/ug.pdf","http://www.ks.uiuc.edu/Training/Tutorials/namd/namd-tutorial-unix.pdf","http://www.ks.uiuc.edu/Research/vmd/vmd-1.9.1/ug.pdf","http://www.ks.uiuc.edu/Training/TutorialsOverview/vmd/vmd-tutorial.pdf","https://steemconnect.com/sign/account_witness_vote?approve=1&witness=stem.witness","https://steemit.com/@steemstem","https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=50%20SP","https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=100%20SP","https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=500%20SP","https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=1000%20SP","https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=5000%20SP","https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=10000%20SP","https://www.steemstem.io"],"app":"steemit/0.1","format":"markdown"}
created2018-11-16 06:27:48
last_update2018-11-19 07:44:36
depth0
children10
last_payout2018-11-23 06:27:48
cashout_time1969-12-31 23:59:59
total_payout_value34.659 HBD
curator_payout_value11.420 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14,207
author_reputation17,771,704,061,240
root_title"How to create infinite structures for Molecular Dynamics simulations?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,375,052
net_rshares71,647,678,221,432
author_curate_reward""
vote details (509)
@fraenk · (edited)
$0.04
I can't claim I know much what this is about... I guess the title says it all...

> How to create infinite structures for Molecular Dynamics simulations?

It's probably self-explanatory, just way above my head... but it looks effin intriguing! Where are those #steemSTEM curators at?!
👍  , ,
properties (23)
authorfraenk
permlinkre-dexterdev-how-to-create-infinite-structures-in-molecular-dynamics-simulations-20181119t104815724z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-11-19 10:48:15
last_update2018-11-19 10:48:45
depth1
children1
last_payout2018-11-26 10:48:15
cashout_time1969-12-31 23:59:59
total_payout_value0.033 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length284
author_reputation17,144,676,870,084
root_title"How to create infinite structures for Molecular Dynamics simulations?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,547,626
net_rshares69,960,783,534
author_curate_reward""
vote details (3)
@dexterdev · (edited)
Thank you for the encouragement @fraenk . I highly appreciate it. Thanks for visiting. But I guess this post may not attract that many popsci readers. It is not accessible to most people. Perhaps that's why it got no recognition. :P

Update: I got steemSTEM vote finally😍
properties (22)
authordexterdev
permlinkre-fraenk-re-dexterdev-how-to-create-infinite-structures-in-molecular-dynamics-simulations-20181119t104937083z
categorysteemstem
json_metadata{"tags":["steemstem"],"users":["fraenk"],"app":"steemit/0.1"}
created2018-11-19 10:52:18
last_update2018-11-20 03:08:36
depth2
children0
last_payout2018-11-26 10:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length271
author_reputation17,771,704,061,240
root_title"How to create infinite structures for Molecular Dynamics simulations?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,547,825
net_rshares0
@isarmoewe ·
$0.02
Nice article.
But your coordinate axes are confusing me.
👍  , , ,
properties (23)
authorisarmoewe
permlinkre-dexterdev-how-to-create-infinite-structures-in-molecular-dynamics-simulations-20181128t102634235z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-11-28 10:26:36
last_update2018-11-28 10:26:36
depth1
children2
last_payout2018-12-05 10:26:36
cashout_time1969-12-31 23:59:59
total_payout_value0.019 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation27,164,632,553,667
root_title"How to create infinite structures for Molecular Dynamics simulations?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,035,052
net_rshares41,284,182,334
author_curate_reward""
vote details (4)
@dexterdev · (edited)
X axis is the frames which can be converted to time.
Y axis is in Angstrom units. (since they are in bond distance units)
Let me know if you have specific doubts. I will clarify it.
properties (22)
authordexterdev
permlinkre-isarmoewe-re-dexterdev-how-to-create-infinite-structures-in-molecular-dynamics-simulations-20181128t103948140z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-11-28 10:42:33
last_update2018-11-28 10:48:42
depth2
children1
last_payout2018-12-05 10:42:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length181
author_reputation17,771,704,061,240
root_title"How to create infinite structures for Molecular Dynamics simulations?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,035,587
net_rshares0
@isarmoewe ·
Hm. I simply associated it with a Cartesian coordinate system. Which is probably why nobody else questioned the coordinates.
I found myself trying to sort out where z should point to if x was my right thumb, y and z being the second and third finger, respectively.
Well, you probably should ignore my thoughts, I'm afraid I'm being ridiculous. I just tried to figure out the orientation with my left hand too.
👍  ,
properties (23)
authorisarmoewe
permlinkre-dexterdev-re-isarmoewe-re-dexterdev-how-to-create-infinite-structures-in-molecular-dynamics-simulations-20181128t111738363z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-11-28 11:17:42
last_update2018-11-28 11:17:42
depth3
children0
last_payout2018-12-05 11:17:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length409
author_reputation27,164,632,553,667
root_title"How to create infinite structures for Molecular Dynamics simulations?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,036,722
net_rshares5,408,432,160
author_curate_reward""
vote details (2)
@steemitboard ·
Congratulations @dexterdev! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

<table><tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@dexterdev/votes.png?201811190347</td><td>You made more than 7000 upvotes. Your next target is to reach 8000 upvotes.</td></tr>
</table>

<sub>_[Click here to view your Board of Honor](https://steemitboard.com/@dexterdev)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Do not miss the last post from @steemitboard:**
<table><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-the-results-the-winners-and-the-prizes"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-the-results-the-winners-and-the-prizes">Meet the Steemians Contest - The results, the winners and the prizes</a></td></tr><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-special-attendees-revealed"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-special-attendees-revealed">Meet the Steemians Contest - Special attendees revealed</a></td></tr><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-intermediate-results"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-intermediate-results">Meet the Steemians Contest - Intermediate results</a></td></tr></table>

> Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-dexterdev-20181119t073925000z
categorysteemstem
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2018-11-19 07:39:24
last_update2018-11-19 07:39:24
depth1
children0
last_payout2018-11-26 07:39:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2,159
author_reputation38,975,615,169,260
root_title"How to create infinite structures for Molecular Dynamics simulations?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,539,904
net_rshares0
@steemitboard ·
Congratulations @dexterdev! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

<table><tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@dexterdev/voted.png?201811192147</td><td>You received more than 5000 upvotes. Your next target is to reach 6000 upvotes.</td></tr>
</table>

<sub>_[Click here to view your Board of Honor](https://steemitboard.com/@dexterdev)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Do not miss the last post from @steemitboard:**
<table><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-the-results-the-winners-and-the-prizes"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-the-results-the-winners-and-the-prizes">Meet the Steemians Contest - The results, the winners and the prizes</a></td></tr><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-special-attendees-revealed"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-special-attendees-revealed">Meet the Steemians Contest - Special attendees revealed</a></td></tr><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-intermediate-results"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-intermediate-results">Meet the Steemians Contest - Intermediate results</a></td></tr></table>

> Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-dexterdev-20181120t073513000z
categorysteemstem
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2018-11-20 07:35:12
last_update2018-11-20 07:35:12
depth1
children0
last_payout2018-11-27 07:35:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2,163
author_reputation38,975,615,169,260
root_title"How to create infinite structures for Molecular Dynamics simulations?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,601,386
net_rshares0
@steemitboard ·
Congratulations @dexterdev! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

<table><tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@dexterdev/payout.png?201811230829</td><td>You received more than 250 as payout for your posts. Your next target is to reach a total payout of 500</td></tr>
</table>

<sub>_[Click here to view your Board of Honor](https://steemitboard.com/@dexterdev)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Do not miss the last post from @steemitboard:**
<table><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-the-results-the-winners-and-the-prizes"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-the-results-the-winners-and-the-prizes">Meet the Steemians Contest - The results, the winners and the prizes</a></td></tr><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-special-attendees-revealed"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-special-attendees-revealed">Meet the Steemians Contest - Special attendees revealed</a></td></tr><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-intermediate-results"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-intermediate-results">Meet the Steemians Contest - Intermediate results</a></td></tr></table>

> Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-dexterdev-20181123t091608000z
categorysteemstem
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2018-11-23 09:16:06
last_update2018-11-23 09:16:06
depth1
children0
last_payout2018-11-30 09:16:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2,188
author_reputation38,975,615,169,260
root_title"How to create infinite structures for Molecular Dynamics simulations?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,776,041
net_rshares0
@steemstem ·
re-dexterdev-how-to-create-infinite-structures-in-molecular-dynamics-simulations-20181119t211518141z
<div class='text-justify'> <div class='pull-left'> <br /> <center> <img width='125' src='https://i.postimg.cc/Gtd18f7W/steemstem_curie_utopian.png'> </center> <br /> </div> <br /> <br /> 

 This post has been voted on by the **SteemSTEM** curation team and voting trail in collaboration with **@utopian-io** and **@curie**. <br /> 
 If you appreciate the work we are doing then consider [voting](https://steemit.com/~witnesses) all three projects for witness by selecting [**stem.witness**](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=stem.witness), [**utopian-io**](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=utopian-io) and [**curie**](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=curie)! <br /> 
 For additional information please join us on the [**SteemSTEM discord**]( https://discord.gg/BPARaqn) and to get to know the rest of the community! </div>
👍  
properties (23)
authorsteemstem
permlinkre-dexterdev-how-to-create-infinite-structures-in-molecular-dynamics-simulations-20181119t211518141z
categorysteemstem
json_metadata{"app":"bloguable-bot"}
created2018-11-19 21:15:21
last_update2018-11-19 21:15:21
depth1
children0
last_payout2018-11-26 21:15:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length929
author_reputation262,017,435,115,313
root_title"How to create infinite structures for Molecular Dynamics simulations?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,577,337
net_rshares8,084,081,005
author_curate_reward""
vote details (1)
@utopian-io ·
#### Hi @dexterdev!

Your post was upvoted by Utopian.io in cooperation with @steemstem - supporting knowledge, innovation and technological advancement on the Steem Blockchain.

#### Contribute to Open Source with utopian.io
Learn how to contribute on <a href='https://join.utopian.io'>our website</a> and join the new open source economy.

**Want to chat? Join the Utopian Community on Discord https://discord.gg/h52nFrV**
👍  
properties (23)
authorutopian-io
permlinkre-how-to-create-infinite-structures-in-molecular-dynamics-simulations-20181120t031144z
categorysteemstem
json_metadata"{"app": "beem/0.20.9"}"
created2018-11-20 03:11:45
last_update2018-11-20 03:11:45
depth1
children0
last_payout2018-11-27 03:11:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length424
author_reputation152,955,367,999,756
root_title"How to create infinite structures for Molecular Dynamics simulations?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,591,441
net_rshares7,921,577,913
author_curate_reward""
vote details (1)