<center>https://www.youtube.com/watch?v=qrvJkm_ucP4</center><center><sub>A Simulation Which I did in past: Nogo66 protein interating with DMPC membrane in water(not shown for clarity)</sub></center> Hi guys! After a long gap, @dexterdev is back with the fourth part of **Classical Molecular Dynamics (CMD) series**. Today let us set up a simulation system in a software called NAMD. For those who missed my initial posts related to CMD, please see it in links below: [Part 1 (The Fundamentals)](https://steemit.com/steemstem/@dexterdev/classical-molecular-dynamics-series-part-1-the-fundamentals) [Part 2 (The Force Field!)](https://steemit.com/steemstem/@dexterdev/classical-molecular-dynamics-series-part-2-the-force-field) [Part 3 (Solving the molecular dynamics equation)](https://steemit.com/steemstem/@dexterdev/classical-molecular-dynamics-series-part-3-solving-the-molecular-dynamics-equation) One thing to be careful about this article is that this is a ***HOW TO tutorial***, rather than explaining concepts. So if you guys are confused about certain technical terms etc, don't worry. I will be explaining them in the future parts. Also, you can ask me doubts in comments, and I will try answering those. :) ## What is NAMD? [NAMD](http://www.ks.uiuc.edu/Research/namd/) is a Molecular Dynamics software developed from ***[Theoretical and Computational Biophysics](http://www.ks.uiuc.edu/)*** group from University of Illinois at Urbana-Champaign. Quoting from their website: > NAMD, recipient of a 2002 Gordon Bell Award, is a parallel molecular dynamics code designed for high-performance simulation of large biomolecular systems. This group has also designed a software called VMD to visualize the simulations etc. Firstly, you may want to download NAMD and VMD from this webpage: http://www.ks.uiuc.edu/Development/. Mine is a 64-bit Linux machine. Yours may be a different one. So be careful in choosing your selection. You may also need to register with the website to download these files. But they are all free software. *[ONE THING TO BE CAREFUL: Depending on the size of the molecule and length of the simulation, most of the simulation cases are only possible on high-performance computers like GPU machines/parallel processor machines with multiple cores. Like I use 128 or 256 cores for a job in our Institute cluster facility. So in practice, you can only check if your simulation is running or not by using your desktop machine/laptop.]* ## Let us do a simulation first! I am a fan of learning by doing. So let us begin straight away. The example system which we will set up today is that of a phospholipid membrane (specifically DMPC one) in water. To know what DMPC membrane is, please see one of my previous articles: [Phospholipids: The unsung heroes in biomolecules!](https://steemit.com/steemstem/@dexterdev/phospholipids-the-unsung-heroes-in-biomoleucles) So to start the simulation of molecules, we need initial structures, right? We are going to initiate animation in the dead structures based on the laws of physics(basically Newton's second law). The [force-field](https://steemit.com/steemstem/@dexterdev/classical-molecular-dynamics-series-part-2-the-force-field) which we are going to use are [CHARMM](http://mackerell.umaryland.edu/charmm_ff.shtml)36 version. ### Intial structure For this example tutorial, we are considering a phospholipid membrane (DMPC) in water. So the initial structures are in the forms of PDB and PSF formats. I will explain what those are. PDB structure basically contains the coordinate information of atoms in the molecule. So we need structure. In the case of bilayer lipid membranes, we can go to [CHARMM-gui membrane builder](http://www.charmm-gui.org/?doc=input/membrane) website. Let us select our options there: - Check the **Membrane only system** option, first. - And click on it. You will be directed [here](http://www.charmm-gui.org/?doc=input/membrane_only&step=1). Please see the below options for screenshots. You should choose **Heterogeneous Lipid** option first, then **Hydration number** as [26](http://www1.lsbu.ac.uk/php-cgiwrap/water/pfp.php3?page=http://www1.lsbu.ac.uk/water/membrane_hydration.html), **Length of XY based on**: `Ratios of lipid components`, **Length of X and Y**: `90`(angstrom units=10<sup>-10</sup> metres, you can choose your length instead of 90) and finally select the DMPC lipid from PC option with 1:1 ratio(which will incorporate 127 upper and 127 lower lipids). <center> </center><center>A screenshot from CHARMM-gui website showing the options to choose</center> <center> </center><center>Screenshot from CHARMM-gui website showing the next set of options to choose</center> - Click the next step. I am changing the IONS option to 0.15 Molar/liter NaCl from KCl. But it doesn't matter much. You can see the xyz dimensions are approximately 90 x 90 x 58 Angstrom<sup>3</sup>. Click next again. (CHARMM-gui will add water and ions on top and bottom of lipid bilayer. ) - And download the output files in .tgz format. You can see a bunch of files in it. There is also PDB file in it. Let us open it using a text editor and VMD software. Visualize the step4_lipid.pdb (which you got from .tgz file after the last step) output in VMD. You can see something similar to below(DMPC lipid bilayer): <center></center><center>VMD visualization of PDB file.Type `vmd step4_lipid.pdb` in terminal</center> <center> </center><center>For more information regarding PDB format see [here](https://en.wikipedia.org/wiki/Protein_Data_Bank_(file_format))</center> - Choose the options as in below snapshot. We will go through the concept of ensemble etc later. For now, we are going to choose NPT ensemble (Constant number of particles, pressure, and temperature). Forcefield is selected as CHARMM36m(m for modified). Temperature T=303.15. <center></center> - ***A note about other file types:*** PDB file has the initial coordinate information. PSF file will have the atom's charge, mass, and structure related information etc. Besides PSF and PDB files, we have following files: - topology file(.rtf file) in order to create PSF file from PDB file. (this step is not needed for this particular example since CHARMM-gui creates PSF file for you.) - parameter file(.prm file) in order to specify parameter values related to bonds, angles, dihedrals, improper dihedrals and Lenard-Jones non-bonding interactions. (You may see my previous MD articles to know what I meant by dihedrals, Lenard-Jones potential etc) - configuration file where we will input all necessary arguments for the simulation including above-mentioned files too. So I want to tell you guys one more thing. If the above file types and other details seem daunting for you, let me assure you that we will come to each of these things again in future. Let me remind you that the focus of this article is just to get start doing simulations. <center></center> ### A typical CONFIGURATION file ``` ############################################################## ## JOB DESCRIPTION ## ############################################################# # DMPC patch equilibration (intitial structure from CHARMM-gui) ############################################################# ## ADJUSTABLE PARAMETERS ## ############################################################# # structure and coordinate files are PDB and PSF file generated by CHARMM-gui structure ./step5_assembly.psf coordinates ./step5_assembly.pdb set temperature 303.15 set outputname DMPC_patch_NPT #DCD and other files output name firsttimestep 0 ############################################################# ## SIMULATION PARAMETERS ## ############################################################# # Input (CHARMM force-field ON) paraTypeCharmm on parameters ./par_water_ions.prm parameters ./par_all36_lipid.prm temperature $temperature # Force-Field Parameters (will discuss in future) 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 (our time step is 2 femto second) rigidBonds all ;# Needed for 2fs steps useSettle on nonbondedFreq 1 fullElectFrequency 2 stepspercycle 10 ######################### zeroMomentum yes ######################### # Constant Temperature Control (Thermostat settings to keep fixed temperature) 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 if {1} { # Periodic Boundary Conditions (specify the dimensions) # center of the periodic box; NOT ORIGIN!!! cellBasisVector1 101.5 0 0 cellBasisVector2 0 101.5 0 cellBasisVector3 0 0 71 cellOrigin 0 0 0 } # The above numbers are approximated from the data we analysed through VMD. wrapAll on # PME (Particle mesh ewald for effiecient calculation of full-system electrostatic calculations in periodic boundary conditions) # multiples of 2,3,5 & >=dimensions above PME yes PMEGridSizeX 120 PMEGridSizeY 120 PMEGridSizeZ 90 # 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 500000 ;# every 1 ns(capturing restart points if at all the simualtion breaks, so that you can restart from this point) dcdfreq 10000 #(capture MD trajectory data with frequency 10000 steps) xstFreq 10000 outputEnergies 10000 outputPressure 10000 ############################################################# ## EXECUTION SCRIPT ## ############################################################# # Minimization (to take the structure to a local minima using conjugate gradient method) minimize 5000 reinitvels $temperature ;#Reinitialize velocities(temperature is dependent on velocities of atoms) run 10000000 ;# run the simulation for 20 ns ``` Now the task of NAMD software is to run this config file. For this purpose create a folder with necessary files in it. Like PDB, PSF, PRM and restart-files(necessary in case the simulation is restarted from a previous run input). I know that there are a lot of missing points here. There are unclear things in the config file. But my soul aim in this article is to get started with NAMD. The files `par_all36_lipid.prm` and `par_water_ions.prm` are available from [here](http://mackerell.umaryland.edu/charmm_ff.shtml) in compressed formats. But for convenience you can get it from [here](https://raw.githubusercontent.com/dexterdev/Molecular_Dynamics/master/par_water_ions.prm) and [here](https://raw.githubusercontent.com/dexterdev/Molecular_Dynamics/master/par_all36_lipid.prm). ### Running the config file `devt@BUSYBOX ~/home/devt/SIM $ namd2 DMPC_patch_NPT_eq.config > log` Below is a line from the log file generated: `Info: Initial time: 1 CPUs 0.437884 s/step 2.53405 days/ns 211.227 MB memory` From the log file, we can read that it takes 2.5 days for 1ns with 1CPU approximately! This is the case with 49805 atoms in the system.(We can get this number of total atoms either by querying using VMD software or opening the PDB file in a text editor and inspecting it.) We can improve this by using HPC(high-performance computer) machines. ## What this article will enable you to do? This article simply allows you to see how a simulation run can be realized using NAMD. In the coming parts, we will explore some simulations of real systems like proteins etc by reproducing results from some research papers etc. ## Coming up in the next part... - A detailed description of each filetype including generated output files - More VMD and NAMD techniques/details - How can we run the simulations faster?(if there is an access to HPC) - Visualizing the simulation results and doing some basic analysis etc - Periodic Boundary Conditions, Neutralizing total charge in the system etc - A small system, which anyone can try out in their machine - And more! ## References [Books for further reading] ### 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) ### CHARMM-gui related papers: - http://www.charmm-gui.org/?doc=citations --- ### <center>Join #steemSTEM</center> <center>Join the active science community #steemSTEM at discord: https://discord.gg/BZXkmWw</center> <center></center><center>Image courtesy: @elvisxx71</center> #### <center>And to steemSTEM beginners:</center> <center>You can ask for help in our discord page. There are people ready to help you there.</center> <center>https://steemitimages.com/DQmPtnKZW6cQWBAzpA8yiqTDXSsVH9zEUyxFiek2kGEoA8g/bear.gif</center><center>gif courtesy: @rocking-dave</center> --- **<center>All images without image sources are my creations :)</center>** ## <center>Follow me @dexterdev</center> --- ____ _______ ______ _________ ____ ______ / _ / __\ \//__ __/ __/ __/ _ / __/ \ |\ | | \| \ \ / / \ | \ | \/| | \| \ | | // | |_/| /_ / \ | | | /_| | |_/| /_| \// \____\____/__/\\ \_/ \____\_/\_\____\____\__/
author | dexterdev |
---|---|
permlink | classical-molecular-dynamics-series-part-4a-let-us-setup-a-simulation-and-run-it |
category | steemstem |
json_metadata | {"app":"hiveblog/0.1","format":"markdown","image":["https://img.youtube.com/vi/qrvJkm_ucP4/0.jpg","https://i.imgur.com/XKNcs6T.png","https://i.imgur.com/dszqn4Z.png","https://i.imgur.com/d9liCh8.png","https://i.imgur.com/cvOqdlW.png","https://i.imgur.com/NUKuUmc.png","https://i.imgur.com/xkWGrZx.png","https://i.imgur.com/Ya06oXn.jpg","https://steemitimages.com/DQmPtnKZW6cQWBAzpA8yiqTDXSsVH9zEUyxFiek2kGEoA8g/bear.gif"],"links":["https://www.youtube.com/watch?v=qrvJkm_ucP4","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","http://www.ks.uiuc.edu/Research/namd/","http://www.ks.uiuc.edu/","http://www.ks.uiuc.edu/Development/","https://steemit.com/steemstem/@dexterdev/phospholipids-the-unsung-heroes-in-biomoleucles","http://mackerell.umaryland.edu/charmm_ff.shtml","http://www.charmm-gui.org/?doc=input/membrane","http://www.charmm-gui.org/?doc=input/membrane_only&step=1","http://www1.lsbu.ac.uk/php-cgiwrap/water/pfp.php3?page=http://www1.lsbu.ac.uk/water/membrane_hydration.html","https://en.wikipedia.org/wiki/Protein_Data_Bank_(file_format)","https://raw.githubusercontent.com/dexterdev/Molecular_Dynamics/master/par_water_ions.prm","https://raw.githubusercontent.com/dexterdev/Molecular_Dynamics/master/par_all36_lipid.prm","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","http://www.charmm-gui.org/?doc=citations","https://discord.gg/BZXkmWw"],"tags":["science","busy","molecular-dynamics","education","steemstem"],"users":["dexterdev","elvisxx71","rocking-dave"]} |
created | 2018-04-17 07:22:39 |
last_update | 2020-05-06 13:51:45 |
depth | 0 |
children | 7 |
last_payout | 2018-04-24 07:22:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 33.339 HBD |
curator_payout_value | 10.256 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14,894 |
author_reputation | 17,771,704,061,240 |
root_title | "Classical Molecular Dynamics Series [Part - 4a]: Let us setup a simulation and run it!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 50,521,229 |
net_rshares | 8,596,194,001,261 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lafona-miner | 0 | 947,195,106,636 | 40% | ||
kushed | 0 | 90,246,929,298 | 7.19% | ||
kevinwong | 0 | 76,713,041,977 | 1.07% | ||
justtryme90 | 0 | 1,002,148,613,758 | 40% | ||
anwenbaumeister | 0 | 168,129,584,662 | 7.19% | ||
ubg | 0 | 305,334,630 | 1% | ||
arconite | 0 | 602,863,195 | 0.53% | ||
shaka | 0 | 565,655,881,110 | 15% | ||
cmp2020 | 0 | 12,417,990,503 | 24% | ||
lemouth | 0 | 111,113,672,176 | 28% | ||
rjbauer85 | 0 | 2,009,025,497 | 40% | ||
anarchyhasnogods | 0 | 66,022,950,286 | 20% | ||
remlaps1 | 0 | 15,429,541,107 | 24% | ||
curie | 0 | 331,525,145,975 | 7.19% | ||
cub1 | 0 | 41,898,574,074 | 24% | ||
vannour | 0 | 997,867,869 | 1% | ||
hendrikdegrote | 0 | 3,096,162,609,010 | 7.19% | ||
steemworld | 0 | 108,365,468 | 1% | ||
steemstem | 0 | 908,334,013,559 | 40% | ||
zorg67 | 0 | 0 | 100% | ||
sethroot | 0 | 61,997,545 | 0.71% | ||
brobear1995 | 0 | 109,373,323 | 3.59% | ||
foundation | 0 | 3,213,476,756 | 40% | ||
responsive | 0 | 140,367,696 | 7.19% | ||
the-devil | 0 | 4,225,968,152 | 40% | ||
remlaps2 | 0 | 1,429,554,296 | 100% | ||
dna-replication | 0 | 10,796,820,378 | 40% | ||
steemitboard | 0 | 326,812,577 | 1% | ||
ihsan19 | 0 | 55,212,455 | 7.19% | ||
lisa.palmer | 0 | 1,394,330,504 | 24% | ||
lenin-mccarthy | 0 | 201,089,465 | 3.59% | ||
jgpro | 0 | 68,994,539 | 3.59% | ||
dyancuex | 0 | 76,623,594 | 3.59% | ||
pacokam8 | 0 | 336,376,068 | 1.79% | ||
michelios | 0 | 835,481,174 | 0.71% | ||
jamhuery | 0 | 3,770,756,129 | 40% | ||
jdc | 0 | 53,384,703 | 0.71% | ||
kryzsec | 0 | 14,863,062,463 | 40% | ||
markangeltrueman | 0 | 1,006,353,887 | 1.07% | ||
odic3o1 | 0 | 78,032,893 | 4% | ||
lrsm13 | 0 | 72,333,643 | 2.15% | ||
tantawi | 0 | 520,768,070 | 7.19% | ||
samminator | 0 | 14,986,718,369 | 40% | ||
locikll | 0 | 2,749,476,903 | 14.38% | ||
dber | 0 | 12,554,440,888 | 40% | ||
aboutyourbiz | 0 | 1,265,580,726 | 7.19% | ||
kerriknox | 0 | 87,581,385,904 | 40% | ||
alexander.alexis | 0 | 27,431,538,851 | 100% | ||
slickhustler007 | 0 | 302,145,895 | 3.59% | ||
rockeynayak | 0 | 206,019,383 | 40% | ||
ertwro | 0 | 14,263,689,603 | 40% | ||
makrotheblack | 0 | 235,667,437 | 3.59% | ||
coloringiship | 0 | 169,615,593 | 0.35% | ||
juanjdiaz89 | 0 | 1,673,019,717 | 40% | ||
thinknzombie | 0 | 10,964,254,673 | 3.59% | ||
nitesh9 | 0 | 8,128,300,518 | 40% | ||
jpederson96 | 0 | 50,480,374 | 1% | ||
gambit.coin | 0 | 87,171,558 | 7.19% | ||
mcw | 0 | 3,924,925,849 | 10% | ||
himal | 0 | 2,466,890,275 | 40% | ||
bachuslib | 0 | 20,571,233,602 | 100% | ||
abigail-dantes | 0 | 567,052,708,971 | 40% | ||
leczy | 0 | 2,319,129,471 | 40% | ||
steemulator | 0 | 1,613,976,209 | 7.19% | ||
suravsingh | 0 | 422,467,864 | 40% | ||
helgapn | 0 | 121,158,356 | 3.59% | ||
krazypoet | 0 | 83,764,202 | 0.03% | ||
joseg | 0 | 358,093,445 | 24% | ||
misterakpan | 0 | 102,306,303 | 0.35% | ||
alexzicky | 0 | 25,701,666,672 | 50% | ||
mountain.phil28 | 0 | 2,124,677,994 | 25% | ||
mountainwashere | 0 | 13,689,817,892 | 40% | ||
leyla5 | 0 | 117,645,653 | 3.59% | ||
muliadi | 0 | 76,467,081 | 3.59% | ||
felixrodriguez | 0 | 960,099,431 | 20% | ||
tormiwah | 0 | 81,982,870 | 0.08% | ||
gabox | 0 | 175,684,997 | 0.35% | ||
runningman | 0 | 73,580,497 | 3.59% | ||
infinitelearning | 0 | 233,298,083 | 3.59% | ||
massivevibration | 0 | 3,531,858,064 | 5% | ||
onartbali | 0 | 431,602,528 | 5% | ||
crokkon | 0 | 35,724,726,455 | 100% | ||
clweeks | 0 | 242,139,748 | 2.87% | ||
torico | 0 | 586,109,742 | 0.71% | ||
ksolymosi | 0 | 7,695,480,287 | 40% | ||
simplifylife | 0 | 5,436,222,433 | 20% | ||
marialefleitas | 0 | 99,226,310 | 3.59% | ||
damzxyno | 0 | 147,371,783 | 8% | ||
hillaryaa | 0 | 82,518,901 | 7.19% | ||
jordanx2 | 0 | 356,642,301 | 3.59% | ||
stbrians | 0 | 181,714,139 | 3.59% | ||
mayowadavid | 0 | 2,405,428,625 | 20% | ||
zeeshan003 | 0 | 786,650,158 | 40% | ||
darsaleev | 0 | 57,589,414 | 100% | ||
happychild | 0 | 253,310,895 | 3.59% | ||
erodedthoughts | 0 | 1,382,221,316 | 2% | ||
bobdos | 0 | 580,889,113 | 0.71% | ||
jesusj1 | 0 | 88,174,990 | 3.59% | ||
digitalpnut | 0 | 107,283,097 | 3.59% | ||
carloserp-2000 | 0 | 5,646,152,503 | 40% | ||
rachelsmantra | 0 | 1,394,634,035 | 40% | ||
rubrosheva | 0 | 54,402,690 | 100% | ||
gra | 0 | 9,806,724,991 | 40% | ||
wandersells | 0 | 51,058,055 | 3.59% | ||
vernoval | 0 | 134,775,877 | 100% | ||
ifartrainbows | 0 | 233,380,568 | 10% | ||
syalla | 0 | 233,306,721 | 40% | ||
sci-guy | 0 | 85,424,402 | 40% | ||
kerry234 | 0 | 86,010,717 | 7.19% | ||
karolisp | 0 | 50,564,630 | 0.07% | ||
delph-in-holland | 0 | 84,375,182 | 3.59% | ||
spectrums | 0 | 175,055,801 | 7.19% | ||
aboutcoolscience | 0 | 30,571,454,043 | 24% | ||
meetmysuperego | 0 | 189,973,406 | 1.79% | ||
silenteyes | 0 | 2,659,482,906 | 100% | ||
kenadis | 0 | 8,674,710,992 | 40% | ||
amavi | 0 | 6,246,013,753 | 8% | ||
robotics101 | 0 | 2,315,371,710 | 51.06% | ||
tristan-muller | 0 | 280,142,406 | 40% | ||
jaeydallah | 0 | 101,290,876 | 7.19% | ||
alexs1320 | 0 | 35,980,034,314 | 100% | ||
gentleshaid | 0 | 8,489,999,052 | 40% | ||
zalandir | 0 | 133,161,539 | 0.71% | ||
crescendoofpeace | 0 | 87,516,558 | 3.59% | ||
steemotion | 0 | 527,180,862 | 3.59% | ||
sco | 0 | 735,990,984 | 2% | ||
adetola | 0 | 1,411,266,099 | 40% | ||
rasamuel | 0 | 85,169,293 | 3.59% | ||
cerventus | 0 | 58,478,879 | 3.59% | ||
monie | 0 | 425,636,757 | 100% | ||
speaklife | 0 | 70,450,924 | 7.19% | ||
mountainjewel | 0 | 721,353,689 | 3.59% | ||
laritheghost | 0 | 104,133,012 | 3.59% | ||
mathowl | 0 | 11,559,129,359 | 100% | ||
wanderingdanish | 0 | 258,821,621 | 1% | ||
whileponderin | 0 | 851,364,159 | 40% | ||
jlmol7 | 0 | 94,928,994 | 20% | ||
bennettitalia | 0 | 96,283,600 | 0.35% | ||
hadji | 0 | 1,604,593,039 | 40% | ||
sakura1012 | 0 | 977,018,859 | 40% | ||
fidelpoet | 0 | 290,272,788 | 7.19% | ||
kekegist | 0 | 82,381,873 | 7.19% | ||
terrylovejoy | 0 | 13,422,012,134 | 50% | ||
neneandy | 0 | 345,950,578 | 7.19% | ||
strings | 0 | 87,161,246 | 3.59% | ||
giddyupngo | 0 | 113,594,181 | 3.59% | ||
steepup | 0 | 267,611,845 | 16% | ||
thetroublenotes | 0 | 51,889,829 | 0.5% | ||
aaronteng | 0 | 60,051,559 | 3.59% | ||
paasuv | 0 | 361,051,786 | 100% | ||
rionpistorius | 0 | 725,404,388 | 20% | ||
deutsch-boost | 0 | 363,579,680 | 20% | ||
wdoutjah | 0 | 355,115,528 | 3.59% | ||
jpmkikoy | 0 | 77,479,342 | 3.59% | ||
caitycat | 0 | 113,742,848 | 3.59% | ||
dexterdev | 0 | 18,151,832,392 | 100% | ||
gio6 | 0 | 167,584,891 | 3.59% | ||
loydjayme25 | 0 | 54,305,690 | 3.59% | ||
ugonma | 0 | 572,363,096 | 40% | ||
mindscapephotos | 0 | 105,094,239 | 2.51% | ||
ajpacheco1610 | 0 | 238,241,234 | 20% | ||
benleemusic | 0 | 1,350,448,726 | 0.35% | ||
faithcalls | 0 | 167,963,916 | 3.59% | ||
vinamra | 0 | 1,516,902,481 | 100% | ||
croctopus | 0 | 319,161,305 | 32% | ||
chimtivers96 | 0 | 370,540,571 | 7.19% | ||
zipporah | 0 | 495,312,820 | 1.43% | ||
anyes2013 | 0 | 229,401,565 | 20% | ||
jaycem | 0 | 79,671,061 | 12.8% | ||
positiveninja | 0 | 790,451,842 | 3.59% | ||
davinci.witness | 0 | 5,921,358,552 | 100% | ||
sathyasankar | 0 | 4,670,291,870 | 100% | ||
samueldc | 0 | 88,950,548 | 20% | ||
theunlimited | 0 | 52,227,985 | 10% | ||
chillingotter | 0 | 716,106,963 | 3.59% | ||
simplicitytech | 0 | 119,419,484 | 20% | ||
wa2qr | 0 | 90,998,164 | 3.59% | ||
pseudojew | 0 | 1,554,858,894 | 100% | ||
genoner | 0 | 127,797,883 | 6.83% | ||
mrbreeziewrites | 0 | 1,296,676,894 | 100% | ||
count-antonio | 0 | 101,064,197 | 20% | ||
victorcovrig | 0 | 69,791,914 | 1% | ||
de-stem | 0 | 11,710,864,453 | 32% | ||
serylt | 0 | 5,858,116,682 | 32% | ||
ari16 | 0 | 113,453,550 | 20% | ||
saracampero | 0 | 85,602,933 | 20% | ||
blockmountain | 0 | 166,414,252 | 2.15% | ||
xposed | 0 | 2,314,328,886 | 10% | ||
guntom | 0 | 285,717,020 | 100% | ||
chloroform | 0 | 2,396,214,484 | 40% | ||
davinci.polyglot | 0 | 212,055,588 | 100% | ||
tessaragabrielle | 0 | 158,789,307 | 10% | ||
doctor-cog-diss | 0 | 246,991,452 | 100% | ||
davinci.times | 0 | 13,523,658,189 | 100% | ||
itastem | 0 | 2,677,984,826 | 100% | ||
romanleopold | 0 | 79,806,752 | 3.59% | ||
niouton | 0 | 386,955,447 | 1.43% | ||
justinmullet | 0 | 111,570,409 | 3.59% | ||
purelove | 0 | 85,935,187 | 20% | ||
beautyinscience | 0 | 122,502,439 | 20% | ||
umut1905 | 0 | 88,781,781 | 100% | ||
biomimi | 0 | 177,437,371 | 40% | ||
funster | 0 | 155,360,106 | 32% | ||
yggdrasil.laguna | 0 | 0 | 70% |
That's some horsepower. Instead of simulating, mine btc with it and buy a bigger simulator 😄
author | alexander.alexis |
---|---|
permlink | re-dexterdev-classical-molecular-dynamics-series-part-4a-let-us-setup-a-simulation-and-run-it-20180421t151127978z |
category | steemstem |
json_metadata | {"tags":["steemstem"],"app":"steemit/0.1"} |
created | 2018-04-21 15:11:30 |
last_update | 2018-04-21 15:11:30 |
depth | 1 |
children | 2 |
last_payout | 2018-04-28 15:11:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 92 |
author_reputation | 21,140,508,991,402 |
root_title | "Classical Molecular Dynamics Series [Part - 4a]: Let us setup a simulation and run it!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,324,270 |
net_rshares | 2,768,545,365 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ludmila.kyriakou | 0 | 2,768,545,365 | 100% |
You can do both with GRIDCOIN I guess :)
author | dexterdev |
---|---|
permlink | re-alexanderalexis-re-dexterdev-classical-molecular-dynamics-series-part-4a-let-us-setup-a-simulation-and-run-it-20180421t151249766z |
category | steemstem |
json_metadata | {"tags":["steemstem"],"app":"steemit/0.1"} |
created | 2018-04-21 15:14:45 |
last_update | 2018-04-21 15:14:45 |
depth | 2 |
children | 1 |
last_payout | 2018-04-28 15:14:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.064 HBD |
curator_payout_value | 0.019 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 40 |
author_reputation | 17,771,704,061,240 |
root_title | "Classical Molecular Dynamics Series [Part - 4a]: Let us setup a simulation and run it!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,324,810 |
net_rshares | 13,419,452,602 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexander.alexis | 0 | 13,419,452,602 | 50% |
Oh duh 😅
author | alexander.alexis |
---|---|
permlink | re-dexterdev-re-alexanderalexis-re-dexterdev-classical-molecular-dynamics-series-part-4a-let-us-setup-a-simulation-and-run-it-20180422t155125940z |
category | steemstem |
json_metadata | {"tags":["steemstem"],"app":"steemit/0.1"} |
created | 2018-04-22 15:51:27 |
last_update | 2018-04-22 15:51:27 |
depth | 3 |
children | 0 |
last_payout | 2018-04-29 15:51:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8 |
author_reputation | 21,140,508,991,402 |
root_title | "Classical Molecular Dynamics Series [Part - 4a]: Let us setup a simulation and run it!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,508,485 |
net_rshares | 2,822,139,142 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ludmila.kyriakou | 0 | 2,822,139,142 | 100% |
Hello @dexterdev , I was designed to give advice to "steemit" users. I recommend to increase this; The most winning bid bot in the last 24 hours is ✅ "smartsteem" You can enter "steembottracker.com" to find more offers. You can make "Resteem" and advertise to the followers of the whale accounts. "Resteem Bot" for you; ✅ @byresteem has 25.500 Followers + 7000 Sp + Upvote with min +55 accounts. I am a bot, I can not answer the comment. I hope I could help. Good luck.
author | recommendbot |
---|---|
permlink | 20180417t183950760z |
category | steemstem |
json_metadata | {"tags":["advice"],"app":"steemjs/test"} |
created | 2018-04-17 18:40:03 |
last_update | 2018-04-17 18:40:03 |
depth | 1 |
children | 0 |
last_payout | 2018-04-24 18:40:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 494 |
author_reputation | -860,813,832,228 |
root_title | "Classical Molecular Dynamics Series [Part - 4a]: Let us setup a simulation and run it!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 50,620,070 |
net_rshares | 0 |
Congratulations @dexterdev! You have completed some achievement on Steemit and have been rewarded with new badge(s) : [](http://steemitboard.com/@dexterdev) Award for the number of posts published Click on any badge to view your own Board of Honor on SteemitBoard. To support your work, I also upvoted your post! For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard) If you no longer want to receive notifications, reply to this comment with the word `STOP` > Upvote this notification to help all Steemit users. Learn why [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
author | steemitboard |
---|---|
permlink | steemitboard-notify-dexterdev-20180417t123857000z |
category | steemstem |
json_metadata | {"image":["https://steemitboard.com/img/notifications.png"]} |
created | 2018-04-17 12:38:57 |
last_update | 2018-04-17 12:38:57 |
depth | 1 |
children | 0 |
last_payout | 2018-04-24 12:38:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 734 |
author_reputation | 38,975,615,169,260 |
root_title | "Classical Molecular Dynamics Series [Part - 4a]: Let us setup a simulation and run it!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 50,562,109 |
net_rshares | 0 |
Wow that is pretty awesome @dexterdev. I thought Blender was pretty tough on CPU, how long did the video above take to generate?
author | terrylovejoy |
---|---|
permlink | re-dexterdev-classical-molecular-dynamics-series-part-4a-let-us-setup-a-simulation-and-run-it-20180417t100837639z |
category | steemstem |
json_metadata | {"tags":["steemstem"],"users":["dexterdev"],"app":"steemit/0.1"} |
created | 2018-04-17 10:08:39 |
last_update | 2018-04-17 10:08:39 |
depth | 1 |
children | 1 |
last_payout | 2018-04-24 10:08:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.033 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 129 |
author_reputation | 15,797,973,031,321 |
root_title | "Classical Molecular Dynamics Series [Part - 4a]: Let us setup a simulation and run it!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 50,542,134 |
net_rshares | 7,260,758,227 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dexterdev | 0 | 7,260,758,227 | 40% |
@terrylovejoy : The video I generated above is using a desktop snapshot software. There are better ways to do it using VMD. But this was a dirty hack. :( But I will capture a nice video once. My institute machine is about to explode. It is full of molecular dynamics data and tonnes of installed software. Once I clean my machine, I will start doing it.
author | dexterdev |
---|---|
permlink | re-terrylovejoy-re-dexterdev-classical-molecular-dynamics-series-part-4a-let-us-setup-a-simulation-and-run-it-20180417t102925701z |
category | steemstem |
json_metadata | {"tags":["steemstem"],"users":["terrylovejoy"],"app":"steemit/0.1"} |
created | 2018-04-17 10:31:18 |
last_update | 2018-04-17 10:31:18 |
depth | 2 |
children | 0 |
last_payout | 2018-04-24 10:31:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 353 |
author_reputation | 17,771,704,061,240 |
root_title | "Classical Molecular Dynamics Series [Part - 4a]: Let us setup a simulation and run it!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 50,544,986 |
net_rshares | 0 |