URI: 
       twernerparams.h - werner - cellular automata simulation of wind-driven sand transport
  HTML git clone git://src.adamsgaard.dk/werner
   DIR Log
   DIR Files
   DIR Refs
   DIR LICENSE
       ---
       twernerparams.h (345B)
       ---
            1 #ifndef WERNERPARAMS_H_
            2 #define WERNERPARAMS_H_
            3 
            4 // set simulation parameters
            5 const int rows = 400;
            6 const int cols = 400;
            7 const int d_l = 5;       // wind transport distance (left to right)
            8 const double p_ns = 0.4; // likelihood of deposition in sand free cells
            9 const double p_s = 0.6;  // likelihood of deposition in sand covered cells
           10 
           11 #endif