-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTaS2.m
34 lines (31 loc) · 1.02 KB
/
TaS2.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
classdef TaS2 < TMD
properties (SetAccess = private, GetAccess = public)
end
methods
function obj = TaS2(varargin)
%1T (1537360)
obj = obj@TMD(3.35);
obj.setLambda(5.86);
obj.setLambda_tmch(1.465);
%2H' (9007815)
% obj = obj@TMD(3.314);
% obj.setLambda(6.04850);
% obj.setLambda_tmch(3.11619/2);
obj.setName('TaS2');
obj.setTm(73);
obj.setCh(16);
%Need to be confirmed
if isempty(varargin)
obj.setStacking('1H')
obj.setKzExtent(pi/obj.lambda_tmch)
else
obj.setStacking(varargin{1})
if strcmp(varargin{1},'1T') || strcmp(varargin{1},'1H')
obj.setKzExtent(pi/obj.lambda_tmch)
else
obj.setKzExtent(4*pi/obj.lambda);
end
end
end
end
end