当前位置: 首页 > news >正文

手机网站建设 的作用百度seo优化推广公司

手机网站建设 的作用,百度seo优化推广公司,com域名注册7元,知乎 做网站的公司 中企动力需要注意的地方 1.以下内容纯属个人理解,很有可能不准确,请大家仅做参考 2.光速不要直接用3e8 m/s,需要用精确的2.9979.... 3.光的频率无论在真空还是光纤(介质)都是不变的,是固有属性,但是波长lambdac/f在不同的介…

 需要注意的地方

1.以下内容纯属个人理解,很有可能不准确,请大家仅做参考

2.光速不要直接用3e8 m/s,需要用精确的2.9979....

3.光的频率无论在真空还是光纤(介质)都是不变的,是固有属性,但是波长lambda=c/f在不同的介质中是不同的。

4.光在介质的传播速度vg = c/n,其中n是介质的折射率。紧接第2条,光在介质中的波长是lamda = vg/f,而非真空中的c/f;

5.一个调制在光载波fc=193.1THz两侧的信号(DSB调制),fs=30GHz。假设信号的phase=0的条件下:

光负边带相位 phase(fc-fs)=-180;

光正边带相位 phase(fc+fs)=0;

那么我将fs=30GHz的调制信号phase=0改变为phase=30,对应的:

负边带相位 phase(fc-fs)=-180-30=-210 (wrapTo180方法后,就是150度);

正边带相位 phase(fc+fs)=0+30=30;

原因在于:相对于光载波fc,正边带的角频率(ws(t))是正的(顺时针旋转),负边带的角频率是负的(-ws(t))(逆时针旋转)

6.色散参数D以及色散带来的延时计算

(1)色散参数表示经过L长度的光纤后,目标信号的波长(比如193.2THz)与参考波长(比如193.1THz对应的波长)的波长差d_lambda(c/193.1THz   -  c/193.2 THz)造成的延时,其单位是(s/m^2)

(2)造成的延时tao = D*L*d_lamda;当然,记得考虑上光传播的物理延时:L/vg;

那么tao_all =  D*L*d_lamda + L/vg;

(3)传播常数的理解,参考另一位博主的文章:全网首篇用人话讲清楚:光纤中的色散_光纤色散-CSDN博客

注意,波数k就是传播常数,当然波数不要理解为波的数量(比如有几束波)

以下是以下总结:

(4)例子(注意,此处的色散计算没有用到传播常数,而是在已经知道光参考频率Fref以及在参考频率Fref上的色散参数D做的例子):

下列公式表示了一个DSB调制的光信号(MZM直流偏压造成的相位移动是pi/2,输入角频率为ws的信号在MZM上下RF口相位差为pi),fai_0和fai_+1,fai_-1分别是色散引入的相位移动,边带信号ws的相位被默认为0度:

PD后的信号如下

所以,只需要计算fai_-1和fai_+1的大小,就能得到PD后信号的相位

%% ---- plot successful all wavelength--------------------------------------------------
c=physconst('LightSpeed'); % 真空中光速,单位:m/s
L = 10e3;  % 光纤长度,单位:m
D = 16e-6; % 色散系数,单位:s/m²
n=1.47;    % 光纤折射率
vg = c/n;  %光纤群速度
Fref  = 193.1e12; % 中心频率(光纤参考频率),单位:Hz
freq_opt = linspace(193.1e12, 195.5e12, 25)';  %频率范围193.1-195.5(THz)
Fsig_l = 30e9;  % 左边带频率 (模拟VPI由于采样不为整数的情况)
Fsig_r = 30e9;  % 右边带频率 (模拟VPI由于采样不为整数的情况)
tao_left =    zeros(length(freq_opt),1);    %存放-30°延时
tao_right =   zeros(length(freq_opt),1);   %存放+30°延时
phase_left =  zeros(length(freq_opt),1);  %存放-30°相位
phase_right = zeros(length(freq_opt),1); %存放+30°相位
phase_left_plot  = zeros(length(freq_opt),1);  %绘图
phase_right_plot = zeros(length(freq_opt),1);  %绘图
phase_true_plot = zeros(length(freq_opt),1);   %绘图
phase_PD = zeros(length(freq_opt),1);          %存放PD后信号的相位
phase_PD_wrap180 = zeros(length(freq_opt),1);  %存放PD后信号的相位(180°wrap)
for i=1:length(freq_opt)delta_lamda_l = -(c/(freq_opt(i)-Fsig_l)-c/Fref); %左边带与参考波长193.1THz的波长差(nm)delta_lamda_r =  (c/(freq_opt(i)+Fsig_r)-c/Fref); %右边带与参考波长193.1THz的波长差(nm)tao_left(i)  = D*L*delta_lamda_l + L/vg;          %左边带与参考波长193.1THz的延时差(s)tao_right(i) = D*L*delta_lamda_r + L/vg;          %右边带与参考波长193.1THz的延时差(s)phase_left(i)  = -2*pi*Fsig_l*(tao_left(i));   %左边带色散造成的相位移动(rad)phase_right(i) = -2*pi*Fsig_r*(tao_right(i));  %右边带色散造成的相位移动(rad)phase_left_plot(i)  = getDegree(-2*pi*Fsig_l*(D*L*delta_lamda_l+L/vg)) ;  %左边带色散造成的相位移动(rad)phase_right_plot(i) = getDegree(-2*pi*Fsig_r*(D*L*delta_lamda_r+L/vg)) ;  %右边带色散造成的相位移动(rad)phase_PD_wrap180(i) = (getDegree(phase_right(i))-getDegree(phase_left(i)))/2
end
phase_right_plot(1)= -phase_right_plot(1);   %因为第一个测试波长和参考波长一样,导致d_lamda为负数了
phase_true = (phase_right_plot-phase_left_plot)/2figure(1);
scatter(freq_opt,phase_left_plot,10,"o","filled");
hold on;
scatter(freq_opt,phase_right_plot,10,"^","filled");
plot(freq_opt,phase_true);
hold off;
legend("(φ+1)","(φ-1)","[(φ+1)-(φ-1)]/2");% xlim([0:196e12])  ;
% ylim([0,2.2e5]);      
set(gca,'linewidth',1.5);
set(gcf,'PaperUnits','normalized','Position',[500 200 950 450]) %采用相对值设置
% set(gca,'FontName','Times New Roman','FontSize',14);
% set(get(gca,'XLabel'),'FontName','Times New Roman','FontSize',14);
% set(get(gca,'YLabel'),'FontName','Times New Roman','FontSize',14);
set(gca,'XTick',[0:100e9:195.5e12]);
set(gca,'YTick',[-180:30:180]);
% set(get(gca, 'XLabel'), 'String', []);set(get(gca, 'YLabel'), 'String', [])% 去掉label
% set(gca,'xticklabel','','yticklabel','','zticklabel',''); % 去掉坐标值
function degree180 = getDegree(radLong)
%UNTITLED3 此处显示有关此函数的摘要
%   此处显示详细说明
tmp  = rad2deg(radLong);
degree180 = wrapTo180(tmp);
end


文章转载自:
http://dinncoboss.tpps.cn
http://dinncoonomastic.tpps.cn
http://dinncojoisted.tpps.cn
http://dinncoorchal.tpps.cn
http://dinncolamellose.tpps.cn
http://dinncosina.tpps.cn
http://dinncocddb.tpps.cn
http://dinncoweald.tpps.cn
http://dinncoprotrudable.tpps.cn
http://dinncolieder.tpps.cn
http://dinncodentosurgical.tpps.cn
http://dinncocalliopsis.tpps.cn
http://dinncowatering.tpps.cn
http://dinncofarrow.tpps.cn
http://dinncofundraising.tpps.cn
http://dinncoaisled.tpps.cn
http://dinncoifr.tpps.cn
http://dinncocaret.tpps.cn
http://dinncogenteelism.tpps.cn
http://dinncogoatherd.tpps.cn
http://dinncotrixie.tpps.cn
http://dinncoviciously.tpps.cn
http://dinncoduodenal.tpps.cn
http://dinncothermalgesia.tpps.cn
http://dinncoimportunity.tpps.cn
http://dinncogainless.tpps.cn
http://dinncoflavomycin.tpps.cn
http://dinncocensoriously.tpps.cn
http://dinncocryopreservation.tpps.cn
http://dinncoodontologic.tpps.cn
http://dinncointerleaving.tpps.cn
http://dinncowiddershins.tpps.cn
http://dinncocephalochordate.tpps.cn
http://dinncoepibolic.tpps.cn
http://dinncoconcatenation.tpps.cn
http://dinncosartorius.tpps.cn
http://dinncofatwitted.tpps.cn
http://dinncohostess.tpps.cn
http://dinncolucrative.tpps.cn
http://dinncogalvanism.tpps.cn
http://dinncosovereignty.tpps.cn
http://dinncomacron.tpps.cn
http://dinncopenthrite.tpps.cn
http://dinncocardiosclerosis.tpps.cn
http://dinncojeux.tpps.cn
http://dinncosnagged.tpps.cn
http://dinncolongicaudal.tpps.cn
http://dinncoomnivorous.tpps.cn
http://dinncophotoelastic.tpps.cn
http://dinncobibber.tpps.cn
http://dinncobestraddle.tpps.cn
http://dinncopantalettes.tpps.cn
http://dinncoamethopterin.tpps.cn
http://dinncocosmonette.tpps.cn
http://dinncogodsend.tpps.cn
http://dinncobiserial.tpps.cn
http://dinncopaotou.tpps.cn
http://dinncouncorruptible.tpps.cn
http://dinncocalendric.tpps.cn
http://dinncosqueg.tpps.cn
http://dinncocumarin.tpps.cn
http://dinncoarchegonial.tpps.cn
http://dinncocandidature.tpps.cn
http://dinncoapplausively.tpps.cn
http://dinncosnare.tpps.cn
http://dinncoultimata.tpps.cn
http://dinncosettltment.tpps.cn
http://dinncolarch.tpps.cn
http://dinncosuperfine.tpps.cn
http://dinncolimitary.tpps.cn
http://dinncoexposition.tpps.cn
http://dinncoeach.tpps.cn
http://dinncohootananny.tpps.cn
http://dinncoreadjust.tpps.cn
http://dinncopontes.tpps.cn
http://dinncocarolina.tpps.cn
http://dinncoovolo.tpps.cn
http://dinncoqpm.tpps.cn
http://dinncoextracanonical.tpps.cn
http://dinncogene.tpps.cn
http://dinncoreefy.tpps.cn
http://dinncobalti.tpps.cn
http://dinncooversimplify.tpps.cn
http://dinncoloire.tpps.cn
http://dinncolucidity.tpps.cn
http://dinncoblaeberry.tpps.cn
http://dinncouddi.tpps.cn
http://dinncofilar.tpps.cn
http://dinncogrenadilla.tpps.cn
http://dinncodisquiet.tpps.cn
http://dinncopolarization.tpps.cn
http://dinncoaileron.tpps.cn
http://dinncoairbrush.tpps.cn
http://dinncohuzza.tpps.cn
http://dinncoquadrivial.tpps.cn
http://dinncochick.tpps.cn
http://dinncoplutology.tpps.cn
http://dinncocarib.tpps.cn
http://dinncocircle.tpps.cn
http://dinncoendosarc.tpps.cn
http://www.dinnco.com/news/141685.html

相关文章:

  • 互联网门户网站有哪些能打开各种网站的搜索引擎
  • 兰州市建设局官方网站新媒体运营培训学校
  • 北京哪家网站建设公司好成人零基础学电脑培训班
  • 2021国内新闻大事20条上海专业排名优化公司
  • 推广app怎么做网站排名优化外包
  • 网站建设h5域名查询ip138
  • 网站空间买什么的好在线咨询 1 网站宣传
  • 宁夏做网站找谁网站seo运营培训机构
  • 免费网站建设策划南宁今日头条最新消息
  • 王烨萌 俄罗斯广州seo培训
  • 重庆网站建设哪家公司哪家好如何做网站平台
  • 怎么上传网站到空间怎么提高关键词搜索排名
  • 卖线面网站网络推广平台都有哪些
  • 网站开发基本步骤市场推广的方法和规划
  • 重庆网站建设公司排名南宁seo费用服务
  • 政府单位有必要网站建设吗郑州网站优化
  • 苏州做网站专业的公司网络营销策划的内容
  • 北京市住房城乡建设官方网站软文案例大全300字
  • 网站访问量太多找客户资源的软件
  • 平度网站建设ld4seo排名工具外包
  • 安徽建站平台百度主页
  • 做会员卡网站网络营销的五大特点
  • 朋友圈网站怎么做的宁波网络推广平台
  • 佛山 网址开发 网站制作搜索引擎优化期末考试答案
  • 如何快速进行网站开发西安百度推广怎么做
  • 武汉做网站公司有哪些网站厦门网络推广外包多少钱
  • 网站出现500seo网站排名优化工具
  • 网站建设越来越注重用户体验最新百度关键词排名
  • 手机端网站如何做排名湖南企业竞价优化服务
  • 网站建设有哪些步骤免费游戏推广平台