Previous: , Up: Examples   [Contents]


8.1 Drainage of a column

This problem is governed by the Richards’ equation. A 1 meter high sand column is initially satured. The liquid pressure is initialized as: p_l = p_{atm} - g(x - 1). At t=0 we drained the column from the bottom by imposing the pressure to p_l=p_{atm}. The input data file is given below.


inputscomments
# Drainage of You can write some comments
# a sand columnby beginning any line with #.
GEOMGeometry of the problem
1 Plan1D pb, plane symmetry
MESHMesh
col.mshThe mesh is read in this file (format Gmsh). This mesh consists in a 20 elements mesh between 0 and 1. There are 2 regions. The region 1 is the point at 0. The region 2 is the line between 0 and 1. There is 1 material.
MATEMaterial 1
Model = m1code name of the model
gravite = -9.81gravity
phi = 0.3porosity
rho_l = 1000fluid mass density
k_int = 4.4e-13intrinsic permeability
mu_l = 0.001fluid viscosity
p_g = 100000gas pressure
Curves = tabin the file tab, there 3 columns: p_c S_l k_{rl}
FLDSFields
22 fields
Type = affine Value = 1.e5 Gradient = -9.81 Point = 1.affine field defined by 10^5 - 9.81*(x - 1)
Type = affine Value = 1.e5 Gradient = 0. Point = 0.constant field equal to 10^5
INITInitial conditions
11 initial condition
Region = 2 Unknown = p_l Field = 1in the region 2, p_l=10^5-9.81*(x-1.).
FUNCTime functions f(t)
0here there is no function
CONDBoundary conditions
11 boundary condition
Region = 1 Unknown = p_l Field = 2 Function = 0in the region 1, p_l=f(t)*10^5 (by default f(t)=1)
LOADLoads
0there is no load
POINPoints where we want outputs
0no points
DATEDates where we want outputs
22 dates
0. 1800000t_0=0 and t_1=1800000
OBJEObjective variations of unknowns
p_l = 1000objective variation \Delta p_l=1000
ITERParameters for the iterative process
Iterations = 2020 iterations
Tolerance = 1e-10the tolerance is 10^{-10}
Repetitions = 0no repetition
TIMEParameters for time steps calculation
Dtini = 1initial time step equal to 1.
Dtmax = 3600maximum time step equal to 3600.


Previous: , Up: Examples   [Contents]