Recent content by reza 86

  1. R

    How to Solve Laser Rate Equations Using Matlab?

    I hope that it would be helpful, Can anyone help me by giving MATLAB code to simulate semiconductor laser rate equation by finite difference methord. i wrote a code but it is not working. please help me.
  2. R

    How to Solve Laser Rate Equations Using Matlab?

    rate equation clc clear all close all tau_s = 3e-9; N0 = 1e24; A =1e-12; P0 = 1/(A*tau_s); TSPAN = [0 10]; Y0 =[0 0]; [T,Y] = ODE45(@rate_equation,TSPAN,Y0); subplot(2,1,1) plot(T*tau_s ,Y(:,1)*N0) title('carriers density in high laser level') % carriers density in high laser level...
Back
Top