- This topic has 2 replies, 2 voices, and was last updated 10 years, 3 months ago by .
- You must be logged in to reply to this topic.
Optiwave software can be used in different industries and applications, including Fiber Optic Communication, Sensing, Pharma/Bio, Military & Satcom, Test & Measurement, Fundamental Research, Solar Panels, Components / Devices, etc..
OptiOmega is a collection of products specialized for photonic integrated circuit simulation. It automates the design flow for
generating compact models from device level simulations. The software package includes two solvers that can be used via
Python scripting: Vector Finite Difference (VFD) Mode Solver and Finite Difference Time Domain (FDTD) Electromagnetic Solvers.
Download our 30-day Free Evaluations, lab assignments, and other freeware here.Â
Optiwave software can be used in different industries and applications, including Fiber Optic Communication, Sensing, Pharma/Bio, Military & Satcom, Test & Measurement, Fundamental Research, Solar Panels, Components / Devices, etc..
OptiOmega is a collection of products specialized for photonic integrated circuit simulation. It automates the design flow for
generating compact models from device level simulations. The software package includes two solvers that can be used via
Python scripting: Vector Finite Difference (VFD) Mode Solver and Finite Difference Time Domain (FDTD) Electromagnetic Solvers.
Download our 30-day Free Evaluations, lab assignments, and other freeware here.Â
Attached is a Matlab program that displays the spectral content of an OptiSystem Optical Signal.
Matlab code follows:
%%% Matlab OSA code %%%
OutputPort1 = InputPort1;
%%% Defining the amplitude and frequency arrays %%%
amp = InputPort1.Sampled.Signal;
freq = InputPort1.Sampled.Frequency;%%% Assign default polarization to 1 %%%
polar = 1;%%% Check how many polarizations there are, and then apply the appropriate %%%
%%% equations to convert to power. %%%if (length(amp) > length(freq))
polar = 2;
end
if (polar == 2)
power = amp(1,:).^2 + amp(2,:).^2;
else
power = amp(1,:).^2;
end%%% Convert power to dBm, and plot %%%
power_dBm = 10*log10(power*1000);
plot(freq, power_dBm);
pause(5);
Thanks again Damian, these examples of Matlab cosimulation that you are posting are very useful!