-
Notifications
You must be signed in to change notification settings - Fork 1
/
FFT_VI.m
286 lines (286 loc) · 9.7 KB
/
FFT_VI.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
%% FFT-VI
close all
clear global
clear
clc
restoredefaultpath
warning on
%%
%% BEGIN USER SETTINGS
%%
%% Directory
name_dir='test2';
%% Frequency
freq = 50; %[Hz]
%% Selections
plot_vectorsJ_flag = 1; %quiver plot of real and imag of J
plot_potential_flag = 1; %color plot of phi real and imag
paraview_export_flag = 1; % export to paraviw
refine.flag = 0; refine.x=1; refine.y=1; refine.z=1; % refine
Integration_flag = 'NumAn'; %'NumAn'; 'NumNum' (Integration: NumericalNumerical or AnalyticalNumerical)
ext_field_flag = 1; % exernal field
% below you can write the external electric field as a function of x,y,z
% and omega. Active only if ext_field_flag=1
scal=0.991/sqrt(2);
Ex_ext = @(x,y,z,omega) -scal*1j*0.5*omega*y; Ey_ext = @(x,y,z,omega) scal*1j*0.5*omega*x; Ez_ext = @(x,y,z,omega) 0*z; % external field, this electric field gives a vertical magnetic field of magnitude "scal"
%% Solver parameters
tol = 1e-6;
inner_it = 40;
outer_it = 5;
%%
%% END USER SETTINGS
%%
%% Add Path
dad = pwd;
cd('fun'); addpath(genpath(pwd)); cd(dad)
cd('fortran'); addpath(pwd); cd(dad)
cd('data'); cd(name_dir); load('data.mat');
fileList = dir('*.stl');
figure
hold on
xmin=[];xmax=[];ymin=[];ymax=[];zmin=[];zmax=[];ccolor=distinguishable_colors(size(fileList,1));
for ii = 1:size(fileList,1)
[stlcoords] = READ_stl(fileList(ii).name);
xco = squeeze( stlcoords(:,1,:) )';
yco = squeeze( stlcoords(:,2,:) )';
zco = squeeze( stlcoords(:,3,:) )';
[hpat] = patch(xco,yco,zco,ccolor(ii,:));
alpha(0.5) % for trasparency
axis equal
xlabel('x');
ylabel('y');
zlabel('z');
view(3)
title('stl (original, not scaled)')
drawnow
end
cd(dad)
modelname = name_dir;
%% refine
if refine.flag
warning('refine on')
mymod=1;
for ii = 1:refine.x
[Ind,L,M,N,xyz,smeshx,smeshy,smeshz,Nmat,nVoxel] = fun_refine(Ind,xyz,smeshx,smeshy,smeshz,Nmat,L,M,N,1,mymod);
end
for ii = 1:refine.y
[Ind,L,M,N,xyz,smeshx,smeshy,smeshz,Nmat,nVoxel] = fun_refine(Ind,xyz,smeshx,smeshy,smeshz,Nmat,L,M,N,2,mymod);
end
for ii = 1:refine.z
[Ind,L,M,N,xyz,smeshx,smeshy,smeshz,Nmat,nVoxel] = fun_refine(Ind,xyz,smeshx,smeshy,smeshz,Nmat,L,M,N,3,mymod);
end
end
%% EM constants
mu = 4*pi*1e-7;
co = 299792458;
eo = 1/co^2/mu;
omega = 2*pi*freq;
%% extract data information
rhoVoxel=zeros(nVoxel,1);
idxV=[]; rhomin=Inf; hhi=1; hho=0;
for ii = 1:Nmat
Ind(ii).ind=reshape(Ind(ii).ind,length(Ind(ii).ind),1);
if strcmp(Ind(ii).tag,'air') || strcmp(Ind(ii).tag,'mag') || strcmp(Ind(ii).tag,'diel') || strcmp(Ind(ii).tag,'pot')
% nothing to do here (?)
elseif strcmp(Ind(ii).tag,'cond')
idxV=[idxV;Ind(ii).ind];
rhoVoxel(Ind(ii).ind,1)=Ind(ii).rho;
rhomin=min([rhomin,Ind(ii).rho]);
end
end
idxV=unique(idxV);
idxVR=idxV;
del = sqrt(2*rhomin/omega/mu); %skin effect: penetration depth
%% Grid Definition
disp('----DOMAIN--------------------------------')
%%Grid resolution
disp([' Number of voxels in x direction: ', num2str(L)])
disp([' Number of voxels in y direction: ', num2str(M)])
disp([' Number of voxels in z direction: ', num2str(N)])
disp(' Resolution:')
dx = smeshx; dy = smeshy; dz = smeshz;
disp([' dx = ',num2str(dx),' m']); disp([' dy = ',num2str(dy),' m']); disp([' dz = ',num2str(dz),' m'])
d = [dx dy dz];
Kt = nVoxel; %total number of voxels
K = length(idxV); %number of non-empty voxels
%% Set Material Properties
rho_eV=reshape(rhoVoxel,L,M,N); %
clear rhoVoxel
%%
disp([' Total number of voxels: ', num2str(Kt)])
disp([' Number of non-empty voxels: ', num2str(K)])
disp(' ')
%% Incidence Matix A
disp('----COMPUTING INCIDENCE--------------------------------')
mytic=tic;
[Ae,Aee,AeeR,idxF,idxFx,idxFy,...
idxFz,Ae1x,Ae1y,Ae1z,indPotv,dim_dom,id_dom,N_dom] = ...
incidence_matrix2_AutoSelDom(Kt,[L M N],idxV);
disp([' Number of DoFs: ', num2str(size(AeeR,1)+size(AeeR,2))])
disp([' Time for computing incidence ::: ' ,num2str(toc(mytic))]);
disp(' ')
%% Forcing Term: Incident E field
% NOTE: Electric field with components (-iwy/2,iwx/2,0)
% since component x (y) does not depend on x(y), field is calculated at voxel
% barycenter; but in general must be calculated in barycenters of faces!!!
% Thus, we are introducing an approximation here.
if ext_field_flag
Ex = Ex_ext(xyz(:,:,:,1),xyz(:,:,:,2),xyz(:,:,:,3),omega);
Ey = Ey_ext(xyz(:,:,:,1),xyz(:,:,:,2),xyz(:,:,:,3),omega);
Ez = Ez_ext(xyz(:,:,:,1),xyz(:,:,:,2),xyz(:,:,:,3),omega);
%%RHS array: <Einc,f_a>_V = int_V dot(Einc,f_a) dV
Gram = dx*dy*dz; %volume of cubic element
Vx = (Gram.*Ex)./(dy*dz);
Vy = (Gram.*Ey)./(dx*dz);
Vz = (Gram.*Ez)./(dx*dy);
clear Ex Ey Ez
else
Vx=zeros(L*M*N,1);
Vy=zeros(L*M*N,1);
Vz=zeros(L*M*N,1);
end
%% Matrices Z_real and Z_imag
rho_eF=0.5*(abs(Ae(:,:)).'*rho_eV(:)); clear Ae rho_eV
z_realF=rho_eF;
indFneq=setdiff([1:3*Kt].',[idxFx;idxFy+Kt;idxFz+2*Kt]);
z_realF(indFneq,:)=0;z_realx=zeros(L,M,N);z_realx(idxFx)=z_realF(idxFx);
z_realx_loc = z_realx(idxFx);clear z_realx
z_realy=zeros(L,M,N);z_realy(idxFy)=z_realF(Kt+idxFy);
z_realy_loc = z_realy(idxFy);clear z_realy
z_realz=zeros(L,M,N);z_realz(idxFz)=z_realF(2*Kt+idxFz);
z_realz_loc = z_realz(idxFz);clear z_realz
%% Compute Green Tensor
disp('----COMPUTING GREEN TENSOR--------------------------------')
mytic_G=tic;
[Gmn] = computeGREEN(d,L,M,N,Integration_flag);
disp([' Total time for getting Green tensor ::: ' ,num2str(toc(mytic_G))]);
disp(' ')
%% Compute Circulant Tensors
disp('----COMPUTING CIRCULANT TENSOR--------------------------------')
disp(' Circulant Tensors related to M matrix')
mytic_cir=tic;
[opCirculantM_all,st_sparse_preconM] = computeCIRCULANT(Gmn,d,'L');
%%Add constants to Circulants
opCirculantM_all = (omega*mu)*opCirculantM_all;
st_sparse_preconM = (1j*omega*mu)*st_sparse_preconM;
disp([' Total time for getting circulant tensors ::: ' ,num2str(toc(mytic_cir))])
clear Gmn %Green tensor is not used anymore
disp(' ')
%% Generating RHS vector
num_node = size(Aee,1); %all potential nodes in non-empty voxels
num_nodeR = size(AeeR,1); %all potential nodes in non-empty voxels excluding ones with given potential
num_curr = size(Aee,2); %all currens in non-empty voxels
%%Define RHS: current + potentials
rhs_vect = [Vx(idxFx);Vy(idxFy);Vz(idxFz);zeros(num_node,1)];
clear Vx Vy Vz
%%Reduced RHS:
rhs_vectR = rhs_vect;
rhs_vectR(num_curr+indPotv,:) = [];
clear Vx Vy Vz
%% Computing Preconditioner
disp('----COMPUTING PRECONDITIONER--------------------------------')
mytic_prec=tic;
[A_inv,LL,UU,PP,QQ,RR] = ...
preparePREC_NEW(d,z_realF,idxFx,idxFy,...
idxFz,st_sparse_preconM,AeeR,Aee,Kt,freq);
fPMV = @(xx)multiplyPREC_CAP_NEW(xx,AeeR,A_inv,LL,UU,PP,QQ,RR);
disp([' Total time for computing preconditioner ::: ' ,num2str(toc(mytic_prec))]);
disp(' ')
%% Solution of Linear System
disp('----SOLVING LINEAR SYSTEM-------------------------------')
fMVM = @(J) multiplyMATVECT_EDDY(J,opCirculantM_all,z_realx_loc,...
z_realy_loc,z_realz_loc,idxFx,idxFy,idxFz,d,AeeR,L,M,N);
mytic_solver=tic;
[vsol, flag, relres, iter, resvec] = pgmres_mod(@(J)fMVM(J),rhs_vectR, inner_it, tol, outer_it, @(JOut_full_in)fPMV(JOut_full_in) );
disp([' Time for solving system with gmres ::: ' ,num2str(toc(mytic_solver))]);
disp(' ')
%% extract solution
Jout = zeros(L,M,N,3);
Jout(idxF) = vsol(1:num_curr) ; % return to global variables
%%
%% POST PROCESSING
%%
%% Post Processing J
disp('----POST PROCESSING J------------------------------')
mytic_prec=tic;
[J,XYZ] = fun_my_postRT2(Jout,Kt,Ae1x,Ae1y,Ae1z,xyz,L,M,N,d);
potval=zeros(Kt,1);
indLocPotDofs=setdiff(idxV,idxV(indPotv));
potval(indLocPotDofs,1)=vsol(num_curr+1:end);
disp([' Total time for post processing J ::: ' ,num2str(toc(mytic_prec))]);
disp(' ')
%% Plot Vectors
if plot_vectorsJ_flag
jjR = real(J);%reshape(real(Jout),L*M*N,3)/(l^2);
figure
subplot(1,2,1)
normJR=sqrt(jjR(:,1).^2+jjR(:,2).^2+jjR(:,3).^2);
quiver3_c_scal(XYZ(:,1),XYZ(:,2),XYZ(:,3),jjR(:,1),jjR(:,2),jjR(:,3),...
normJR,4);
axis equal
c1=colorbar;
caxis([min(normJR) max(normJR)]);
xlabel('x')
ylabel('y')
zlabel('z')
title('Current Density Vector \Re Part')
c1.Location = 'southoutside';
xlim([min(XYZ(:,1))-dx max(XYZ(:,1))+dx])
ylim([min(XYZ(:,2))-dy max(XYZ(:,2))+dy])
zlim([min(XYZ(:,3))-dz max(XYZ(:,3))+dz])
%
jjI = imag(J); %reshape(imag(Jout),L*M*N,3)/(l^2);
subplot(1,2,2)
normJI=sqrt(jjI(:,1).^2+jjI(:,2).^2+jjI(:,3).^2);
quiver3_c_scal(XYZ(:,1),XYZ(:,2),XYZ(:,3),jjI(:,1),jjI(:,2),jjI(:,3),...
normJI,4);
axis equal
c1=colorbar;
caxis([min(normJI) max(normJI)]);
xlabel('x')
ylabel('y')
zlabel('z')
title('Current Density Vector \Im Part')
c1.Location = 'southoutside';
xlim([min(XYZ(:,1))-dx max(XYZ(:,1))+dx])
ylim([min(XYZ(:,2))-dy max(XYZ(:,2))+dy])
zlim([min(XYZ(:,3))-dz max(XYZ(:,3))+dz])
end
%% paraview
if paraview_export_flag
disp('----EXPORT TO PARAVIEW------------------------------')
xd=xyz(:,:,:,1);
yd=xyz(:,:,:,2);
zd=xyz(:,:,:,3);
xidx=xd(idxV);
yidx=yd(idxV);
zidx=zd(idxV);
P0=[...
[xidx-dx/2,yidx-dy/2,zidx+dz/2];...
[xidx-dx/2,yidx-dy/2,zidx-dz/2];...
[xidx+dx/2,yidx-dy/2,zidx-dz/2];...
[xidx+dx/2,yidx-dy/2,zidx+dz/2];...
[xidx-dx/2,yidx+dy/2,zidx+dz/2];...
[xidx-dx/2,yidx+dy/2,zidx-dz/2];...
[xidx+dx/2,yidx+dy/2,zidx-dz/2];...
[xidx+dx/2,yidx+dy/2,zidx+dz/2]];
VP=[1:K;...
K+1:2*K;...
2*K+1:3*K;...
3*K+1:4*K;...
4*K+1:5*K;...
5*K+1:6*K;...
6*K+1:7*K;...
7*K+1:8*K];
warning off
[~] = ...
fun_for_ParaView_vec_HEXA(...
jjR(idxV,:),jjI(idxV,:),P0,VP,dad,[modelname,'J']);
warning on
end
%%
Plosses=real(vsol(1:num_curr)'*([z_realx_loc*dx/(dy*dz);z_realy_loc*dy/(dx*dz);z_realz_loc*dz/(dy*dx)].*vsol(1:num_curr))) % losses
if strcmp(name_dir,'test2') && freq==50
Plosses_reference_value=226.97
disp('Analytical results given in: https://doi.org/10.1103/PhysRevSTAB.14.062401 ')
end