koxui7 / optical-fibre-toolbox

Automatically exported from code.google.com/p/optical-fibre-toolbox
0 stars 0 forks source link

Monerie modes search results differ between core and cladding #3

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Changeset c8daed3e41d0 (2011-10-19), OFT-devel: Monerie modes found in the core 
and in the cladding are different at least for HE11. 

materials = {'1.455', '1.45', 1};
fibre.materials = materials;
fibre.coreCladdingRatio = 5/125;

task = struct(...
    'nu', [0 1],... % first modal index
    'type', {{'monerie'}},... % mode types
    'maxmode', 1,... % how many modes of each type and NU to calculate
    'lambda', 900,...
    'region', 'core');
modesMonerieCore = buildModes(argument, fibre, task, false);
hMonerieCore = showModes(modesMonerieCore);

task = struct(...
    'nu', [0 1],... % first modal index
    'type', {{'monerie'}},... % mode types
    'maxmode', 1,... % how many modes of each type and NU to calculate
    'lambda', 900,...
    'region', 'cladding');
modesMonerieClad = buildModes(argument, fibre, task, false);
hMonerieClad = showModes(modesMonerieClad);

Original issue reported on code.google.com by kotya.ka...@gmail.com on 19 Oct 2011 at 4:17

GoogleCodeExporter commented 8 years ago
Note: For Monerie modes, HE11 is LP01.

Original comment by kotya.ka...@gmail.com on 19 Oct 2011 at 4:18