⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fieldop.h

📁 使用量子轨道方法计算量子主方程的C++库
💻 H
字号:
//   FieldOp.h -*- C++ -*- Operators for a harmonic oscillator mode.//     //   Copyright (C) 1995  Todd Brun and Ruediger Schack//   //   This program is free software; you can redistribute it and/or modify//   it under the terms of the GNU General Public License as published by//   the Free Software Foundation; either version 2 of the License, or//   (at your option) any later version.//   //   This program is distributed in the hope that it will be useful,//   but WITHOUT ANY WARRANTY; without even the implied warranty of//   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the//   GNU General Public License for more details.//   //   You should have received a copy of the GNU General Public License//   along with this program; if not, write to the Free Software//   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.////   ----------------------------------------------------------------------//   If you improve the code or make additions to it, or if you have//   comments or suggestions, please contact us:////   Dr. Todd Brun			        Tel    +44 (0)171 775 3292//   Department of Physics                      FAX    +44 (0)181 981 9465//   Queen Mary and Westfield College           email  t.brun@qmw.ac.uk//   Mile End Road, London E1 4NS, UK////   Dr. Ruediger Schack                        Tel    +44 (0)1784 443097//   Department of Mathematics                  FAX    +44 (0)1784 430766//   Royal Holloway, University of London       email  r.schack@rhbnc.ac.uk//   Egham, Surrey TW20 0EX, UK/////////////////////////////////////////////////////////////////////////////#ifndef _FieldOp_hhh#define _FieldOp_hhh 1#include "PrimOp.h"class AnnihilationOperator: public PrimaryOperator{public:  AnnihilationOperator() : PrimaryOperator(0,FIELD) {};  AnnihilationOperator(int freedom) : PrimaryOperator(freedom,FIELD) {};  virtual void applyTo(State&,int,double);};class LocalLower: public PrimaryOperator{public:  LocalLower() : PrimaryOperator(0,FIELD) {};  LocalLower(int freedom) : PrimaryOperator(freedom,FIELD) {};  virtual void applyTo(State&,int,double);};class CreationOperator: public PrimaryOperator{public:  CreationOperator(int=0) {    error("CreationOperator not implemented. Use AnnihilationOperator::hc().");  }  virtual void applyTo(State&,int,double) {};};class NumberOperator: public PrimaryOperator{public:  NumberOperator() : PrimaryOperator(0,FIELD) {};  NumberOperator(int freedom) : PrimaryOperator(freedom,FIELD) {};  virtual void applyTo(State&,int,double);};class XOperator: public PrimaryOperator{public:  XOperator() : PrimaryOperator(0,FIELD) {};  XOperator(int freedom) : PrimaryOperator(freedom,FIELD) {};  virtual void applyTo(State&,int,double);};class POperator: public PrimaryOperator{public:  POperator() : PrimaryOperator(0,FIELD) {};  POperator(int freedom) : PrimaryOperator(freedom,FIELD) {};  virtual void applyTo(State&,int,double);};class DisplacementOperator: public PrimaryOperator//// Computes  exp( alpha*adag - conj(alpha)*a ) where a and adag are// annihilation and creation operators.{public:  DisplacementOperator() : PrimaryOperator(0,FIELD) {     alpha=1.0; matrixSize=0; matrix=0; vv=0;  };  DisplacementOperator(Complex theAlpha, int freedom=0)                              : PrimaryOperator(freedom,FIELD) {    alpha=theAlpha; matrixSize=0; matrix=0; vv=0;  };  virtual void applyTo(State&,int,double);private:  Complex alpha;  int matrixSize;  Complex** matrix;  Complex* vv;};class RealDisplacementOperator: public PrimaryOperator//// Computes  exp( alpha(adag - a) )  where alpha is real and // where a and adag are annihilation and creation operators.{public:  RealDisplacementOperator() : PrimaryOperator(0,FIELD) {     alpha=1.0; matrixSize=0; matrix=0; vv=0;  };  RealDisplacementOperator(double theAlpha, int freedom=0)                              : PrimaryOperator(freedom,FIELD) {    alpha=theAlpha; matrixSize=0; matrix=0; vv=0;  };  virtual void applyTo(State&,int,double);private:  double alpha;  int matrixSize;  double** matrix;  Complex* vv;};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -