~esys-p-dev/esys-particle/gengeo

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/////////////////////////////////////////////////////////////
//                                                         //
// Copyright (c) 2007-2014 by The University of Queensland //
// Centre for Geoscience Computing                         //
// http://earth.uq.edu.au/centre-geoscience-computing      //
//                                                         //
// Primary Business: Brisbane, Queensland, Australia       //
// Licensed under the Open Software License version 3.0    //
// http://www.opensource.org/licenses/osl-3.0.php          //
//                                                         //
/////////////////////////////////////////////////////////////

#include "geometry/Sphere.h"
#include "util/vector3.h"
#include "CircMNTable3D.h"
#include "InsertGenerator3D.h"
#include "granular_gouge.h"

// --- IO includes ---
#include <iostream>

using std::cout;
using std::cout;
using std::endl;

// -- System includes --
#include <cstdlib>
#include <sys/time.h>
using std::atoi;
using std::atof;


int main(int argc, char** argv)
{
  int ret=0;

  double xsize=atof(argv[1]);
  double ysize=atof(argv[2]);
  double ysize_bdry=atof(argv[3]);
  double zsize=atof(argv[4]);
  int nrid=atoi(argv[5]);
  double rid=atoi(argv[6]);
  int ntry=atoi(argv[7]);
  double rmin=atof(argv[8]);
  double grmin=atof(argv[9]);
  double grmax=atof(argv[10]);
  int outputstyle=atoi(argv[11]);


  // seed RNG
  struct timeval tv;
  gettimeofday(&tv,NULL);
  int random_seed=tv.tv_usec;
  srand(random_seed);

  Vector3 min=Vector3(0.0,0.0,0.0); 
  Vector3 max=Vector3(xsize,ysize,zsize);
  Vector3 gmin=Vector3(0.0,ysize_bdry,0.0);
  Vector3 gmax=Vector3(xsize,ysize-ysize_bdry,zsize);

  CircMNTable3D T(min,max,2.5,3);
  CircMNTable3D::SetOutputStyle(outputstyle);
  InsertGenerator3D G(rmin,1.0,ntry,1000,1e-6);

  generate_upper_tri_rough_block(&T,&G,xsize,ysize_bdry,zsize,ysize-ysize_bdry,nrid,rid);
  generate_lower_tri_rough_block(&T,&G,xsize,ysize_bdry,zsize,0.0,nrid,rid);
  generate_granular_gouge(&T,&G,gmin,gmax,grmin,grmax,ntry);
  T.generateBonds(0,1e-5,0);
  
  cout << T << endl;
  
  return ret;
}