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