Skip to content

Commit 89bf555

Browse files
authored
Merge pull request #2315 from gforney/master
minor updates to ug and smokeview source for 6.10.2 release
2 parents ea1e2e6 + 34ae233 commit 89bf555

File tree

3 files changed

+114
-75
lines changed

3 files changed

+114
-75
lines changed

Manuals/SMV_User_Guide/SMV_User_Guide.tex

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3907,6 +3907,15 @@ \subsubsection{HVAC Files}
39073907
HIDEHVACVALS
39083908
\end{lstlisting}
39093909
3910+
%%+++++++++++++++++++++++
3911+
\hitemssf{LOADHVAC}
3912+
Use LOADHVAC to load hvac data. LOADHVAC has no arguments.
3913+
3914+
Usage:
3915+
\begin{lstlisting}
3916+
LOADHVAC
3917+
\end{lstlisting}
3918+
39103919
%%+++++++++++++++++++++++
39113920
\hitemssf{SHOWHVACDUCTVAL}This keyword shows the specified hvac duct quantity.
39123921
Usage:
@@ -4266,6 +4275,20 @@ \subsection{Controlling Colorbars}
42664275
quantity (char)
42674276
\end{lstlisting}
42684277
4278+
%%+++++++++++++++++++++++
4279+
\hitemssf{SETCBARLAB}Set the colorbar to use Lab coordinates.
4280+
Usage:
4281+
\begin{lstlisting}
4282+
SETCBARLAB
4283+
\end{lstlisting}
4284+
4285+
%%+++++++++++++++++++++++
4286+
\hitemssf{SETCBARRGB}Set the colorbar to use RGB coordinates.
4287+
Usage:
4288+
\begin{lstlisting}
4289+
SETCBARRGB
4290+
\end{lstlisting}
4291+
42694292
%%+++++++++++++++++++++++
42704293
\hitemssf{SHOWCBAREDIT, HIDECBAREDIT}Show or hide the colorbar edit dialog box.
42714294
Usage:
@@ -4368,6 +4391,13 @@ \subsection{Controlling the Scene}
43684391
\end{lstlisting}
43694392
where {\tt c}\ is any keyboard character (recognized by Smokeview) and {\tt ALT}\ is the ALT key.
43704393
4394+
%%+++++++++++++++++++++++
4395+
\hitemssf{NOEXIT}Causes Smokeview not to quit.
4396+
Usage:
4397+
\begin{lstlisting}
4398+
NOEXIT
4399+
\end{lstlisting}
4400+
43714401
%%+++++++++++++++++++++++
43724402
\hitemssf{PROJECTION}Set the projection type, 1 for perspective, 2 for size preserving.
43734403
Usage:

Source/smokeview/IOscript.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ void InitKeywords(void){
284284
InitKeyword("HIDEHVACVALS", SCRIPT_HIDEHVACVALS, 0); // documented
285285
InitKeyword("SHOWHVACDUCTVAL", SCRIPT_SHOWHVACDUCTVAL, 1); // documented
286286
InitKeyword("SHOWHVACNODEVAL", SCRIPT_SHOWHVACNODEVAL, 1); // documented
287-
InitKeyword("LOADHVAC", SCRIPT_LOADHVAC, 0);
287+
InitKeyword("LOADHVAC", SCRIPT_LOADHVAC, 0); // documented
288288

289289
// slice and vector slice files
290290
InitKeyword("LOADSLCF", SCRIPT_LOADSLCF, 1); // documented
@@ -325,8 +325,8 @@ void InitKeywords(void){
325325
InitKeyword("HIDECBAREDIT", SCRIPT_HIDECBAREDIT, 0); // documented
326326
InitKeyword("SHOWCBAREDIT", SCRIPT_SHOWCBAREDIT, 0); // documented
327327
InitKeyword("SETCBAR", SCRIPT_SETCBAR, 1); // documented
328-
InitKeyword("SETCBARLAB", SCRIPT_SETCBARLAB, 0);
329-
InitKeyword("SETCBARRGB", SCRIPT_SETCBARRGB, 0);
328+
InitKeyword("SETCBARLAB", SCRIPT_SETCBARLAB, 0); // documented
329+
InitKeyword("SETCBARRGB", SCRIPT_SETCBARRGB, 0); // documented
330330
InitKeyword("HILIGHTMINVALS", SCRIPT_HILIGHTMINVALS, 4); // documented
331331
InitKeyword("HILIGHTMAXVALS", SCRIPT_HILIGHTMAXVALS, 4); // documented
332332

@@ -338,7 +338,7 @@ void InitKeywords(void){
338338

339339
// controlling the scene
340340
InitKeyword("EXIT", SCRIPT_EXIT, 0); // documented
341-
InitKeyword("NOEXIT", SCRIPT_NOEXIT, 0);
341+
InitKeyword("NOEXIT", SCRIPT_NOEXIT, 0); // documented
342342
InitKeyword("GSLICEORIEN", SCRIPT_GSLICEORIEN, 1); // documented
343343
InitKeyword("GSLICEPOS", SCRIPT_GSLICEPOS, 1); // documented
344344
InitKeyword("GSLICEVIEW", SCRIPT_GSLICEVIEW, 1); // documented
@@ -389,7 +389,7 @@ void InitKeywords(void){
389389

390390
// miscellaneous
391391

392-
InitKeyword("GPUOFF", SCRIPT_GPUOFF, 0);
392+
InitKeyword("GPUOFF", SCRIPT_GPUOFF, 0); // documented
393393
InitKeyword("LABEL", SCRIPT_LABEL, 1); // documented
394394
InitKeyword("RGBTEST", SCRIPT_RGBTEST, 1); // documented
395395
InitKeyword("UNLOADPLOT2D", SCRIPT_UNLOADPLOT2D, 0);

0 commit comments

Comments
 (0)