~jose-soler/siesta/unfolding

« back to all changes in this revision

Viewing changes to Util/Basis/vdens.gps

  • Committer: Alberto Garcia
  • Date: 2006-02-13 14:43:00 UTC
  • mfrom: (unknown (missing))
  • Revision ID: Arch-1:siesta@uam.es--2005%siesta-devel--reference--1.5--patch-36
More documentation and fixes for Examples, Tutorials, and Util
* Expanded and created README files for Examples, Tutorials, and Util
* Cleaned up Denchar (removed Tests directory from distribution) 
  and Vibra (new compilation scheme, using the top-level arch.make)
* Fixed end-of-file handling in sies2arc.


Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
set terminal postscript enhanced color
3
 
set output "vdens.ps"
4
 
#
5
 
there_is_core=`test -f CHCORE && echo 1 || echo 0`
6
 
zps2=`head -2 RED_VLOCAL | tail -1 | awk '{print $2}'`
7
 
print "zps2=", zps2
8
 
 
9
 
set multiplot
10
 
set size 0.5,0.5
11
 
set origin 0.0,0.5
12
 
set title "VNA"
13
 
plot "VNA" using 1:2  notitle with lines,\
14
 
     0.0 notitle with lines lt 0
15
 
 
16
 
set origin 0.5,0.5
17
 
set title "rV_{local} + 2*Z_{ps}"
18
 
plot  "RED_VLOCAL" using 1:2 notitle with lines,\
19
 
     0.0 notitle with lines lt 0
20
 
 
21
 
set origin 0.0,0.0
22
 
set title "Chlocal"
23
 
plot "CHLOCAL" using 1:2  notitle with lines,\
24
 
     0.0 notitle with lines lt 0
25
 
 
26
 
set origin 0.5,0.0
27
 
#
28
 
# CHCORE is boring
29
 
#if (there_is_core == 1) \
30
 
#set title "ChCore" ; \
31
 
#plot "CHCORE" using 1:2  notitle with lines,\
32
 
#     0.0 notitle with lines lt 0
33
 
 
34
 
##if (there_is_core == 0) \
35
 
set title "V_{local}" ; \
36
 
plot "RED_VLOCAL" using 1:((($2)-zps2)/($1)) notitle with lines,\
37
 
     0.0 notitle with lines lt 0
38
 
 
39
 
set nomultiplot
40
 
 
41
 
#
42
 
print " ==> Postscript output in vdens.ps"
43
 
 
44
 
 
45
 
 
46
 
 
47
 
 
48
 
 
49