some questions about installation on Ubuntu 14.04

Asked by Wang Yaqiong

My work is to establish model of different materials, and I make use of "wall-ball" and "ball-ball" bond interaction in my script.

Due to some bugs on my computer when I ran some scripts, I reinstalled ESyS-Particle2.3.2 on Ubuntu 14.04 according to this tutorial: https://answers.launchpad.net/esys-particle/+faq/1613 , but I found particles connected through bond interactions were not stable. The displacement in z and x direction is not zero even though I did not have any force, friction statement in my script ( in the script, I only created the particles that were bonded together without any other processing), and the e_kin is also not zero. But I do not have that problem before my reinstallation.

My question is:
1. Is there any problems with my installation according to that tutorial? (After my installation, I could successfully run the bingle_output.py)
2. Should I reinstall the latest version of ESyS-Particle.2.3.5 on Ubuntu14.04? Is that system compatible with the latest version?
3. If there is no problem with my installation, what could be the potential reason of that abnormal phenomenon?

Here is my script:
from esys.lsm import *
import math
from esys.lsm.util import *
from esys.lsm.geometry import *

#instantiate a simulation object and
#initialise the neighbour search algorithm:
sim = LsmMpi (numWorkerProcesses =1 , mpiDimList = [1,1,1])
sim.initNeighbourSearch (
 particleType = "RotSphere",
 gridSpacing = 0.002, #>=2.5*Rmax+0.2*Rmin
 verletDist = 0.00003 #>=0.2*Rmin
)

############################# constants parameters ##################################
alfa = 1e6
rhos = 910.0*alfa
dMu=0.37; sMu=dMu
kr=1.0; eta=0.10
beta=0.001

########################### geometry ##############################################
rMean0=0.00035
rmin = 0.00005
rmax=.0006 # xin Sat 17 Oct 2020 02:39:24 PM CST
R_GT=0.05e-3
R_GM=0.6e-3
######################## Shear Control #############################################
wallName = ["top_wall", "bottom_wall"]
meshName = ["left_mesh_wall", "right_mesh_wall"]
interactionName = ["top_repel", "bow_repel"]
norm = [Vec3(0.0, -1.0, 0.0), Vec3(0.0, 1.0, 0.0), Vec3(-1.0, 0.0, 0.0), Vec3(1.0, 0.0, 0.0), Vec3(0.0, 0.0, -1.0), Vec3(0.0, 0.0, 1.0)]

shear_StrainRate=1e-9#rMean*0.000005
shear_dispRate = shear_StrainRate
v_bottom_Plate = Vec3(-1.0,0.0,0)*shear_dispRate

p0 = 100000 # the iso pressure
normalForce = norm[0]*p0*0.01*0.01

############################ Physical properties ##################################
M_PI = 3.141592653
GM_PoissonsRatio = 0.25;
GM_YoungsModulus = 6.936e5
GM_ShearModulus = GM_YoungsModulus / (2.0*(1.0+GM_PoissonsRatio))
GM_BulkModulus = GM_YoungsModulus / (3.0*(1.0-2*GM_PoissonsRatio))
GM_kpn=GM_YoungsModulus*M_PI
GM_ks=GM_kpn/ (2.0*(1.0+GM_PoissonsRatio))
kn=1e9 #normal stiffness of wall-ball contact

########################### simulation time control #################################
#specify the number of timesteps and the timestep increment:
dt = 0.1*math.sqrt(4/3*math.pi*rmin**3*rhos/(math.pi*GT_YoungsModulus*rmin)) #Sat 17 Oct 2020 02:42:19 PM CST
print 'dt = ', dt
sim.setNumTimeSteps (1000)
sim.setTimeStepSize (dt)
#specify the spatial domain for the simulation:
domain = BoundingBox(Vec3(-0.5,-0.1,-0.04), Vec3(1,0.1,0.12))
sim.setSpatialDomain(bBox=domain, circDimList=[False,False,False])
####################################################
sim.readGeometry("GM.geo") # I wrote the particles and connections in this script

Num = sim.getNumParticles()
print 'total number of particles in the model: ',Num

sim.setParticleDensity(
 tag=1000000,
 mask=-1,
 Density=1000.0*alfa
)

sim.setParticleNonRotational(1000000)

sim.createInteractionGroup(
 RotBondPrms(
  name="gm_bond",
  normalK=GM_kpn,
  shearK=GM_ks,
  torsionK=GM_ks,
  bendingK=GM_kpn,
  normalBrkForce=GM_kpn,
  shearBrkForce=GM_ks,
  torsionBrkForce=GM_ks,
  bendingBrkForce=GM_kpn,
  tag=1,
  scaling=True,
  meanR_scaling=True
  )
)

#########################################################

#add translational viscous damping:
sim.createInteractionGroup (
   LinDampingPrms(
      name="damping1",
      viscosity=1.0,
      maxIterations=100
   )
)

################################################

#create a FieldSaver to store the total kinetic energy of the particles:
sim.createFieldSaver (
 ParticleScalarFieldSaverPrms(
 fieldName="e_kin",
 fileName="01ekin.dat",
 fileFormat="SUM",
 beginTimeStep=0,
 endTimeStep=800000000,
 timeStepIncr=10
 )
)

#add a CheckPointer to store simulation data:
sim.createCheckPointer(
 CheckPointPrms(
  fileNamePrefix = "01snapshot",
  beginTimeStep = 0,
  endTimeStep = 800000000,
  timeStepIncr = 100
 )
)

#execute the simulation:
sim.run()

Question information

Language:
English Edit question
Status:
Solved
For:
ESyS-Particle Edit question
Assignee:
No assignee Edit question
Solved by:
Dion Weatherley
Solved:
Last query:
Last reply:
Revision history for this message
Dion Weatherley (d-weatherley) said :
#1

Hi Yaqiong,

Given that you were able to execute bingle_output.py correctly, ESyS-Particle is installed correctly. The problems you are having are more likely arising from your simulation script and/or your geometry file.

Looking at your script, it is possible that your timestep increment is not small enough. You have set dt like this:
dt = 0.1*math.sqrt(4/3*math.pi*rmin**3*rhos/(math.pi*GT_YoungsModulus*rmin))

(I think GT_YoungsModulus should be changed to GM_YoungsModulus)

However, the density of your particles is 1000.0*alfa, which is larger than rhos (=910.0*alpha). Also, the maximum stiffness in your model is math.pi*GM_YoungsModulus*rmax (not rmin). Consequently, I would set dt like this:
dt = 0.1*math.sqrt(4/3*math.pi*rmin**3*1000.0*alfa/(math.pi*GM_YoungsModulus*rmax))

Non-zero initial kinetic energy also may be expected if the bonded particles in your geometry file are not all separated by their equilibrium distance (r0 = r1 + r2). This can often happen just due to round-off errors induced by defining positions with a low number of decimal places in the geometry file. Generally this is not a major problem, particularly if you are using damping. These initial fluctuations in kinetic energy will be very low amplitude and should decay quickly. You may not have observed this with your previous installation because older versions of ESyS-Particle set the equilibrium distance equal to the initial separation of two bonded particles.

I would also recommend that you convert from using RotBondedPrms to using BrittleBeamPrms. The latter interaction is mathematically identical but takes fewer input parameters that are easier to calibrate:
BrittleBeamPrms (
   name = 'pp_bonds',
   youngsModulus = GM_YoungsModulus,
   poissonsRatio = GM_PoissonsRatio,
   cohesion = GM_cohesiveStrength,
   tanAngle = GM_tanFrictionAngle,
   tag = 1
)
You will need to specify the strength of bonds using parameters GM_cohesiveStrength (in stress units; e.g. 100MPa) and GM_tanFrictionAngle (I would usually set this equal to 1).

There is also a corresponding FrictionPrms, that takes similar parameters:
FrictionPrms (
   name = 'pp_friction',
   youngsModulus = GM_YoungsModulus,
   poissonsRatio = GM_PoissonsRatio,
   dynamicMu = 0.6,
   staticMu = 0.6
)

The scaling of elastic stiffnesses and breaking forces is calculated internally when using these interaction groups, according to linear elastic beam theory and a Mohr-Coulomb failure criterion. Generally these two interactions work very well and have been tested for a very broad range of Young's moduli and cohesive strengths.

If you continue to have problems, please post your new script and your geometry file so I can try out your simulation model myself.

Cheers,

Dion

Revision history for this message
Wang Yaqiong (wangyaqiong) said :
#2

Mr Weatherley:

Thank you so much for your answer.

I reinstall ESyS-2.3.5 this morning, and revised the script as your suggestion. But there is still the same problem I met yesterday. The figure output from paraview showed that particles have displacement in x and z direction, and the bond interaction did not break, but it deformed greatly. Also, non-zero initial kinetic energy increased gradually.

here is my script:

#import the appropriate ESyS-Particle modules:
from esys.lsm import *
import math
from esys.lsm.util import *
from esys.lsm.geometry import *
from directshearcontrol import *

#instantiate a simulation object and
#initialise the neighbour search algorithm:
sim = LsmMpi (numWorkerProcesses =1 , mpiDimList = [1,1,1])
sim.initNeighbourSearch (
 particleType = "RotSphere",
 gridSpacing = 0.002, #>=2.5*Rmax+0.2*Rmin
 verletDist = 0.00003 #>=0.2*Rmin
)

############################# constants parameters ##################################
alfa = 1e6
rhos = 910.0*alfa
dMu=0.37; sMu=dMu

########################### geometry ##############################################
R_GT=0.05e-3
R_GM=0.6e-3
############################ Physical properties for GM ##################################
M_PI = 3.141592653
GM_PoissonsRatio = 0.25;
GM_YoungsModulus = 6.936e5
GM_ShearModulus = GM_YoungsModulus / (2.0*(1.0+GM_PoissonsRatio))
GM_BulkModulus = GM_YoungsModulus / (3.0*(1.0-2*GM_PoissonsRatio))
GM_kpn=GM_YoungsModulus*M_PI
GM_ks=GM_kpn/ (2.0*(1.0+GM_PoissonsRatio))
GM_tanFrictionAngle = 1
GM_cohesiveStrength = GM_ks*1e9
kn=1e9 #normal stiffness of wall-ball contact

############################ Physical properties for GT ##################################
GT_PoissonsRatio = 0.15;
GT_YoungsModulus = 0.8385e9
GT_ShearModulus = GT_YoungsModulus / (2.0*(1.0+GT_PoissonsRatio))
GT_BulkModulus = GT_YoungsModulus / (3.0*(1.0-2*GT_PoissonsRatio))
GT_kpn=GT_YoungsModulus*M_PI
GT_ks=GT_kpn/ (2.0*(1.0+GT_PoissonsRatio))
GT_tanFrictionAngle = 1
GT_cohesiveStrength = GT_ks*1e9
########################### simulation time control #################################
#specify the number of timesteps and the timestep increment:

GT_dt = 0.1*math.sqrt(4/3*math.pi*R_GT**3*rhos/(math.pi*GT_YoungsModulus*R_GT)) #Sat 17 Oct 2020 02:42:19 PM CST
GM_dt = 0.1*math.sqrt(4/3*math.pi*R_GM**3*1000.0*alfa/(math.pi*GM_YoungsModulus*R_GM))
print 'dt = ', GM_dt
sim.setNumTimeSteps (100000)
sim.setTimeStepSize (GM_dt)
#specify the spatial domain for the simulation:
domain = BoundingBox(Vec3(-0.5,-0.1,-0.04), Vec3(1,0.1,0.12))
sim.setSpatialDomain(bBox=domain, circDimList=[False,False,False])
####################################################
sim.readGeometry("GM.geo")
#sim.readGeometry("01NWGT.geo")

Num = sim.getNumParticles()
print 'total number of particles in the model: ',Num

sim.setParticleDensity(
 tag=1000000,
 mask=-1,
 Density=1000.0*alfa
)

sim.setParticleDensity(
 tag=10000,
 mask=-1,
 Density=910.0*alfa
)
sim.setParticleDensity(
 tag=10003,
 mask=-1,
 Density=910.0*alfa
)

sim.setParticleNonRotational(1000000)
sim.setParticleNonRotational(10000)
sim.setParticleNonRotational(10003)

#initialise bond interactions for gm particles:

sim.createInteractionGroup(
 BrittleBeamPrms(
  name="gm_bond",
  youngsModulus=GM_YoungsModulus,
  poissonsRatio=GM_PoissonsRatio,
  cohesion=GM_cohesiveStrength,
  tanAngle=GM_tanFrictionAngle,
  tag=1
  )
)

'''
sim.createInteractionGroup(
 BrittleBeamPrms(
  name="fibre_bond",
  youngsModulus=GT_YoungsModulus,
  poissonsRatio=GT_PoissonsRatio,
  cohesion=GT_cohesiveStrength,
  tanAngle=GT_tanFrictionAngle,
  tag=2
  )
)
sim.createInteractionGroup(
 BrittleBeamPrms(
  name="gt_bond",
  youngsModulus=GT_YoungsModulus,
  poissonsRatio=GT_PoissonsRatio,
  cohesion=GT_cohesiveStrength,
  tanAngle=GT_tanFrictionAngle,
  tag=3
  )
)
'''

#initialise frictional interactions for unbonded particles:

sim.createInteractionGroup (
   FrictionPrms(
      name="friction",
      youngsModulus=3.59e9,
      poissonsRatio=0.25,
      dynamicMu=dMu,
      staticMu=sMu
   )
)

#########################################################
sim.createExclusion(
 interactionName1='gm_bond',
 interactionName2='friction'
)

'''
sim.createExclusion(
 interactionName1="fibre_bond",
 interactionName2='friction'
)

sim.createExclusion(
 interactionName1="gt_bond",
 interactionName2='friction'
)
'''
#########################################################

#add translational viscous damping:
sim.createInteractionGroup (
   LinDampingPrms(
      name="damping1",
      viscosity=1.0,
      maxIterations=100
   )
)

################# ###################

#create a FieldSaver to store the total kinetic energy of the particles:
sim.createFieldSaver (
 ParticleScalarFieldSaverPrms(
 fieldName="e_kin",
 fileName="01ekin.dat",
 fileFormat="SUM",
 beginTimeStep=0,
 endTimeStep=800000000,
 timeStepIncr=10
 )
)

#add a CheckPointer to store simulation data:
sim.createCheckPointer(
 CheckPointPrms(
  fileNamePrefix = "01snapshot",
  beginTimeStep = 0,
  endTimeStep = 800000000,
  timeStepIncr = 100
 )
)

#create a FieldSaver to wall forces:
RAW2_NormalForcesaver = InteractionVectorFieldSaverPrms(
 interactionName="friction",
 fieldName="normal_force",
 fileName="out_RAW_WITH_normalForce",
 fileFormat="RAW_WITH_POS_ID",
 beginTimeStep=0,
 endTimeStep=800000000,
 timeStepIncr=10000
)
sim.createFieldSaver(RAW2_NormalForcesaver)
#create a FieldSaver to wall forces:
RAW2_NormalForcesaver = InteractionVectorFieldSaverPrms(
 interactionName="friction",
 fieldName="force",
 fileName="out_RAW_WITH_Force",
 fileFormat="RAW_WITH_POS_ID",
 beginTimeStep=0,
 endTimeStep=800000000,
 timeStepIncr=10000
)
sim.createFieldSaver(RAW2_NormalForcesaver)

#execute the simulation:
sim.run()

################################################here is my geo file: the particles have initial overlaps according to the material's facial property#########################################

LSMGeometry 1.2
BoundingBox -0.5 -0.1 -0.04 1 0.1,0.12
PeriodicBoundaries 0 0 0
Dimension 3D
BeginParticles
Simple
560
0.0 -0.0021 0.0 0.0006 100000 1000000
0.0 -0.0021 0.00066 0.0006 100001 1000000
0.0 -0.0021 0.00132 0.0006 100002 1000000
0.0 -0.0021 0.00198 0.0006 100003 1000000
0.0 -0.0021 0.00264 0.0006 100004 1000000
0.0 -0.0021 0.0033 0.0006 100005 1000000
0.0 -0.0021 0.00396 0.0006 100006 1000000
0.0 -0.0021 0.00462 0.0006 100007 1000000
0.0 -0.0021 0.00528 0.0006 100008 1000000
0.0 -0.0021 0.00594 0.0006 100009 1000000
0.0 -0.0021 0.0066 0.0006 100010 1000000
0.0 -0.0021 0.00726 0.0006 100011 1000000
0.0 -0.0021 0.00792 0.0006 100012 1000000
0.0 -0.0021 0.00858 0.0006 100013 1000000
0.0 -0.0021 0.00924 0.0006 100014 1000000
0.0 -0.0021 0.0099 0.0006 100015 1000000
0.00066 -0.0021 0.0 0.0006 100016 1000000
0.00066 -0.0021 0.00066 0.0006 100017 1000000
0.00066 -0.0021 0.00132 0.0006 100018 1000000
0.00066 -0.0021 0.00198 0.0006 100019 1000000
0.00066 -0.0021 0.00264 0.0006 100020 1000000
0.00066 -0.0021 0.0033 0.0006 100021 1000000
0.00066 -0.0021 0.00396 0.0006 100022 1000000
0.00066 -0.0021 0.00462 0.0006 100023 1000000
0.00066 -0.0021 0.00528 0.0006 100024 1000000
0.00066 -0.0021 0.00594 0.0006 100025 1000000
0.00066 -0.0021 0.0066 0.0006 100026 1000000
0.00066 -0.0021 0.00726 0.0006 100027 1000000
0.00066 -0.0021 0.00792 0.0006 100028 1000000
0.00066 -0.0021 0.00858 0.0006 100029 1000000
0.00066 -0.0021 0.00924 0.0006 100030 1000000
0.00066 -0.0021 0.0099 0.0006 100031 1000000
0.00132 -0.0021 0.0 0.0006 100032 1000000
0.00132 -0.0021 0.00066 0.0006 100033 1000000
0.00132 -0.0021 0.00132 0.0006 100034 1000000
0.00132 -0.0021 0.00198 0.0006 100035 1000000
0.00132 -0.0021 0.00264 0.0006 100036 1000000
0.00132 -0.0021 0.0033 0.0006 100037 1000000
0.00132 -0.0021 0.00396 0.0006 100038 1000000
0.00132 -0.0021 0.00462 0.0006 100039 1000000
0.00132 -0.0021 0.00528 0.0006 100040 1000000
0.00132 -0.0021 0.00594 0.0006 100041 1000000
0.00132 -0.0021 0.0066 0.0006 100042 1000000
0.00132 -0.0021 0.00726 0.0006 100043 1000000
0.00132 -0.0021 0.00792 0.0006 100044 1000000
0.00132 -0.0021 0.00858 0.0006 100045 1000000
0.00132 -0.0021 0.00924 0.0006 100046 1000000
0.00132 -0.0021 0.0099 0.0006 100047 1000000
0.00198 -0.0021 0.0 0.0006 100048 1000000
0.00198 -0.0021 0.00066 0.0006 100049 1000000
0.00198 -0.0021 0.00132 0.0006 100050 1000000
0.00198 -0.0021 0.00198 0.0006 100051 1000000
0.00198 -0.0021 0.00264 0.0006 100052 1000000
0.00198 -0.0021 0.0033 0.0006 100053 1000000
0.00198 -0.0021 0.00396 0.0006 100054 1000000
0.00198 -0.0021 0.00462 0.0006 100055 1000000
0.00198 -0.0021 0.00528 0.0006 100056 1000000
0.00198 -0.0021 0.00594 0.0006 100057 1000000
0.00198 -0.0021 0.0066 0.0006 100058 1000000
0.00198 -0.0021 0.00726 0.0006 100059 1000000
0.00198 -0.0021 0.00792 0.0006 100060 1000000
0.00198 -0.0021 0.00858 0.0006 100061 1000000
0.00198 -0.0021 0.00924 0.0006 100062 1000000
0.00198 -0.0021 0.0099 0.0006 100063 1000000
0.00264 -0.0021 0.0 0.0006 100064 1000000
0.00264 -0.0021 0.00066 0.0006 100065 1000000
0.00264 -0.0021 0.00132 0.0006 100066 1000000
0.00264 -0.0021 0.00198 0.0006 100067 1000000
0.00264 -0.0021 0.00264 0.0006 100068 1000000
0.00264 -0.0021 0.0033 0.0006 100069 1000000
0.00264 -0.0021 0.00396 0.0006 100070 1000000
0.00264 -0.0021 0.00462 0.0006 100071 1000000
0.00264 -0.0021 0.00528 0.0006 100072 1000000
0.00264 -0.0021 0.00594 0.0006 100073 1000000
0.00264 -0.0021 0.0066 0.0006 100074 1000000
0.00264 -0.0021 0.00726 0.0006 100075 1000000
0.00264 -0.0021 0.00792 0.0006 100076 1000000
0.00264 -0.0021 0.00858 0.0006 100077 1000000
0.00264 -0.0021 0.00924 0.0006 100078 1000000
0.00264 -0.0021 0.0099 0.0006 100079 1000000
0.0033 -0.0021 0.0 0.0006 100080 1000000
0.0033 -0.0021 0.00066 0.0006 100081 1000000
0.0033 -0.0021 0.00132 0.0006 100082 1000000
0.0033 -0.0021 0.00198 0.0006 100083 1000000
0.0033 -0.0021 0.00264 0.0006 100084 1000000
0.0033 -0.0021 0.0033 0.0006 100085 1000000
0.0033 -0.0021 0.00396 0.0006 100086 1000000
0.0033 -0.0021 0.00462 0.0006 100087 1000000
0.0033 -0.0021 0.00528 0.0006 100088 1000000
0.0033 -0.0021 0.00594 0.0006 100089 1000000
0.0033 -0.0021 0.0066 0.0006 100090 1000000
0.0033 -0.0021 0.00726 0.0006 100091 1000000
0.0033 -0.0021 0.00792 0.0006 100092 1000000
0.0033 -0.0021 0.00858 0.0006 100093 1000000
0.0033 -0.0021 0.00924 0.0006 100094 1000000
0.0033 -0.0021 0.0099 0.0006 100095 1000000
0.00396 -0.0021 0.0 0.0006 100096 1000000
0.00396 -0.0021 0.00066 0.0006 100097 1000000
0.00396 -0.0021 0.00132 0.0006 100098 1000000
0.00396 -0.0021 0.00198 0.0006 100099 1000000
0.00396 -0.0021 0.00264 0.0006 100100 1000000
0.00396 -0.0021 0.0033 0.0006 100101 1000000
0.00396 -0.0021 0.00396 0.0006 100102 1000000
0.00396 -0.0021 0.00462 0.0006 100103 1000000
0.00396 -0.0021 0.00528 0.0006 100104 1000000
0.00396 -0.0021 0.00594 0.0006 100105 1000000
0.00396 -0.0021 0.0066 0.0006 100106 1000000
0.00396 -0.0021 0.00726 0.0006 100107 1000000
0.00396 -0.0021 0.00792 0.0006 100108 1000000
0.00396 -0.0021 0.00858 0.0006 100109 1000000
0.00396 -0.0021 0.00924 0.0006 100110 1000000
0.00396 -0.0021 0.0099 0.0006 100111 1000000
0.00462 -0.0021 0.0 0.0006 100112 1000000
0.00462 -0.0021 0.00066 0.0006 100113 1000000
0.00462 -0.0021 0.00132 0.0006 100114 1000000
0.00462 -0.0021 0.00198 0.0006 100115 1000000
0.00462 -0.0021 0.00264 0.0006 100116 1000000
0.00462 -0.0021 0.0033 0.0006 100117 1000000
0.00462 -0.0021 0.00396 0.0006 100118 1000000
0.00462 -0.0021 0.00462 0.0006 100119 1000000
0.00462 -0.0021 0.00528 0.0006 100120 1000000
0.00462 -0.0021 0.00594 0.0006 100121 1000000
0.00462 -0.0021 0.0066 0.0006 100122 1000000
0.00462 -0.0021 0.00726 0.0006 100123 1000000
0.00462 -0.0021 0.00792 0.0006 100124 1000000
0.00462 -0.0021 0.00858 0.0006 100125 1000000
0.00462 -0.0021 0.00924 0.0006 100126 1000000
0.00462 -0.0021 0.0099 0.0006 100127 1000000
0.00528 -0.0021 0.0 0.0006 100128 1000000
0.00528 -0.0021 0.00066 0.0006 100129 1000000
0.00528 -0.0021 0.00132 0.0006 100130 1000000
0.00528 -0.0021 0.00198 0.0006 100131 1000000
0.00528 -0.0021 0.00264 0.0006 100132 1000000
0.00528 -0.0021 0.0033 0.0006 100133 1000000
0.00528 -0.0021 0.00396 0.0006 100134 1000000
0.00528 -0.0021 0.00462 0.0006 100135 1000000
0.00528 -0.0021 0.00528 0.0006 100136 1000000
0.00528 -0.0021 0.00594 0.0006 100137 1000000
0.00528 -0.0021 0.0066 0.0006 100138 1000000
0.00528 -0.0021 0.00726 0.0006 100139 1000000
0.00528 -0.0021 0.00792 0.0006 100140 1000000
0.00528 -0.0021 0.00858 0.0006 100141 1000000
0.00528 -0.0021 0.00924 0.0006 100142 1000000
0.00528 -0.0021 0.0099 0.0006 100143 1000000
0.00594 -0.0021 0.0 0.0006 100144 1000000
0.00594 -0.0021 0.00066 0.0006 100145 1000000
0.00594 -0.0021 0.00132 0.0006 100146 1000000
0.00594 -0.0021 0.00198 0.0006 100147 1000000
0.00594 -0.0021 0.00264 0.0006 100148 1000000
0.00594 -0.0021 0.0033 0.0006 100149 1000000
0.00594 -0.0021 0.00396 0.0006 100150 1000000
0.00594 -0.0021 0.00462 0.0006 100151 1000000
0.00594 -0.0021 0.00528 0.0006 100152 1000000
0.00594 -0.0021 0.00594 0.0006 100153 1000000
0.00594 -0.0021 0.0066 0.0006 100154 1000000
0.00594 -0.0021 0.00726 0.0006 100155 1000000
0.00594 -0.0021 0.00792 0.0006 100156 1000000
0.00594 -0.0021 0.00858 0.0006 100157 1000000
0.00594 -0.0021 0.00924 0.0006 100158 1000000
0.00594 -0.0021 0.0099 0.0006 100159 1000000
0.0066 -0.0021 0.0 0.0006 100160 1000000
0.0066 -0.0021 0.00066 0.0006 100161 1000000
0.0066 -0.0021 0.00132 0.0006 100162 1000000
0.0066 -0.0021 0.00198 0.0006 100163 1000000
0.0066 -0.0021 0.00264 0.0006 100164 1000000
0.0066 -0.0021 0.0033 0.0006 100165 1000000
0.0066 -0.0021 0.00396 0.0006 100166 1000000
0.0066 -0.0021 0.00462 0.0006 100167 1000000
0.0066 -0.0021 0.00528 0.0006 100168 1000000
0.0066 -0.0021 0.00594 0.0006 100169 1000000
0.0066 -0.0021 0.0066 0.0006 100170 1000000
0.0066 -0.0021 0.00726 0.0006 100171 1000000
0.0066 -0.0021 0.00792 0.0006 100172 1000000
0.0066 -0.0021 0.00858 0.0006 100173 1000000
0.0066 -0.0021 0.00924 0.0006 100174 1000000
0.0066 -0.0021 0.0099 0.0006 100175 1000000
0.00726 -0.0021 0.0 0.0006 100176 1000000
0.00726 -0.0021 0.00066 0.0006 100177 1000000
0.00726 -0.0021 0.00132 0.0006 100178 1000000
0.00726 -0.0021 0.00198 0.0006 100179 1000000
0.00726 -0.0021 0.00264 0.0006 100180 1000000
0.00726 -0.0021 0.0033 0.0006 100181 1000000
0.00726 -0.0021 0.00396 0.0006 100182 1000000
0.00726 -0.0021 0.00462 0.0006 100183 1000000
0.00726 -0.0021 0.00528 0.0006 100184 1000000
0.00726 -0.0021 0.00594 0.0006 100185 1000000
0.00726 -0.0021 0.0066 0.0006 100186 1000000
0.00726 -0.0021 0.00726 0.0006 100187 1000000
0.00726 -0.0021 0.00792 0.0006 100188 1000000
0.00726 -0.0021 0.00858 0.0006 100189 1000000
0.00726 -0.0021 0.00924 0.0006 100190 1000000
0.00726 -0.0021 0.0099 0.0006 100191 1000000
0.00792 -0.0021 0.0 0.0006 100192 1000000
0.00792 -0.0021 0.00066 0.0006 100193 1000000
0.00792 -0.0021 0.00132 0.0006 100194 1000000
0.00792 -0.0021 0.00198 0.0006 100195 1000000
0.00792 -0.0021 0.00264 0.0006 100196 1000000
0.00792 -0.0021 0.0033 0.0006 100197 1000000
0.00792 -0.0021 0.00396 0.0006 100198 1000000
0.00792 -0.0021 0.00462 0.0006 100199 1000000
0.00792 -0.0021 0.00528 0.0006 100200 1000000
0.00792 -0.0021 0.00594 0.0006 100201 1000000
0.00792 -0.0021 0.0066 0.0006 100202 1000000
0.00792 -0.0021 0.00726 0.0006 100203 1000000
0.00792 -0.0021 0.00792 0.0006 100204 1000000
0.00792 -0.0021 0.00858 0.0006 100205 1000000
0.00792 -0.0021 0.00924 0.0006 100206 1000000
0.00792 -0.0021 0.0099 0.0006 100207 1000000
0.00858 -0.0021 0.0 0.0006 100208 1000000
0.00858 -0.0021 0.00066 0.0006 100209 1000000
0.00858 -0.0021 0.00132 0.0006 100210 1000000
0.00858 -0.0021 0.00198 0.0006 100211 1000000
0.00858 -0.0021 0.00264 0.0006 100212 1000000
0.00858 -0.0021 0.0033 0.0006 100213 1000000
0.00858 -0.0021 0.00396 0.0006 100214 1000000
0.00858 -0.0021 0.00462 0.0006 100215 1000000
0.00858 -0.0021 0.00528 0.0006 100216 1000000
0.00858 -0.0021 0.00594 0.0006 100217 1000000
0.00858 -0.0021 0.0066 0.0006 100218 1000000
0.00858 -0.0021 0.00726 0.0006 100219 1000000
0.00858 -0.0021 0.00792 0.0006 100220 1000000
0.00858 -0.0021 0.00858 0.0006 100221 1000000
0.00858 -0.0021 0.00924 0.0006 100222 1000000
0.00858 -0.0021 0.0099 0.0006 100223 1000000
0.00924 -0.0021 0.0 0.0006 100224 1000000
0.00924 -0.0021 0.00066 0.0006 100225 1000000
0.00924 -0.0021 0.00132 0.0006 100226 1000000
0.00924 -0.0021 0.00198 0.0006 100227 1000000
0.00924 -0.0021 0.00264 0.0006 100228 1000000
0.00924 -0.0021 0.0033 0.0006 100229 1000000
0.00924 -0.0021 0.00396 0.0006 100230 1000000
0.00924 -0.0021 0.00462 0.0006 100231 1000000
0.00924 -0.0021 0.00528 0.0006 100232 1000000
0.00924 -0.0021 0.00594 0.0006 100233 1000000
0.00924 -0.0021 0.0066 0.0006 100234 1000000
0.00924 -0.0021 0.00726 0.0006 100235 1000000
0.00924 -0.0021 0.00792 0.0006 100236 1000000
0.00924 -0.0021 0.00858 0.0006 100237 1000000
0.00924 -0.0021 0.00924 0.0006 100238 1000000
0.00924 -0.0021 0.0099 0.0006 100239 1000000
0.0099 -0.0021 0.0 0.0006 100240 1000000
0.0099 -0.0021 0.00066 0.0006 100241 1000000
0.0099 -0.0021 0.00132 0.0006 100242 1000000
0.0099 -0.0021 0.00198 0.0006 100243 1000000
0.0099 -0.0021 0.00264 0.0006 100244 1000000
0.0099 -0.0021 0.0033 0.0006 100245 1000000
0.0099 -0.0021 0.00396 0.0006 100246 1000000
0.0099 -0.0021 0.00462 0.0006 100247 1000000
0.0099 -0.0021 0.00528 0.0006 100248 1000000
0.0099 -0.0021 0.00594 0.0006 100249 1000000
0.0099 -0.0021 0.0066 0.0006 100250 1000000
0.0099 -0.0021 0.00726 0.0006 100251 1000000
0.0099 -0.0021 0.00792 0.0006 100252 1000000
0.0099 -0.0021 0.00858 0.0006 100253 1000000
0.0099 -0.0021 0.00924 0.0006 100254 1000000
0.0099 -0.0021 0.0099 0.0006 100255 1000000
0.01056 -0.0021 0.0 0.0006 100256 1000000
0.01056 -0.0021 0.00066 0.0006 100257 1000000
0.01056 -0.0021 0.00132 0.0006 100258 1000000
0.01056 -0.0021 0.00198 0.0006 100259 1000000
0.01056 -0.0021 0.00264 0.0006 100260 1000000
0.01056 -0.0021 0.0033 0.0006 100261 1000000
0.01056 -0.0021 0.00396 0.0006 100262 1000000
0.01056 -0.0021 0.00462 0.0006 100263 1000000
0.01056 -0.0021 0.00528 0.0006 100264 1000000
0.01056 -0.0021 0.00594 0.0006 100265 1000000
0.01056 -0.0021 0.0066 0.0006 100266 1000000
0.01056 -0.0021 0.00726 0.0006 100267 1000000
0.01056 -0.0021 0.00792 0.0006 100268 1000000
0.01056 -0.0021 0.00858 0.0006 100269 1000000
0.01056 -0.0021 0.00924 0.0006 100270 1000000
0.01056 -0.0021 0.0099 0.0006 100271 1000000
0.01122 -0.0021 0.0 0.0006 100272 1000000
0.01122 -0.0021 0.00066 0.0006 100273 1000000
0.01122 -0.0021 0.00132 0.0006 100274 1000000
0.01122 -0.0021 0.00198 0.0006 100275 1000000
0.01122 -0.0021 0.00264 0.0006 100276 1000000
0.01122 -0.0021 0.0033 0.0006 100277 1000000
0.01122 -0.0021 0.00396 0.0006 100278 1000000
0.01122 -0.0021 0.00462 0.0006 100279 1000000
0.01122 -0.0021 0.00528 0.0006 100280 1000000
0.01122 -0.0021 0.00594 0.0006 100281 1000000
0.01122 -0.0021 0.0066 0.0006 100282 1000000
0.01122 -0.0021 0.00726 0.0006 100283 1000000
0.01122 -0.0021 0.00792 0.0006 100284 1000000
0.01122 -0.0021 0.00858 0.0006 100285 1000000
0.01122 -0.0021 0.00924 0.0006 100286 1000000
0.01122 -0.0021 0.0099 0.0006 100287 1000000
0.01188 -0.0021 0.0 0.0006 100288 1000000
0.01188 -0.0021 0.00066 0.0006 100289 1000000
0.01188 -0.0021 0.00132 0.0006 100290 1000000
0.01188 -0.0021 0.00198 0.0006 100291 1000000
0.01188 -0.0021 0.00264 0.0006 100292 1000000
0.01188 -0.0021 0.0033 0.0006 100293 1000000
0.01188 -0.0021 0.00396 0.0006 100294 1000000
0.01188 -0.0021 0.00462 0.0006 100295 1000000
0.01188 -0.0021 0.00528 0.0006 100296 1000000
0.01188 -0.0021 0.00594 0.0006 100297 1000000
0.01188 -0.0021 0.0066 0.0006 100298 1000000
0.01188 -0.0021 0.00726 0.0006 100299 1000000
0.01188 -0.0021 0.00792 0.0006 100300 1000000
0.01188 -0.0021 0.00858 0.0006 100301 1000000
0.01188 -0.0021 0.00924 0.0006 100302 1000000
0.01188 -0.0021 0.0099 0.0006 100303 1000000
0.01254 -0.0021 0.0 0.0006 100304 1000000
0.01254 -0.0021 0.00066 0.0006 100305 1000000
0.01254 -0.0021 0.00132 0.0006 100306 1000000
0.01254 -0.0021 0.00198 0.0006 100307 1000000
0.01254 -0.0021 0.00264 0.0006 100308 1000000
0.01254 -0.0021 0.0033 0.0006 100309 1000000
0.01254 -0.0021 0.00396 0.0006 100310 1000000
0.01254 -0.0021 0.00462 0.0006 100311 1000000
0.01254 -0.0021 0.00528 0.0006 100312 1000000
0.01254 -0.0021 0.00594 0.0006 100313 1000000
0.01254 -0.0021 0.0066 0.0006 100314 1000000
0.01254 -0.0021 0.00726 0.0006 100315 1000000
0.01254 -0.0021 0.00792 0.0006 100316 1000000
0.01254 -0.0021 0.00858 0.0006 100317 1000000
0.01254 -0.0021 0.00924 0.0006 100318 1000000
0.01254 -0.0021 0.0099 0.0006 100319 1000000
0.0132 -0.0021 0.0 0.0006 100320 1000000
0.0132 -0.0021 0.00066 0.0006 100321 1000000
0.0132 -0.0021 0.00132 0.0006 100322 1000000
0.0132 -0.0021 0.00198 0.0006 100323 1000000
0.0132 -0.0021 0.00264 0.0006 100324 1000000
0.0132 -0.0021 0.0033 0.0006 100325 1000000
0.0132 -0.0021 0.00396 0.0006 100326 1000000
0.0132 -0.0021 0.00462 0.0006 100327 1000000
0.0132 -0.0021 0.00528 0.0006 100328 1000000
0.0132 -0.0021 0.00594 0.0006 100329 1000000
0.0132 -0.0021 0.0066 0.0006 100330 1000000
0.0132 -0.0021 0.00726 0.0006 100331 1000000
0.0132 -0.0021 0.00792 0.0006 100332 1000000
0.0132 -0.0021 0.00858 0.0006 100333 1000000
0.0132 -0.0021 0.00924 0.0006 100334 1000000
0.0132 -0.0021 0.0099 0.0006 100335 1000000
0.01386 -0.0021 0.0 0.0006 100336 1000000
0.01386 -0.0021 0.00066 0.0006 100337 1000000
0.01386 -0.0021 0.00132 0.0006 100338 1000000
0.01386 -0.0021 0.00198 0.0006 100339 1000000
0.01386 -0.0021 0.00264 0.0006 100340 1000000
0.01386 -0.0021 0.0033 0.0006 100341 1000000
0.01386 -0.0021 0.00396 0.0006 100342 1000000
0.01386 -0.0021 0.00462 0.0006 100343 1000000
0.01386 -0.0021 0.00528 0.0006 100344 1000000
0.01386 -0.0021 0.00594 0.0006 100345 1000000
0.01386 -0.0021 0.0066 0.0006 100346 1000000
0.01386 -0.0021 0.00726 0.0006 100347 1000000
0.01386 -0.0021 0.00792 0.0006 100348 1000000
0.01386 -0.0021 0.00858 0.0006 100349 1000000
0.01386 -0.0021 0.00924 0.0006 100350 1000000
0.01386 -0.0021 0.0099 0.0006 100351 1000000
0.01452 -0.0021 0.0 0.0006 100352 1000000
0.01452 -0.0021 0.00066 0.0006 100353 1000000
0.01452 -0.0021 0.00132 0.0006 100354 1000000
0.01452 -0.0021 0.00198 0.0006 100355 1000000
0.01452 -0.0021 0.00264 0.0006 100356 1000000
0.01452 -0.0021 0.0033 0.0006 100357 1000000
0.01452 -0.0021 0.00396 0.0006 100358 1000000
0.01452 -0.0021 0.00462 0.0006 100359 1000000
0.01452 -0.0021 0.00528 0.0006 100360 1000000
0.01452 -0.0021 0.00594 0.0006 100361 1000000
0.01452 -0.0021 0.0066 0.0006 100362 1000000
0.01452 -0.0021 0.00726 0.0006 100363 1000000
0.01452 -0.0021 0.00792 0.0006 100364 1000000
0.01452 -0.0021 0.00858 0.0006 100365 1000000
0.01452 -0.0021 0.00924 0.0006 100366 1000000
0.01452 -0.0021 0.0099 0.0006 100367 1000000
0.01518 -0.0021 0.0 0.0006 100368 1000000
0.01518 -0.0021 0.00066 0.0006 100369 1000000
0.01518 -0.0021 0.00132 0.0006 100370 1000000
0.01518 -0.0021 0.00198 0.0006 100371 1000000
0.01518 -0.0021 0.00264 0.0006 100372 1000000
0.01518 -0.0021 0.0033 0.0006 100373 1000000
0.01518 -0.0021 0.00396 0.0006 100374 1000000
0.01518 -0.0021 0.00462 0.0006 100375 1000000
0.01518 -0.0021 0.00528 0.0006 100376 1000000
0.01518 -0.0021 0.00594 0.0006 100377 1000000
0.01518 -0.0021 0.0066 0.0006 100378 1000000
0.01518 -0.0021 0.00726 0.0006 100379 1000000
0.01518 -0.0021 0.00792 0.0006 100380 1000000
0.01518 -0.0021 0.00858 0.0006 100381 1000000
0.01518 -0.0021 0.00924 0.0006 100382 1000000
0.01518 -0.0021 0.0099 0.0006 100383 1000000
0.01584 -0.0021 0.0 0.0006 100384 1000000
0.01584 -0.0021 0.00066 0.0006 100385 1000000
0.01584 -0.0021 0.00132 0.0006 100386 1000000
0.01584 -0.0021 0.00198 0.0006 100387 1000000
0.01584 -0.0021 0.00264 0.0006 100388 1000000
0.01584 -0.0021 0.0033 0.0006 100389 1000000
0.01584 -0.0021 0.00396 0.0006 100390 1000000
0.01584 -0.0021 0.00462 0.0006 100391 1000000
0.01584 -0.0021 0.00528 0.0006 100392 1000000
0.01584 -0.0021 0.00594 0.0006 100393 1000000
0.01584 -0.0021 0.0066 0.0006 100394 1000000
0.01584 -0.0021 0.00726 0.0006 100395 1000000
0.01584 -0.0021 0.00792 0.0006 100396 1000000
0.01584 -0.0021 0.00858 0.0006 100397 1000000
0.01584 -0.0021 0.00924 0.0006 100398 1000000
0.01584 -0.0021 0.0099 0.0006 100399 1000000
0.0165 -0.0021 0.0 0.0006 100400 1000000
0.0165 -0.0021 0.00066 0.0006 100401 1000000
0.0165 -0.0021 0.00132 0.0006 100402 1000000
0.0165 -0.0021 0.00198 0.0006 100403 1000000
0.0165 -0.0021 0.00264 0.0006 100404 1000000
0.0165 -0.0021 0.0033 0.0006 100405 1000000
0.0165 -0.0021 0.00396 0.0006 100406 1000000
0.0165 -0.0021 0.00462 0.0006 100407 1000000
0.0165 -0.0021 0.00528 0.0006 100408 1000000
0.0165 -0.0021 0.00594 0.0006 100409 1000000
0.0165 -0.0021 0.0066 0.0006 100410 1000000
0.0165 -0.0021 0.00726 0.0006 100411 1000000
0.0165 -0.0021 0.00792 0.0006 100412 1000000
0.0165 -0.0021 0.00858 0.0006 100413 1000000
0.0165 -0.0021 0.00924 0.0006 100414 1000000
0.0165 -0.0021 0.0099 0.0006 100415 1000000
0.01716 -0.0021 0.0 0.0006 100416 1000000
0.01716 -0.0021 0.00066 0.0006 100417 1000000
0.01716 -0.0021 0.00132 0.0006 100418 1000000
0.01716 -0.0021 0.00198 0.0006 100419 1000000
0.01716 -0.0021 0.00264 0.0006 100420 1000000
0.01716 -0.0021 0.0033 0.0006 100421 1000000
0.01716 -0.0021 0.00396 0.0006 100422 1000000
0.01716 -0.0021 0.00462 0.0006 100423 1000000
0.01716 -0.0021 0.00528 0.0006 100424 1000000
0.01716 -0.0021 0.00594 0.0006 100425 1000000
0.01716 -0.0021 0.0066 0.0006 100426 1000000
0.01716 -0.0021 0.00726 0.0006 100427 1000000
0.01716 -0.0021 0.00792 0.0006 100428 1000000
0.01716 -0.0021 0.00858 0.0006 100429 1000000
0.01716 -0.0021 0.00924 0.0006 100430 1000000
0.01716 -0.0021 0.0099 0.0006 100431 1000000
0.01782 -0.0021 0.0 0.0006 100432 1000000
0.01782 -0.0021 0.00066 0.0006 100433 1000000
0.01782 -0.0021 0.00132 0.0006 100434 1000000
0.01782 -0.0021 0.00198 0.0006 100435 1000000
0.01782 -0.0021 0.00264 0.0006 100436 1000000
0.01782 -0.0021 0.0033 0.0006 100437 1000000
0.01782 -0.0021 0.00396 0.0006 100438 1000000
0.01782 -0.0021 0.00462 0.0006 100439 1000000
0.01782 -0.0021 0.00528 0.0006 100440 1000000
0.01782 -0.0021 0.00594 0.0006 100441 1000000
0.01782 -0.0021 0.0066 0.0006 100442 1000000
0.01782 -0.0021 0.00726 0.0006 100443 1000000
0.01782 -0.0021 0.00792 0.0006 100444 1000000
0.01782 -0.0021 0.00858 0.0006 100445 1000000
0.01782 -0.0021 0.00924 0.0006 100446 1000000
0.01782 -0.0021 0.0099 0.0006 100447 1000000
0.01848 -0.0021 0.0 0.0006 100448 1000000
0.01848 -0.0021 0.00066 0.0006 100449 1000000
0.01848 -0.0021 0.00132 0.0006 100450 1000000
0.01848 -0.0021 0.00198 0.0006 100451 1000000
0.01848 -0.0021 0.00264 0.0006 100452 1000000
0.01848 -0.0021 0.0033 0.0006 100453 1000000
0.01848 -0.0021 0.00396 0.0006 100454 1000000
0.01848 -0.0021 0.00462 0.0006 100455 1000000
0.01848 -0.0021 0.00528 0.0006 100456 1000000
0.01848 -0.0021 0.00594 0.0006 100457 1000000
0.01848 -0.0021 0.0066 0.0006 100458 1000000
0.01848 -0.0021 0.00726 0.0006 100459 1000000
0.01848 -0.0021 0.00792 0.0006 100460 1000000
0.01848 -0.0021 0.00858 0.0006 100461 1000000
0.01848 -0.0021 0.00924 0.0006 100462 1000000
0.01848 -0.0021 0.0099 0.0006 100463 1000000
0.01914 -0.0021 0.0 0.0006 100464 1000000
0.01914 -0.0021 0.00066 0.0006 100465 1000000
0.01914 -0.0021 0.00132 0.0006 100466 1000000
0.01914 -0.0021 0.00198 0.0006 100467 1000000
0.01914 -0.0021 0.00264 0.0006 100468 1000000
0.01914 -0.0021 0.0033 0.0006 100469 1000000
0.01914 -0.0021 0.00396 0.0006 100470 1000000
0.01914 -0.0021 0.00462 0.0006 100471 1000000
0.01914 -0.0021 0.00528 0.0006 100472 1000000
0.01914 -0.0021 0.00594 0.0006 100473 1000000
0.01914 -0.0021 0.0066 0.0006 100474 1000000
0.01914 -0.0021 0.00726 0.0006 100475 1000000
0.01914 -0.0021 0.00792 0.0006 100476 1000000
0.01914 -0.0021 0.00858 0.0006 100477 1000000
0.01914 -0.0021 0.00924 0.0006 100478 1000000
0.01914 -0.0021 0.0099 0.0006 100479 1000000
0.0198 -0.0021 0.0 0.0006 100480 1000000
0.0198 -0.0021 0.00066 0.0006 100481 1000000
0.0198 -0.0021 0.00132 0.0006 100482 1000000
0.0198 -0.0021 0.00198 0.0006 100483 1000000
0.0198 -0.0021 0.00264 0.0006 100484 1000000
0.0198 -0.0021 0.0033 0.0006 100485 1000000
0.0198 -0.0021 0.00396 0.0006 100486 1000000
0.0198 -0.0021 0.00462 0.0006 100487 1000000
0.0198 -0.0021 0.00528 0.0006 100488 1000000
0.0198 -0.0021 0.00594 0.0006 100489 1000000
0.0198 -0.0021 0.0066 0.0006 100490 1000000
0.0198 -0.0021 0.00726 0.0006 100491 1000000
0.0198 -0.0021 0.00792 0.0006 100492 1000000
0.0198 -0.0021 0.00858 0.0006 100493 1000000
0.0198 -0.0021 0.00924 0.0006 100494 1000000
0.0198 -0.0021 0.0099 0.0006 100495 1000000
0.02046 -0.0021 0.0 0.0006 100496 1000000
0.02046 -0.0021 0.00066 0.0006 100497 1000000
0.02046 -0.0021 0.00132 0.0006 100498 1000000
0.02046 -0.0021 0.00198 0.0006 100499 1000000
0.02046 -0.0021 0.00264 0.0006 100500 1000000
0.02046 -0.0021 0.0033 0.0006 100501 1000000
0.02046 -0.0021 0.00396 0.0006 100502 1000000
0.02046 -0.0021 0.00462 0.0006 100503 1000000
0.02046 -0.0021 0.00528 0.0006 100504 1000000
0.02046 -0.0021 0.00594 0.0006 100505 1000000
0.02046 -0.0021 0.0066 0.0006 100506 1000000
0.02046 -0.0021 0.00726 0.0006 100507 1000000
0.02046 -0.0021 0.00792 0.0006 100508 1000000
0.02046 -0.0021 0.00858 0.0006 100509 1000000
0.02046 -0.0021 0.00924 0.0006 100510 1000000
0.02046 -0.0021 0.0099 0.0006 100511 1000000
0.02112 -0.0021 0.0 0.0006 100512 1000000
0.02112 -0.0021 0.00066 0.0006 100513 1000000
0.02112 -0.0021 0.00132 0.0006 100514 1000000
0.02112 -0.0021 0.00198 0.0006 100515 1000000
0.02112 -0.0021 0.00264 0.0006 100516 1000000
0.02112 -0.0021 0.0033 0.0006 100517 1000000
0.02112 -0.0021 0.00396 0.0006 100518 1000000
0.02112 -0.0021 0.00462 0.0006 100519 1000000
0.02112 -0.0021 0.00528 0.0006 100520 1000000
0.02112 -0.0021 0.00594 0.0006 100521 1000000
0.02112 -0.0021 0.0066 0.0006 100522 1000000
0.02112 -0.0021 0.00726 0.0006 100523 1000000
0.02112 -0.0021 0.00792 0.0006 100524 1000000
0.02112 -0.0021 0.00858 0.0006 100525 1000000
0.02112 -0.0021 0.00924 0.0006 100526 1000000
0.02112 -0.0021 0.0099 0.0006 100527 1000000
0.02178 -0.0021 0.0 0.0006 100528 1000000
0.02178 -0.0021 0.00066 0.0006 100529 1000000
0.02178 -0.0021 0.00132 0.0006 100530 1000000
0.02178 -0.0021 0.00198 0.0006 100531 1000000
0.02178 -0.0021 0.00264 0.0006 100532 1000000
0.02178 -0.0021 0.0033 0.0006 100533 1000000
0.02178 -0.0021 0.00396 0.0006 100534 1000000
0.02178 -0.0021 0.00462 0.0006 100535 1000000
0.02178 -0.0021 0.00528 0.0006 100536 1000000
0.02178 -0.0021 0.00594 0.0006 100537 1000000
0.02178 -0.0021 0.0066 0.0006 100538 1000000
0.02178 -0.0021 0.00726 0.0006 100539 1000000
0.02178 -0.0021 0.00792 0.0006 100540 1000000
0.02178 -0.0021 0.00858 0.0006 100541 1000000
0.02178 -0.0021 0.00924 0.0006 100542 1000000
0.02178 -0.0021 0.0099 0.0006 100543 1000000
0.02244 -0.0021 0.0 0.0006 100544 1000000
0.02244 -0.0021 0.00066 0.0006 100545 1000000
0.02244 -0.0021 0.00132 0.0006 100546 1000000
0.02244 -0.0021 0.00198 0.0006 100547 1000000
0.02244 -0.0021 0.00264 0.0006 100548 1000000
0.02244 -0.0021 0.0033 0.0006 100549 1000000
0.02244 -0.0021 0.00396 0.0006 100550 1000000
0.02244 -0.0021 0.00462 0.0006 100551 1000000
0.02244 -0.0021 0.00528 0.0006 100552 1000000
0.02244 -0.0021 0.00594 0.0006 100553 1000000
0.02244 -0.0021 0.0066 0.0006 100554 1000000
0.02244 -0.0021 0.00726 0.0006 100555 1000000
0.02244 -0.0021 0.00792 0.0006 100556 1000000
0.02244 -0.0021 0.00858 0.0006 100557 1000000
0.02244 -0.0021 0.00924 0.0006 100558 1000000
0.02244 -0.0021 0.0099 0.0006 100559 1000000
EndParticles
BeginConnect
2089
100000 100001 1
100000 100016 1
100000 100017 1
100001 100002 1
100001 100016 1
100001 100017 1
100001 100018 1
100002 100003 1
100002 100017 1
100002 100018 1
100002 100019 1
100003 100018 1
100003 100019 1
100016 100017 1
100016 100032 1
100016 100033 1
100017 100018 1
100017 100032 1
100017 100033 1
100017 100034 1
100018 100019 1
100018 100033 1
100018 100034 1
100018 100035 1
100019 100034 1
100019 100035 1
100032 100033 1
100032 100048 1
100032 100049 1
100033 100034 1
100033 100048 1
100033 100049 1
100033 100050 1
100034 100035 1
100034 100049 1
100034 100050 1
100034 100051 1
100035 100050 1
100035 100051 1
100048 100049 1
100049 100050 1
100050 100051 1
100003 100004 1
100003 100020 1
100004 100019 1
100019 100020 1
100019 100036 1
100020 100035 1
100035 100036 1
100035 100052 1
100036 100051 1
100051 100052 1
100048 100064 1
100048 100065 1
100049 100064 1
100049 100065 1
100049 100066 1
100050 100065 1
100050 100066 1
100050 100067 1
100051 100066 1
100051 100067 1
100051 100068 1
100004 100005 1
100004 100020 1
100004 100021 1
100005 100006 1
100005 100020 1
100005 100021 1
100005 100022 1
100006 100021 1
100006 100022 1
100020 100021 1
100020 100036 1
100020 100037 1
100021 100022 1
100021 100036 1
100021 100037 1
100021 100038 1
100022 100037 1
100022 100038 1
100036 100037 1
100036 100052 1
100036 100053 1
100037 100038 1
100037 100052 1
100037 100053 1
100037 100054 1
100038 100053 1
100038 100054 1
100052 100053 1
100053 100054 1
100006 100007 1
100006 100023 1
100007 100022 1
100022 100023 1
100022 100039 1
100023 100038 1
100038 100039 1
100038 100055 1
100039 100054 1
100054 100055 1
100052 100067 1
100052 100068 1
100052 100069 1
100053 100068 1
100053 100069 1
100053 100070 1
100054 100069 1
100054 100070 1
100054 100071 1
100007 100008 1
100007 100023 1
100007 100024 1
100008 100009 1
100008 100023 1
100008 100024 1
100008 100025 1
100009 100024 1
100009 100025 1
100023 100024 1
100023 100039 1
100023 100040 1
100024 100025 1
100024 100039 1
100024 100040 1
100024 100041 1
100025 100040 1
100025 100041 1
100039 100040 1
100039 100055 1
100039 100056 1
100040 100041 1
100040 100055 1
100040 100056 1
100040 100057 1
100041 100056 1
100041 100057 1
100055 100056 1
100056 100057 1
100009 100010 1
100009 100026 1
100010 100025 1
100025 100026 1
100025 100042 1
100026 100041 1
100041 100042 1
100041 100058 1
100042 100057 1
100057 100058 1
100055 100070 1
100055 100071 1
100055 100072 1
100056 100071 1
100056 100072 1
100056 100073 1
100057 100072 1
100057 100073 1
100057 100074 1
100010 100011 1
100010 100026 1
100010 100027 1
100011 100012 1
100011 100026 1
100011 100027 1
100011 100028 1
100012 100027 1
100012 100028 1
100026 100027 1
100026 100042 1
100026 100043 1
100027 100028 1
100027 100042 1
100027 100043 1
100027 100044 1
100028 100043 1
100028 100044 1
100042 100043 1
100042 100058 1
100042 100059 1
100043 100044 1
100043 100058 1
100043 100059 1
100043 100060 1
100044 100059 1
100044 100060 1
100058 100059 1
100059 100060 1
100012 100013 1
100012 100029 1
100013 100028 1
100028 100029 1
100028 100045 1
100029 100044 1
100044 100045 1
100044 100061 1
100045 100060 1
100060 100061 1
100058 100073 1
100058 100074 1
100058 100075 1
100059 100074 1
100059 100075 1
100059 100076 1
100060 100075 1
100060 100076 1
100060 100077 1
100013 100014 1
100013 100029 1
100013 100030 1
100014 100015 1
100014 100029 1
100014 100030 1
100014 100031 1
100015 100030 1
100015 100031 1
100029 100030 1
100029 100045 1
100029 100046 1
100030 100031 1
100030 100045 1
100030 100046 1
100030 100047 1
100031 100046 1
100031 100047 1
100045 100046 1
100045 100061 1
100045 100062 1
100046 100047 1
100046 100061 1
100046 100062 1
100046 100063 1
100047 100062 1
100047 100063 1
100061 100062 1
100062 100063 1
100061 100076 1
100061 100077 1
100061 100078 1
100062 100077 1
100062 100078 1
100062 100079 1
100063 100078 1
100063 100079 1
100064 100065 1
100064 100080 1
100064 100081 1
100065 100066 1
100065 100080 1
100065 100081 1
100065 100082 1
100066 100067 1
100066 100081 1
100066 100082 1
100066 100083 1
100067 100082 1
100067 100083 1
100080 100081 1
100080 100096 1
100080 100097 1
100081 100082 1
100081 100096 1
100081 100097 1
100081 100098 1
100082 100083 1
100082 100097 1
100082 100098 1
100082 100099 1
100083 100098 1
100083 100099 1
100096 100097 1
100097 100098 1
100098 100099 1
100067 100068 1
100067 100084 1
100068 100083 1
100083 100084 1
100083 100100 1
100084 100099 1
100099 100100 1
100096 100112 1
100096 100113 1
100097 100112 1
100097 100113 1
100097 100114 1
100098 100113 1
100098 100114 1
100098 100115 1
100099 100114 1
100099 100115 1
100099 100116 1
100068 100069 1
100068 100084 1
100068 100085 1
100069 100070 1
100069 100084 1
100069 100085 1
100069 100086 1
100070 100085 1
100070 100086 1
100084 100085 1
100084 100100 1
100084 100101 1
100085 100086 1
100085 100100 1
100085 100101 1
100085 100102 1
100086 100101 1
100086 100102 1
100100 100101 1
100101 100102 1
100070 100071 1
100070 100087 1
100071 100086 1
100086 100087 1
100086 100103 1
100087 100102 1
100102 100103 1
100100 100115 1
100100 100116 1
100100 100117 1
100101 100116 1
100101 100117 1
100101 100118 1
100102 100117 1
100102 100118 1
100102 100119 1
100071 100072 1
100071 100087 1
100071 100088 1
100072 100073 1
100072 100087 1
100072 100088 1
100072 100089 1
100073 100088 1
100073 100089 1
100087 100088 1
100087 100103 1
100087 100104 1
100088 100089 1
100088 100103 1
100088 100104 1
100088 100105 1
100089 100104 1
100089 100105 1
100103 100104 1
100104 100105 1
100073 100074 1
100073 100090 1
100074 100089 1
100089 100090 1
100089 100106 1
100090 100105 1
100105 100106 1
100103 100118 1
100103 100119 1
100103 100120 1
100104 100119 1
100104 100120 1
100104 100121 1
100105 100120 1
100105 100121 1
100105 100122 1
100074 100075 1
100074 100090 1
100074 100091 1
100075 100076 1
100075 100090 1
100075 100091 1
100075 100092 1
100076 100091 1
100076 100092 1
100090 100091 1
100090 100106 1
100090 100107 1
100091 100092 1
100091 100106 1
100091 100107 1
100091 100108 1
100092 100107 1
100092 100108 1
100106 100107 1
100107 100108 1
100076 100077 1
100076 100093 1
100077 100092 1
100092 100093 1
100092 100109 1
100093 100108 1
100108 100109 1
100106 100121 1
100106 100122 1
100106 100123 1
100107 100122 1
100107 100123 1
100107 100124 1
100108 100123 1
100108 100124 1
100108 100125 1
100077 100078 1
100077 100093 1
100077 100094 1
100078 100079 1
100078 100093 1
100078 100094 1
100078 100095 1
100079 100094 1
100079 100095 1
100093 100094 1
100093 100109 1
100093 100110 1
100094 100095 1
100094 100109 1
100094 100110 1
100094 100111 1
100095 100110 1
100095 100111 1
100109 100110 1
100110 100111 1
100109 100124 1
100109 100125 1
100109 100126 1
100110 100125 1
100110 100126 1
100110 100127 1
100111 100126 1
100111 100127 1
100112 100113 1
100112 100128 1
100112 100129 1
100113 100114 1
100113 100128 1
100113 100129 1
100113 100130 1
100114 100115 1
100114 100129 1
100114 100130 1
100114 100131 1
100115 100130 1
100115 100131 1
100128 100129 1
100128 100144 1
100128 100145 1
100129 100130 1
100129 100144 1
100129 100145 1
100129 100146 1
100130 100131 1
100130 100145 1
100130 100146 1
100130 100147 1
100131 100146 1
100131 100147 1
100144 100145 1
100145 100146 1
100146 100147 1
100115 100116 1
100115 100132 1
100116 100131 1
100131 100132 1
100131 100148 1
100132 100147 1
100147 100148 1
100144 100160 1
100144 100161 1
100145 100160 1
100145 100161 1
100145 100162 1
100146 100161 1
100146 100162 1
100146 100163 1
100147 100162 1
100147 100163 1
100147 100164 1
100116 100117 1
100116 100132 1
100116 100133 1
100117 100118 1
100117 100132 1
100117 100133 1
100117 100134 1
100118 100133 1
100118 100134 1
100132 100133 1
100132 100148 1
100132 100149 1
100133 100134 1
100133 100148 1
100133 100149 1
100133 100150 1
100134 100149 1
100134 100150 1
100148 100149 1
100149 100150 1
100118 100119 1
100118 100135 1
100119 100134 1
100134 100135 1
100134 100151 1
100135 100150 1
100150 100151 1
100148 100163 1
100148 100164 1
100148 100165 1
100149 100164 1
100149 100165 1
100149 100166 1
100150 100165 1
100150 100166 1
100150 100167 1
100119 100120 1
100119 100135 1
100119 100136 1
100120 100121 1
100120 100135 1
100120 100136 1
100120 100137 1
100121 100136 1
100121 100137 1
100135 100136 1
100135 100151 1
100135 100152 1
100136 100137 1
100136 100151 1
100136 100152 1
100136 100153 1
100137 100152 1
100137 100153 1
100151 100152 1
100152 100153 1
100121 100122 1
100121 100138 1
100122 100137 1
100137 100138 1
100137 100154 1
100138 100153 1
100153 100154 1
100151 100166 1
100151 100167 1
100151 100168 1
100152 100167 1
100152 100168 1
100152 100169 1
100153 100168 1
100153 100169 1
100153 100170 1
100122 100123 1
100122 100138 1
100122 100139 1
100123 100124 1
100123 100138 1
100123 100139 1
100123 100140 1
100124 100139 1
100124 100140 1
100138 100139 1
100138 100154 1
100138 100155 1
100139 100140 1
100139 100154 1
100139 100155 1
100139 100156 1
100140 100155 1
100140 100156 1
100154 100155 1
100155 100156 1
100124 100125 1
100124 100141 1
100125 100140 1
100140 100141 1
100140 100157 1
100141 100156 1
100156 100157 1
100154 100169 1
100154 100170 1
100154 100171 1
100155 100170 1
100155 100171 1
100155 100172 1
100156 100171 1
100156 100172 1
100156 100173 1
100125 100126 1
100125 100141 1
100125 100142 1
100126 100127 1
100126 100141 1
100126 100142 1
100126 100143 1
100127 100142 1
100127 100143 1
100141 100142 1
100141 100157 1
100141 100158 1
100142 100143 1
100142 100157 1
100142 100158 1
100142 100159 1
100143 100158 1
100143 100159 1
100157 100158 1
100158 100159 1
100157 100172 1
100157 100173 1
100157 100174 1
100158 100173 1
100158 100174 1
100158 100175 1
100159 100174 1
100159 100175 1
100160 100161 1
100160 100176 1
100160 100177 1
100161 100162 1
100161 100176 1
100161 100177 1
100161 100178 1
100162 100163 1
100162 100177 1
100162 100178 1
100162 100179 1
100163 100178 1
100163 100179 1
100176 100177 1
100176 100192 1
100176 100193 1
100177 100178 1
100177 100192 1
100177 100193 1
100177 100194 1
100178 100179 1
100178 100193 1
100178 100194 1
100178 100195 1
100179 100194 1
100179 100195 1
100192 100193 1
100193 100194 1
100194 100195 1
100163 100164 1
100163 100180 1
100164 100179 1
100179 100180 1
100179 100196 1
100180 100195 1
100195 100196 1
100192 100208 1
100192 100209 1
100193 100208 1
100193 100209 1
100193 100210 1
100194 100209 1
100194 100210 1
100194 100211 1
100195 100210 1
100195 100211 1
100195 100212 1
100164 100165 1
100164 100180 1
100164 100181 1
100165 100166 1
100165 100180 1
100165 100181 1
100165 100182 1
100166 100181 1
100166 100182 1
100180 100181 1
100180 100196 1
100180 100197 1
100181 100182 1
100181 100196 1
100181 100197 1
100181 100198 1
100182 100197 1
100182 100198 1
100196 100197 1
100197 100198 1
100166 100167 1
100166 100183 1
100167 100182 1
100182 100183 1
100182 100199 1
100183 100198 1
100198 100199 1
100196 100211 1
100196 100212 1
100196 100213 1
100197 100212 1
100197 100213 1
100197 100214 1
100198 100213 1
100198 100214 1
100198 100215 1
100167 100168 1
100167 100183 1
100167 100184 1
100168 100169 1
100168 100183 1
100168 100184 1
100168 100185 1
100169 100184 1
100169 100185 1
100183 100184 1
100183 100199 1
100183 100200 1
100184 100185 1
100184 100199 1
100184 100200 1
100184 100201 1
100185 100200 1
100185 100201 1
100199 100200 1
100200 100201 1
100169 100170 1
100169 100186 1
100170 100185 1
100185 100186 1
100185 100202 1
100186 100201 1
100201 100202 1
100199 100214 1
100199 100215 1
100199 100216 1
100200 100215 1
100200 100216 1
100200 100217 1
100201 100216 1
100201 100217 1
100201 100218 1
100170 100171 1
100170 100186 1
100170 100187 1
100171 100172 1
100171 100186 1
100171 100187 1
100171 100188 1
100172 100187 1
100172 100188 1
100186 100187 1
100186 100202 1
100186 100203 1
100187 100188 1
100187 100202 1
100187 100203 1
100187 100204 1
100188 100203 1
100188 100204 1
100202 100203 1
100203 100204 1
100172 100173 1
100172 100189 1
100173 100188 1
100188 100189 1
100188 100205 1
100189 100204 1
100204 100205 1
100202 100217 1
100202 100218 1
100202 100219 1
100203 100218 1
100203 100219 1
100203 100220 1
100204 100219 1
100204 100220 1
100204 100221 1
100173 100174 1
100173 100189 1
100173 100190 1
100174 100175 1
100174 100189 1
100174 100190 1
100174 100191 1
100175 100190 1
100175 100191 1
100189 100190 1
100189 100205 1
100189 100206 1
100190 100191 1
100190 100205 1
100190 100206 1
100190 100207 1
100191 100206 1
100191 100207 1
100205 100206 1
100206 100207 1
100205 100220 1
100205 100221 1
100205 100222 1
100206 100221 1
100206 100222 1
100206 100223 1
100207 100222 1
100207 100223 1
100208 100209 1
100208 100224 1
100208 100225 1
100209 100210 1
100209 100224 1
100209 100225 1
100209 100226 1
100210 100211 1
100210 100225 1
100210 100226 1
100210 100227 1
100211 100226 1
100211 100227 1
100224 100225 1
100224 100240 1
100224 100241 1
100225 100226 1
100225 100240 1
100225 100241 1
100225 100242 1
100226 100227 1
100226 100241 1
100226 100242 1
100226 100243 1
100227 100242 1
100227 100243 1
100240 100241 1
100241 100242 1
100242 100243 1
100211 100212 1
100211 100228 1
100212 100227 1
100227 100228 1
100227 100244 1
100228 100243 1
100243 100244 1
100240 100256 1
100240 100257 1
100241 100256 1
100241 100257 1
100241 100258 1
100242 100257 1
100242 100258 1
100242 100259 1
100243 100258 1
100243 100259 1
100243 100260 1
100212 100213 1
100212 100228 1
100212 100229 1
100213 100214 1
100213 100228 1
100213 100229 1
100213 100230 1
100214 100229 1
100214 100230 1
100228 100229 1
100228 100244 1
100228 100245 1
100229 100230 1
100229 100244 1
100229 100245 1
100229 100246 1
100230 100245 1
100230 100246 1
100244 100245 1
100245 100246 1
100214 100215 1
100214 100231 1
100215 100230 1
100230 100231 1
100230 100247 1
100231 100246 1
100246 100247 1
100244 100259 1
100244 100260 1
100244 100261 1
100245 100260 1
100245 100261 1
100245 100262 1
100246 100261 1
100246 100262 1
100246 100263 1
100215 100216 1
100215 100231 1
100215 100232 1
100216 100217 1
100216 100231 1
100216 100232 1
100216 100233 1
100217 100232 1
100217 100233 1
100231 100232 1
100231 100247 1
100231 100248 1
100232 100233 1
100232 100247 1
100232 100248 1
100232 100249 1
100233 100248 1
100233 100249 1
100247 100248 1
100248 100249 1
100217 100218 1
100217 100234 1
100218 100233 1
100233 100234 1
100233 100250 1
100234 100249 1
100249 100250 1
100247 100262 1
100247 100263 1
100247 100264 1
100248 100263 1
100248 100264 1
100248 100265 1
100249 100264 1
100249 100265 1
100249 100266 1
100218 100219 1
100218 100234 1
100218 100235 1
100219 100220 1
100219 100234 1
100219 100235 1
100219 100236 1
100220 100235 1
100220 100236 1
100234 100235 1
100234 100250 1
100234 100251 1
100235 100236 1
100235 100250 1
100235 100251 1
100235 100252 1
100236 100251 1
100236 100252 1
100250 100251 1
100251 100252 1
100220 100221 1
100220 100237 1
100221 100236 1
100236 100237 1
100236 100253 1
100237 100252 1
100252 100253 1
100250 100265 1
100250 100266 1
100250 100267 1
100251 100266 1
100251 100267 1
100251 100268 1
100252 100267 1
100252 100268 1
100252 100269 1
100221 100222 1
100221 100237 1
100221 100238 1
100222 100223 1
100222 100237 1
100222 100238 1
100222 100239 1
100223 100238 1
100223 100239 1
100237 100238 1
100237 100253 1
100237 100254 1
100238 100239 1
100238 100253 1
100238 100254 1
100238 100255 1
100239 100254 1
100239 100255 1
100253 100254 1
100254 100255 1
100253 100268 1
100253 100269 1
100253 100270 1
100254 100269 1
100254 100270 1
100254 100271 1
100255 100270 1
100255 100271 1
100256 100257 1
100256 100272 1
100256 100273 1
100257 100258 1
100257 100272 1
100257 100273 1
100257 100274 1
100258 100259 1
100258 100273 1
100258 100274 1
100258 100275 1
100259 100274 1
100259 100275 1
100272 100273 1
100272 100288 1
100272 100289 1
100273 100274 1
100273 100288 1
100273 100289 1
100273 100290 1
100274 100275 1
100274 100289 1
100274 100290 1
100274 100291 1
100275 100290 1
100275 100291 1
100288 100289 1
100289 100290 1
100290 100291 1
100259 100260 1
100259 100276 1
100260 100275 1
100275 100276 1
100275 100292 1
100276 100291 1
100291 100292 1
100288 100304 1
100288 100305 1
100289 100304 1
100289 100305 1
100289 100306 1
100290 100305 1
100290 100306 1
100290 100307 1
100291 100306 1
100291 100307 1
100291 100308 1
100260 100261 1
100260 100276 1
100260 100277 1
100261 100262 1
100261 100276 1
100261 100277 1
100261 100278 1
100262 100277 1
100262 100278 1
100276 100277 1
100276 100292 1
100276 100293 1
100277 100278 1
100277 100292 1
100277 100293 1
100277 100294 1
100278 100293 1
100278 100294 1
100292 100293 1
100293 100294 1
100262 100263 1
100262 100279 1
100263 100278 1
100278 100279 1
100278 100295 1
100279 100294 1
100294 100295 1
100292 100307 1
100292 100308 1
100292 100309 1
100293 100308 1
100293 100309 1
100293 100310 1
100294 100309 1
100294 100310 1
100294 100311 1
100263 100264 1
100263 100279 1
100263 100280 1
100264 100265 1
100264 100279 1
100264 100280 1
100264 100281 1
100265 100280 1
100265 100281 1
100279 100280 1
100279 100295 1
100279 100296 1
100280 100281 1
100280 100295 1
100280 100296 1
100280 100297 1
100281 100296 1
100281 100297 1
100295 100296 1
100296 100297 1
100265 100266 1
100265 100282 1
100266 100281 1
100281 100282 1
100281 100298 1
100282 100297 1
100297 100298 1
100295 100310 1
100295 100311 1
100295 100312 1
100296 100311 1
100296 100312 1
100296 100313 1
100297 100312 1
100297 100313 1
100297 100314 1
100266 100267 1
100266 100282 1
100266 100283 1
100267 100268 1
100267 100282 1
100267 100283 1
100267 100284 1
100268 100283 1
100268 100284 1
100282 100283 1
100282 100298 1
100282 100299 1
100283 100284 1
100283 100298 1
100283 100299 1
100283 100300 1
100284 100299 1
100284 100300 1
100298 100299 1
100299 100300 1
100268 100269 1
100268 100285 1
100269 100284 1
100284 100285 1
100284 100301 1
100285 100300 1
100300 100301 1
100298 100313 1
100298 100314 1
100298 100315 1
100299 100314 1
100299 100315 1
100299 100316 1
100300 100315 1
100300 100316 1
100300 100317 1
100269 100270 1
100269 100285 1
100269 100286 1
100270 100271 1
100270 100285 1
100270 100286 1
100270 100287 1
100271 100286 1
100271 100287 1
100285 100286 1
100285 100301 1
100285 100302 1
100286 100287 1
100286 100301 1
100286 100302 1
100286 100303 1
100287 100302 1
100287 100303 1
100301 100302 1
100302 100303 1
100301 100316 1
100301 100317 1
100301 100318 1
100302 100317 1
100302 100318 1
100302 100319 1
100303 100318 1
100303 100319 1
100304 100305 1
100304 100320 1
100304 100321 1
100305 100306 1
100305 100320 1
100305 100321 1
100305 100322 1
100306 100307 1
100306 100321 1
100306 100322 1
100306 100323 1
100307 100322 1
100307 100323 1
100320 100321 1
100320 100336 1
100320 100337 1
100321 100322 1
100321 100336 1
100321 100337 1
100321 100338 1
100322 100323 1
100322 100337 1
100322 100338 1
100322 100339 1
100323 100338 1
100323 100339 1
100336 100337 1
100337 100338 1
100338 100339 1
100307 100308 1
100307 100324 1
100308 100323 1
100323 100324 1
100323 100340 1
100324 100339 1
100339 100340 1
100336 100352 1
100336 100353 1
100337 100352 1
100337 100353 1
100337 100354 1
100338 100353 1
100338 100354 1
100338 100355 1
100339 100354 1
100339 100355 1
100339 100356 1
100308 100309 1
100308 100324 1
100308 100325 1
100309 100310 1
100309 100324 1
100309 100325 1
100309 100326 1
100310 100325 1
100310 100326 1
100324 100325 1
100324 100340 1
100324 100341 1
100325 100326 1
100325 100340 1
100325 100341 1
100325 100342 1
100326 100341 1
100326 100342 1
100340 100341 1
100341 100342 1
100310 100311 1
100310 100327 1
100311 100326 1
100326 100327 1
100326 100343 1
100327 100342 1
100342 100343 1
100340 100355 1
100340 100356 1
100340 100357 1
100341 100356 1
100341 100357 1
100341 100358 1
100342 100357 1
100342 100358 1
100342 100359 1
100311 100312 1
100311 100327 1
100311 100328 1
100312 100313 1
100312 100327 1
100312 100328 1
100312 100329 1
100313 100328 1
100313 100329 1
100327 100328 1
100327 100343 1
100327 100344 1
100328 100329 1
100328 100343 1
100328 100344 1
100328 100345 1
100329 100344 1
100329 100345 1
100343 100344 1
100344 100345 1
100313 100314 1
100313 100330 1
100314 100329 1
100329 100330 1
100329 100346 1
100330 100345 1
100345 100346 1
100343 100358 1
100343 100359 1
100343 100360 1
100344 100359 1
100344 100360 1
100344 100361 1
100345 100360 1
100345 100361 1
100345 100362 1
100314 100315 1
100314 100330 1
100314 100331 1
100315 100316 1
100315 100330 1
100315 100331 1
100315 100332 1
100316 100331 1
100316 100332 1
100330 100331 1
100330 100346 1
100330 100347 1
100331 100332 1
100331 100346 1
100331 100347 1
100331 100348 1
100332 100347 1
100332 100348 1
100346 100347 1
100347 100348 1
100316 100317 1
100316 100333 1
100317 100332 1
100332 100333 1
100332 100349 1
100333 100348 1
100348 100349 1
100346 100361 1
100346 100362 1
100346 100363 1
100347 100362 1
100347 100363 1
100347 100364 1
100348 100363 1
100348 100364 1
100348 100365 1
100317 100318 1
100317 100333 1
100317 100334 1
100318 100319 1
100318 100333 1
100318 100334 1
100318 100335 1
100319 100334 1
100319 100335 1
100333 100334 1
100333 100349 1
100333 100350 1
100334 100335 1
100334 100349 1
100334 100350 1
100334 100351 1
100335 100350 1
100335 100351 1
100349 100350 1
100350 100351 1
100349 100364 1
100349 100365 1
100349 100366 1
100350 100365 1
100350 100366 1
100350 100367 1
100351 100366 1
100351 100367 1
100352 100353 1
100352 100368 1
100352 100369 1
100353 100354 1
100353 100368 1
100353 100369 1
100353 100370 1
100354 100355 1
100354 100369 1
100354 100370 1
100354 100371 1
100355 100370 1
100355 100371 1
100368 100369 1
100368 100384 1
100368 100385 1
100369 100370 1
100369 100384 1
100369 100385 1
100369 100386 1
100370 100371 1
100370 100385 1
100370 100386 1
100370 100387 1
100371 100386 1
100371 100387 1
100384 100385 1
100385 100386 1
100386 100387 1
100355 100356 1
100355 100372 1
100356 100371 1
100371 100372 1
100371 100388 1
100372 100387 1
100387 100388 1
100384 100400 1
100384 100401 1
100385 100400 1
100385 100401 1
100385 100402 1
100386 100401 1
100386 100402 1
100386 100403 1
100387 100402 1
100387 100403 1
100387 100404 1
100356 100357 1
100356 100372 1
100356 100373 1
100357 100358 1
100357 100372 1
100357 100373 1
100357 100374 1
100358 100373 1
100358 100374 1
100372 100373 1
100372 100388 1
100372 100389 1
100373 100374 1
100373 100388 1
100373 100389 1
100373 100390 1
100374 100389 1
100374 100390 1
100388 100389 1
100389 100390 1
100358 100359 1
100358 100375 1
100359 100374 1
100374 100375 1
100374 100391 1
100375 100390 1
100390 100391 1
100388 100403 1
100388 100404 1
100388 100405 1
100389 100404 1
100389 100405 1
100389 100406 1
100390 100405 1
100390 100406 1
100390 100407 1
100359 100360 1
100359 100375 1
100359 100376 1
100360 100361 1
100360 100375 1
100360 100376 1
100360 100377 1
100361 100376 1
100361 100377 1
100375 100376 1
100375 100391 1
100375 100392 1
100376 100377 1
100376 100391 1
100376 100392 1
100376 100393 1
100377 100392 1
100377 100393 1
100391 100392 1
100392 100393 1
100361 100362 1
100361 100378 1
100362 100377 1
100377 100378 1
100377 100394 1
100378 100393 1
100393 100394 1
100391 100406 1
100391 100407 1
100391 100408 1
100392 100407 1
100392 100408 1
100392 100409 1
100393 100408 1
100393 100409 1
100393 100410 1
100362 100363 1
100362 100378 1
100362 100379 1
100363 100364 1
100363 100378 1
100363 100379 1
100363 100380 1
100364 100379 1
100364 100380 1
100378 100379 1
100378 100394 1
100378 100395 1
100379 100380 1
100379 100394 1
100379 100395 1
100379 100396 1
100380 100395 1
100380 100396 1
100394 100395 1
100395 100396 1
100364 100365 1
100364 100381 1
100365 100380 1
100380 100381 1
100380 100397 1
100381 100396 1
100396 100397 1
100394 100409 1
100394 100410 1
100394 100411 1
100395 100410 1
100395 100411 1
100395 100412 1
100396 100411 1
100396 100412 1
100396 100413 1
100365 100366 1
100365 100381 1
100365 100382 1
100366 100367 1
100366 100381 1
100366 100382 1
100366 100383 1
100367 100382 1
100367 100383 1
100381 100382 1
100381 100397 1
100381 100398 1
100382 100383 1
100382 100397 1
100382 100398 1
100382 100399 1
100383 100398 1
100383 100399 1
100397 100398 1
100398 100399 1
100397 100412 1
100397 100413 1
100397 100414 1
100398 100413 1
100398 100414 1
100398 100415 1
100399 100414 1
100399 100415 1
100400 100401 1
100400 100416 1
100400 100417 1
100401 100402 1
100401 100416 1
100401 100417 1
100401 100418 1
100402 100403 1
100402 100417 1
100402 100418 1
100402 100419 1
100403 100418 1
100403 100419 1
100416 100417 1
100416 100432 1
100416 100433 1
100417 100418 1
100417 100432 1
100417 100433 1
100417 100434 1
100418 100419 1
100418 100433 1
100418 100434 1
100418 100435 1
100419 100434 1
100419 100435 1
100432 100433 1
100433 100434 1
100434 100435 1
100403 100404 1
100403 100420 1
100404 100419 1
100419 100420 1
100419 100436 1
100420 100435 1
100435 100436 1
100432 100448 1
100432 100449 1
100433 100448 1
100433 100449 1
100433 100450 1
100434 100449 1
100434 100450 1
100434 100451 1
100435 100450 1
100435 100451 1
100435 100452 1
100404 100405 1
100404 100420 1
100404 100421 1
100405 100406 1
100405 100420 1
100405 100421 1
100405 100422 1
100406 100421 1
100406 100422 1
100420 100421 1
100420 100436 1
100420 100437 1
100421 100422 1
100421 100436 1
100421 100437 1
100421 100438 1
100422 100437 1
100422 100438 1
100436 100437 1
100437 100438 1
100406 100407 1
100406 100423 1
100407 100422 1
100422 100423 1
100422 100439 1
100423 100438 1
100438 100439 1
100436 100451 1
100436 100452 1
100436 100453 1
100437 100452 1
100437 100453 1
100437 100454 1
100438 100453 1
100438 100454 1
100438 100455 1
100407 100408 1
100407 100423 1
100407 100424 1
100408 100409 1
100408 100423 1
100408 100424 1
100408 100425 1
100409 100424 1
100409 100425 1
100423 100424 1
100423 100439 1
100423 100440 1
100424 100425 1
100424 100439 1
100424 100440 1
100424 100441 1
100425 100440 1
100425 100441 1
100439 100440 1
100440 100441 1
100409 100410 1
100409 100426 1
100410 100425 1
100425 100426 1
100425 100442 1
100426 100441 1
100441 100442 1
100439 100454 1
100439 100455 1
100439 100456 1
100440 100455 1
100440 100456 1
100440 100457 1
100441 100456 1
100441 100457 1
100441 100458 1
100410 100411 1
100410 100426 1
100410 100427 1
100411 100412 1
100411 100426 1
100411 100427 1
100411 100428 1
100412 100427 1
100412 100428 1
100426 100427 1
100426 100442 1
100426 100443 1
100427 100428 1
100427 100442 1
100427 100443 1
100427 100444 1
100428 100443 1
100428 100444 1
100442 100443 1
100443 100444 1
100412 100413 1
100412 100429 1
100413 100428 1
100428 100429 1
100428 100445 1
100429 100444 1
100444 100445 1
100442 100457 1
100442 100458 1
100442 100459 1
100443 100458 1
100443 100459 1
100443 100460 1
100444 100459 1
100444 100460 1
100444 100461 1
100413 100414 1
100413 100429 1
100413 100430 1
100414 100415 1
100414 100429 1
100414 100430 1
100414 100431 1
100415 100430 1
100415 100431 1
100429 100430 1
100429 100445 1
100429 100446 1
100430 100431 1
100430 100445 1
100430 100446 1
100430 100447 1
100431 100446 1
100431 100447 1
100445 100446 1
100446 100447 1
100445 100460 1
100445 100461 1
100445 100462 1
100446 100461 1
100446 100462 1
100446 100463 1
100447 100462 1
100447 100463 1
100448 100449 1
100448 100464 1
100448 100465 1
100449 100450 1
100449 100464 1
100449 100465 1
100449 100466 1
100450 100451 1
100450 100465 1
100450 100466 1
100450 100467 1
100451 100466 1
100451 100467 1
100464 100465 1
100464 100480 1
100464 100481 1
100465 100466 1
100465 100480 1
100465 100481 1
100465 100482 1
100466 100467 1
100466 100481 1
100466 100482 1
100466 100483 1
100467 100482 1
100467 100483 1
100480 100481 1
100481 100482 1
100482 100483 1
100451 100452 1
100451 100468 1
100452 100467 1
100467 100468 1
100467 100484 1
100468 100483 1
100483 100484 1
100480 100496 1
100480 100497 1
100481 100496 1
100481 100497 1
100481 100498 1
100482 100497 1
100482 100498 1
100482 100499 1
100483 100498 1
100483 100499 1
100483 100500 1
100452 100453 1
100452 100468 1
100452 100469 1
100453 100454 1
100453 100468 1
100453 100469 1
100453 100470 1
100454 100469 1
100454 100470 1
100468 100469 1
100468 100484 1
100468 100485 1
100469 100470 1
100469 100484 1
100469 100485 1
100469 100486 1
100470 100485 1
100470 100486 1
100484 100485 1
100485 100486 1
100454 100455 1
100454 100471 1
100455 100470 1
100470 100471 1
100470 100487 1
100471 100486 1
100486 100487 1
100484 100499 1
100484 100500 1
100484 100501 1
100485 100500 1
100485 100501 1
100485 100502 1
100486 100501 1
100486 100502 1
100486 100503 1
100455 100456 1
100455 100471 1
100455 100472 1
100456 100457 1
100456 100471 1
100456 100472 1
100456 100473 1
100457 100472 1
100457 100473 1
100471 100472 1
100471 100487 1
100471 100488 1
100472 100473 1
100472 100487 1
100472 100488 1
100472 100489 1
100473 100488 1
100473 100489 1
100487 100488 1
100488 100489 1
100457 100458 1
100457 100474 1
100458 100473 1
100473 100474 1
100473 100490 1
100474 100489 1
100489 100490 1
100487 100502 1
100487 100503 1
100487 100504 1
100488 100503 1
100488 100504 1
100488 100505 1
100489 100504 1
100489 100505 1
100489 100506 1
100458 100459 1
100458 100474 1
100458 100475 1
100459 100460 1
100459 100474 1
100459 100475 1
100459 100476 1
100460 100475 1
100460 100476 1
100474 100475 1
100474 100490 1
100474 100491 1
100475 100476 1
100475 100490 1
100475 100491 1
100475 100492 1
100476 100491 1
100476 100492 1
100490 100491 1
100491 100492 1
100460 100461 1
100460 100477 1
100461 100476 1
100476 100477 1
100476 100493 1
100477 100492 1
100492 100493 1
100490 100505 1
100490 100506 1
100490 100507 1
100491 100506 1
100491 100507 1
100491 100508 1
100492 100507 1
100492 100508 1
100492 100509 1
100461 100462 1
100461 100477 1
100461 100478 1
100462 100463 1
100462 100477 1
100462 100478 1
100462 100479 1
100463 100478 1
100463 100479 1
100477 100478 1
100477 100493 1
100477 100494 1
100478 100479 1
100478 100493 1
100478 100494 1
100478 100495 1
100479 100494 1
100479 100495 1
100493 100494 1
100494 100495 1
100493 100508 1
100493 100509 1
100493 100510 1
100494 100509 1
100494 100510 1
100494 100511 1
100495 100510 1
100495 100511 1
100496 100497 1
100496 100512 1
100496 100513 1
100497 100498 1
100497 100512 1
100497 100513 1
100497 100514 1
100498 100499 1
100498 100513 1
100498 100514 1
100498 100515 1
100499 100514 1
100499 100515 1
100512 100513 1
100512 100528 1
100512 100529 1
100513 100514 1
100513 100528 1
100513 100529 1
100513 100530 1
100514 100515 1
100514 100529 1
100514 100530 1
100514 100531 1
100515 100530 1
100515 100531 1
100528 100529 1
100529 100530 1
100530 100531 1
100499 100500 1
100499 100516 1
100500 100515 1
100515 100516 1
100515 100532 1
100516 100531 1
100531 100532 1
100528 100544 1
100528 100545 1
100529 100544 1
100529 100545 1
100529 100546 1
100530 100545 1
100530 100546 1
100530 100547 1
100531 100546 1
100531 100547 1
100531 100548 1
100500 100501 1
100500 100516 1
100500 100517 1
100501 100502 1
100501 100516 1
100501 100517 1
100501 100518 1
100502 100517 1
100502 100518 1
100516 100517 1
100516 100532 1
100516 100533 1
100517 100518 1
100517 100532 1
100517 100533 1
100517 100534 1
100518 100533 1
100518 100534 1
100532 100533 1
100533 100534 1
100502 100503 1
100502 100519 1
100503 100518 1
100518 100519 1
100518 100535 1
100519 100534 1
100534 100535 1
100532 100547 1
100532 100548 1
100532 100549 1
100533 100548 1
100533 100549 1
100533 100550 1
100534 100549 1
100534 100550 1
100534 100551 1
100503 100504 1
100503 100519 1
100503 100520 1
100504 100505 1
100504 100519 1
100504 100520 1
100504 100521 1
100505 100520 1
100505 100521 1
100519 100520 1
100519 100535 1
100519 100536 1
100520 100521 1
100520 100535 1
100520 100536 1
100520 100537 1
100521 100536 1
100521 100537 1
100535 100536 1
100536 100537 1
100505 100506 1
100505 100522 1
100506 100521 1
100521 100522 1
100521 100538 1
100522 100537 1
100537 100538 1
100535 100550 1
100535 100551 1
100535 100552 1
100536 100551 1
100536 100552 1
100536 100553 1
100537 100552 1
100537 100553 1
100537 100554 1
100506 100507 1
100506 100522 1
100506 100523 1
100507 100508 1
100507 100522 1
100507 100523 1
100507 100524 1
100508 100523 1
100508 100524 1
100522 100523 1
100522 100538 1
100522 100539 1
100523 100524 1
100523 100538 1
100523 100539 1
100523 100540 1
100524 100539 1
100524 100540 1
100538 100539 1
100539 100540 1
100508 100509 1
100508 100525 1
100509 100524 1
100524 100525 1
100524 100541 1
100525 100540 1
100540 100541 1
100538 100553 1
100538 100554 1
100538 100555 1
100539 100554 1
100539 100555 1
100539 100556 1
100540 100555 1
100540 100556 1
100540 100557 1
100509 100510 1
100509 100525 1
100509 100526 1
100510 100511 1
100510 100525 1
100510 100526 1
100510 100527 1
100511 100526 1
100511 100527 1
100525 100526 1
100525 100541 1
100525 100542 1
100526 100527 1
100526 100541 1
100526 100542 1
100526 100543 1
100527 100542 1
100527 100543 1
100541 100542 1
100542 100543 1
100541 100556 1
100541 100557 1
100541 100558 1
100542 100557 1
100542 100558 1
100542 100559 1
100543 100558 1
100543 100559 1
100544 100545 1
100545 100546 1
100546 100547 1
100547 100548 1
100548 100549 1
100549 100550 1
100550 100551 1
100551 100552 1
100552 100553 1
100553 100554 1
100554 100555 1
100555 100556 1
100556 100557 1
100557 100558 1
100558 100559 1
EndConnect

Revision history for this message
Dion Weatherley (d-weatherley) said :
#3

Hi Yaqiong,

Thanks for providing more information. Unfortunately the initial geometry you are trying to construct is the source of the problems you are observing. I can see that the geometry consists of a rectangular grid of particles with bonds joining the corners and diagonals of each cell. The radii of the particles are very large causing considerable initial overlaps. I can see that this is what you intended, but ESyS-Particle is not designed for such geometrical configurations.

ESyS-Particle expects that adjacent particles will just touch each other when in equilibrium. The equilibrium distance between two bonded particles is equal to the sum of their radii. The initial geometry you have provided is far from this equilibrium configuration. The entire geometry is compressed and the diagonal bonds are also far from their equilibrium lengths. Non-zero initial kinetic energy is expected for such a configuration.

My suggestion would be to remove the diagonal bonds and also reduce the radii of all the particles so they are not overlapping initially. This should eliminate the problems you are observing.

Cheers,

Dion

Revision history for this message
Wang Yaqiong (wangyaqiong) said :
#4

Dear Mr Weatherley:

Thank you for your suggestion.

The idea of overlapping particles to generate material comes from that article (Micro-mechanical analysis of geomembrane-sand interactions using DEM. http://dx.doi.org/10.1016/j.compgeo.2017.08.019 ), which also make use of ESyS.

What was weird was that before my reinstallation, when I ran that script, kinetic energy kept zero.

It might be hard for me to give up the idea of overlapping particles, otherwise there would be holes on that material . I wonder if there is other way to solve it.

I will try more times. Thank you Dion !

Yours

Revision history for this message
Wang Yaqiong (wangyaqiong) said :
#5

In another script, the equilibrium distance between two bonded particles is equal to the sum of their radii, but non-zero initial kinetic energy still exists.

Revision history for this message
Best Dion Weatherley (d-weatherley) said :
#6

Hi Yaqiong,

Thanks for sending the link to the paper. I now have a better idea of what you are trying to simulate. Although I have not had time to study the paper in detail, it would appear that the Authors of that paper have implemented some additional features to simulate the geomembrane, which are not available within the official distribution of ESyS-Particle. I am aware of a number of papers by those Authors. They are very adept ESyS-Particle users and maintain a version of the code with a number of bespoke modifications to suit their research needs. I suggest you contact the Authors and ask them for more information about how they modelled the geomembrane and what modifications they made to ESyS-Particle in order to do that.

Regarding the non-zero initial kinetic energy for your two-particle test, it could be due to round-off error. I would need to see the script you used, as well as know which revision of the esys-particle/trunk you have installed on your system. Did you install revision 1217 from the bzr repository (https://code.launchpad.net/esys-particle/trunk) or did you install the stable release tarball from the homepage?

Cheers,

Dion

Revision history for this message
Wang Yaqiong (wangyaqiong) said :
#7

Hi Mr Weatherley,

Thank you so much for your technical support!

I substitute some source code of ESyS, and now there seems to be alright during my simulation!

Cheers,

Yaqiong

Revision history for this message
Wang Yaqiong (wangyaqiong) said :
#8

Thanks Dion Weatherley, that solved my question.