You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While using
makegrid_tilteddipole_varx2_oneside_3D
have an error for preparing grid for southern hemisphere:
% Iowa
p.dtheta=34.5; % 30.5
p.dphi=70; % 70
p.lp=432; % USE FOR VEGA (36)
p.lq=360;
p.lphi=360; % USE FOR VEGA (10) 360
p.altmin=80e3;
p.glat=-40;
p.glon=360-93;
p.gridflag=0; % 1 - works
p.flagsource=0;
p.iscurv=true;
Index exceeds the number of array elements (1).
Error in gemini3d.grid.makegrid_tilteddipole_varx2_oneside_3D (line 177)
pstride=p(2)-p(1);
Error in iowaeqmy (line 19)
xg=gemini3d.grid.makegrid_tilteddipole_varx2_oneside_3D(p.dtheta,p.dphi,p.lp,p.lq,p.lphi,p.altmin,p.glat,p.glon,p.gridflag);
The text was updated successfully, but these errors were encountered:
for the many similar cases such as tilted_dipole.m in the same directory, the linspace(pmin,pmax) works to make a decreasing vector. For this specific makegrid function, a distinct while loop is used that expected an increasing p vector. @mattzett
It's very likely this is a use that has never been tested before, @paulinchin did we fix this on the Dropbox version or do I still need to look over it?
While using
makegrid_tilteddipole_varx2_oneside_3D
have an error for preparing grid for southern hemisphere:
% Iowa
p.dtheta=34.5; % 30.5
p.dphi=70; % 70
p.lp=432; % USE FOR VEGA (36)
p.lq=360;
p.lphi=360; % USE FOR VEGA (10) 360
p.altmin=80e3;
p.glat=-40;
p.glon=360-93;
p.gridflag=0; % 1 - works
p.flagsource=0;
p.iscurv=true;
Index exceeds the number of array elements (1).
Error in gemini3d.grid.makegrid_tilteddipole_varx2_oneside_3D (line 177)
pstride=p(2)-p(1);
Error in iowaeqmy (line 19)
xg=gemini3d.grid.makegrid_tilteddipole_varx2_oneside_3D(p.dtheta,p.dphi,p.lp,p.lq,p.lphi,p.altmin,p.glat,p.glon,p.gridflag);
The text was updated successfully, but these errors were encountered: