Wiki

Clone wiki

pflotran / Depreciated / Documentation / QuickGuide / Skip

Back to Quick Guide

SKIP Card

Defines a block that skips lines of the input file. Any number of these SKIP/NOSKIP cards may be nested.

Required Cards:

SKIP
opens the block of skipped lines
NOSKIP
closes the block of skipped lines

Examples

SKIP
REGION top
  FACE TOP
  COORDINATES
    0.d0 0.d0 30.d0
    20.d0 15.d0 30.d0
  /
END
NOSKIP

Example of nested SKIP/NOSKIP

SKIP
REGION top
  FACE TOP
  COORDINATE 10.d0 7.5d0 15.d0
  SKIP
  COORDINATES
    0.d0 0.d0 30.d0
    20.d0 15.d0 30.d0
  /
  NOSKIP
END
NOSKIP

Updated