~ubuntu-branches/ubuntu/trusty/rheolef/trusty

« back to all changes in this revision

Viewing changes to nfem/lib/field-visu-vector.cc

  • Committer: Package Import Robot
  • Author(s): Pierre Saramito
  • Date: 2012-04-06 09:12:21 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20120406091221-m58me99p1nxqui49
Tags: 6.0-1
* New upstream release 6.0 (major changes):
  - massively distributed and parallel support
  - full FEM characteristic method (Lagrange-Gakerkin method) support
  - enhanced users documentation 
  - source code supports g++-4.7 (closes: #667356)
* debian/control: dependencies for MPI distributed solvers added
* debian/rules: build commands simplified
* debian/librheolef-dev.install: man1/* to man9/* added
* debian/changelog: package description rewritted (closes: #661689)

Show diffs side-by-side

added added

removed removed

Lines of Context:
108
108
  if (opt.meshplot) plot << "load \"" << basename << ".mesh.plot\"" << endl << "replot "; 
109
109
  else 
110
110
   {
111
 
     plot << "set xrange ["<<opt.xmin[0]<<":"<<opt.xmax[0]<<"]" << endl;
112
 
     plot << "set yrange ["<<opt.xmin[1]<<":"<<opt.xmax[1]<<"]" << endl;
 
111
     if (!opt.keep_user_range) 
 
112
      {
 
113
        plot << "set xrange ["<<opt.xmin[0]<<":"<<opt.xmax[0]<<"]" << endl;
 
114
        plot << "set yrange ["<<opt.xmin[1]<<":"<<opt.xmax[1]<<"]" << endl;
 
115
      }
113
116
     plot << "plot ";
114
117
   }
115
118
  plot << "\"" << basename 
153
156
  //
154
157
  plot << endl; // because of the trailing "\"
155
158
  plot << endl; 
156
 
  plot << "pause -1 \"<return>\"\n";
 
159
  if (opt.pause) plot << "pause -1 \"<return>\"\n";
157
160
  if (opt.postscript && (!opt.noxplot)) 
158
161
   {
159
162
        plot << "set output '" << basename << ".eps'" << endl;