The trajectory is missing, just send a conf.gro. One frame will be
enough to check for the error.
These are two separate issues.
1.) The difference between g_rdf and csg_stat without mapping file
Could you check that all exclusion you expect, show up in:
$ csg_stat --top topol.tpr --execl
and compare to the exclusion in
$ gmxdump -s topol.tpr
2.) The difference between csg_stat with and without mapping file
For this you have to understand how exclusion in VOTCA.
If you don't specify a mapping file, exclusion are just read for the
topology (tpr).
If you specify a mapping file, exclusion are generated by VOTCA due to
the following rule.
Everything which is connected via a bond, angle or dihedral is excluded.
In your case to generate exclusion equivalent to nrexcl=3, you will
need add some extra dihedrals to the mapping file (with evaluating
them).
If you are unsure compare:
$ csg_stat --top topol.tpr --execl
with
$ csg_stat --top topol.tpr --execl --cg pc_new_cg.xml
We need to document that better, patch for the manual are welcome!
<https://code.google.com/p/votca/wiki/Manual>
There is a typo in your settings.xml, type2=C instead of D.
Anyhow after changing that I did:
$ csg_stat --nt 8 --top topol.tpr --trj conf.gro --options
settings.xml --cg pc_new_cg.xml
$ csg_stat --nt 8 --top topol.tpr --trj conf.gro --options
settings_all.xml --cg pc_new_cg.xml --ext dist_all.new
and
$ echo -e "a B?\na D?\nq" | make_ndx -f conf.gro
$ echo -e "B?\nD?" | g_rdf -s topol.tpr -f conf.gro -n index.ndx -bin 0.01
If you now look at plot
gnuplot> p "rdf.xvg" w l,"B-D.dist.new" w l, "B-D.dist_all.new" w l
you will see that rdf.xvg, B-D.dist.new and B-D.dist_all.new exactly the same.
I am not sure where your original difference came from. The only
things, which might make a difference is the "--begin 20", but you
can do the same with the -"b- option of g_rdf.
The "Contributing a change" paragraph tells you how to submit updates
>
>>
>> We need to document that better, patch for the manual are welcome!
>> <https://code.google.com/p/votca/wiki/Manual>
>>
> Are you suggesting me to incorporate patches to the manual. If so, I
> followed the above link but could not figure out how can I do it.
to the manual.
As you have already built the manual in past, it should be an easy thing.
Cheers,
Christoph
--
Christoph Junghans
Web: http://www.compphys.de
--
You received this message because you are subscribed to the Google Groups "votca" group.
To unsubscribe from this group and stop receiving emails from it, send an email to votca+un...@googlegroups.com.
To post to this group, send email to vo...@googlegroups.com.
Visit this group at http://groups.google.com/group/votca.
For more options, visit https://groups.google.com/groups/opt_out.
2013/10/1 Chandan Choudhury <iit...@gmail.com>:
>Also if I change min to 0.45, the distribution still match exactly.
>
> On Tue, Oct 1, 2013 at 8:34 PM, Christoph Junghans <jung...@votca.org>
> wrote:
>>
>> There is a typo in your settings.xml, type2=C instead of D.
>> Anyhow after changing that I did:
>
> Thanks. It worked for me now.
>>
>> $ csg_stat --nt 8 --top topol.tpr --trj conf.gro --options
>> settings.xml --cg pc_new_cg.xml
>> $ csg_stat --nt 8 --top topol.tpr --trj conf.gro --options
>> settings_all.xml --cg pc_new_cg.xml --ext dist_all.new
>> and
>> $ echo -e "a B?\na D?\nq" | make_ndx -f conf.gro
>> $ echo -e "B?\nD?" | g_rdf -s topol.tpr -f conf.gro -n index.ndx -bin 0.01
>> If you now look at plot
>> gnuplot> p "rdf.xvg" w l,"B-D.dist.new" w l, "B-D.dist_all.new" w l
>>
>> you will see that rdf.xvg, B-D.dist.new and B-D.dist_all.new exactly the
>> same.
>>
>> I am not sure where your original difference came from. The only
>> things, which might make a difference is the "--begin 20", but you
>> can do the same with the -"b- option of g_rdf.
>
> The distribution matches very well.
So I cannot really reproduce what happens for you before.