Re: [gmx-users] Does .xtc enough for all kind of analysis?

2015-09-10 Thread João Henriques
Daily reminder that *Google is your friend*! See ---> http://manual.gromacs.org/online/files.html Honestly, I can't think of a single analysis that requires the .xtc only, or even the .trr for that matter. Most analysis tools need to know about the system topology among other things. Still, if

Re: [gmx-users] get dihedrals in 0 to 360 degrees instead of -180 to +180 degrees

2015-09-10 Thread Catarina A. Carvalheda dos Santos
Hi, I'm assuming you are measuring more than one dihedral (since you are using the -all option). So assuming columns 2 to 5 correspond to the measured dihedrals: awk '{print $1,($2+180),($3+180),($4+180),($5+180)}' angaver.xvg > new_ angaver.xvg This should do the trick. Regards, On 10

Re: [gmx-users] get dihedrals in 0 to 360 degrees instead of -180 to +180 degrees

2015-09-10 Thread Repic Matej
I do not think gmx angle supports this, but it very easy to just add 180 to xvg files. 1) One approach is to edit the data file prior to plotting. Issue this command: awk "{if (/@|#/){print}else{print $1+180,$2}" angdist.xvg > angdist360.xvg 2) With gnuplot you can use this command to plot and

[gmx-users] naming of CH2 groups in pdb file

2015-09-10 Thread Alex Cullen
Dear Gromacs users, I have built a pdb file format for a polymer, and I want to use GROMOS FF. Therefore, I included polar Hydrogens in the pdb file, but I do not know how to name CH2 groups in NAME and SEGNAME columns. When executing the pdbtogmx command I receive the following error: Residue 2

Re: [gmx-users] Multiple membrane proteins in complex bilayer (martini)

2015-09-10 Thread Machtens, Jan-Philipp
Hi Kathrin, if I remember correctly I once did something similar with g_membed -pieces ! Cheers, Dr. Jan-Philipp Machtens Institute of Complex Systems - Zelluläre Biophysik (ICS-4) Forschungszentrum Jülich, Germany Telefon: 02461 616467

[gmx-users] get dihedrals in 0 to 360 degrees instead of -180 to +180 degrees

2015-09-10 Thread GAYATHRI S
Hello everyone, I simulated an NADH molecule. I want to check how each of the dihedral angles changes during the simulation. To achieve the same, I used the following command: $g_angle -f full.xtc -n dangle.ndx -ov -all -type dihedral I got the desired output. However, the output shows angles

Re: [gmx-users] get dihedrals in 0 to 360 degrees instead of -180 to +180 degrees

2015-09-10 Thread Catarina A. Carvalheda dos Santos
Hi again, Actually what I said is wrong. The right way to do it is: awk '{print $1, ($2<0) ? $2+360 : $2}' Sorry about that. On 10 September 2015 at 12:07, GAYATHRI S wrote: > Thank you very much. > That was helpful. > > Regards, > Gayathri S. > > > > > Hi, > > > >

[gmx-users] adding lipids

2015-09-10 Thread mohammad r
Hi everybody; I have a cubic box with a peptide in its center (the .gro file). Now I want to add some lipids (e.g. 3 molecules)(I have the .gro and .top and .pdb files of the lipid) to this box. But I don't know how to do it.I think that "gmx insert-molecules" command will help, but again I

Re: [gmx-users] get dihedrals in 0 to 360 degrees instead of -180 to +180 degrees

2015-09-10 Thread GAYATHRI S
Thank you very much. That was helpful. Regards, Gayathri S. > Hi, > > I'm assuming you are measuring more than one dihedral (since you are using > the -all option). So assuming columns 2 to 5 correspond to the measured > dihedrals: > > awk '{print $1,($2+180),($3+180),($4+180),($5+180)}'

[gmx-users] adding lipids

2015-09-10 Thread mohammad r
Hi everybody; I have a cubic box with a peptide in its center (the .gro file). Now I want to add some lipids (e.g. 3 molecules)(I have the .gro and .top and .pdb files of the lipid) to this box. But I don't know how to do it.I think that "gmx insert-molecules" command will help, but again I

Re: [gmx-users] naming of CH2 groups in pdb file

2015-09-10 Thread Justin Lemkul
On 9/10/15 5:10 AM, Alex Cullen wrote: Dear Gromacs users, I have built a pdb file format for a polymer, and I want to use GROMOS FF. Therefore, I included polar Hydrogens in the pdb file, but I do not know how to name CH2 groups in NAME and SEGNAME columns. When executing the pdbtogmx

[gmx-users] trajectory file (xtc) visualization by VMD

2015-09-10 Thread Homa rooz
Hi guys! I have had a problem with VMD when reads frames on xtc file. It stops suddenly. It seemed VMD is working out of memory so I remove solvent molecules by trjconv command. It went further but still stops before the end. What should I do? Can I remove some frame from the beginning part?

[gmx-users] GROMACS OPLS-AA question

2015-09-10 Thread Eric Smoll
Hello GROMACS users, I am interested in using the OPLS-AA as implemented in GROMACS. The OPLS-AA forcefield omits all nonbonded (Coulomb and LJ) interactions 1 and 2 bonds away. Nonbonded interactions 3 bonds are away are scaled by 1/2. Nonbonded interactions are applied without modification for

[gmx-users] g_order

2015-09-10 Thread Stella Nickerson
I have a molecule with a carbon chain attached to a ring. I want to use g_order to generate the ordering parameter across the simulation box. I've read the manual entry for g_order, and it said to create an index file with only the "relevant" atoms included, so I made a group with just the atoms

[gmx-users] NVE+NVE: Two groups: one with Tcouple while the other one not

2015-09-10 Thread Guiyuan Mo
Hi, I am modelling a box with two groups of molecule: N2 and C12H26. 1. Initially, NVT was used for both: ; Temperature coupling is on Tcoupl = nose-hoover tau_t = 1.0 1.0 tc-grps = N2 nC12 ref_t = 450 300 2. Then I turned off the Tcoupl for nC12 (by setting tau_t = -1): ;

Re: [gmx-users] NVE+NVE: Two groups: one with Tcouple while the other one not

2015-09-10 Thread Vitaly V. Chaban
The reason is the slow energy exchange between the gas and the solid. On Thu, Sep 10, 2015 at 9:47 PM, Guiyuan Mo wrote: > Okay. Thank you VV. > > But the simulation result show that the system temperature would go up to > 1000K after I turned off the Tcoupl for nC12 (by

Re: [gmx-users] g_order

2015-09-10 Thread Justin Lemkul
On 9/10/15 6:58 PM, Stella Nickerson wrote: I'm simulating an ionic liquid/water liquid-liquid interface. The IL has an alkyl chain hanging off a ring, and previous simulations have found ordering of the IL at the liquid-liquid surface as the molecules essentially lay themselves flat against

Re: [gmx-users] g_order

2015-09-10 Thread Stella Nickerson
I'm simulating an ionic liquid/water liquid-liquid interface. The IL has an alkyl chain hanging off a ring, and previous simulations have found ordering of the IL at the liquid-liquid surface as the molecules essentially lay themselves flat against the interface. I though Sz might illustrate that.

[gmx-users] gromacs-5.1 with charmm36.ff

2015-09-10 Thread Krzysztof Kuczera
Hi I have run into a strange problem when making an urea+tip3p water box When trying to set up an energy minimization with gromacs-5.1 I get a grompp error: Program gmx grompp, VERSION 5.1 Source code file: /home/kuczera/prog/gromacs-5.1/src/gromacs/gmxpreprocess/toppush.c, line: 908

Re: [gmx-users] gromacs-5.1 with charmm36.ff

2015-09-10 Thread Justin Lemkul
On 9/10/15 6:17 PM, Krzysztof Kuczera wrote: Hi I have run into a strange problem when making an urea+tip3p water box When trying to set up an energy minimization with gromacs-5.1 I get a grompp error: Program gmx grompp, VERSION 5.1 Source code file:

Re: [gmx-users] reaction field and permittivity

2015-09-10 Thread Johnny Lu
thank you very much. On Thu, Sep 10, 2015 at 4:43 PM, Justin Lemkul wrote: > > > On 9/10/15 4:40 PM, Johnny Lu wrote: > >> Dear Users, >> >> I used mdp file at the following url for NVE vacuum simulation >> >>

[gmx-users] reaction field and permittivity

2015-09-10 Thread Johnny Lu
Dear Users, I used mdp file at the following url for NVE vacuum simulation http://shourjya.thinkbiosolution.com/wp-content/uploads/2013/02/nvevaccmdp1.txt Does epsilon_rf affect the simulation? epsilon_rf is dielectric constant beyond the cut-off. Since I set 0 for all the cut-off, the cut-off

[gmx-users] Creating a box of water with density 1000 g/l

2015-09-10 Thread Ebert Maximilian
Hi there, I am wondering if there is a better way to create a box with water of a certain size than: gmx solvate -cs spc216.gro -o water_box.gro -box 2.5 2.5 2.5 -maxsol 512 To get a density of roughly 1000 g/l i would need to add 512 molecules in such a box. But the script only adds 502. I

Re: [gmx-users] reaction field and permittivity

2015-09-10 Thread Justin Lemkul
On 9/10/15 4:40 PM, Johnny Lu wrote: Dear Users, I used mdp file at the following url for NVE vacuum simulation http://shourjya.thinkbiosolution.com/wp-content/uploads/2013/02/nvevaccmdp1.txt Does epsilon_rf affect the simulation? epsilon_rf is dielectric constant beyond the cut-off. No.

Re: [gmx-users] g_order

2015-09-10 Thread Justin Lemkul
On 9/10/15 1:58 PM, Stella Nickerson wrote: I have a molecule with a carbon chain attached to a ring. I want to use g_order to generate the ordering parameter across the simulation box. I've read the manual entry for g_order, and it said to create an index file with only the "relevant" atoms

Re: [gmx-users] Creating a box of water with density 1000 g/l

2015-09-10 Thread Ebert Maximilian
The reason is that I try to reproduce the experiment from the paper System-Size Dependence of Diffusion Coefficients and Viscosities from Molecular Dynamics Simulations with Periodic Boundary Conditions. before calculating the self diffusion coefficient for my organic solvent i wanted to see if

[gmx-users] oplsaa.ff parameters

2015-09-10 Thread Eric Smoll
Hello GROMACS users, oplsaa.ff/ffbonded.itp contains the following line: CT CT CT CT 3 2.92880 -1.46440 0.20920 -1.67360 0.0 0.0 ; hydrocarbon all-atom These values are at odds with those used provided in two publications listed in

Re: [gmx-users] Creating a box of water with density 1000 g/l

2015-09-10 Thread Justin Lemkul
On 9/10/15 5:01 PM, Ebert Maximilian wrote: The reason is that I try to reproduce the experiment from the paper System-Size Dependence of Diffusion Coefficients and Viscosities from Molecular Dynamics Simulations with Periodic Boundary Conditions. before calculating the self diffusion