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

19
Tilt/ASSEa_HR.m Executable file
View File

@@ -0,0 +1,19 @@
function [Na,Ea,Za]=ASSEa_HR(xAngTLHR,angle,SpeTLHR)
angle = angle*2*pi/360;
ax = sin(xAngTLHR);
if ax >=0
Na = SpeTLHR*ax*cos(angle);
Ea = -SpeTLHR*ax*sin(angle);
else
Na = -SpeTLHR*ax*cos(angle);
Ea = SpeTLHR*ax*sin(angle);
end
% calcolo il coseno dell'angolo di inclinazione
cosBeta = (1 - ax^2)^0.5;
Z = SpeTLHR*cosBeta;
Za = SpeTLHR - Z; % L'abbassamento è POSITIVO
end