Hello and thank you for gmsh!<br><br>I am using gmsh to view several kinds of data at once (e.g., electric currents and electromagnetic fields overlaid on the same geometry).  Oftentimes, the two different datasets need a different color scale.  I'd like to put that data into their respective *.pos files, however, I am not sure how index the views properly.  <br>
<br>The problem is that you don't know how many data sets there will be or what order they'll occur on the command line, so you can't (evidently) just hard-code an index into each *.pos file.<br><br>Example: if file1 contained:<br>
<br>View[0].RangeType = 2;<br>View[0].CustomMax = 20;<br>View[0].CustomMin = 0;<br><br>and if file2 contained:<br>
<br>
View[1].RangeType = 2;<br>
View[1].CustomMax = 10;<br>
View[1].CustomMin = -10;<br>
<br>then the indexes would only refer to the correct data views when gmsh is invoked as<br><br>
gmsh file1.pos file2.pos <br>
<br>
and things like:<br><br>gmsh file2.pos file1.pos<br>gmsh file2.pos <br><br>would not work as desired.<br><br>So I'm wondering if it's possible to fix my problem; PostProcessing.NbViews doesn't quite seem to do what I want, it only seems to give the total number of data sets loaded, and not the number of the dataset that gmsh is currently parsing.<br>
<br>Thanks for all your help in advance!  Please forgive me if the answer is already out there -- I looked at the manual, the t8.geo and t9.geo files and I did a search on the mail list archives but did not see anything that would help me.<br>
<br>--John<br><br><br>