~nickpapior/siesta/trunk-kpoint-dos

« back to all changes in this revision

Viewing changes to Util/Contour/gnux11

  • 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
 
8
set size 8./10.,8./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
# set cntrparam linear
 
22
set cntrparam bspline
 
23
set cntrparam order 4
 
24
set cntrparam points 20
 
25
# set cntrparam levels incremental -.25,.025,.25
 
26
set cntrparam levels auto 20
 
27
#
 
28
# miscellanea
 
29
#
 
30
set nokey
 
31
set noxtics
 
32
set noytics
 
33
set noztics
 
34
#
 
35
splot 'file.2d' w l 1
 
36
pause -1