semiconductor notes

英语名词

英语解释短语
affinity亲和力electron affinity
lattice晶格lattice constant
photovoltaic effect光伏打效应photovoltaic cell
solar cells太阳能电池
solar panels太阳能板;太阳能电池板
p-typeP 型
n-typeN 型
p-n conjunctionPN 结
insulator绝缘体
semiconductor半导体
conductor导体
semiconducting material半导体材料
electric field
electromagnetic电磁的
electromagnetic radiaction电磁幅射
electromagnetic energy
wavelength波长
conduction band导带
valance band价带
forbidden band禁带
empty band空带
filled band满带
two charge carriers电子和空穴算两个载流子
carriers载流子
electron-hle pair
excited激发的
excited state激发态
diagram图表;图解
(带有图示的,解说性图)
graph图表;曲线图
substrat mapping
wafer mapping
feastability
HVM 经常作为 High Volume Manufacturing大批量生产
electrolyte
meteorology
derive
coefficent of determination判定系数
thermionic

工艺名词

英语解释短语
deposition
coating
exposure
development
etching
ashing/cleaning

数据网站

  • ioffe.ru

chemdataextractor ---- Chemistry Articles NLP Library

GPL Notes

链接库

GCC 使用特例

  • 参考

  • 例外条文

    When you use GCC to compile a program, GCC may combine portions of certain GCC header files and runtime libraries with the compiled program. The purpose of this Exception is to allow compilation of non-GPL (including proprietary) programs to use, in this way, the header files and runtime libraries covered by this Exception.

pybind11 ---- a Python C++ Binding Library

概述

类似 Boost.Python, 不过去掉了对 Boost 库的依赖,更轻便,便于绑定到 python

模块创建

  • 例子

     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    
    #include <pybind11/pybind11.h>
    
    int add(int i, int j) {
        return i + j;
    }
    
    PYBIND11_MODULE(example, m) {
        m.doc() = "pybind11 example plugin"; // optional module docstring
    
        m.def("add", &add, "A function which adds two numbers");
    }
  • 重点