- This topic has 6 replies, 5 voices, and was last updated 9 years, 4 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..
OptiSystem is a comprehensive software design suite that enables users to plan, test, and simulate optical links in the transmission layer of modern optical networks.
OptiInstrument addresses the needs of researchers, scientists, photonic engineers, professors and students who are working with instruments.
OptiSPICE is the first circuit design software for analysis of integrated circuits including interactions of optical and electronic components. It allows for the design and simulation of opto-electronic circuits at the transistor level, from laser drivers to transimpedance amplifiers, optical interconnects and electronic equalizers.
OptiFDTD is a powerful, highly integrated, and user friendly CAD environment that enables the design and simulation of advanced passive and non-linear photonic components.
OptiBPM is a comprehensive CAD environment used for the design of complex optical waveguides. Perform guiding, coupling, switching, splitting, multiplexing, and demultiplexing of optical signals in photonic devices.
The optimal design of a given optical communication system depends directly on the choice of fiber parameters. OptiFiber uses numerical mode solvers and other models specialized to fibers for calculating dispersion, losses, birefringence, and PMD.
Emerging as a de facto standard over the last decade, OptiGrating has delivered powerful and user friendly design software for modeling integrated and fiber optic devices that incorporate optical gratings.
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..
OptiSystem is a comprehensive software design suite that enables users to plan, test, and simulate optical links in the transmission layer of modern optical networks.
OptiInstrument addresses the needs of researchers, scientists, photonic engineers, professors and students who are working with instruments.
OptiSPICE is the first circuit design software for analysis of integrated circuits including interactions of optical and electronic components. It allows for the design and simulation of opto-electronic circuits at the transistor level, from laser drivers to transimpedance amplifiers, optical interconnects and electronic equalizers.
OptiFDTD is a powerful, highly integrated, and user friendly CAD environment that enables the design and simulation of advanced passive and non-linear photonic components.
OptiBPM is a comprehensive CAD environment used for the design of complex optical waveguides. Perform guiding, coupling, switching, splitting, multiplexing, and demultiplexing of optical signals in photonic devices.
The optimal design of a given optical communication system depends directly on the choice of fiber parameters. OptiFiber uses numerical mode solvers and other models specialized to fibers for calculating dispersion, losses, birefringence, and PMD.
Emerging as a de facto standard over the last decade, OptiGrating has delivered powerful and user friendly design software for modeling integrated and fiber optic devices that incorporate optical gratings.
Download our 30-day Free Evaluations, lab assignments, and other freeware here.Â
OutputPort1=InputPort1;
inp=InputPort1.Sampled.Signal;
as this is for port definition, in same way can we define for frequency(
I am using 4 input matlab component to which four different frequency signals are available simultaneously and I want to defferentiate between them)?
There are a couple different ways you could do it.
For example, you might make 4 inputs and send each frequency signal separately into the component. Or in the Matlab component you could implement your own filters.
In OptiSystem there is also a way to define multiple channels, differentiated by frequency, but OptiSystem will also naturally attach these channels together into one signal if the frequencies are too close. Can you let me know how far away the frequencies are from each other?
Regards
they are 0.1Thz far away from each other.
I’ve done it using four different inputs.I’m uploading my optisystem layout you could see here.
I’m using MATLAB component as eqaulizer where I’m using backpropagation method to train it.
In MATLAB code I’ve written like
if frequency ==193.1
{
do this
}
but MATLAB component was unable to understand what mean by ‘frequency’.
Couldn’t you instead just use:
//signal1 is the 193.1 THz channel
if signal == signal1
{
do this
}
The spacing is so close that the channels will automatically be brought into one sampled signal.
Hi Damian, why 0.1THz spacing is so close that they are considering as one sampled signal? It is the typical 100GHz spacing of DWDM systems..
you can use the attached file which may be help you to find your solution
many thanks it is interesting to know more about matlab 🙂