home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 16 / CD_ASCQ_16_0994.iso / maj / 2199 / examples / rocha.plt < prev    next >
Text File  |  1994-07-09  |  2KB  |  96 lines

  1. # rocha.plt - a couple of graphs on one page
  2.  
  3. paper size 8.5 11.0
  4. font 1
  5.  
  6. subplot area 2.0 2.0 6.5 5.5
  7. char size 0.10 ratio 0.67
  8. map x 0. 600. y 0. 60. y2 0. 600.0
  9. divi x 6,2 y 6,2 y2 1,1
  10. format x -1 y -1
  11. draw x y y2 mask
  12. xlabel 'Contact Time (hr)'
  13. ylabel 'Concentration (ppm)'
  14.  
  15. label botto ' '
  16. label botto 'BATCH EXPERIMENT # 2'
  17. label botto '15 g Berea Sandstone & 50 g Aluminum Citrate Solution'
  18.  
  19. # Plot Al data
  20. symbol tria size 0.08
  21. data
  22. 0,49.5 2,32.23 5,29.86 10,26.62 19.75,23.4
  23. 49.67,19.42 97.17,16.27 300,4.04 353,3.55 502,1.34
  24. end
  25. plot x y add symbol
  26.  
  27. # Plot Fe data
  28. symbol diam size 0.08
  29. data
  30. 10,8.2 19.75,9.14 49.67,9.86 100.,11.48 192.,2.66
  31. end
  32. plot x y add symbol
  33.  
  34. # Plot Ca data
  35. symbol squa size 0.08
  36. data
  37. 2,7.85 5,9.35 10,10.22 19.75,13.37 49.67,14.27
  38. 100.,20.48 192.,34.27 300,53.56 353,45.83 502,58.7
  39. end
  40. plot x y add symbol
  41.  
  42. # Plot Mg data
  43. symbol star size 0.08
  44. data
  45. 2,21.04 5,22.06 10,19.05 19.75,21.68 49.67,20.91
  46. 100.,27.28 192.,29.44 300,31.6 353,31.6 502,35.6
  47. end
  48. plot x y add symbol
  49.  
  50. # Plot K data
  51. symbol circ size 0.08
  52. data
  53. 2,12.28 5,12.64 10,15.38 19.75,14.43 49.67,15.06
  54. 100.,11.77 192.,13.48 300,14.5 353,14.9 502,17.2
  55. end
  56. plot x y add symbol
  57.  
  58. char size 0.08 ratio 0.67
  59. legend at 3 5
  60. symbol tria 'Al\U3+\D'
  61. symbol diam 'Fe\U3+\D'
  62. symbol squa 'Ca\U2+\D'
  63. symbol star 'Mg\U2+\D'
  64. symbol circ 'K\U+\D'
  65. end
  66.  
  67. subplot area 2 6 6.5 9.50
  68. char size 0.10 ratio 0.67
  69. map x 0. 600. y 650. 750. y2 5.5 8. x2 0. 600.0
  70. divi x 6,2  y 5,2  y2 5,1  x2 1,1
  71. format x -1 y -1 y2 1
  72. draw y x2 mask y2
  73. ylabel 'Na\U+\D Concentration (ppm)'
  74. y2label 'pH'
  75.  
  76. # Plot Na data
  77. symbol plus size 0.08
  78. data
  79. 0,709.3 2,709.6 5,706.4 10,708.3 19.75,698.2 49.67,712.4
  80. 100.,715.29 192.,718.66 300,708.55 353,715.03 502,713.1
  81. end
  82. plot x y add symbol
  83.  
  84. # Plot pH
  85. symbol squa size 0.08
  86. data
  87. 0,5.96 2,7.25 5,7.38 10,7.54 19.75,7.63 49.67,7.5
  88. 100.,7.44 192.,7.66 300,7.73 353,7.69 502,7.68
  89. end
  90. plot x y2 add symbol
  91. char size 0.08 ratio 0.67
  92.  
  93. legend at 3 7
  94. symbol plus 'Sodium Concentration'
  95. symbol squa 'pH'
  96. end