Sync from remote server: 2025-10-12 18:56:41

This commit is contained in:
2025-10-12 18:56:59 +02:00
commit 7e8ee264aa
553 changed files with 161447 additions and 0 deletions

17
Tilt/ASSEb.m Executable file
View File

@@ -0,0 +1,17 @@
function [Nb,Eb,Zb]=ASSEb(ay,angle,SpeTL,i,j)
angle = angle*2*pi/360;
if ay(i,j)>=0
Nb = SpeTL(i)*ay(i,j)*sin(angle);
Eb = SpeTL(i)*ay(i,j)*cos(angle);
else
Nb = -SpeTL(i)*ay(i,j)*sin(angle);
Eb = -SpeTL(i)*ay(i,j)*cos(angle);
end
% calcolo il coseno dell'angolo di inclinazione
cosBeta = (1 - ay(i,j)^2)^0.5;
Z = SpeTL(i)*cosBeta;
Zb = SpeTL(i) - Z; % L'abbassamento è POSITIVO
end