Sync from remote server: 2025-10-12 18:56:41
This commit is contained in:
19
Tilt/ASSEa_HR.m
Executable file
19
Tilt/ASSEa_HR.m
Executable 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
|
||||
Reference in New Issue
Block a user