Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
ndattani committed Jul 3, 2023
2 parents 267e470 + 5964f6c commit d401e3b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions seesaw.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
function seesaw(R_ax,R_eq,A_ax,A_eq)

% Data for Cl4Te from Shlykov (2010)
% R_ax = 2.428;
% R_eq = 2.289;

% A_ax = 176.7;
% A_eq = 102.5;

ax = R_ax*[cosd(A_ax/2) 0 sind(A_ax/2)];
eq = R_eq*[cosd(A_eq/2) sind(A_eq/2) 0 ];

% subspace(A',B') = acos(A dot B/(norm(A)norm(B)):
A_ax_eq = rad2deg(subspace(ax',eq'))

% Result: 88.96731310345567

0 comments on commit d401e3b

Please sign in to comment.