Search is not available for this dataset
int64
0
2k
instruction
stringlengths
945
985
output
stringlengths
5.12k
5.16k
1,900
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Silicon with a length of 0.45 micrometers and it is doped with Boron at a concentration of 946185242890931404800 cm^-3. The short gate region is of the material Germanium with a length of 0.36 micrometers and it is doped with Boron at a concentration of 184061764845854228480 cm^-3. The long gate region is of the material SiGe with a length of 0.59 micrometers and it is doped with Boron at a concentration of 786982717903312519168 cm^-3. The drain region is of the material Silicon with a length of 0.45 micrometers and it is doped with Boron at a concentration of 813357289696073875456 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.007 micrometers.
(define tox 0.005) (define Lgs 0.36) (define Lgl 0.59) (define Ltotal (+ Lgs Lgl)) (define Ls 0.45) (define Ld 0.45) (define Rl 0.007) (define Rs 0.007) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Germanium" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "SiGe" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 946185242890931404800 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 184061764845854228480 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 786982717903312519168 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 813357289696073875456 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,901
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Diamond with a length of 0.08 micrometers and it is doped with Phosphorus at a concentration of 957169683988455489536 cm^-3. The short gate region is of the material Germanium with a length of 0.6 micrometers and it is doped with Boron at a concentration of 955669836052531904512 cm^-3. The long gate region is of the material Diamond with a length of 0.03 micrometers and it is doped with Phosphorus at a concentration of 599133149655077486592 cm^-3. The drain region is of the material Silicon with a length of 0.08 micrometers and it is doped with Phosphorus at a concentration of 117590610424495063040 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.004 micrometers.
(define tox 0.002) (define Lgs 0.6) (define Lgl 0.03) (define Ltotal (+ Lgs Lgl)) (define Ls 0.08) (define Ld 0.08) (define Rl 0.004) (define Rs 0.004) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Germanium" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 957169683988455489536 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 955669836052531904512 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 599133149655077486592 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 117590610424495063040 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,902
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material SiGe with a length of 0.42 micrometers and it is doped with Phosphorus at a concentration of 975458905519638446080 cm^-3. The short gate region is of the material Germanium with a length of 0.55 micrometers and it is doped with Phosphorus at a concentration of 238036104709103091712 cm^-3. The long gate region is of the material Silicon with a length of 0.06 micrometers and it is doped with Boron at a concentration of 781638625323809112064 cm^-3. The drain region is of the material Diamond with a length of 0.42 micrometers and it is doped with Arsenic at a concentration of 487800203547114733568 cm^-3. The gate oxide thickness is 0.009 micrometers. The nanowire thickness is 0.007 micrometers.
(define tox 0.009) (define Lgs 0.55) (define Lgl 0.06) (define Ltotal (+ Lgs Lgl)) (define Ls 0.42) (define Ld 0.42) (define Rl 0.007) (define Rs 0.007) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Germanium" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 975458905519638446080 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 238036104709103091712 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 781638625323809112064 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Arsenic 487800203547114733568 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,903
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.89 micrometers and it is doped with Phosphorus at a concentration of 538348272025912737792 cm^-3. The short gate region is of the material GaN with a length of 0.45 micrometers and it is doped with Arsenic at a concentration of 994084518081404469248 cm^-3. The long gate region is of the material Silicon with a length of 0.13 micrometers and it is doped with Arsenic at a concentration of 625463148559568994304 cm^-3. The drain region is of the material Diamond with a length of 0.89 micrometers and it is doped with Arsenic at a concentration of 66858531712295026688 cm^-3. The gate oxide thickness is 0.006 micrometers. The nanowire thickness is 0.003 micrometers.
(define tox 0.006) (define Lgs 0.45) (define Lgl 0.13) (define Ltotal (+ Lgs Lgl)) (define Ls 0.89) (define Ld 0.89) (define Rl 0.003) (define Rs 0.003) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 538348272025912737792 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 994084518081404469248 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 625463148559568994304 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Arsenic 66858531712295026688 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,904
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.87 micrometers and it is doped with Boron at a concentration of 874346786033731371008 cm^-3. The short gate region is of the material SiGe with a length of 0.09 micrometers and it is doped with Boron at a concentration of 465325669374364352512 cm^-3. The long gate region is of the material Germanium with a length of 0.01 micrometers and it is doped with Phosphorus at a concentration of 134074735980260802560 cm^-3. The drain region is of the material Germanium with a length of 0.87 micrometers and it is doped with Arsenic at a concentration of 197289106182257999872 cm^-3. The gate oxide thickness is 0.009 micrometers. The nanowire thickness is 0.003 micrometers.
(define tox 0.009) (define Lgs 0.09) (define Lgl 0.01) (define Ltotal (+ Lgs Lgl)) (define Ls 0.87) (define Ld 0.87) (define Rl 0.003) (define Rs 0.003) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Germanium" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 874346786033731371008 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 465325669374364352512 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 134074735980260802560 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Arsenic 197289106182257999872 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,905
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material SiGe with a length of 0.56 micrometers and it is doped with Arsenic at a concentration of 189058089477320441856 cm^-3. The short gate region is of the material Germanium with a length of 0.05 micrometers and it is doped with Phosphorus at a concentration of 822260584584445296640 cm^-3. The long gate region is of the material GaN with a length of 0.42 micrometers and it is doped with Arsenic at a concentration of 490638208346139525120 cm^-3. The drain region is of the material Diamond with a length of 0.56 micrometers and it is doped with Arsenic at a concentration of 345572194187163598848 cm^-3. The gate oxide thickness is 0.008 micrometers. The nanowire thickness is 0.005 micrometers.
(define tox 0.008) (define Lgs 0.05) (define Lgl 0.42) (define Ltotal (+ Lgs Lgl)) (define Ls 0.56) (define Ld 0.56) (define Rl 0.005) (define Rs 0.005) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Germanium" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "GaN" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Arsenic 189058089477320441856 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 822260584584445296640 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 490638208346139525120 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Arsenic 345572194187163598848 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,906
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Silicon with a length of 0.75 micrometers and it is doped with Arsenic at a concentration of 903744631132448882688 cm^-3. The short gate region is of the material SiGe with a length of 0.86 micrometers and it is doped with Boron at a concentration of 80323433036858884096 cm^-3. The long gate region is of the material SiGe with a length of 0.83 micrometers and it is doped with Phosphorus at a concentration of 533212301727661293568 cm^-3. The drain region is of the material SiGe with a length of 0.75 micrometers and it is doped with Phosphorus at a concentration of 55101756327026868224 cm^-3. The gate oxide thickness is 0.008 micrometers. The nanowire thickness is 0.01 micrometers.
(define tox 0.008) (define Lgs 0.86) (define Lgl 0.83) (define Ltotal (+ Lgs Lgl)) (define Ls 0.75) (define Ld 0.75) (define Rl 0.01) (define Rs 0.01) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "SiGe" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Arsenic 903744631132448882688 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 80323433036858884096 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 533212301727661293568 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 55101756327026868224 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,907
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material SiGe with a length of 0.81 micrometers and it is doped with Arsenic at a concentration of 578935838114781069312 cm^-3. The short gate region is of the material GaN with a length of 0.84 micrometers and it is doped with Phosphorus at a concentration of 278914580800134021120 cm^-3. The long gate region is of the material Diamond with a length of 0.89 micrometers and it is doped with Boron at a concentration of 238948042750266736640 cm^-3. The drain region is of the material Germanium with a length of 0.81 micrometers and it is doped with Boron at a concentration of 306328992667477475328 cm^-3. The gate oxide thickness is 0.009 micrometers. The nanowire thickness is 0.004 micrometers.
(define tox 0.009) (define Lgs 0.84) (define Lgl 0.89) (define Ltotal (+ Lgs Lgl)) (define Ls 0.81) (define Ld 0.81) (define Rl 0.004) (define Rs 0.004) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Germanium" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Arsenic 578935838114781069312 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 278914580800134021120 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 238948042750266736640 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 306328992667477475328 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,908
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.12 micrometers and it is doped with Phosphorus at a concentration of 917194162765844316160 cm^-3. The short gate region is of the material Silicon with a length of 0.75 micrometers and it is doped with Phosphorus at a concentration of 981638062531991961600 cm^-3. The long gate region is of the material SiGe with a length of 0.39 micrometers and it is doped with Phosphorus at a concentration of 565458866328063442944 cm^-3. The drain region is of the material SiGe with a length of 0.12 micrometers and it is doped with Phosphorus at a concentration of 363553888774188957696 cm^-3. The gate oxide thickness is 0.008 micrometers. The nanowire thickness is 0.004 micrometers.
(define tox 0.008) (define Lgs 0.75) (define Lgl 0.39) (define Ltotal (+ Lgs Lgl)) (define Ls 0.12) (define Ld 0.12) (define Rl 0.004) (define Rs 0.004) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "SiGe" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 917194162765844316160 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 981638062531991961600 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 565458866328063442944 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 363553888774188957696 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,909
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Diamond with a length of 0.59 micrometers and it is doped with Phosphorus at a concentration of 361889180385549352960 cm^-3. The short gate region is of the material Diamond with a length of 0.71 micrometers and it is doped with Boron at a concentration of 749852782974515150848 cm^-3. The long gate region is of the material GaN with a length of 0.54 micrometers and it is doped with Boron at a concentration of 94817724312164859904 cm^-3. The drain region is of the material Silicon with a length of 0.59 micrometers and it is doped with Boron at a concentration of 476393921265515364352 cm^-3. The gate oxide thickness is 0.006 micrometers. The nanowire thickness is 0.004 micrometers.
(define tox 0.006) (define Lgs 0.71) (define Lgl 0.54) (define Ltotal (+ Lgs Lgl)) (define Ls 0.59) (define Ld 0.59) (define Rl 0.004) (define Rs 0.004) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "GaN" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 361889180385549352960 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 749852782974515150848 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 94817724312164859904 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 476393921265515364352 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,910
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.18 micrometers and it is doped with Boron at a concentration of 686228019815213826048 cm^-3. The short gate region is of the material Diamond with a length of 0.89 micrometers and it is doped with Phosphorus at a concentration of 651700861697158414336 cm^-3. The long gate region is of the material Germanium with a length of 0.88 micrometers and it is doped with Boron at a concentration of 385796360242581078016 cm^-3. The drain region is of the material SiGe with a length of 0.18 micrometers and it is doped with Phosphorus at a concentration of 160961063383534338048 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.004 micrometers.
(define tox 0.005) (define Lgs 0.89) (define Lgl 0.88) (define Ltotal (+ Lgs Lgl)) (define Ls 0.18) (define Ld 0.18) (define Rl 0.004) (define Rs 0.004) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 686228019815213826048 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 651700861697158414336 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 385796360242581078016 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 160961063383534338048 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,911
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Diamond with a length of 0.48 micrometers and it is doped with Boron at a concentration of 75226958251530043392 cm^-3. The short gate region is of the material Diamond with a length of 0.75 micrometers and it is doped with Phosphorus at a concentration of 529353440055040802816 cm^-3. The long gate region is of the material Germanium with a length of 0.15 micrometers and it is doped with Boron at a concentration of 476930091086597980160 cm^-3. The drain region is of the material Germanium with a length of 0.48 micrometers and it is doped with Boron at a concentration of 147236593693521362944 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.009 micrometers.
(define tox 0.003) (define Lgs 0.75) (define Lgl 0.15) (define Ltotal (+ Lgs Lgl)) (define Ls 0.48) (define Ld 0.48) (define Rl 0.009) (define Rs 0.009) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Germanium" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 75226958251530043392 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 529353440055040802816 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 476930091086597980160 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 147236593693521362944 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,912
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Silicon with a length of 0.25 micrometers and it is doped with Phosphorus at a concentration of 769508631647785189376 cm^-3. The short gate region is of the material Diamond with a length of 0.48 micrometers and it is doped with Phosphorus at a concentration of 794621464589509853184 cm^-3. The long gate region is of the material GaN with a length of 0.58 micrometers and it is doped with Boron at a concentration of 272911308600054677504 cm^-3. The drain region is of the material SiGe with a length of 0.25 micrometers and it is doped with Boron at a concentration of 532973378902657990656 cm^-3. The gate oxide thickness is 0.009 micrometers. The nanowire thickness is 0.003 micrometers.
(define tox 0.009) (define Lgs 0.48) (define Lgl 0.58) (define Ltotal (+ Lgs Lgl)) (define Ls 0.25) (define Ld 0.25) (define Rl 0.003) (define Rs 0.003) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "GaN" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 769508631647785189376 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 794621464589509853184 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 272911308600054677504 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 532973378902657990656 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,913
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Germanium with a length of 1.0 micrometers and it is doped with Arsenic at a concentration of 545511053934522400768 cm^-3. The short gate region is of the material Germanium with a length of 1.0 micrometers and it is doped with Boron at a concentration of 436243286137286295552 cm^-3. The long gate region is of the material Silicon with a length of 0.2 micrometers and it is doped with Arsenic at a concentration of 235946317595239088128 cm^-3. The drain region is of the material Silicon with a length of 1.0 micrometers and it is doped with Phosphorus at a concentration of 694382355452694888448 cm^-3. The gate oxide thickness is 0.009 micrometers. The nanowire thickness is 0.004 micrometers.
(define tox 0.009) (define Lgs 1.0) (define Lgl 0.2) (define Ltotal (+ Lgs Lgl)) (define Ls 1.0) (define Ld 1.0) (define Rl 0.004) (define Rs 0.004) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Germanium" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Germanium" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Arsenic 545511053934522400768 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 436243286137286295552 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 235946317595239088128 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 694382355452694888448 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,914
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Germanium with a length of 0.94 micrometers and it is doped with Arsenic at a concentration of 252534580524738740224 cm^-3. The short gate region is of the material Diamond with a length of 0.05 micrometers and it is doped with Boron at a concentration of 590422152978452971520 cm^-3. The long gate region is of the material Diamond with a length of 0.07 micrometers and it is doped with Boron at a concentration of 677808109853068754944 cm^-3. The drain region is of the material Diamond with a length of 0.94 micrometers and it is doped with Arsenic at a concentration of 343035296261372248064 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.002 micrometers.
(define tox 0.002) (define Lgs 0.05) (define Lgl 0.07) (define Ltotal (+ Lgs Lgl)) (define Ls 0.94) (define Ld 0.94) (define Rl 0.002) (define Rs 0.002) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Germanium" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Arsenic 252534580524738740224 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 590422152978452971520 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 677808109853068754944 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Arsenic 343035296261372248064 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,915
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.1 micrometers and it is doped with Phosphorus at a concentration of 828321010750206640128 cm^-3. The short gate region is of the material SiGe with a length of 0.33 micrometers and it is doped with Phosphorus at a concentration of 98228803097804816384 cm^-3. The long gate region is of the material GaN with a length of 0.22 micrometers and it is doped with Phosphorus at a concentration of 303535755740457336832 cm^-3. The drain region is of the material Diamond with a length of 0.1 micrometers and it is doped with Phosphorus at a concentration of 486719046504023719936 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.001 micrometers.
(define tox 0.003) (define Lgs 0.33) (define Lgl 0.22) (define Ltotal (+ Lgs Lgl)) (define Ls 0.1) (define Ld 0.1) (define Rl 0.001) (define Rs 0.001) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "GaN" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 828321010750206640128 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 98228803097804816384 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 303535755740457336832 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 486719046504023719936 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,916
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material SiGe with a length of 0.8 micrometers and it is doped with Boron at a concentration of 176294674524223995904 cm^-3. The short gate region is of the material Diamond with a length of 0.25 micrometers and it is doped with Arsenic at a concentration of 557353338984214560768 cm^-3. The long gate region is of the material GaN with a length of 0.63 micrometers and it is doped with Boron at a concentration of 826189630615292084224 cm^-3. The drain region is of the material Germanium with a length of 0.8 micrometers and it is doped with Arsenic at a concentration of 394559633141936553984 cm^-3. The gate oxide thickness is 0.007 micrometers. The nanowire thickness is 0.007 micrometers.
(define tox 0.007) (define Lgs 0.25) (define Lgl 0.63) (define Ltotal (+ Lgs Lgl)) (define Ls 0.8) (define Ld 0.8) (define Rl 0.007) (define Rs 0.007) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "GaN" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Germanium" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 176294674524223995904 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 557353338984214560768 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 826189630615292084224 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Arsenic 394559633141936553984 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,917
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Germanium with a length of 0.79 micrometers and it is doped with Phosphorus at a concentration of 402239411246442086400 cm^-3. The short gate region is of the material GaN with a length of 0.64 micrometers and it is doped with Phosphorus at a concentration of 947881317106583339008 cm^-3. The long gate region is of the material Diamond with a length of 0.71 micrometers and it is doped with Boron at a concentration of 133544805188154179584 cm^-3. The drain region is of the material Silicon with a length of 0.79 micrometers and it is doped with Phosphorus at a concentration of 410884589434090946560 cm^-3. The gate oxide thickness is 0.004 micrometers. The nanowire thickness is 0.007 micrometers.
(define tox 0.004) (define Lgs 0.64) (define Lgl 0.71) (define Ltotal (+ Lgs Lgl)) (define Ls 0.79) (define Ld 0.79) (define Rl 0.007) (define Rs 0.007) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Germanium" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 402239411246442086400 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 947881317106583339008 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 133544805188154179584 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 410884589434090946560 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,918
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.67 micrometers and it is doped with Boron at a concentration of 173035800757526986752 cm^-3. The short gate region is of the material SiGe with a length of 0.64 micrometers and it is doped with Arsenic at a concentration of 971830425186501918720 cm^-3. The long gate region is of the material Germanium with a length of 0.53 micrometers and it is doped with Arsenic at a concentration of 764143334113528250368 cm^-3. The drain region is of the material GaN with a length of 0.67 micrometers and it is doped with Boron at a concentration of 269443810846505893888 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.008 micrometers.
(define tox 0.003) (define Lgs 0.64) (define Lgl 0.53) (define Ltotal (+ Lgs Lgl)) (define Ls 0.67) (define Ld 0.67) (define Rl 0.008) (define Rs 0.008) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "GaN" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 173035800757526986752 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 971830425186501918720 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 764143334113528250368 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 269443810846505893888 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,919
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Germanium with a length of 0.64 micrometers and it is doped with Arsenic at a concentration of 749434439291595915264 cm^-3. The short gate region is of the material Silicon with a length of 0.9 micrometers and it is doped with Phosphorus at a concentration of 624945976820098924544 cm^-3. The long gate region is of the material GaN with a length of 0.67 micrometers and it is doped with Boron at a concentration of 8281116032072623104 cm^-3. The drain region is of the material Germanium with a length of 0.64 micrometers and it is doped with Arsenic at a concentration of 678123440269918339072 cm^-3. The gate oxide thickness is 0.006 micrometers. The nanowire thickness is 0.004 micrometers.
(define tox 0.006) (define Lgs 0.9) (define Lgl 0.67) (define Ltotal (+ Lgs Lgl)) (define Ls 0.64) (define Ld 0.64) (define Rl 0.004) (define Rs 0.004) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Germanium" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "GaN" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Germanium" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Arsenic 749434439291595915264 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 624945976820098924544 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 8281116032072623104 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Arsenic 678123440269918339072 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,920
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.09 micrometers and it is doped with Boron at a concentration of 860986396596021886976 cm^-3. The short gate region is of the material Silicon with a length of 0.44 micrometers and it is doped with Boron at a concentration of 988094157584507469824 cm^-3. The long gate region is of the material Diamond with a length of 0.67 micrometers and it is doped with Arsenic at a concentration of 123512665898734026752 cm^-3. The drain region is of the material Germanium with a length of 0.09 micrometers and it is doped with Boron at a concentration of 30610409257237659648 cm^-3. The gate oxide thickness is 0.008 micrometers. The nanowire thickness is 0.005 micrometers.
(define tox 0.008) (define Lgs 0.44) (define Lgl 0.67) (define Ltotal (+ Lgs Lgl)) (define Ls 0.09) (define Ld 0.09) (define Rl 0.005) (define Rs 0.005) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Germanium" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 860986396596021886976 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 988094157584507469824 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 123512665898734026752 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 30610409257237659648 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,921
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Diamond with a length of 0.07 micrometers and it is doped with Phosphorus at a concentration of 663497482504958246912 cm^-3. The short gate region is of the material Silicon with a length of 0.39 micrometers and it is doped with Phosphorus at a concentration of 963736343402858545152 cm^-3. The long gate region is of the material Silicon with a length of 0.25 micrometers and it is doped with Arsenic at a concentration of 58307633974294118400 cm^-3. The drain region is of the material Germanium with a length of 0.07 micrometers and it is doped with Phosphorus at a concentration of 986079060720628531200 cm^-3. The gate oxide thickness is 0.009 micrometers. The nanowire thickness is 0.004 micrometers.
(define tox 0.009) (define Lgs 0.39) (define Lgl 0.25) (define Ltotal (+ Lgs Lgl)) (define Ls 0.07) (define Ld 0.07) (define Rl 0.004) (define Rs 0.004) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Germanium" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 663497482504958246912 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 963736343402858545152 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 58307633974294118400 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 986079060720628531200 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,922
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.14 micrometers and it is doped with Phosphorus at a concentration of 660133992048026058752 cm^-3. The short gate region is of the material Diamond with a length of 0.83 micrometers and it is doped with Phosphorus at a concentration of 702304390171574009856 cm^-3. The long gate region is of the material Germanium with a length of 0.55 micrometers and it is doped with Arsenic at a concentration of 349359321026561179648 cm^-3. The drain region is of the material Germanium with a length of 0.14 micrometers and it is doped with Arsenic at a concentration of 279441413078267789312 cm^-3. The gate oxide thickness is 0.008 micrometers. The nanowire thickness is 0.006 micrometers.
(define tox 0.008) (define Lgs 0.83) (define Lgl 0.55) (define Ltotal (+ Lgs Lgl)) (define Ls 0.14) (define Ld 0.14) (define Rl 0.006) (define Rs 0.006) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Germanium" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 660133992048026058752 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 702304390171574009856 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 349359321026561179648 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Arsenic 279441413078267789312 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,923
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Diamond with a length of 0.7 micrometers and it is doped with Boron at a concentration of 27978600856802390016 cm^-3. The short gate region is of the material Germanium with a length of 0.69 micrometers and it is doped with Boron at a concentration of 804739398444347162624 cm^-3. The long gate region is of the material Silicon with a length of 0.51 micrometers and it is doped with Phosphorus at a concentration of 202997761810800836608 cm^-3. The drain region is of the material SiGe with a length of 0.7 micrometers and it is doped with Arsenic at a concentration of 435090795739152252928 cm^-3. The gate oxide thickness is 0.004 micrometers. The nanowire thickness is 0.001 micrometers.
(define tox 0.004) (define Lgs 0.69) (define Lgl 0.51) (define Ltotal (+ Lgs Lgl)) (define Ls 0.7) (define Ld 0.7) (define Rl 0.001) (define Rs 0.001) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Germanium" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 27978600856802390016 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 804739398444347162624 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 202997761810800836608 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Arsenic 435090795739152252928 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,924
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Silicon with a length of 0.18 micrometers and it is doped with Boron at a concentration of 655267081548590219264 cm^-3. The short gate region is of the material Silicon with a length of 0.64 micrometers and it is doped with Arsenic at a concentration of 135318026866812534784 cm^-3. The long gate region is of the material GaN with a length of 0.69 micrometers and it is doped with Phosphorus at a concentration of 171523833669826510848 cm^-3. The drain region is of the material Germanium with a length of 0.18 micrometers and it is doped with Boron at a concentration of 967284995971966566400 cm^-3. The gate oxide thickness is 0.008 micrometers. The nanowire thickness is 0.007 micrometers.
(define tox 0.008) (define Lgs 0.64) (define Lgl 0.69) (define Ltotal (+ Lgs Lgl)) (define Ls 0.18) (define Ld 0.18) (define Rl 0.007) (define Rs 0.007) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "GaN" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Germanium" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 655267081548590219264 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 135318026866812534784 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 171523833669826510848 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 967284995971966566400 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,925
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.55 micrometers and it is doped with Boron at a concentration of 498382919433325510656 cm^-3. The short gate region is of the material Diamond with a length of 0.97 micrometers and it is doped with Arsenic at a concentration of 280591471783277264896 cm^-3. The long gate region is of the material Silicon with a length of 0.21 micrometers and it is doped with Phosphorus at a concentration of 211768628935763951616 cm^-3. The drain region is of the material Diamond with a length of 0.55 micrometers and it is doped with Boron at a concentration of 544182328112749084672 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.009 micrometers.
(define tox 0.003) (define Lgs 0.97) (define Lgl 0.21) (define Ltotal (+ Lgs Lgl)) (define Ls 0.55) (define Ld 0.55) (define Rl 0.009) (define Rs 0.009) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 498382919433325510656 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 280591471783277264896 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 211768628935763951616 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 544182328112749084672 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,926
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.22 micrometers and it is doped with Phosphorus at a concentration of 244192712962598502400 cm^-3. The short gate region is of the material SiGe with a length of 0.73 micrometers and it is doped with Boron at a concentration of 252835639493874778112 cm^-3. The long gate region is of the material GaN with a length of 0.29 micrometers and it is doped with Boron at a concentration of 249078911553755611136 cm^-3. The drain region is of the material Diamond with a length of 0.22 micrometers and it is doped with Phosphorus at a concentration of 228335461260763758592 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.008 micrometers.
(define tox 0.002) (define Lgs 0.73) (define Lgl 0.29) (define Ltotal (+ Lgs Lgl)) (define Ls 0.22) (define Ld 0.22) (define Rl 0.008) (define Rs 0.008) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "GaN" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 244192712962598502400 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 252835639493874778112 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 249078911553755611136 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 228335461260763758592 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,927
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material SiGe with a length of 0.26 micrometers and it is doped with Phosphorus at a concentration of 880660857509849464832 cm^-3. The short gate region is of the material Silicon with a length of 0.36 micrometers and it is doped with Arsenic at a concentration of 867155163291939635200 cm^-3. The long gate region is of the material Germanium with a length of 0.17 micrometers and it is doped with Arsenic at a concentration of 24090776513446567936 cm^-3. The drain region is of the material GaN with a length of 0.26 micrometers and it is doped with Phosphorus at a concentration of 663934504688508207104 cm^-3. The gate oxide thickness is 0.006 micrometers. The nanowire thickness is 0.002 micrometers.
(define tox 0.006) (define Lgs 0.36) (define Lgl 0.17) (define Ltotal (+ Lgs Lgl)) (define Ls 0.26) (define Ld 0.26) (define Rl 0.002) (define Rs 0.002) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "GaN" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 880660857509849464832 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 867155163291939635200 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 24090776513446567936 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 663934504688508207104 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,928
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Silicon with a length of 0.08 micrometers and it is doped with Phosphorus at a concentration of 310143124200599846912 cm^-3. The short gate region is of the material Diamond with a length of 0.77 micrometers and it is doped with Phosphorus at a concentration of 362764831174322946048 cm^-3. The long gate region is of the material Silicon with a length of 0.25 micrometers and it is doped with Boron at a concentration of 628014767222494330880 cm^-3. The drain region is of the material SiGe with a length of 0.08 micrometers and it is doped with Phosphorus at a concentration of 243625290293859319808 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.007 micrometers.
(define tox 0.003) (define Lgs 0.77) (define Lgl 0.25) (define Ltotal (+ Lgs Lgl)) (define Ls 0.08) (define Ld 0.08) (define Rl 0.007) (define Rs 0.007) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 310143124200599846912 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 362764831174322946048 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 628014767222494330880 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 243625290293859319808 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,929
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material SiGe with a length of 0.31 micrometers and it is doped with Arsenic at a concentration of 902288141631784353792 cm^-3. The short gate region is of the material GaN with a length of 0.02 micrometers and it is doped with Phosphorus at a concentration of 120900649766189137920 cm^-3. The long gate region is of the material Germanium with a length of 0.58 micrometers and it is doped with Arsenic at a concentration of 11182219348607463424 cm^-3. The drain region is of the material Germanium with a length of 0.31 micrometers and it is doped with Phosphorus at a concentration of 105652677790105419776 cm^-3. The gate oxide thickness is 0.006 micrometers. The nanowire thickness is 0.005 micrometers.
(define tox 0.006) (define Lgs 0.02) (define Lgl 0.58) (define Ltotal (+ Lgs Lgl)) (define Ls 0.31) (define Ld 0.31) (define Rl 0.005) (define Rs 0.005) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Germanium" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Arsenic 902288141631784353792 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 120900649766189137920 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 11182219348607463424 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 105652677790105419776 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,930
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.75 micrometers and it is doped with Phosphorus at a concentration of 2320242101968807936 cm^-3. The short gate region is of the material Silicon with a length of 0.56 micrometers and it is doped with Boron at a concentration of 193861676805568102400 cm^-3. The long gate region is of the material Germanium with a length of 0.06 micrometers and it is doped with Boron at a concentration of 757788868811021615104 cm^-3. The drain region is of the material Silicon with a length of 0.75 micrometers and it is doped with Boron at a concentration of 502265677748912783360 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.005 micrometers.
(define tox 0.002) (define Lgs 0.56) (define Lgl 0.06) (define Ltotal (+ Lgs Lgl)) (define Ls 0.75) (define Ld 0.75) (define Rl 0.005) (define Rs 0.005) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 2320242101968807936 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 193861676805568102400 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 757788868811021615104 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 502265677748912783360 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,931
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Diamond with a length of 0.41 micrometers and it is doped with Boron at a concentration of 273474899785046818816 cm^-3. The short gate region is of the material Diamond with a length of 0.42 micrometers and it is doped with Arsenic at a concentration of 637152870131638206464 cm^-3. The long gate region is of the material Silicon with a length of 0.64 micrometers and it is doped with Phosphorus at a concentration of 977983130775434297344 cm^-3. The drain region is of the material Silicon with a length of 0.41 micrometers and it is doped with Phosphorus at a concentration of 279573880023520575488 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.008 micrometers.
(define tox 0.005) (define Lgs 0.42) (define Lgl 0.64) (define Ltotal (+ Lgs Lgl)) (define Ls 0.41) (define Ld 0.41) (define Rl 0.008) (define Rs 0.008) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 273474899785046818816 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 637152870131638206464 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 977983130775434297344 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 279573880023520575488 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,932
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.06 micrometers and it is doped with Phosphorus at a concentration of 271734891748370612224 cm^-3. The short gate region is of the material SiGe with a length of 0.19 micrometers and it is doped with Arsenic at a concentration of 896112104649694904320 cm^-3. The long gate region is of the material GaN with a length of 0.83 micrometers and it is doped with Phosphorus at a concentration of 496829207099855732736 cm^-3. The drain region is of the material SiGe with a length of 0.06 micrometers and it is doped with Boron at a concentration of 280973964742129582080 cm^-3. The gate oxide thickness is 0.004 micrometers. The nanowire thickness is 0.002 micrometers.
(define tox 0.004) (define Lgs 0.19) (define Lgl 0.83) (define Ltotal (+ Lgs Lgl)) (define Ls 0.06) (define Ld 0.06) (define Rl 0.002) (define Rs 0.002) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "GaN" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 271734891748370612224 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 896112104649694904320 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 496829207099855732736 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 280973964742129582080 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,933
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Germanium with a length of 0.35 micrometers and it is doped with Boron at a concentration of 6583525246694693888 cm^-3. The short gate region is of the material GaN with a length of 0.8 micrometers and it is doped with Boron at a concentration of 534031712128031129600 cm^-3. The long gate region is of the material SiGe with a length of 0.47 micrometers and it is doped with Arsenic at a concentration of 935243643799383703552 cm^-3. The drain region is of the material GaN with a length of 0.35 micrometers and it is doped with Phosphorus at a concentration of 357414437556417462272 cm^-3. The gate oxide thickness is 0.004 micrometers. The nanowire thickness is 0.004 micrometers.
(define tox 0.004) (define Lgs 0.8) (define Lgl 0.47) (define Ltotal (+ Lgs Lgl)) (define Ls 0.35) (define Ld 0.35) (define Rl 0.004) (define Rs 0.004) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Germanium" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "SiGe" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "GaN" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 6583525246694693888 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 534031712128031129600 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 935243643799383703552 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 357414437556417462272 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,934
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Germanium with a length of 0.39 micrometers and it is doped with Phosphorus at a concentration of 230589058578700992512 cm^-3. The short gate region is of the material SiGe with a length of 0.34 micrometers and it is doped with Phosphorus at a concentration of 731764171543270522880 cm^-3. The long gate region is of the material GaN with a length of 0.64 micrometers and it is doped with Phosphorus at a concentration of 648976377894477627392 cm^-3. The drain region is of the material Diamond with a length of 0.39 micrometers and it is doped with Arsenic at a concentration of 442436847842852077568 cm^-3. The gate oxide thickness is 0.01 micrometers. The nanowire thickness is 0.004 micrometers.
(define tox 0.01) (define Lgs 0.34) (define Lgl 0.64) (define Ltotal (+ Lgs Lgl)) (define Ls 0.39) (define Ld 0.39) (define Rl 0.004) (define Rs 0.004) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Germanium" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "GaN" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 230589058578700992512 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 731764171543270522880 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 648976377894477627392 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Arsenic 442436847842852077568 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,935
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Silicon with a length of 0.23 micrometers and it is doped with Phosphorus at a concentration of 691513533957293867008 cm^-3. The short gate region is of the material Diamond with a length of 0.33 micrometers and it is doped with Phosphorus at a concentration of 879543798785211367424 cm^-3. The long gate region is of the material SiGe with a length of 0.02 micrometers and it is doped with Boron at a concentration of 170817463983791177728 cm^-3. The drain region is of the material Germanium with a length of 0.23 micrometers and it is doped with Phosphorus at a concentration of 985145507964455616512 cm^-3. The gate oxide thickness is 0.007 micrometers. The nanowire thickness is 0.007 micrometers.
(define tox 0.007) (define Lgs 0.33) (define Lgl 0.02) (define Ltotal (+ Lgs Lgl)) (define Ls 0.23) (define Ld 0.23) (define Rl 0.007) (define Rs 0.007) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "SiGe" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Germanium" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 691513533957293867008 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 879543798785211367424 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 170817463983791177728 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 985145507964455616512 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,936
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.61 micrometers and it is doped with Boron at a concentration of 225332322875015233536 cm^-3. The short gate region is of the material SiGe with a length of 0.81 micrometers and it is doped with Boron at a concentration of 262775638310528581632 cm^-3. The long gate region is of the material GaN with a length of 0.56 micrometers and it is doped with Phosphorus at a concentration of 874409877361606656000 cm^-3. The drain region is of the material GaN with a length of 0.61 micrometers and it is doped with Phosphorus at a concentration of 502813655337916170240 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.004 micrometers.
(define tox 0.003) (define Lgs 0.81) (define Lgl 0.56) (define Ltotal (+ Lgs Lgl)) (define Ls 0.61) (define Ld 0.61) (define Rl 0.004) (define Rs 0.004) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "GaN" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "GaN" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 225332322875015233536 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 262775638310528581632 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 874409877361606656000 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 502813655337916170240 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,937
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Silicon with a length of 0.42 micrometers and it is doped with Phosphorus at a concentration of 835446377960336785408 cm^-3. The short gate region is of the material SiGe with a length of 0.08 micrometers and it is doped with Boron at a concentration of 177067385488482402304 cm^-3. The long gate region is of the material Silicon with a length of 0.03 micrometers and it is doped with Phosphorus at a concentration of 387093111916304924672 cm^-3. The drain region is of the material SiGe with a length of 0.42 micrometers and it is doped with Boron at a concentration of 851097674036660666368 cm^-3. The gate oxide thickness is 0.008 micrometers. The nanowire thickness is 0.002 micrometers.
(define tox 0.008) (define Lgs 0.08) (define Lgl 0.03) (define Ltotal (+ Lgs Lgl)) (define Ls 0.42) (define Ld 0.42) (define Rl 0.002) (define Rs 0.002) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 835446377960336785408 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 177067385488482402304 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 387093111916304924672 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 851097674036660666368 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,938
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.99 micrometers and it is doped with Arsenic at a concentration of 460646793922471002112 cm^-3. The short gate region is of the material Silicon with a length of 0.98 micrometers and it is doped with Phosphorus at a concentration of 967164985467216592896 cm^-3. The long gate region is of the material SiGe with a length of 0.82 micrometers and it is doped with Boron at a concentration of 941085047562599006208 cm^-3. The drain region is of the material Diamond with a length of 0.99 micrometers and it is doped with Boron at a concentration of 893369607520490881024 cm^-3. The gate oxide thickness is 0.004 micrometers. The nanowire thickness is 0.006 micrometers.
(define tox 0.004) (define Lgs 0.98) (define Lgl 0.82) (define Ltotal (+ Lgs Lgl)) (define Ls 0.99) (define Ld 0.99) (define Rl 0.006) (define Rs 0.006) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "SiGe" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Arsenic 460646793922471002112 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 967164985467216592896 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 941085047562599006208 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 893369607520490881024 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,939
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Diamond with a length of 0.96 micrometers and it is doped with Boron at a concentration of 816243957282781265920 cm^-3. The short gate region is of the material Germanium with a length of 0.33 micrometers and it is doped with Arsenic at a concentration of 173965972022170746880 cm^-3. The long gate region is of the material Silicon with a length of 0.47 micrometers and it is doped with Arsenic at a concentration of 409953528061591552000 cm^-3. The drain region is of the material SiGe with a length of 0.96 micrometers and it is doped with Boron at a concentration of 976136244457257828352 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.003 micrometers.
(define tox 0.003) (define Lgs 0.33) (define Lgl 0.47) (define Ltotal (+ Lgs Lgl)) (define Ls 0.96) (define Ld 0.96) (define Rl 0.003) (define Rs 0.003) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Germanium" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 816243957282781265920 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 173965972022170746880 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 409953528061591552000 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 976136244457257828352 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,940
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Diamond with a length of 0.78 micrometers and it is doped with Arsenic at a concentration of 147357609620051640320 cm^-3. The short gate region is of the material SiGe with a length of 0.88 micrometers and it is doped with Phosphorus at a concentration of 439635131164359917568 cm^-3. The long gate region is of the material SiGe with a length of 0.51 micrometers and it is doped with Arsenic at a concentration of 915235100875619434496 cm^-3. The drain region is of the material Silicon with a length of 0.78 micrometers and it is doped with Boron at a concentration of 236906842893922107392 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.007 micrometers.
(define tox 0.005) (define Lgs 0.88) (define Lgl 0.51) (define Ltotal (+ Lgs Lgl)) (define Ls 0.78) (define Ld 0.78) (define Rl 0.007) (define Rs 0.007) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "SiGe" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Arsenic 147357609620051640320 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 439635131164359917568 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 915235100875619434496 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 236906842893922107392 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,941
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Germanium with a length of 0.55 micrometers and it is doped with Boron at a concentration of 310689738144647872512 cm^-3. The short gate region is of the material SiGe with a length of 0.31 micrometers and it is doped with Phosphorus at a concentration of 7586513032720519168 cm^-3. The long gate region is of the material Germanium with a length of 0.21 micrometers and it is doped with Phosphorus at a concentration of 300766136290392276992 cm^-3. The drain region is of the material Diamond with a length of 0.55 micrometers and it is doped with Phosphorus at a concentration of 711376642798618279936 cm^-3. The gate oxide thickness is 0.001 micrometers. The nanowire thickness is 0.001 micrometers.
(define tox 0.001) (define Lgs 0.31) (define Lgl 0.21) (define Ltotal (+ Lgs Lgl)) (define Ls 0.55) (define Ld 0.55) (define Rl 0.001) (define Rs 0.001) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Germanium" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 310689738144647872512 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 7586513032720519168 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 300766136290392276992 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 711376642798618279936 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,942
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Diamond with a length of 0.03 micrometers and it is doped with Arsenic at a concentration of 224870820945387978752 cm^-3. The short gate region is of the material Silicon with a length of 0.61 micrometers and it is doped with Arsenic at a concentration of 236978202816845545472 cm^-3. The long gate region is of the material Diamond with a length of 0.75 micrometers and it is doped with Phosphorus at a concentration of 331149839789260800000 cm^-3. The drain region is of the material Diamond with a length of 0.03 micrometers and it is doped with Boron at a concentration of 374356981680672735232 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.002 micrometers.
(define tox 0.005) (define Lgs 0.61) (define Lgl 0.75) (define Ltotal (+ Lgs Lgl)) (define Ls 0.03) (define Ld 0.03) (define Rl 0.002) (define Rs 0.002) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Arsenic 224870820945387978752 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 236978202816845545472 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 331149839789260800000 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 374356981680672735232 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,943
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material SiGe with a length of 0.27 micrometers and it is doped with Arsenic at a concentration of 425870259964058009600 cm^-3. The short gate region is of the material GaN with a length of 0.65 micrometers and it is doped with Arsenic at a concentration of 215389961875224952832 cm^-3. The long gate region is of the material GaN with a length of 0.09 micrometers and it is doped with Arsenic at a concentration of 975105964126437244928 cm^-3. The drain region is of the material Silicon with a length of 0.27 micrometers and it is doped with Phosphorus at a concentration of 163899259553974583296 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.003 micrometers.
(define tox 0.005) (define Lgs 0.65) (define Lgl 0.09) (define Ltotal (+ Lgs Lgl)) (define Ls 0.27) (define Ld 0.27) (define Rl 0.003) (define Rs 0.003) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "GaN" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Arsenic 425870259964058009600 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 215389961875224952832 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 975105964126437244928 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 163899259553974583296 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,944
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Germanium with a length of 0.81 micrometers and it is doped with Phosphorus at a concentration of 343024881341713743872 cm^-3. The short gate region is of the material SiGe with a length of 0.42 micrometers and it is doped with Boron at a concentration of 417963983234616918016 cm^-3. The long gate region is of the material Diamond with a length of 0.8 micrometers and it is doped with Arsenic at a concentration of 645986971247168454656 cm^-3. The drain region is of the material Silicon with a length of 0.81 micrometers and it is doped with Boron at a concentration of 153619815473319477248 cm^-3. The gate oxide thickness is 0.008 micrometers. The nanowire thickness is 0.008 micrometers.
(define tox 0.008) (define Lgs 0.42) (define Lgl 0.8) (define Ltotal (+ Lgs Lgl)) (define Ls 0.81) (define Ld 0.81) (define Rl 0.008) (define Rs 0.008) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Germanium" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 343024881341713743872 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 417963983234616918016 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 645986971247168454656 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 153619815473319477248 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,945
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Germanium with a length of 0.16 micrometers and it is doped with Phosphorus at a concentration of 976159661847986176000 cm^-3. The short gate region is of the material Diamond with a length of 0.94 micrometers and it is doped with Arsenic at a concentration of 731721218644543537152 cm^-3. The long gate region is of the material Silicon with a length of 0.95 micrometers and it is doped with Phosphorus at a concentration of 831721841016674320384 cm^-3. The drain region is of the material Silicon with a length of 0.16 micrometers and it is doped with Arsenic at a concentration of 887583282947386769408 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.002 micrometers.
(define tox 0.005) (define Lgs 0.94) (define Lgl 0.95) (define Ltotal (+ Lgs Lgl)) (define Ls 0.16) (define Ld 0.16) (define Rl 0.002) (define Rs 0.002) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Germanium" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 976159661847986176000 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 731721218644543537152 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 831721841016674320384 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Arsenic 887583282947386769408 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,946
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Silicon with a length of 0.38 micrometers and it is doped with Arsenic at a concentration of 686743313571490955264 cm^-3. The short gate region is of the material SiGe with a length of 0.67 micrometers and it is doped with Arsenic at a concentration of 835515374980184670208 cm^-3. The long gate region is of the material Germanium with a length of 0.34 micrometers and it is doped with Boron at a concentration of 382968526178782150656 cm^-3. The drain region is of the material Germanium with a length of 0.38 micrometers and it is doped with Arsenic at a concentration of 377742941220313759744 cm^-3. The gate oxide thickness is 0.004 micrometers. The nanowire thickness is 0.009 micrometers.
(define tox 0.004) (define Lgs 0.67) (define Lgl 0.34) (define Ltotal (+ Lgs Lgl)) (define Ls 0.38) (define Ld 0.38) (define Rl 0.009) (define Rs 0.009) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Germanium" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Arsenic 686743313571490955264 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 835515374980184670208 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 382968526178782150656 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Arsenic 377742941220313759744 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,947
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Germanium with a length of 0.18 micrometers and it is doped with Arsenic at a concentration of 575926688246840688640 cm^-3. The short gate region is of the material SiGe with a length of 0.84 micrometers and it is doped with Phosphorus at a concentration of 142630366382561935360 cm^-3. The long gate region is of the material Germanium with a length of 0.69 micrometers and it is doped with Arsenic at a concentration of 149363042500194992128 cm^-3. The drain region is of the material Diamond with a length of 0.18 micrometers and it is doped with Phosphorus at a concentration of 32963329001202872320 cm^-3. The gate oxide thickness is 0.008 micrometers. The nanowire thickness is 0.009 micrometers.
(define tox 0.008) (define Lgs 0.84) (define Lgl 0.69) (define Ltotal (+ Lgs Lgl)) (define Ls 0.18) (define Ld 0.18) (define Rl 0.009) (define Rs 0.009) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Germanium" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Arsenic 575926688246840688640 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 142630366382561935360 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 149363042500194992128 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 32963329001202872320 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,948
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Silicon with a length of 0.92 micrometers and it is doped with Phosphorus at a concentration of 341450275717396955136 cm^-3. The short gate region is of the material Diamond with a length of 0.49 micrometers and it is doped with Phosphorus at a concentration of 880672361083047641088 cm^-3. The long gate region is of the material Diamond with a length of 0.18 micrometers and it is doped with Boron at a concentration of 714392110645374353408 cm^-3. The drain region is of the material GaN with a length of 0.92 micrometers and it is doped with Phosphorus at a concentration of 207482748035666640896 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.004 micrometers.
(define tox 0.002) (define Lgs 0.49) (define Lgl 0.18) (define Ltotal (+ Lgs Lgl)) (define Ls 0.92) (define Ld 0.92) (define Rl 0.004) (define Rs 0.004) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "GaN" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 341450275717396955136 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 880672361083047641088 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 714392110645374353408 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 207482748035666640896 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,949
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Silicon with a length of 0.31 micrometers and it is doped with Boron at a concentration of 983038555535940517888 cm^-3. The short gate region is of the material SiGe with a length of 0.7 micrometers and it is doped with Arsenic at a concentration of 563737759125344616448 cm^-3. The long gate region is of the material Diamond with a length of 0.75 micrometers and it is doped with Phosphorus at a concentration of 912444923037841489920 cm^-3. The drain region is of the material Diamond with a length of 0.31 micrometers and it is doped with Arsenic at a concentration of 406538875680207142912 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.002 micrometers.
(define tox 0.002) (define Lgs 0.7) (define Lgl 0.75) (define Ltotal (+ Lgs Lgl)) (define Ls 0.31) (define Ld 0.31) (define Rl 0.002) (define Rs 0.002) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 983038555535940517888 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 563737759125344616448 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 912444923037841489920 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Arsenic 406538875680207142912 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,950
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Diamond with a length of 0.23 micrometers and it is doped with Boron at a concentration of 428019864865831911424 cm^-3. The short gate region is of the material SiGe with a length of 0.69 micrometers and it is doped with Boron at a concentration of 188417766506375512064 cm^-3. The long gate region is of the material Germanium with a length of 0.68 micrometers and it is doped with Arsenic at a concentration of 800776343959252107264 cm^-3. The drain region is of the material SiGe with a length of 0.23 micrometers and it is doped with Boron at a concentration of 13344521993603053568 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.006 micrometers.
(define tox 0.005) (define Lgs 0.69) (define Lgl 0.68) (define Ltotal (+ Lgs Lgl)) (define Ls 0.23) (define Ld 0.23) (define Rl 0.006) (define Rs 0.006) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 428019864865831911424 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 188417766506375512064 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 800776343959252107264 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 13344521993603053568 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,951
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material SiGe with a length of 0.73 micrometers and it is doped with Phosphorus at a concentration of 142138904535386439680 cm^-3. The short gate region is of the material Silicon with a length of 0.91 micrometers and it is doped with Arsenic at a concentration of 832344748492705497088 cm^-3. The long gate region is of the material SiGe with a length of 0.13 micrometers and it is doped with Phosphorus at a concentration of 891447291410426494976 cm^-3. The drain region is of the material SiGe with a length of 0.73 micrometers and it is doped with Phosphorus at a concentration of 178600124811670323200 cm^-3. The gate oxide thickness is 0.006 micrometers. The nanowire thickness is 0.008 micrometers.
(define tox 0.006) (define Lgs 0.91) (define Lgl 0.13) (define Ltotal (+ Lgs Lgl)) (define Ls 0.73) (define Ld 0.73) (define Rl 0.008) (define Rs 0.008) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "SiGe" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 142138904535386439680 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 832344748492705497088 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 891447291410426494976 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 178600124811670323200 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,952
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Germanium with a length of 0.22 micrometers and it is doped with Arsenic at a concentration of 780747005529413386240 cm^-3. The short gate region is of the material Diamond with a length of 0.56 micrometers and it is doped with Arsenic at a concentration of 323553787315607437312 cm^-3. The long gate region is of the material SiGe with a length of 0.27 micrometers and it is doped with Phosphorus at a concentration of 159431391868056436736 cm^-3. The drain region is of the material Diamond with a length of 0.22 micrometers and it is doped with Arsenic at a concentration of 485228175131893825536 cm^-3. The gate oxide thickness is 0.007 micrometers. The nanowire thickness is 0.006 micrometers.
(define tox 0.007) (define Lgs 0.56) (define Lgl 0.27) (define Ltotal (+ Lgs Lgl)) (define Ls 0.22) (define Ld 0.22) (define Rl 0.006) (define Rs 0.006) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Germanium" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "SiGe" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Arsenic 780747005529413386240 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 323553787315607437312 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 159431391868056436736 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Arsenic 485228175131893825536 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,953
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Germanium with a length of 0.91 micrometers and it is doped with Phosphorus at a concentration of 669002858491141685248 cm^-3. The short gate region is of the material Silicon with a length of 0.69 micrometers and it is doped with Arsenic at a concentration of 336185146681003343872 cm^-3. The long gate region is of the material SiGe with a length of 0.1 micrometers and it is doped with Arsenic at a concentration of 614940536458460921856 cm^-3. The drain region is of the material SiGe with a length of 0.91 micrometers and it is doped with Boron at a concentration of 570762251503034564608 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.004 micrometers.
(define tox 0.003) (define Lgs 0.69) (define Lgl 0.1) (define Ltotal (+ Lgs Lgl)) (define Ls 0.91) (define Ld 0.91) (define Rl 0.004) (define Rs 0.004) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Germanium" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "SiGe" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 669002858491141685248 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 336185146681003343872 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 614940536458460921856 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 570762251503034564608 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,954
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.96 micrometers and it is doped with Phosphorus at a concentration of 748206436351903924224 cm^-3. The short gate region is of the material Germanium with a length of 0.49 micrometers and it is doped with Phosphorus at a concentration of 530526877606610337792 cm^-3. The long gate region is of the material Diamond with a length of 0.52 micrometers and it is doped with Phosphorus at a concentration of 661624594044151267328 cm^-3. The drain region is of the material Silicon with a length of 0.96 micrometers and it is doped with Phosphorus at a concentration of 316594619849619668992 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.008 micrometers.
(define tox 0.003) (define Lgs 0.49) (define Lgl 0.52) (define Ltotal (+ Lgs Lgl)) (define Ls 0.96) (define Ld 0.96) (define Rl 0.008) (define Rs 0.008) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Germanium" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 748206436351903924224 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 530526877606610337792 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 661624594044151267328 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 316594619849619668992 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,955
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Silicon with a length of 0.53 micrometers and it is doped with Phosphorus at a concentration of 375017201346673508352 cm^-3. The short gate region is of the material Diamond with a length of 0.02 micrometers and it is doped with Phosphorus at a concentration of 218261263425197113344 cm^-3. The long gate region is of the material Germanium with a length of 0.19 micrometers and it is doped with Boron at a concentration of 348189696196162617344 cm^-3. The drain region is of the material Silicon with a length of 0.53 micrometers and it is doped with Phosphorus at a concentration of 4586147638915299840 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.004 micrometers.
(define tox 0.002) (define Lgs 0.02) (define Lgl 0.19) (define Ltotal (+ Lgs Lgl)) (define Ls 0.53) (define Ld 0.53) (define Rl 0.004) (define Rs 0.004) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 375017201346673508352 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 218261263425197113344 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 348189696196162617344 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 4586147638915299840 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,956
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Diamond with a length of 0.72 micrometers and it is doped with Boron at a concentration of 710031964630601302016 cm^-3. The short gate region is of the material Germanium with a length of 0.09 micrometers and it is doped with Boron at a concentration of 732506929258701258752 cm^-3. The long gate region is of the material Germanium with a length of 0.85 micrometers and it is doped with Boron at a concentration of 388016042586348191744 cm^-3. The drain region is of the material SiGe with a length of 0.72 micrometers and it is doped with Boron at a concentration of 156147896211164233728 cm^-3. The gate oxide thickness is 0.004 micrometers. The nanowire thickness is 0.003 micrometers.
(define tox 0.004) (define Lgs 0.09) (define Lgl 0.85) (define Ltotal (+ Lgs Lgl)) (define Ls 0.72) (define Ld 0.72) (define Rl 0.003) (define Rs 0.003) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Germanium" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 710031964630601302016 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 732506929258701258752 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 388016042586348191744 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 156147896211164233728 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,957
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Diamond with a length of 0.45 micrometers and it is doped with Phosphorus at a concentration of 899536687260641787904 cm^-3. The short gate region is of the material SiGe with a length of 0.12 micrometers and it is doped with Arsenic at a concentration of 553411707818485481472 cm^-3. The long gate region is of the material Silicon with a length of 0.29 micrometers and it is doped with Phosphorus at a concentration of 275106424398587265024 cm^-3. The drain region is of the material SiGe with a length of 0.45 micrometers and it is doped with Boron at a concentration of 937507193658566115328 cm^-3. The gate oxide thickness is 0.009 micrometers. The nanowire thickness is 0.003 micrometers.
(define tox 0.009) (define Lgs 0.12) (define Lgl 0.29) (define Ltotal (+ Lgs Lgl)) (define Ls 0.45) (define Ld 0.45) (define Rl 0.003) (define Rs 0.003) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 899536687260641787904 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 553411707818485481472 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 275106424398587265024 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 937507193658566115328 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,958
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Germanium with a length of 0.77 micrometers and it is doped with Phosphorus at a concentration of 446404139189488058368 cm^-3. The short gate region is of the material SiGe with a length of 0.52 micrometers and it is doped with Phosphorus at a concentration of 253777211582434181120 cm^-3. The long gate region is of the material Silicon with a length of 0.95 micrometers and it is doped with Phosphorus at a concentration of 879523487895839178752 cm^-3. The drain region is of the material Diamond with a length of 0.77 micrometers and it is doped with Phosphorus at a concentration of 696042218161157046272 cm^-3. The gate oxide thickness is 0.008 micrometers. The nanowire thickness is 0.009 micrometers.
(define tox 0.008) (define Lgs 0.52) (define Lgl 0.95) (define Ltotal (+ Lgs Lgl)) (define Ls 0.77) (define Ld 0.77) (define Rl 0.009) (define Rs 0.009) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Germanium" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 446404139189488058368 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 253777211582434181120 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 879523487895839178752 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 696042218161157046272 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,959
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Silicon with a length of 0.84 micrometers and it is doped with Boron at a concentration of 26364203287667453952 cm^-3. The short gate region is of the material Diamond with a length of 0.4 micrometers and it is doped with Arsenic at a concentration of 886155490020087037952 cm^-3. The long gate region is of the material GaN with a length of 0.2 micrometers and it is doped with Phosphorus at a concentration of 346324269288741666816 cm^-3. The drain region is of the material GaN with a length of 0.84 micrometers and it is doped with Boron at a concentration of 63710067048323678208 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.003 micrometers.
(define tox 0.003) (define Lgs 0.4) (define Lgl 0.2) (define Ltotal (+ Lgs Lgl)) (define Ls 0.84) (define Ld 0.84) (define Rl 0.003) (define Rs 0.003) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "GaN" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "GaN" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 26364203287667453952 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 886155490020087037952 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 346324269288741666816 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 63710067048323678208 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,960
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Germanium with a length of 0.24 micrometers and it is doped with Phosphorus at a concentration of 795257133370366885888 cm^-3. The short gate region is of the material Silicon with a length of 0.19 micrometers and it is doped with Phosphorus at a concentration of 502222390273872232448 cm^-3. The long gate region is of the material Diamond with a length of 0.26 micrometers and it is doped with Arsenic at a concentration of 546433959973359583232 cm^-3. The drain region is of the material SiGe with a length of 0.24 micrometers and it is doped with Phosphorus at a concentration of 585185376102408781824 cm^-3. The gate oxide thickness is 0.007 micrometers. The nanowire thickness is 0.002 micrometers.
(define tox 0.007) (define Lgs 0.19) (define Lgl 0.26) (define Ltotal (+ Lgs Lgl)) (define Ls 0.24) (define Ld 0.24) (define Rl 0.002) (define Rs 0.002) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Germanium" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 795257133370366885888 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 502222390273872232448 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 546433959973359583232 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 585185376102408781824 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,961
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Diamond with a length of 0.34 micrometers and it is doped with Boron at a concentration of 487022304892594946048 cm^-3. The short gate region is of the material GaN with a length of 0.09 micrometers and it is doped with Arsenic at a concentration of 206429762516400930816 cm^-3. The long gate region is of the material Germanium with a length of 0.61 micrometers and it is doped with Boron at a concentration of 903385212256096354304 cm^-3. The drain region is of the material SiGe with a length of 0.34 micrometers and it is doped with Phosphorus at a concentration of 859241896140009635840 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.005 micrometers.
(define tox 0.002) (define Lgs 0.09) (define Lgl 0.61) (define Ltotal (+ Lgs Lgl)) (define Ls 0.34) (define Ld 0.34) (define Rl 0.005) (define Rs 0.005) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 487022304892594946048 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 206429762516400930816 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 903385212256096354304 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 859241896140009635840 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,962
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Diamond with a length of 0.04 micrometers and it is doped with Phosphorus at a concentration of 161992061442260500480 cm^-3. The short gate region is of the material GaN with a length of 0.9 micrometers and it is doped with Phosphorus at a concentration of 914785035562854645760 cm^-3. The long gate region is of the material Silicon with a length of 0.99 micrometers and it is doped with Boron at a concentration of 948970104186464239616 cm^-3. The drain region is of the material GaN with a length of 0.04 micrometers and it is doped with Phosphorus at a concentration of 259321523516741648384 cm^-3. The gate oxide thickness is 0.004 micrometers. The nanowire thickness is 0.007 micrometers.
(define tox 0.004) (define Lgs 0.9) (define Lgl 0.99) (define Ltotal (+ Lgs Lgl)) (define Ls 0.04) (define Ld 0.04) (define Rl 0.007) (define Rs 0.007) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "GaN" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 161992061442260500480 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 914785035562854645760 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 948970104186464239616 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 259321523516741648384 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,963
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material SiGe with a length of 0.33 micrometers and it is doped with Arsenic at a concentration of 620955870042327744512 cm^-3. The short gate region is of the material Germanium with a length of 0.16 micrometers and it is doped with Boron at a concentration of 939245739259326758912 cm^-3. The long gate region is of the material Germanium with a length of 0.86 micrometers and it is doped with Arsenic at a concentration of 182312777000781938688 cm^-3. The drain region is of the material SiGe with a length of 0.33 micrometers and it is doped with Boron at a concentration of 372667172760012718080 cm^-3. The gate oxide thickness is 0.009 micrometers. The nanowire thickness is 0.005 micrometers.
(define tox 0.009) (define Lgs 0.16) (define Lgl 0.86) (define Ltotal (+ Lgs Lgl)) (define Ls 0.33) (define Ld 0.33) (define Rl 0.005) (define Rs 0.005) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Germanium" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Arsenic 620955870042327744512 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 939245739259326758912 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 182312777000781938688 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 372667172760012718080 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,964
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Diamond with a length of 0.11 micrometers and it is doped with Boron at a concentration of 774023651059121913856 cm^-3. The short gate region is of the material Germanium with a length of 0.84 micrometers and it is doped with Phosphorus at a concentration of 845366712180870086656 cm^-3. The long gate region is of the material SiGe with a length of 0.19 micrometers and it is doped with Boron at a concentration of 252627143972650909696 cm^-3. The drain region is of the material Silicon with a length of 0.11 micrometers and it is doped with Arsenic at a concentration of 998221479609878315008 cm^-3. The gate oxide thickness is 0.006 micrometers. The nanowire thickness is 0.003 micrometers.
(define tox 0.006) (define Lgs 0.84) (define Lgl 0.19) (define Ltotal (+ Lgs Lgl)) (define Ls 0.11) (define Ld 0.11) (define Rl 0.003) (define Rs 0.003) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Germanium" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "SiGe" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 774023651059121913856 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 845366712180870086656 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 252627143972650909696 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Arsenic 998221479609878315008 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,965
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Silicon with a length of 0.49 micrometers and it is doped with Arsenic at a concentration of 42290983083377836032 cm^-3. The short gate region is of the material SiGe with a length of 0.68 micrometers and it is doped with Boron at a concentration of 865311846710164062208 cm^-3. The long gate region is of the material GaN with a length of 0.13 micrometers and it is doped with Arsenic at a concentration of 19957027218459987968 cm^-3. The drain region is of the material Germanium with a length of 0.49 micrometers and it is doped with Arsenic at a concentration of 743762757749816688640 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.007 micrometers.
(define tox 0.002) (define Lgs 0.68) (define Lgl 0.13) (define Ltotal (+ Lgs Lgl)) (define Ls 0.49) (define Ld 0.49) (define Rl 0.007) (define Rs 0.007) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "GaN" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Germanium" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Arsenic 42290983083377836032 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 865311846710164062208 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 19957027218459987968 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Arsenic 743762757749816688640 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,966
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Diamond with a length of 0.32 micrometers and it is doped with Phosphorus at a concentration of 147516251152815292416 cm^-3. The short gate region is of the material Silicon with a length of 0.81 micrometers and it is doped with Boron at a concentration of 949486018149236342784 cm^-3. The long gate region is of the material GaN with a length of 0.33 micrometers and it is doped with Boron at a concentration of 375166675703657660416 cm^-3. The drain region is of the material Diamond with a length of 0.32 micrometers and it is doped with Arsenic at a concentration of 357207405107043631104 cm^-3. The gate oxide thickness is 0.01 micrometers. The nanowire thickness is 0.004 micrometers.
(define tox 0.01) (define Lgs 0.81) (define Lgl 0.33) (define Ltotal (+ Lgs Lgl)) (define Ls 0.32) (define Ld 0.32) (define Rl 0.004) (define Rs 0.004) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "GaN" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 147516251152815292416 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 949486018149236342784 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 375166675703657660416 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Arsenic 357207405107043631104 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,967
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Silicon with a length of 0.87 micrometers and it is doped with Boron at a concentration of 691113001859389849600 cm^-3. The short gate region is of the material GaN with a length of 0.24 micrometers and it is doped with Phosphorus at a concentration of 81557061748632600576 cm^-3. The long gate region is of the material Diamond with a length of 0.58 micrometers and it is doped with Arsenic at a concentration of 937691228311360503808 cm^-3. The drain region is of the material Diamond with a length of 0.87 micrometers and it is doped with Phosphorus at a concentration of 858404566816510312448 cm^-3. The gate oxide thickness is 0.01 micrometers. The nanowire thickness is 0.009 micrometers.
(define tox 0.01) (define Lgs 0.24) (define Lgl 0.58) (define Ltotal (+ Lgs Lgl)) (define Ls 0.87) (define Ld 0.87) (define Rl 0.009) (define Rs 0.009) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 691113001859389849600 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 81557061748632600576 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 937691228311360503808 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 858404566816510312448 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,968
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material SiGe with a length of 0.96 micrometers and it is doped with Boron at a concentration of 512201722719759499264 cm^-3. The short gate region is of the material SiGe with a length of 0.42 micrometers and it is doped with Boron at a concentration of 343231989419065868288 cm^-3. The long gate region is of the material Silicon with a length of 0.67 micrometers and it is doped with Arsenic at a concentration of 753551520192219578368 cm^-3. The drain region is of the material Diamond with a length of 0.96 micrometers and it is doped with Boron at a concentration of 487006105587649347584 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.004 micrometers.
(define tox 0.005) (define Lgs 0.42) (define Lgl 0.67) (define Ltotal (+ Lgs Lgl)) (define Ls 0.96) (define Ld 0.96) (define Rl 0.004) (define Rs 0.004) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 512201722719759499264 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 343231989419065868288 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 753551520192219578368 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 487006105587649347584 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,969
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Germanium with a length of 0.25 micrometers and it is doped with Phosphorus at a concentration of 815248070880292765696 cm^-3. The short gate region is of the material GaN with a length of 0.25 micrometers and it is doped with Phosphorus at a concentration of 265208772676964384768 cm^-3. The long gate region is of the material SiGe with a length of 0.76 micrometers and it is doped with Boron at a concentration of 400324412276350648320 cm^-3. The drain region is of the material Diamond with a length of 0.25 micrometers and it is doped with Phosphorus at a concentration of 541404595325723213824 cm^-3. The gate oxide thickness is 0.006 micrometers. The nanowire thickness is 0.002 micrometers.
(define tox 0.006) (define Lgs 0.25) (define Lgl 0.76) (define Ltotal (+ Lgs Lgl)) (define Ls 0.25) (define Ld 0.25) (define Rl 0.002) (define Rs 0.002) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Germanium" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "SiGe" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 815248070880292765696 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 265208772676964384768 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 400324412276350648320 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 541404595325723213824 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,970
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.43 micrometers and it is doped with Boron at a concentration of 553123035195293827072 cm^-3. The short gate region is of the material Diamond with a length of 0.69 micrometers and it is doped with Boron at a concentration of 450601531312027074560 cm^-3. The long gate region is of the material Silicon with a length of 0.44 micrometers and it is doped with Arsenic at a concentration of 987677244858141507584 cm^-3. The drain region is of the material Silicon with a length of 0.43 micrometers and it is doped with Phosphorus at a concentration of 766914771483329036288 cm^-3. The gate oxide thickness is 0.008 micrometers. The nanowire thickness is 0.008 micrometers.
(define tox 0.008) (define Lgs 0.69) (define Lgl 0.44) (define Ltotal (+ Lgs Lgl)) (define Ls 0.43) (define Ld 0.43) (define Rl 0.008) (define Rs 0.008) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 553123035195293827072 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 450601531312027074560 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 987677244858141507584 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 766914771483329036288 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,971
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Diamond with a length of 0.37 micrometers and it is doped with Phosphorus at a concentration of 503550191415189438464 cm^-3. The short gate region is of the material Germanium with a length of 0.28 micrometers and it is doped with Boron at a concentration of 653315728887993204736 cm^-3. The long gate region is of the material Silicon with a length of 0.83 micrometers and it is doped with Phosphorus at a concentration of 258754232929052360704 cm^-3. The drain region is of the material SiGe with a length of 0.37 micrometers and it is doped with Phosphorus at a concentration of 910790775038956142592 cm^-3. The gate oxide thickness is 0.009 micrometers. The nanowire thickness is 0.002 micrometers.
(define tox 0.009) (define Lgs 0.28) (define Lgl 0.83) (define Ltotal (+ Lgs Lgl)) (define Ls 0.37) (define Ld 0.37) (define Rl 0.002) (define Rs 0.002) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Germanium" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 503550191415189438464 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 653315728887993204736 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 258754232929052360704 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 910790775038956142592 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,972
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Silicon with a length of 0.25 micrometers and it is doped with Boron at a concentration of 484228597165694255104 cm^-3. The short gate region is of the material SiGe with a length of 0.03 micrometers and it is doped with Phosphorus at a concentration of 857241697457339760640 cm^-3. The long gate region is of the material Diamond with a length of 0.07 micrometers and it is doped with Arsenic at a concentration of 795681481870818017280 cm^-3. The drain region is of the material SiGe with a length of 0.25 micrometers and it is doped with Boron at a concentration of 241565577166354022400 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.009 micrometers.
(define tox 0.002) (define Lgs 0.03) (define Lgl 0.07) (define Ltotal (+ Lgs Lgl)) (define Ls 0.25) (define Ld 0.25) (define Rl 0.009) (define Rs 0.009) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 484228597165694255104 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 857241697457339760640 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 795681481870818017280 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 241565577166354022400 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,973
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Germanium with a length of 0.6 micrometers and it is doped with Arsenic at a concentration of 178478704401738432512 cm^-3. The short gate region is of the material Silicon with a length of 0.93 micrometers and it is doped with Boron at a concentration of 531987772276267155456 cm^-3. The long gate region is of the material Silicon with a length of 0.03 micrometers and it is doped with Boron at a concentration of 261691754226040897536 cm^-3. The drain region is of the material Diamond with a length of 0.6 micrometers and it is doped with Phosphorus at a concentration of 807002787676531064832 cm^-3. The gate oxide thickness is 0.006 micrometers. The nanowire thickness is 0.005 micrometers.
(define tox 0.006) (define Lgs 0.93) (define Lgl 0.03) (define Ltotal (+ Lgs Lgl)) (define Ls 0.6) (define Ld 0.6) (define Rl 0.005) (define Rs 0.005) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Germanium" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Arsenic 178478704401738432512 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 531987772276267155456 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 261691754226040897536 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 807002787676531064832 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,974
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Germanium with a length of 0.78 micrometers and it is doped with Arsenic at a concentration of 796291607758801076224 cm^-3. The short gate region is of the material GaN with a length of 0.32 micrometers and it is doped with Arsenic at a concentration of 956623173675676729344 cm^-3. The long gate region is of the material Silicon with a length of 0.94 micrometers and it is doped with Phosphorus at a concentration of 885255597142243672064 cm^-3. The drain region is of the material Germanium with a length of 0.78 micrometers and it is doped with Boron at a concentration of 841413017391170715648 cm^-3. The gate oxide thickness is 0.009 micrometers. The nanowire thickness is 0.003 micrometers.
(define tox 0.009) (define Lgs 0.32) (define Lgl 0.94) (define Ltotal (+ Lgs Lgl)) (define Ls 0.78) (define Ld 0.78) (define Rl 0.003) (define Rs 0.003) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Germanium" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Germanium" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Arsenic 796291607758801076224 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 956623173675676729344 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 885255597142243672064 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 841413017391170715648 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,975
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material SiGe with a length of 0.29 micrometers and it is doped with Boron at a concentration of 39530329841262190592 cm^-3. The short gate region is of the material SiGe with a length of 0.49 micrometers and it is doped with Arsenic at a concentration of 18345286722321033216 cm^-3. The long gate region is of the material Silicon with a length of 0.35 micrometers and it is doped with Boron at a concentration of 811016646059919015936 cm^-3. The drain region is of the material Diamond with a length of 0.29 micrometers and it is doped with Boron at a concentration of 945137508701736927232 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.004 micrometers.
(define tox 0.003) (define Lgs 0.49) (define Lgl 0.35) (define Ltotal (+ Lgs Lgl)) (define Ls 0.29) (define Ld 0.29) (define Rl 0.004) (define Rs 0.004) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 39530329841262190592 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 18345286722321033216 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 811016646059919015936 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 945137508701736927232 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,976
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.12 micrometers and it is doped with Arsenic at a concentration of 912487117393764810752 cm^-3. The short gate region is of the material SiGe with a length of 0.45 micrometers and it is doped with Arsenic at a concentration of 513767042228799668224 cm^-3. The long gate region is of the material Germanium with a length of 0.98 micrometers and it is doped with Phosphorus at a concentration of 125425162121470427136 cm^-3. The drain region is of the material Germanium with a length of 0.12 micrometers and it is doped with Boron at a concentration of 880284934328936169472 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.005 micrometers.
(define tox 0.005) (define Lgs 0.45) (define Lgl 0.98) (define Ltotal (+ Lgs Lgl)) (define Ls 0.12) (define Ld 0.12) (define Rl 0.005) (define Rs 0.005) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Germanium" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Arsenic 912487117393764810752 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 513767042228799668224 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 125425162121470427136 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 880284934328936169472 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,977
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.48 micrometers and it is doped with Phosphorus at a concentration of 39541181338249216000 cm^-3. The short gate region is of the material Germanium with a length of 0.88 micrometers and it is doped with Arsenic at a concentration of 193133129980919578624 cm^-3. The long gate region is of the material GaN with a length of 0.24 micrometers and it is doped with Arsenic at a concentration of 25141473921509376000 cm^-3. The drain region is of the material Silicon with a length of 0.48 micrometers and it is doped with Boron at a concentration of 171045248081237704704 cm^-3. The gate oxide thickness is 0.009 micrometers. The nanowire thickness is 0.01 micrometers.
(define tox 0.009) (define Lgs 0.88) (define Lgl 0.24) (define Ltotal (+ Lgs Lgl)) (define Ls 0.48) (define Ld 0.48) (define Rl 0.01) (define Rs 0.01) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Germanium" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "GaN" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 39541181338249216000 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 193133129980919578624 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 25141473921509376000 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 171045248081237704704 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,978
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material SiGe with a length of 0.02 micrometers and it is doped with Arsenic at a concentration of 11668416366849859584 cm^-3. The short gate region is of the material SiGe with a length of 0.44 micrometers and it is doped with Boron at a concentration of 654878301369454166016 cm^-3. The long gate region is of the material Diamond with a length of 0.24 micrometers and it is doped with Boron at a concentration of 443988436723580796928 cm^-3. The drain region is of the material Germanium with a length of 0.02 micrometers and it is doped with Arsenic at a concentration of 152132645612749586432 cm^-3. The gate oxide thickness is 0.006 micrometers. The nanowire thickness is 0.003 micrometers.
(define tox 0.006) (define Lgs 0.44) (define Lgl 0.24) (define Ltotal (+ Lgs Lgl)) (define Ls 0.02) (define Ld 0.02) (define Rl 0.003) (define Rs 0.003) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Germanium" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Arsenic 11668416366849859584 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 654878301369454166016 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 443988436723580796928 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Arsenic 152132645612749586432 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,979
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Silicon with a length of 0.45 micrometers and it is doped with Boron at a concentration of 553246625043268632576 cm^-3. The short gate region is of the material GaN with a length of 0.4 micrometers and it is doped with Arsenic at a concentration of 684730693544819163136 cm^-3. The long gate region is of the material Silicon with a length of 0.87 micrometers and it is doped with Arsenic at a concentration of 753439497633588183040 cm^-3. The drain region is of the material Diamond with a length of 0.45 micrometers and it is doped with Boron at a concentration of 392625956004713594880 cm^-3. The gate oxide thickness is 0.001 micrometers. The nanowire thickness is 0.002 micrometers.
(define tox 0.001) (define Lgs 0.4) (define Lgl 0.87) (define Ltotal (+ Lgs Lgl)) (define Ls 0.45) (define Ld 0.45) (define Rl 0.002) (define Rs 0.002) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 553246625043268632576 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 684730693544819163136 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 753439497633588183040 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 392625956004713594880 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,980
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.92 micrometers and it is doped with Arsenic at a concentration of 13298364217612312576 cm^-3. The short gate region is of the material Germanium with a length of 0.36 micrometers and it is doped with Boron at a concentration of 615694158005175844864 cm^-3. The long gate region is of the material Germanium with a length of 0.37 micrometers and it is doped with Arsenic at a concentration of 517526263536159031296 cm^-3. The drain region is of the material Germanium with a length of 0.92 micrometers and it is doped with Phosphorus at a concentration of 324778330925069238272 cm^-3. The gate oxide thickness is 0.001 micrometers. The nanowire thickness is 0.001 micrometers.
(define tox 0.001) (define Lgs 0.36) (define Lgl 0.37) (define Ltotal (+ Lgs Lgl)) (define Ls 0.92) (define Ld 0.92) (define Rl 0.001) (define Rs 0.001) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Germanium" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Germanium" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Arsenic 13298364217612312576 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 615694158005175844864 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 517526263536159031296 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 324778330925069238272 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,981
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material SiGe with a length of 0.76 micrometers and it is doped with Boron at a concentration of 364902208648661696512 cm^-3. The short gate region is of the material Diamond with a length of 0.93 micrometers and it is doped with Arsenic at a concentration of 184907126079638798336 cm^-3. The long gate region is of the material SiGe with a length of 0.8 micrometers and it is doped with Boron at a concentration of 883318665286551076864 cm^-3. The drain region is of the material Diamond with a length of 0.76 micrometers and it is doped with Boron at a concentration of 91592047582400282624 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.007 micrometers.
(define tox 0.003) (define Lgs 0.93) (define Lgl 0.8) (define Ltotal (+ Lgs Lgl)) (define Ls 0.76) (define Ld 0.76) (define Rl 0.007) (define Rs 0.007) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "SiGe" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 364902208648661696512 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 184907126079638798336 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 883318665286551076864 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 91592047582400282624 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,982
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material SiGe with a length of 0.09 micrometers and it is doped with Arsenic at a concentration of 810062099410053627904 cm^-3. The short gate region is of the material Silicon with a length of 0.84 micrometers and it is doped with Phosphorus at a concentration of 844371963343824355328 cm^-3. The long gate region is of the material Silicon with a length of 0.39 micrometers and it is doped with Phosphorus at a concentration of 479475745971826851840 cm^-3. The drain region is of the material Diamond with a length of 0.09 micrometers and it is doped with Boron at a concentration of 725816664346637762560 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.009 micrometers.
(define tox 0.003) (define Lgs 0.84) (define Lgl 0.39) (define Ltotal (+ Lgs Lgl)) (define Ls 0.09) (define Ld 0.09) (define Rl 0.009) (define Rs 0.009) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Arsenic 810062099410053627904 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 844371963343824355328 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 479475745971826851840 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 725816664346637762560 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,983
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Silicon with a length of 0.88 micrometers and it is doped with Boron at a concentration of 864168612764319350784 cm^-3. The short gate region is of the material SiGe with a length of 0.58 micrometers and it is doped with Arsenic at a concentration of 513889870341422972928 cm^-3. The long gate region is of the material Germanium with a length of 1.0 micrometers and it is doped with Phosphorus at a concentration of 583927734583719755776 cm^-3. The drain region is of the material GaN with a length of 0.88 micrometers and it is doped with Arsenic at a concentration of 624989600844055052288 cm^-3. The gate oxide thickness is 0.007 micrometers. The nanowire thickness is 0.003 micrometers.
(define tox 0.007) (define Lgs 0.58) (define Lgl 1.0) (define Ltotal (+ Lgs Lgl)) (define Ls 0.88) (define Ld 0.88) (define Rl 0.003) (define Rs 0.003) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "GaN" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 864168612764319350784 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 513889870341422972928 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 583927734583719755776 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Arsenic 624989600844055052288 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,984
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.09 micrometers and it is doped with Arsenic at a concentration of 383974960346095681536 cm^-3. The short gate region is of the material Diamond with a length of 0.86 micrometers and it is doped with Phosphorus at a concentration of 688522103971119890432 cm^-3. The long gate region is of the material GaN with a length of 0.89 micrometers and it is doped with Phosphorus at a concentration of 237586385064388067328 cm^-3. The drain region is of the material SiGe with a length of 0.09 micrometers and it is doped with Arsenic at a concentration of 107932489407597330432 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.004 micrometers.
(define tox 0.003) (define Lgs 0.86) (define Lgl 0.89) (define Ltotal (+ Lgs Lgl)) (define Ls 0.09) (define Ld 0.09) (define Rl 0.004) (define Rs 0.004) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "GaN" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Arsenic 383974960346095681536 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 688522103971119890432 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 237586385064388067328 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Arsenic 107932489407597330432 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,985
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material SiGe with a length of 0.38 micrometers and it is doped with Boron at a concentration of 997212005556093583360 cm^-3. The short gate region is of the material GaN with a length of 0.3 micrometers and it is doped with Phosphorus at a concentration of 689857948272094609408 cm^-3. The long gate region is of the material Diamond with a length of 0.5 micrometers and it is doped with Phosphorus at a concentration of 200888870111147360256 cm^-3. The drain region is of the material Silicon with a length of 0.38 micrometers and it is doped with Arsenic at a concentration of 473581445755102298112 cm^-3. The gate oxide thickness is 0.01 micrometers. The nanowire thickness is 0.003 micrometers.
(define tox 0.01) (define Lgs 0.3) (define Lgl 0.5) (define Ltotal (+ Lgs Lgl)) (define Ls 0.38) (define Ld 0.38) (define Rl 0.003) (define Rs 0.003) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 997212005556093583360 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 689857948272094609408 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 200888870111147360256 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Arsenic 473581445755102298112 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,986
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Silicon with a length of 0.47 micrometers and it is doped with Phosphorus at a concentration of 443200694418862768128 cm^-3. The short gate region is of the material GaN with a length of 0.75 micrometers and it is doped with Arsenic at a concentration of 29954173734266212352 cm^-3. The long gate region is of the material SiGe with a length of 0.19 micrometers and it is doped with Boron at a concentration of 555216722843563327488 cm^-3. The drain region is of the material Silicon with a length of 0.47 micrometers and it is doped with Boron at a concentration of 144891018139446853632 cm^-3. The gate oxide thickness is 0.008 micrometers. The nanowire thickness is 0.008 micrometers.
(define tox 0.008) (define Lgs 0.75) (define Lgl 0.19) (define Ltotal (+ Lgs Lgl)) (define Ls 0.47) (define Ld 0.47) (define Rl 0.008) (define Rs 0.008) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "SiGe" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 443200694418862768128 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 29954173734266212352 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 555216722843563327488 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 144891018139446853632 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,987
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Germanium with a length of 0.08 micrometers and it is doped with Phosphorus at a concentration of 25489228576249217024 cm^-3. The short gate region is of the material Diamond with a length of 0.08 micrometers and it is doped with Boron at a concentration of 301674267787765219328 cm^-3. The long gate region is of the material Silicon with a length of 0.65 micrometers and it is doped with Phosphorus at a concentration of 408630993480464465920 cm^-3. The drain region is of the material Silicon with a length of 0.08 micrometers and it is doped with Phosphorus at a concentration of 876139892697438224384 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.002 micrometers.
(define tox 0.005) (define Lgs 0.08) (define Lgl 0.65) (define Ltotal (+ Lgs Lgl)) (define Ls 0.08) (define Ld 0.08) (define Rl 0.002) (define Rs 0.002) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Germanium" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 25489228576249217024 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 301674267787765219328 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 408630993480464465920 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 876139892697438224384 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,988
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material SiGe with a length of 0.01 micrometers and it is doped with Phosphorus at a concentration of 150642912844493258752 cm^-3. The short gate region is of the material Germanium with a length of 0.36 micrometers and it is doped with Arsenic at a concentration of 161632577613649969152 cm^-3. The long gate region is of the material Germanium with a length of 0.66 micrometers and it is doped with Phosphorus at a concentration of 531294551298481061888 cm^-3. The drain region is of the material Germanium with a length of 0.01 micrometers and it is doped with Phosphorus at a concentration of 364560690095528476672 cm^-3. The gate oxide thickness is 0.009 micrometers. The nanowire thickness is 0.008 micrometers.
(define tox 0.009) (define Lgs 0.36) (define Lgl 0.66) (define Ltotal (+ Lgs Lgl)) (define Ls 0.01) (define Ld 0.01) (define Rl 0.008) (define Rs 0.008) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Germanium" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Germanium" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 150642912844493258752 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 161632577613649969152 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 531294551298481061888 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 364560690095528476672 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,989
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Germanium with a length of 0.96 micrometers and it is doped with Phosphorus at a concentration of 892651204971606048768 cm^-3. The short gate region is of the material Germanium with a length of 0.42 micrometers and it is doped with Arsenic at a concentration of 537593332139556470784 cm^-3. The long gate region is of the material GaN with a length of 0.81 micrometers and it is doped with Arsenic at a concentration of 302467114605859045376 cm^-3. The drain region is of the material Germanium with a length of 0.96 micrometers and it is doped with Arsenic at a concentration of 785245279650242756608 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.007 micrometers.
(define tox 0.002) (define Lgs 0.42) (define Lgl 0.81) (define Ltotal (+ Lgs Lgl)) (define Ls 0.96) (define Ld 0.96) (define Rl 0.007) (define Rs 0.007) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Germanium" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Germanium" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "GaN" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Germanium" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 892651204971606048768 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 537593332139556470784 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 302467114605859045376 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Arsenic 785245279650242756608 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,990
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Silicon with a length of 0.02 micrometers and it is doped with Arsenic at a concentration of 602389138440852471808 cm^-3. The short gate region is of the material Germanium with a length of 0.72 micrometers and it is doped with Boron at a concentration of 139841689064500985856 cm^-3. The long gate region is of the material Silicon with a length of 0.82 micrometers and it is doped with Boron at a concentration of 544149414312944205824 cm^-3. The drain region is of the material SiGe with a length of 0.02 micrometers and it is doped with Phosphorus at a concentration of 45489898719626321920 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.003 micrometers.
(define tox 0.002) (define Lgs 0.72) (define Lgl 0.82) (define Ltotal (+ Lgs Lgl)) (define Ls 0.02) (define Ld 0.02) (define Rl 0.003) (define Rs 0.003) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Germanium" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Arsenic 602389138440852471808 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 139841689064500985856 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 544149414312944205824 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 45489898719626321920 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,991
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.26 micrometers and it is doped with Boron at a concentration of 868103488471780818944 cm^-3. The short gate region is of the material Germanium with a length of 0.55 micrometers and it is doped with Arsenic at a concentration of 573796036056123441152 cm^-3. The long gate region is of the material Silicon with a length of 0.1 micrometers and it is doped with Boron at a concentration of 57939354416911802368 cm^-3. The drain region is of the material Diamond with a length of 0.26 micrometers and it is doped with Phosphorus at a concentration of 957196712625626415104 cm^-3. The gate oxide thickness is 0.004 micrometers. The nanowire thickness is 0.008 micrometers.
(define tox 0.004) (define Lgs 0.55) (define Lgl 0.1) (define Ltotal (+ Lgs Lgl)) (define Ls 0.26) (define Ld 0.26) (define Rl 0.008) (define Rs 0.008) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Germanium" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 868103488471780818944 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 573796036056123441152 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 57939354416911802368 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 957196712625626415104 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,992
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material SiGe with a length of 0.74 micrometers and it is doped with Boron at a concentration of 753340155209525493760 cm^-3. The short gate region is of the material Silicon with a length of 0.5 micrometers and it is doped with Arsenic at a concentration of 664997151023309783040 cm^-3. The long gate region is of the material Diamond with a length of 0.79 micrometers and it is doped with Arsenic at a concentration of 165285019888288956416 cm^-3. The drain region is of the material GaN with a length of 0.74 micrometers and it is doped with Boron at a concentration of 425219406007543791616 cm^-3. The gate oxide thickness is 0.009 micrometers. The nanowire thickness is 0.006 micrometers.
(define tox 0.009) (define Lgs 0.5) (define Lgl 0.79) (define Ltotal (+ Lgs Lgl)) (define Ls 0.74) (define Ld 0.74) (define Rl 0.006) (define Rs 0.006) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "GaN" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 753340155209525493760 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 664997151023309783040 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 165285019888288956416 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 425219406007543791616 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,993
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material SiGe with a length of 0.55 micrometers and it is doped with Phosphorus at a concentration of 144254065302690152448 cm^-3. The short gate region is of the material SiGe with a length of 0.56 micrometers and it is doped with Arsenic at a concentration of 680493503795318358016 cm^-3. The long gate region is of the material SiGe with a length of 0.9 micrometers and it is doped with Arsenic at a concentration of 147674486986802167808 cm^-3. The drain region is of the material Silicon with a length of 0.55 micrometers and it is doped with Phosphorus at a concentration of 36531438063276433408 cm^-3. The gate oxide thickness is 0.006 micrometers. The nanowire thickness is 0.008 micrometers.
(define tox 0.006) (define Lgs 0.56) (define Lgl 0.9) (define Ltotal (+ Lgs Lgl)) (define Ls 0.55) (define Ld 0.55) (define Rl 0.008) (define Rs 0.008) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "SiGe" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 144254065302690152448 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 680493503795318358016 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 147674486986802167808 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 36531438063276433408 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,994
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Silicon with a length of 0.21 micrometers and it is doped with Phosphorus at a concentration of 221170144019414220800 cm^-3. The short gate region is of the material SiGe with a length of 0.83 micrometers and it is doped with Arsenic at a concentration of 926186884947120750592 cm^-3. The long gate region is of the material Diamond with a length of 0.79 micrometers and it is doped with Phosphorus at a concentration of 984741233793894842368 cm^-3. The drain region is of the material SiGe with a length of 0.21 micrometers and it is doped with Phosphorus at a concentration of 241218952993109770240 cm^-3. The gate oxide thickness is 0.008 micrometers. The nanowire thickness is 0.008 micrometers.
(define tox 0.008) (define Lgs 0.83) (define Lgl 0.79) (define Ltotal (+ Lgs Lgl)) (define Ls 0.21) (define Ld 0.21) (define Rl 0.008) (define Rs 0.008) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 221170144019414220800 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 926186884947120750592 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 984741233793894842368 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 241218952993109770240 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,995
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material SiGe with a length of 0.36 micrometers and it is doped with Boron at a concentration of 246336950292224802816 cm^-3. The short gate region is of the material Silicon with a length of 0.92 micrometers and it is doped with Arsenic at a concentration of 927089758474113777664 cm^-3. The long gate region is of the material GaN with a length of 0.36 micrometers and it is doped with Phosphorus at a concentration of 259837863046342410240 cm^-3. The drain region is of the material GaN with a length of 0.36 micrometers and it is doped with Boron at a concentration of 717000231669349875712 cm^-3. The gate oxide thickness is 0.01 micrometers. The nanowire thickness is 0.006 micrometers.
(define tox 0.01) (define Lgs 0.92) (define Lgl 0.36) (define Ltotal (+ Lgs Lgl)) (define Ls 0.36) (define Ld 0.36) (define Rl 0.006) (define Rs 0.006) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "GaN" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "GaN" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 246336950292224802816 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 927089758474113777664 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Phosphorus 259837863046342410240 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 717000231669349875712 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Phosphorus 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,996
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Silicon with a length of 0.98 micrometers and it is doped with Phosphorus at a concentration of 279533563191063511040 cm^-3. The short gate region is of the material SiGe with a length of 0.33 micrometers and it is doped with Phosphorus at a concentration of 35334663252826435584 cm^-3. The long gate region is of the material GaN with a length of 0.37 micrometers and it is doped with Boron at a concentration of 339232245360464363520 cm^-3. The drain region is of the material Silicon with a length of 0.98 micrometers and it is doped with Boron at a concentration of 973656237130972528640 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.008 micrometers.
(define tox 0.002) (define Lgs 0.33) (define Lgl 0.37) (define Ltotal (+ Lgs Lgl)) (define Ls 0.98) (define Ld 0.98) (define Rl 0.008) (define Rs 0.008) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "GaN" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 279533563191063511040 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 35334663252826435584 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 339232245360464363520 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Boron 973656237130972528640 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,997
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Germanium with a length of 0.61 micrometers and it is doped with Boron at a concentration of 864463361892845486080 cm^-3. The short gate region is of the material Silicon with a length of 0.45 micrometers and it is doped with Boron at a concentration of 142093742963668877312 cm^-3. The long gate region is of the material Diamond with a length of 0.51 micrometers and it is doped with Boron at a concentration of 839340283726662467584 cm^-3. The drain region is of the material GaN with a length of 0.61 micrometers and it is doped with Phosphorus at a concentration of 173805291964440969216 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.004 micrometers.
(define tox 0.003) (define Lgs 0.45) (define Lgl 0.51) (define Ltotal (+ Lgs Lgl)) (define Ls 0.61) (define Ld 0.61) (define Rl 0.004) (define Rs 0.004) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Germanium" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "GaN" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 864463361892845486080 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Boron 142093742963668877312 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 839340283726662467584 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 173805291964440969216 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,998
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.76 micrometers and it is doped with Phosphorus at a concentration of 725610394577747312640 cm^-3. The short gate region is of the material Silicon with a length of 0.44 micrometers and it is doped with Arsenic at a concentration of 274220952706780495872 cm^-3. The long gate region is of the material Germanium with a length of 0.46 micrometers and it is doped with Arsenic at a concentration of 652725356182670147584 cm^-3. The drain region is of the material SiGe with a length of 0.76 micrometers and it is doped with Arsenic at a concentration of 499022307709504061440 cm^-3. The gate oxide thickness is 0.001 micrometers. The nanowire thickness is 0.001 micrometers.
(define tox 0.001) (define Lgs 0.44) (define Lgl 0.46) (define Ltotal (+ Lgs Lgl)) (define Ls 0.76) (define Ld 0.76) (define Rl 0.001) (define Rs 0.001) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Phosphorus 725610394577747312640 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Arsenic 274220952706780495872 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Arsenic 652725356182670147584 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Arsenic 499022307709504061440 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Arsenic 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")
1,999
This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material SiGe with a length of 0.77 micrometers and it is doped with Boron at a concentration of 138976309494188261376 cm^-3. The short gate region is of the material GaN with a length of 0.83 micrometers and it is doped with Phosphorus at a concentration of 794814127367003832320 cm^-3. The long gate region is of the material Diamond with a length of 0.76 micrometers and it is doped with Boron at a concentration of 816888396727724146688 cm^-3. The drain region is of the material SiGe with a length of 0.77 micrometers and it is doped with Phosphorus at a concentration of 286867241021293297664 cm^-3. The gate oxide thickness is 0.01 micrometers. The nanowire thickness is 0.007 micrometers.
(define tox 0.01) (define Lgs 0.83) (define Lgl 0.76) (define Ltotal (+ Lgs Lgl)) (define Ls 0.77) (define Ld 0.77) (define Rl 0.007) (define Rs 0.007) (define Xmin 0) (define Xmax (+ Ls Ltotal Ld)) (define tg 0.01) (define Ymin 0) (define Ymax Rl) (define XSource (+ Xmin Ls)) (define XGates (+ XSource Lgs)) (define XGatel (+ XGates Lgl)) (sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source") (sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate") (sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate") (sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain") ; Old replaces New (sdegeo:set-default-boolean "BAB") (sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide") (define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate")) ; Old replaces New (sdegeo:set-default-boolean "BAB") ;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy")) (sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "gate") (sdegeo:set-contact-boundary-edges gatedummy "gate") (sdegeo:delete-region gatedummy) (sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "source") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source") (sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##") (sdegeo:set-current-contact-set "drain") (sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain") ; Constant doping profile in a given material (define NAME "Body") ; - Common dopants: ; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration" ; | "BoronActiveConcentration" (define Boron "BoronActiveConcentration") (define Phosphorus "PhosphorusActiveConcentration") (define Arsenic "ArsenicActiveConcentration") ;------------------------------------------------------------------------------- ; Doping in Source (sdedr:define-constant-profile "Const.Source" Boron 138976309494188261376 ) (sdedr:define-constant-profile-region "Place.Source" "Const.Source" "R.Source" 0 "Replace" ) ; Doping in Short_Gate (sdedr:define-constant-profile "Const.Short_Gate" Phosphorus 794814127367003832320 ) (sdedr:define-constant-profile-region "Place.Short_Gate" "Const.Short_Gate" "R.Short_Gate" 0 "Replace" ) ; Doping in R.Long_Gate (sdedr:define-constant-profile "Const.Long_Gate" Boron 816888396727724146688 ) (sdedr:define-constant-profile-region "Place.Long_Gate" "Const.Long_Gate" "R.Long_Gate" 0 "Replace" ) ; Doping in Drain (sdedr:define-constant-profile "Const.Drain" Phosphorus 286867241021293297664 ) (sdedr:define-constant-profile-region "Place.Drain" "Const.Drain" "R.Drain" 0 "Replace" ) ; Doping in Gate (sdedr:define-constant-profile "Const.Gate" Boron 1e20 ) (sdedr:define-constant-profile-region "Place.Gate" "Const.Gate" "R.Gate" 0 "Replace" ) ;------------------------------------------------------------------------------- ;(sdedr:define-constant-profile (string-append "DC." NAME) ; "PhosphorusActiveConcentration" 1e20 ;) ;(sdedr:define-constant-profile-material (string-append "CPM." NAME) ; (string-append "DC." NAME) "Silicon" ;) ; Creating a box-shaped refinement specification (define RNAME "Overall") (sdedr:define-refinement-window (string-append "RW." RNAME) "Rectangle" (position Xmin Ymin 0) (position Xmax Ymax 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) (define RNAME2 "Gate") (sdedr:define-refinement-window (string-append "RW." RNAME2) "Rectangle" (position Xmin (+ Ymax tox) 0) (position Xmax (+ Ymax tox tg) 0) ) (sdedr:define-refinement-size (string-append "RS." RNAME2) (/ Ltotal 12) (/ Ymax 7) 0.0004 0.0004 ) ; (sdedr:define-refinement-function(string-append "RS." RNAME) ; "DopingConcentration" "MaxTransDiff" 1.0 ; ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "Silicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-function (string-append "RS." RNAME2) "MaxLenInt" "PolySilicon" "Oxide" 0.0004 1.1 ) (sdedr:define-refinement-placement (string-append "RP." RNAME) (string-append "RS." RNAME) (string-append "RW." RNAME) ) (sdedr:define-refinement-placement (string-append "RP." RNAME2) (string-append "RS." RNAME2) (string-append "RW." RNAME2) ) (sdesnmesh:tensor "Mesh { maxBndCellSize direction \"x\" 0.0000001 maxBndCellSize direction \"y\" 0.0000001 maxCellSize region \"Region_0\" 0.1 window \"testbox\" 0.8 1.2 0.8 1.2 0.8 1.2 minNumberOfCells window \"testbox\" 20 grading = { 1.1 1.1 1.1 } }") (sde:build-mesh "-gtdr -rect" "${path}n${tid}_msh")