From: Josh Vermaas (vermaas2_at_illinois.edu)
Date: Thu Oct 15 2015 - 11:33:43 CDT

Hi Eric,

Would setting the individual matrices that make up the global view
matrix fix it for you? When rendering many (aligned) trajectories
independently, I will find a view I like, and then render it over and
over again across all the different molecules I have loaded. Here is an
example from one of my rendering runs:

foreach mid [molinfo list] {
#Set the view to be consistent for all molecules.
molinfo $mid set rotate_matrix {{{0.992137 -0.12383 -0.0181618 0}
{0.0190481 0.00597697 0.999806 0} {-0.123696 -0.99229 0.0082886 0} {0 0
0 1}}}
molinfo $mid set center_matrix {{{1 0 0 -0.590847} {0 1 0 0.0511168} {0
0 1 0.162233} {0 0 0 1}}}
molinfo $mid set scale_matrix {{{0.0376508 0 0 0} {0 0.0376508 0 0} {0 0
0.0376508 0} {0 0 0 1}}}
}
Does that do what you want?

-Josh Vermaas

On 10/14/2015 09:33 PM, Eric Smoll wrote:
> Hello,
>
> I have 8 simulate cells that are very similar in size (x and y unit
> cell dimensions are shown below).
>
> system-number, x(nm), y(nm)
> 1 7.53321 7.53321
> 2 7.55109 7.55109
> 3 7.56272 7.56272
> 4 7.59143 7.59143
> 5 7.61993 7.61993
> 6 7.65067 7.65067
> 7 7.64142 7.64142
> 8 7.63447 7.63447
>
> I would like to independently render each system (with x and y
> periodicity) as an image with a consistent scale across all 8 systems.
> Is there a simple way to do this in VMD? I am familiar with the scale
> commands but I believe that "display resetview" starts each systems
> off differently.
>
> Best,
> Eric