Hi all,
I'm looking at lake core data and the freshwater ΔR increases with depth. I want to make a depth sequence for these ΔRs.
I have a few anchor points (defined ΔRs at set depths), but I want to let ΔRs float at other depths, just like in a P_sequence. The code below shows the logic, but of course Delta_R doesn't run in this context. It seems like I might need to use a general parameter, perhaps with the operator Pois? I haven't worked much with these variables.
Any ideas welcome, thanks!
Erik
P_Sequence(1,2,U(-2,2))
{
Boundary();
Delta_R("R5",U(400,600){ z=500; };
Delta_R("R4",U(300,500)){ z=400; };
Delta_R("known R3",300,30){ z=300; };
Delta_R("R2",U(100,300)){ z=200; };
Delta_R("R1",U(0,200)){ z=100; };
Boundary();
};
Delta_R("=R4");
R_Date(1000,50);