Skip to content
Snippets Groups Projects
Commit 6bd32925 authored by Lars Hubatsch's avatar Lars Hubatsch
Browse files

prob_laplace: changing normalization, not sure if sums to 1 precisely.

parent 98ee6eb8
No related branches found
No related tags found
No related merge requests found
......@@ -215,7 +215,11 @@ parfor i = 1:length(ls)
end
toc
%% Normalization factor
N = normalization(T, x0, 0, 3);
N = normalization(T, x0, 0, 3, direc, 5)
% N = sum(p)*0.001;
% m = sum(ls.*p/N)/3001*3;
%%
sum((T{1}.sol(1, 1:end-1)+T{1}.sol(1, 2:end))/2.*diff(T{1}.x))
%% Do we need to look at the left side as well?
figure; hold on;
plot(ls, p/N);
......@@ -421,16 +425,16 @@ for i = 1:length(delta_x0)
end
end
function p = normalization(T, x0, lb, ind_t)
function p = normalization(T, x0, lb, ind_t, direc, bp)
delta_x0 = diff(x0);
logi = T{1}.x<5-lb;
logi = -direc*(T{1}.x) < -direc*(bp-lb);
delta_x = diff(T{1}.x(logi));
p_i = zeros(1, length(delta_x0));
for i = 1:length(delta_x0)
sol = T{i}.sol(ind_t, logi);
sol = (sol(1:end-1)+sol(2:end))/2;
x = (x0(i)+x0(i+1))/2;
if x > 5+lb
if -direc*x > -direc*(bp+lb)
p_x0i = T{1}.phi_tot(x, T{1}.a, T{1}.b, T{1}.e, T{1}.u0, 0);
p_i(i) = delta_x0(i)*sum(sol.*delta_x)*p_x0i;
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment