|
Robochameleon
v1.0
|
Simple WDM transmitter. More...
Inherits module.
Inherited by ExtendedWDMTransmitter_v1.
Public Member Functions | |
| function | SimpleWDMTransmitter_v1 (in varargin) |
| Class constructor. More... | |
| function | init (in obj, in param) |
Public Member Functions inherited from module | |
| function | module () |
| Create sink for internal output buffers. | |
| function | view (in obj) |
| Show biograph through module_view-class. | |
| function | getOutput (in obj) |
| Function to access module output for various intentions. | |
| function | keepOutput (in obj) |
| Function tells outputBuffer sink not to delete itself after traverse. | |
| function | traverse (in obj, in varargin) |
| Traverse function for modules. More... | |
Public Member Functions inherited from unit | |
| function | traverseNode (in obj) |
| Set unique ID when creating a unit. More... | |
| function | connectOutput (in obj, in uobj, in unitOutput, in nextUnitInput) |
| Specify where signal should go next. More... | |
| function | connectOutputs (in obj, in units, in destInputs) |
| Specify where signal should go next. More... | |
| function | writeInputBuffer (in obj, in sig, in inputId) |
| write input buffer | |
| function | horzcat (in varargin) |
| horizontal concatenation | |
| function | vertcat (in varargin) |
| vertical concatenation | |
| function | setparams (in obj, in params, in REQUIRED_PARAMS, in QUIET_PARAMS) |
| set parameters More... | |
| function | view (in obj) |
| Show interactive GUI through unit_view-class. | |
Public Attributes | |
| Property | nInputs |
| Number of inputs. | |
| Property | nOutputs |
| Number of outputs. | |
| Property | nChannels |
| Number of WDM channels. | |
| Property | lambda |
| Wavelengths of the every channel [nm]. | |
| Property | linewidth |
| Laser linewidth of every channel. | |
| Property | Power |
| Power of every channel [pwr() obj]. | |
| Property | modulationFormat |
| Modulation format of every channel. | |
| Property | M |
| Modulation order of every channel. | |
| Property | pulseShape |
| Pulseshape of every channel. | |
| Property | rollOff |
| Roll-Off factor of every channel. | |
| Property | Laser_L |
| FM noise PSD length of Laser, due to double naming of L. | |
| Property | output |
| Combined, concatinated output or both [comb|concat|both]. | |
Public Attributes inherited from module | |
| Property | nInputs |
| Number of input arguments (required) | |
| Property | nOutputs |
| Number of output arguments (required) | |
Public Attributes inherited from unit | |
| Property | inputBuffer |
| Buffer for storing inputs as we traverse the graph. | |
| Property | nextNodes |
| Children nodes. | |
| Property | destInputs |
| Destination inputs in children. | |
| Property | results |
| For storing results. | |
| Property | label |
| Property | draw |
| enable/disable plotting | |
| Property | nInputs |
| Number of signals traverse expects. | |
| Property | nOutputs |
| Number of outputs traverse expects. | |
Protected Attributes | |
| Property | flag |
Protected Attributes inherited from module | |
| Property | outputBuffer |
| Where output signal is stored. | |
Additional Inherited Members | |
Protected Member Functions inherited from module | |
| function | exportModule (in obj, in varargin) |
| Construct module. More... | |
| function | connectInputs (in obj, in destInternalUnits, in destInternalInputs) |
| Connect input signal to internal unit(s) More... | |
Simple WDM transmitter.
This is a simple WDM transmitter which contains nChannels simple coherent transmitters.
Example
Notes:
Definition at line 47 of file SimpleWDMTransmitter_v1.m.
| function SimpleWDMTransmitter_v1::SimpleWDMTransmitter_v1 | ( | in | varargin | ) |
Class constructor.
Constructs an object of type SimpleWDMTransmitter_v1. It also constructs nChannels SimpleCoherentTransmitter_v1.
| param.nChannels | Number of WDM channels |
| param.lambda | Wavelengths of the every channel [nm] if this parameter is a cell array |
| param.linewidth | Laser linewidth of every channel if this parameter is a cell array |
| param.modulationFormat | Modulation format of every channel if this parameter is a cell array |
| param.M | Modulation order of every channel if this parameter is a cell array |
| param.pulseShape | Pulseshape of every channel if this parameter is a cell array |
| param.rollOff | Roll-Off factor of every channel if this parameter is a cell array |
SimpleAWG_v1 - WaveformGenerator_v1
| param.L | Output sequence length [symbols]. |
| param.typePattern | Type of Pattern. Can be 'PRBS' or 'Random'. |
| param.PRBSOrder | Polynomial order (any integer 2-23; 27, 31) |
| param.modulationFormat | Modulation format if all channels have equal setup |
| param.M | Modulation order if all channels have equal setup |
| param.N | Number of Modes (or polarizations) |
| param.samplesPerSymbol | It is the desired output number of samples per symbol. |
| param.symbolRate | You are able to define a symbol rate for your signal here. The output sample frequency will be define as symbolRate*samplesPerSymbol. |
| param.pulseShape | Choose among 'rc', 'rrc', 'rz33', 'rz50', 'rz67', 'nrz' or 'custom' if all channels have equal setup |
| param.filterCoeffs | You should define this as a vector if you chose 'custom' 'pulseShape'. |
| param.filterSymbolLength | You should define a symbol length for 'rc' or 'rrc' filters. The default value is 202. |
| param.rollOff | The Roll-Off factor. You should define this value if you are using 'rc' or 'rrc' shapings. Usually, this number varies from 0 to 1. if all channels have equal setup |
| param.bitResolution | Resolution of DAC in bits [Default: 8] |
| param.targetENoB | Target Effective Number of Bits |
| param.resamplingRate | Resampling rate [see ResampleSkewJitter_v1] |
| param.outputSamplingRate | The desired output sampling rate. [see ResampleSkewJitter_v1] |
| param.skew | Skew [see ResampleSkewJitter_v1] |
| param.jitterVariance | Jitter amplitude [see ResampleSkewJitter_v1] |
| param.clockError | Clock deviation [see ResampleSkewJitter_v1] |
| param.rectangularBandwidth | Bandwidth of rectangular filter [see ElectricalFilter_v1] |
| param.gaussianOrder | Order of Gaussian filter [see ElectricalFilter_v1] |
| param.gaussianBandwidth | Bandwidth of Gaussian filter [see ElectricalFilter_v1] |
| param.besselOrder | Order of Bessel filter [see ElectricalFilter_v1] |
| param.besselBandwidth | Bandwidth of bessel filter [see ElectricalFilter_v1] |
IQ_v1
| param.Vamp | ??? [see IQ_v1] |
| param.Vb | ??? [see IQ_v1] |
| param.Vpi | ??? [see IQ_v1] |
| param.IQphase_x | ??? [see IQ_v1] |
| param.IQphase_y | ??? [see IQ_v1] |
| param.IQgain_imbalance_x | ??? [see IQ_v1] |
| param.IQgain_imbalance_y | ??? [see IQ_v1] |
| param.f_off | ??? [see IQ_v1] |
| param.Fs | Sampling frequency [Hz] [see Laser_v1] |
| param.Rs | Symbol rate [Hz] [see Laser_v1] |
| param.Lnoise | Signal length [Samples] [see Laser_v1] |
| param.Fc | Carrier frequency [Hz] [see Laser_v1] |
| param.Power | Output power [see Laser_v1] |
| param.Laser_L | FM noise PSD length [see Laser_v1 as L] |
| param.Lir | FM noise PSD length [see Laser_v1] |
| param.linewidth | Lorentzian linewidth [see Laser_v1] |
| param.LFLW1GHZ | Linewidth at 1GHz [see Laser_v1] |
| param.HFLW | High-frequency linewidth [see Laser_v1] |
| param.fr | Relaxation resonance frequency [see Laser_v1] |
| param.K | Damping factor [see Laser_v1] |
| obj | An instance of the class SimpleWDMTransmitter_v1 |
1.8.11