Hi guys,
The number of particles in the Model.swarm is 160000, When I run the model for 100 years, the number is constant, but when I run the model for 500 years, the number becomes 160018. I wonder why the number of particles is increasing, and how to prevent the number of particles from increasing over time ?
My underworld version is 2.10.1b. The boundaries of the model are set to be fixed, the size and boundary conditions of the model are
Hi guys, The number of particles in the Model.swarm is 160000, When I run the model for 100 years, the number is constant, but when I run the model for 500 years, the number becomes 160018. I wonder why the number of particles is increasing, and how to prevent the number of particles from increasing over time ? My underworld version is 2.10.1b. The boundaries of the model are set to be fixed, the size and boundary conditions of the model are
Model = GEO.Model(elementRes=(100, 40), minCoord=(0. u.kilometer, -1.5 u.kilometer), maxCoord=(25. u.kilometer,3 u.kilometer), gravity=(0.0, -9.81 * u.meter / u.second**2)) Model.mesh_advector(axis=0)
Model.set_velocityBCs(left=[0 ,None], right=[0,None], top=[None,0], bottom=[None,0])
Model.init_model() Model.solver.set_penalty(1e4) Model.solver.set_inner_method("mumps")
Thanks