石墨烯电导率,介电常数

#include <complex>
using namespace std;

typedef complex<double> Complex;

void compute()
{
	double T = 300;
	double uc = 0.8;
	double tor = 0.43e-3;
	double delta = 1e-9;

	double cs = 3e8;
	double ev = 1.602e-19;
	double Kb = 1.38e-23;
	double h = 6.626e-34;
	double eps0 = 8.85e-12;
	Complex j0(0,1);
	double pi = 3.1415926;
	double h1 = h/2/pi;

	double p = tor*ev/h*2*pi;

	double freq = 30e12;
	double w = 2*pi*freq;
	double k0 = w/cs;
	double lumda0 = cs/freq;

	double UC = uc*ev;


	//calculate interband:
	Complex sigmaInter = -j0*ev*ev/(4.0*pi*h1) * log( (2.0*abs(UC)-(w-j0*2.0*p)*h1)/(2.0*abs(UC)+(w-j0*2.0*p)*h1) );

	//calculate intraband:
	Complex sigmaIntra = -j0*ev*ev*Kb*T / (pi*(h1*h1)*(w-j0*2.0*p)) * (UC/Kb/T+2.0*log(exp(-UC/Kb/T)+1));
	
	Complex sigma = sigmaInter + sigmaIntra;

	Complex eps = -j0*sigma/delta/w/eps0;

	double tan_delta = eps.imag()/eps.real();

}

  • 1
    点赞
  • 16
    收藏
    觉得还不错? 一键收藏
  • 8
    评论
评论 8
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值