计算脉冲在非线性耦合器中演化的Matlab 程序 vK`S!7x'&
:b,o B==%
% This Matlab script file solves the coupled nonlinear Schrodinger equations of *e, CDV
% soliton in 2 cores coupler. The output pulse evolution plot is shown in Fig.1 of i/M+t~
% Youfa Wang and Wenfeng Wang, “A simple and effective numerical method for nonlinear ,{TQ
~LP
% pulse propagation in N-core optical couplers”, IEEE Photonics Technology lett. Vol.16, No.4, pp1077-1079, 2004 9 G((wiE
g`
kZT} h
%fid=fopen('e21.dat','w'); ec`>KuY
N = 128; % Number of Fourier modes (Time domain sampling points) l^BEFk;
M1 =3000; % Total number of space steps -|$* l
Q
J =100; % Steps between output of space ev*c4^z:s
T =10; % length of time windows:T*T0 ;HT0w_,
T0=0.1; % input pulse width o[2Y;kP3*P
MN1=0; % initial value for the space output location [5-!d!a|st
dt = T/N; % time step =yo=q)W
n = [-N/2:1:N/2-1]'; % Index *\C}Ok=
t = n.*dt; yvS^2+jW
u10=1.*sech(1*t); % input to waveguide1 amplitude: power=u10*u10 H7J`]nr6
u20=u10.*0.0; % input to waveguide 2 % M+s{ l
u1=u10; u2=u20; e8 v; D
U1 = u1; ;,FT&|3o
U2 = u2; % Compute initial condition; save it in U Vzk cZK
ww = 4*n.*n*pi*pi/T/T; % Square of frequency. Note i^2=-1. 8\P
JSr
w=2*pi*n./T; fyGCfM
g=-i*ww./2; % w=2*pi*f*n./N, f=1/dt=N/T,so w=2*pi*n./T I S.F
L=4; % length of evoluation to compare with S. Trillo's paper Ep,1}Dx
dz=L/M1; % space step, make sure nonlinear<0.05 .k
p$oAL
for m1 = 1:1:M1 % Start space evolution ]zX\8eHp!
u1 = exp(dz*i*(abs(u1).*abs(u1))).*u1; % 1st sSolve nonlinear part of NLS %d ZM9I0
u2 = exp(dz*i*(abs(u2).*abs(u2))).*u2; Mn-<5 1.%
ca1 = fftshift(fft(u1)); % Take Fourier transform mMga"I9
ca2 = fftshift(fft(u2)); a_xQ~:H
c2=exp(g.*dz).*(ca2+i*1*ca1.*dz); % approximation %~ ;nlDw
c1=exp(g.*dz).*(ca1+i*1*ca2.*dz); % frequency domain phase shift jDFp31_X
u2 = ifft(fftshift(c2)); % Return to physical space pFS
F[9?e>
u1 = ifft(fftshift(c1)); Q1K"%
if rem(m1,J) == 0 % Save output every J steps. D1"1MUSod
U1 = [U1 u1]; % put solutions in U array a\.//?
U2=[U2 u2]; 'et(:}i
MN1=[MN1 m1]; VvzPQ k
z1=dz*MN1'; % output location (di)`D5Q
end (}VuiNY<