~nickpapior/siesta/trunk-kpoint-dos

« back to all changes in this revision

Viewing changes to Util/Contour/gnups

  • Committer: Alberto Garcia
  • Date: 2004-11-25 18:49:43 UTC
  • Revision ID: Arch-1:siesta@uam.es--2004%siesta-devel--reference--0.11--patch-1
Siesta 0.11 -- imported from CVS
Import from cvs using date instead of siesta-0-11-release tag, since
the Pseudo structure was not properly integrated at that time and
did not get the tag.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# File for gnuplot's plotting of contours out of 2D grid
 
2
#
 
3
set output 'cont.ps'
 
4
#
 
5
# for postscript
 
6
#
 
7
set term postscript solid
 
8
set size 9./10.,9./7.
 
9
#
 
10
# for latex
 
11
# set term latex
 
12
# set size 5./5.,5./3.
 
13
#
 
14
# surface and contour settings
 
15
#
 
16
set parametric
 
17
set view 0, 0, 1, 1
 
18
set nosurface
 
19
set contour base
 
20
set noclabel
 
21
#
 
22
# set cntrparam linear
 
23
set cntrparam bspline
 
24
set cntrparam order 4
 
25
set cntrparam points 20
 
26
#
 
27
# set cntrparam levels incremental -.25,.025,.25
 
28
set cntrparam levels auto 20
 
29
#
 
30
# miscellanea
 
31
#
 
32
set nokey
 
33
set noxtics
 
34
set noytics
 
35
set noztics
 
36
#
 
37
splot 'file.2d' w l 1
 
38
#pause -1