home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / comp / graphics / avs / 929 < prev    next >
Encoding:
Internet Message Format  |  1992-11-18  |  2.2 KB

  1. Path: sparky!uunet!news.larc.nasa.gov!sirius.larc.nasa.gov!txn
  2. From: txn@sirius.larc.nasa.gov (Troung Nguyen)
  3. Newsgroups: comp.graphics.avs
  4. Subject: Novice AVS user needs advise. Please help!!
  5. Date: 18 Nov 1992 22:06:24 GMT
  6. Organization: NASA Langley Research Center, Hampton, VA  USA
  7. Lines: 77
  8. Distribution: world
  9. Message-ID: <1eeep0INN90u@rave.larc.nasa.gov>
  10. NNTP-Posting-Host: sirius.larc.nasa.gov
  11.  
  12.  
  13.  Hi, I am new to this group and AVS.  I need some advise on the simple 
  14.  problem below.
  15.  
  16.  I am having trouble passing parameters "min_ext" and "max_ext"
  17.  from module "read field" to "field to mesh" in the network below
  18.  
  19.  
  20.        |Read Field|
  21.         |
  22.         |
  23.         |
  24.        |Field to Mesh|     |Generate Axes|
  25.         |            |
  26.         |------------------------
  27.         |
  28.        |Geometry Viewer|
  29.  
  30.  
  31.  What I was trying to do is to display 2d uniform field 
  32.  between min_ext and max_ext (both x and y) so that I can superimpose 
  33.  another geometry on top later on.
  34.  
  35.  What I got was a  mesh spaced between 0 and 120  instead of 
  36.  between min_ext and max_ext in both x and y directions. 
  37.  So, the question is how to display the mesh correctly between
  38.  the min and max specified.
  39.  
  40.  I prefer not having to generate the xy coordinate points for 
  41.  each grid point, the field is uniformly spaced.  And module
  42.  "volume bounds" is not compatible with the 2d field.
  43.  
  44.  Thank you very much for responding. Please response via email.
  45.  I use AVS Release 4 on a Sun if it matters.# AVS field file
  46. # this is a header file for a field to be
  47. # used in conjunction with the  build a field module of AVS
  48. #
  49. ndim = 2
  50. dim1 = 121
  51. dim2 = 121
  52. nspace = 2
  53. veclen = 1
  54. data = float
  55. field = uniform
  56. min_ext = -.762  -.762
  57. max_ext =  .762   .762
  58. label = normalized_RCS
  59.  
  60. variable 1 file=./almond.dat filetype=ascii skip=3
  61.  
  62.  
  63.  Truong Nguyen
  64.  txn@radar0.larc.nasa.gov
  65.  
  66. -----------------------------
  67.  
  68.  PS: Below is the field file to read the data. 
  69.  
  70. # AVS field file
  71. # this is a header file for a field to be
  72. # used in conjunction with the  build a field module of AVS
  73. #
  74. ndim = 2
  75. dim1 = 121
  76. dim2 = 121
  77. nspace = 2
  78. veclen = 1
  79. data = float
  80. field = uniform
  81. min_ext = -.762  -.762
  82. max_ext =  .762   .762
  83. label = normalized_data
  84.  
  85. variable 1 file=./almond.dat filetype=ascii skip=3
  86. ^L^L
  87.  
  88. ___end of field file-------
  89.