Skip to content

Commit

Permalink
updating
Browse files Browse the repository at this point in the history
  • Loading branch information
mrachh committed Apr 1, 2024
1 parent 866bddc commit f5c8d61
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions chunkie/+chnk/+axissymhelm2d/load_asym_tables.m
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
dirname = dir([p ,'.m']).folder;
fname = [dirname '/asym_helm_data.mat'];
load(fname,'allvs');
ncheb = 12;
msizes = size(allvs);
ncheb = msizes(1);
nks = msizes(5);
nas = msizes(4);
nkers = msizes(3);
xcheb = (0:(ncheb-1))/(ncheb-1)*pi;

[N,X]=meshgrid(0:(ncheb-1),xcheb);
Expand All @@ -22,13 +26,13 @@

allda = allvs;
alldk = allvs;
alldaa= allvs;
alldak= allvs;
alldkk= allvs;
alldaa = allvs;
alldak = allvs;
alldkk = allvs;

for kk=1:nks
for jj=1:111
for ii=1:3
for jj=1:nas
for ii=1:nkers
% vmat = squeeze(allvs(:,:,ii,jj,kk));
if (ii ==1)
vmat = squeeze(allvs(:,:,ii,jj,kk));
Expand Down

0 comments on commit f5c8d61

Please sign in to comment.