-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcreep.m
38 lines (37 loc) · 1.18 KB
/
creep.m
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
% Creep closure of a water-filled borehole
%
% Based on boreholeclosure/HomeworkProblem_Vostok3G.m
%
% Borehole 3G at Vostok
% by Blinov and Dmitriev (1987) and Salamatin et al (1998)
% From Table 4 in Talalay and Hooke, 2007 (Annals)
%
function dC = creep(Mr,z,H,stress,T,dt,E,C)
% Pressure:
P = C.rhoi*C.g*(H-z);
%Calculate A based on ice temperature
A = flowlawparameter(mean(T,2),P,C) ;
% % Ice hydrostatic stress (closure)
% sigzi = C.rhoi*C.g*(H-z);
% % Water hydrostatic stress (opening)
% sigzw = -C.rhow*C.g*(hw-z);
% sigzw(~wet) = 0; % Anywhere that is not wet does not have the opening force from water
% ^^ The above is now calculated in the main function, moulingeom.m, and
% passed to this function
% In the struct sig,
% water pressure is positive (opening)
% ice pressure is negative (closing)
%
% Total stress
sigmaZ = stress.cryo + stress.hydro;
epsdot = E*A .* (sigmaZ/3).^3; % boreholeclosure/HomeworkProblem_Vostok3G.m divided A by 5 in order to match measured Antarctic BH closure rates
%
% figure(6);
% subplot(1,2,1); plot(sigmaZ,z);
% subplot(1,2,2); plot(epsdot,z);
%
% Borehole closure
Mrnew = Mr .* exp(epsdot * dt);
%Mrnew = max(Mrnew,0);
% Creep closure rate
dC = Mrnew-Mr;