stringlengths
1
4
instruction
stringlengths
945
985
output
stringlengths
5.12k
5.16k
0
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 75170678135986077696 cm^-3. The short gate region is of the material SiGe with a length of 0.05 micrometers and it is doped with Boron at a concentration of 542842947897018810368 cm^-3. The long gate region is of the material SiGe with a length of 0.77 micrometers and it is doped with Phosphorus at a concentration of 442977125098766204928 cm^-3. The drain region is of the material Silicon with a length of 0.42 micrometers and it is doped with Boron at a concentration of 732657003051917508608 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.005 micrometers.
(define tox 0.005) (define Lgs 0.05) (define Lgl 0.77) (define Ltotal (+ Lgs Lgl)) (define Ls 0.42) (define Ld 0.42) (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) "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 75170678135986077696 ) (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 542842947897018810368 ) (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 442977125098766204928 ) (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 732657003051917508608 ) (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
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.49 micrometers and it is doped with Arsenic at a concentration of 292476709547548835840 cm^-3. The short gate region is of the material Silicon with a length of 0.47 micrometers and it is doped with Arsenic at a concentration of 773900824813431947264 cm^-3. The long gate region is of the material Diamond with a length of 0.01 micrometers and it is doped with Boron at a concentration of 692947572761304498176 cm^-3. The drain region is of the material GaN with a length of 0.49 micrometers and it is doped with Arsenic at a concentration of 31336066369784037376 cm^-3. The gate oxide thickness is 0.006 micrometers. The nanowire thickness is 0.008 micrometers.
(define tox 0.006) (define Lgs 0.47) (define Lgl 0.01) (define Ltotal (+ Lgs Lgl)) (define Ls 0.49) (define Ld 0.49) (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) "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" Arsenic 292476709547548835840 ) (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 773900824813431947264 ) (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 692947572761304498176 ) (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 31336066369784037376 ) (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")
2
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.74 micrometers and it is doped with Phosphorus at a concentration of 862072975441737023488 cm^-3. The short gate region is of the material Germanium with a length of 0.99 micrometers and it is doped with Arsenic at a concentration of 890549558485575139328 cm^-3. The long gate region is of the material Diamond with a length of 0.31 micrometers and it is doped with Phosphorus at a concentration of 868224857995473584128 cm^-3. The drain region is of the material SiGe with a length of 0.74 micrometers and it is doped with Boron at a concentration of 538489939721261154304 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.002 micrometers.
(define tox 0.005) (define Lgs 0.99) (define Lgl 0.31) (define Ltotal (+ Lgs Lgl)) (define Ls 0.74) (define Ld 0.74) (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) "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) "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 862072975441737023488 ) (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 890549558485575139328 ) (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 868224857995473584128 ) (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 538489939721261154304 ) (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")
3
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.65 micrometers and it is doped with Phosphorus at a concentration of 672061776126611554304 cm^-3. The short gate region is of the material Germanium with a length of 0.96 micrometers and it is doped with Boron at a concentration of 644661567329714962432 cm^-3. The long gate region is of the material GaN with a length of 0.52 micrometers and it is doped with Boron at a concentration of 969353674186707173376 cm^-3. The drain region is of the material Germanium with a length of 0.65 micrometers and it is doped with Boron at a concentration of 687351321074980880384 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.004 micrometers.
(define tox 0.005) (define Lgs 0.96) (define Lgl 0.52) (define Ltotal (+ Lgs Lgl)) (define Ls 0.65) (define Ld 0.65) (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) "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 672061776126611554304 ) (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 644661567329714962432 ) (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 969353674186707173376 ) (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 687351321074980880384 ) (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")
4
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.92 micrometers and it is doped with Boron at a concentration of 772567487735549526016 cm^-3. The short gate region is of the material GaN with a length of 0.51 micrometers and it is doped with Boron at a concentration of 616399047603814924288 cm^-3. The long gate region is of the material SiGe with a length of 0.13 micrometers and it is doped with Arsenic at a concentration of 87963998519260266496 cm^-3. The drain region is of the material Silicon with a length of 0.92 micrometers and it is doped with Boron at a concentration of 773163191379223642112 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.004 micrometers.
(define tox 0.005) (define Lgs 0.51) (define Lgl 0.13) (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) "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) "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 772567487735549526016 ) (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 616399047603814924288 ) (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 87963998519260266496 ) (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 773163191379223642112 ) (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")
5
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.39 micrometers and it is doped with Phosphorus at a concentration of 652736269163145592832 cm^-3. The short gate region is of the material Germanium with a length of 0.6 micrometers and it is doped with Arsenic at a concentration of 664980351033355010048 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 39687039807272632320 cm^-3. The drain region is of the material SiGe with a length of 0.39 micrometers and it is doped with Boron at a concentration of 724246753687149871104 cm^-3. The gate oxide thickness is 0.009 micrometers. The nanowire thickness is 0.007 micrometers.
(define tox 0.009) (define Lgs 0.6) (define Lgl 0.65) (define Ltotal (+ Lgs Lgl)) (define Ls 0.39) (define Ld 0.39) (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) "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 652736269163145592832 ) (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 664980351033355010048 ) (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 39687039807272632320 ) (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 724246753687149871104 ) (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")
6
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 543674307293795713024 cm^-3. The short gate region is of the material Silicon with a length of 0.91 micrometers and it is doped with Boron at a concentration of 289842364243587694592 cm^-3. The long gate region is of the material Diamond with a length of 0.6 micrometers and it is doped with Phosphorus at a concentration of 85941043430972588032 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 872144540730128859136 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.003 micrometers.
(define tox 0.005) (define Lgs 0.91) (define Lgl 0.6) (define Ltotal (+ Lgs Lgl)) (define Ls 0.01) (define Ld 0.01) (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) "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" Phosphorus 543674307293795713024 ) (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 289842364243587694592 ) (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 85941043430972588032 ) (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 872144540730128859136 ) (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")
7
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.19 micrometers and it is doped with Arsenic at a concentration of 314893804460732055552 cm^-3. The short gate region is of the material Diamond with a length of 0.13 micrometers and it is doped with Boron at a concentration of 713195234464310886400 cm^-3. The long gate region is of the material Silicon with a length of 0.26 micrometers and it is doped with Boron at a concentration of 487512799014963642368 cm^-3. The drain region is of the material Silicon with a length of 0.19 micrometers and it is doped with Phosphorus at a concentration of 669934692478407540736 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.007 micrometers.
(define tox 0.003) (define Lgs 0.13) (define Lgl 0.26) (define Ltotal (+ Lgs Lgl)) (define Ls 0.19) (define Ld 0.19) (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) "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" Arsenic 314893804460732055552 ) (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 713195234464310886400 ) (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 487512799014963642368 ) (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 669934692478407540736 ) (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")
8
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.54 micrometers and it is doped with Boron at a concentration of 783208841169230888960 cm^-3. The short gate region is of the material Silicon with a length of 0.19 micrometers and it is doped with Arsenic at a concentration of 666658979680683294720 cm^-3. The long gate region is of the material SiGe with a length of 0.91 micrometers and it is doped with Arsenic at a concentration of 977596949458023874560 cm^-3. The drain region is of the material GaN with a length of 0.54 micrometers and it is doped with Phosphorus at a concentration of 736505468434432786432 cm^-3. The gate oxide thickness is 0.009 micrometers. The nanowire thickness is 0.006 micrometers.
(define tox 0.009) (define Lgs 0.19) (define Lgl 0.91) (define Ltotal (+ Lgs Lgl)) (define Ls 0.54) (define Ld 0.54) (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) "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) "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 783208841169230888960 ) (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 666658979680683294720 ) (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 977596949458023874560 ) (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 736505468434432786432 ) (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")
9
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.27 micrometers and it is doped with Phosphorus at a concentration of 445732191183550021632 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 110252660899741597696 cm^-3. The long gate region is of the material GaN with a length of 0.01 micrometers and it is doped with Arsenic at a concentration of 674490774288157900800 cm^-3. The drain region is of the material GaN with a length of 0.27 micrometers and it is doped with Phosphorus at a concentration of 978632642269397254144 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.005 micrometers.
(define tox 0.005) (define Lgs 0.49) (define Lgl 0.01) (define Ltotal (+ Lgs Lgl)) (define Ls 0.27) (define Ld 0.27) (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) "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" Phosphorus 445732191183550021632 ) (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 110252660899741597696 ) (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 674490774288157900800 ) (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 978632642269397254144 ) (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")
10
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.57 micrometers and it is doped with Boron at a concentration of 419675529264741220352 cm^-3. The short gate region is of the material Germanium with a length of 0.18 micrometers and it is doped with Boron at a concentration of 134208444762521419776 cm^-3. The long gate region is of the material Silicon with a length of 0.99 micrometers and it is doped with Phosphorus at a concentration of 922547678574580072448 cm^-3. The drain region is of the material Silicon with a length of 0.57 micrometers and it is doped with Boron at a concentration of 241620419242665476096 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.004 micrometers.
(define tox 0.002) (define Lgs 0.18) (define Lgl 0.99) (define Ltotal (+ Lgs Lgl)) (define Ls 0.57) (define Ld 0.57) (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) "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" Boron 419675529264741220352 ) (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 134208444762521419776 ) (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 922547678574580072448 ) (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 241620419242665476096 ) (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")
11
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 Boron at a concentration of 448269643843253436416 cm^-3. The short gate region is of the material Diamond with a length of 0.72 micrometers and it is doped with Arsenic at a concentration of 78505286543195930624 cm^-3. The long gate region is of the material Diamond with a length of 0.82 micrometers and it is doped with Arsenic at a concentration of 358944121009771380736 cm^-3. The drain region is of the material Silicon with a length of 0.92 micrometers and it is doped with Arsenic at a concentration of 576903306202253492224 cm^-3. The gate oxide thickness is 0.007 micrometers. The nanowire thickness is 0.007 micrometers.
(define tox 0.007) (define Lgs 0.72) (define Lgl 0.82) (define Ltotal (+ Lgs Lgl)) (define Ls 0.92) (define Ld 0.92) (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) "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 448269643843253436416 ) (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 78505286543195930624 ) (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 358944121009771380736 ) (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 576903306202253492224 ) (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")
12
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.63 micrometers and it is doped with Phosphorus at a concentration of 309098077965743292416 cm^-3. The short gate region is of the material SiGe with a length of 0.99 micrometers and it is doped with Boron at a concentration of 368333436219326201856 cm^-3. The long gate region is of the material Germanium with a length of 0.05 micrometers and it is doped with Phosphorus at a concentration of 55832268093120200704 cm^-3. The drain region is of the material GaN with a length of 0.63 micrometers and it is doped with Boron at a concentration of 646670733889390641152 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.003 micrometers.
(define tox 0.003) (define Lgs 0.99) (define Lgl 0.05) (define Ltotal (+ Lgs Lgl)) (define Ls 0.63) (define Ld 0.63) (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) "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 309098077965743292416 ) (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 368333436219326201856 ) (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 55832268093120200704 ) (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 646670733889390641152 ) (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")
13
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.75 micrometers and it is doped with Phosphorus at a concentration of 719559276004823662592 cm^-3. The short gate region is of the material Germanium with a length of 0.99 micrometers and it is doped with Boron at a concentration of 730646529915641266176 cm^-3. The long gate region is of the material Silicon with a length of 0.79 micrometers and it is doped with Boron at a concentration of 95380454625899610112 cm^-3. The drain region is of the material GaN with a length of 0.75 micrometers and it is doped with Phosphorus at a concentration of 99084145371621703680 cm^-3. The gate oxide thickness is 0.007 micrometers. The nanowire thickness is 0.005 micrometers.
(define tox 0.007) (define Lgs 0.99) (define Lgl 0.79) (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) "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) "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 719559276004823662592 ) (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 730646529915641266176 ) (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 95380454625899610112 ) (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 99084145371621703680 ) (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")
14
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 357289086001553866752 cm^-3. The short gate region is of the material Germanium with a length of 0.45 micrometers and it is doped with Boron at a concentration of 377094179287214325760 cm^-3. The long gate region is of the material GaN with a length of 0.25 micrometers and it is doped with Phosphorus at a concentration of 861727346133693628416 cm^-3. The drain region is of the material Germanium with a length of 0.6 micrometers and it is doped with Phosphorus at a concentration of 244176781238012641280 cm^-3. The gate oxide thickness is 0.004 micrometers. The nanowire thickness is 0.003 micrometers.
(define tox 0.004) (define Lgs 0.45) (define Lgl 0.25) (define Ltotal (+ Lgs Lgl)) (define Ls 0.6) (define Ld 0.6) (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) "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" Arsenic 357289086001553866752 ) (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 377094179287214325760 ) (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 861727346133693628416 ) (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 244176781238012641280 ) (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")
15
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.13 micrometers and it is doped with Phosphorus at a concentration of 965603459599291121664 cm^-3. The short gate region is of the material Germanium with a length of 0.96 micrometers and it is doped with Boron at a concentration of 909030041449879044096 cm^-3. The long gate region is of the material SiGe with a length of 0.49 micrometers and it is doped with Boron at a concentration of 35491958994665693184 cm^-3. The drain region is of the material Germanium with a length of 0.13 micrometers and it is doped with Boron at a concentration of 599416188109691551744 cm^-3. The gate oxide thickness is 0.006 micrometers. The nanowire thickness is 0.007 micrometers.
(define tox 0.006) (define Lgs 0.96) (define Lgl 0.49) (define Ltotal (+ Lgs Lgl)) (define Ls 0.13) (define Ld 0.13) (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) "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 965603459599291121664 ) (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 909030041449879044096 ) (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 35491958994665693184 ) (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 599416188109691551744 ) (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")
16
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 Boron at a concentration of 722054196638487281664 cm^-3. The short gate region is of the material SiGe with a length of 0.37 micrometers and it is doped with Phosphorus at a concentration of 770338120747033952256 cm^-3. The long gate region is of the material Silicon with a length of 0.34 micrometers and it is doped with Boron at a concentration of 85249848770517762048 cm^-3. The drain region is of the material Germanium with a length of 0.49 micrometers and it is doped with Phosphorus at a concentration of 788989289180187459584 cm^-3. The gate oxide thickness is 0.007 micrometers. The nanowire thickness is 0.004 micrometers.
(define tox 0.007) (define Lgs 0.37) (define Lgl 0.34) (define Ltotal (+ Lgs Lgl)) (define Ls 0.49) (define Ld 0.49) (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) "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) "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 722054196638487281664 ) (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 770338120747033952256 ) (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 85249848770517762048 ) (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 788989289180187459584 ) (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")
17
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.5 micrometers and it is doped with Arsenic at a concentration of 648706568506955268096 cm^-3. The short gate region is of the material Germanium with a length of 0.47 micrometers and it is doped with Phosphorus at a concentration of 987387827841607794688 cm^-3. The long gate region is of the material Silicon with a length of 0.02 micrometers and it is doped with Arsenic at a concentration of 34600714126620557312 cm^-3. The drain region is of the material SiGe with a length of 0.5 micrometers and it is doped with Phosphorus at a concentration of 778191781322867212288 cm^-3. The gate oxide thickness is 0.006 micrometers. The nanowire thickness is 0.001 micrometers.
(define tox 0.006) (define Lgs 0.47) (define Lgl 0.02) (define Ltotal (+ Lgs Lgl)) (define Ls 0.5) (define Ld 0.5) (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) "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 648706568506955268096 ) (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 987387827841607794688 ) (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 34600714126620557312 ) (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 778191781322867212288 ) (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")
18
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.63 micrometers and it is doped with Phosphorus at a concentration of 740651616861287743488 cm^-3. The short gate region is of the material GaN with a length of 0.81 micrometers and it is doped with Phosphorus at a concentration of 482566196084588412928 cm^-3. The long gate region is of the material Diamond with a length of 0.86 micrometers and it is doped with Boron at a concentration of 534911500053289369600 cm^-3. The drain region is of the material Germanium with a length of 0.63 micrometers and it is doped with Phosphorus at a concentration of 671460756530107908096 cm^-3. The gate oxide thickness is 0.006 micrometers. The nanowire thickness is 0.009 micrometers.
(define tox 0.006) (define Lgs 0.81) (define Lgl 0.86) (define Ltotal (+ Lgs Lgl)) (define Ls 0.63) (define Ld 0.63) (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) "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" Phosphorus 740651616861287743488 ) (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 482566196084588412928 ) (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 534911500053289369600 ) (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 671460756530107908096 ) (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")
19
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.52 micrometers and it is doped with Arsenic at a concentration of 139570645056021544960 cm^-3. The short gate region is of the material Germanium with a length of 0.81 micrometers and it is doped with Arsenic at a concentration of 884541564827476688896 cm^-3. The long gate region is of the material Diamond with a length of 0.99 micrometers and it is doped with Phosphorus at a concentration of 393372090923561517056 cm^-3. The drain region is of the material Diamond with a length of 0.52 micrometers and it is doped with Phosphorus at a concentration of 129202051640627036160 cm^-3. The gate oxide thickness is 0.007 micrometers. The nanowire thickness is 0.004 micrometers.
(define tox 0.007) (define Lgs 0.81) (define Lgl 0.99) (define Ltotal (+ Lgs Lgl)) (define Ls 0.52) (define Ld 0.52) (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) "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 139570645056021544960 ) (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 884541564827476688896 ) (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 393372090923561517056 ) (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 129202051640627036160 ) (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")
20
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 Arsenic at a concentration of 22771220662683561984 cm^-3. The short gate region is of the material SiGe with a length of 0.5 micrometers and it is doped with Arsenic at a concentration of 713450764462622375936 cm^-3. The long gate region is of the material SiGe with a length of 0.62 micrometers and it is doped with Phosphorus at a concentration of 520280937432438013952 cm^-3. The drain region is of the material Germanium with a length of 0.53 micrometers and it is doped with Phosphorus at a concentration of 248572337936518676480 cm^-3. The gate oxide thickness is 0.01 micrometers. The nanowire thickness is 0.005 micrometers.
(define tox 0.01) (define Lgs 0.5) (define Lgl 0.62) (define Ltotal (+ Lgs Lgl)) (define Ls 0.53) (define Ld 0.53) (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) "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) "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 22771220662683561984 ) (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 713450764462622375936 ) (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 520280937432438013952 ) (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 248572337936518676480 ) (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")
21
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.56 micrometers and it is doped with Boron at a concentration of 473500185867143348224 cm^-3. The short gate region is of the material SiGe with a length of 0.36 micrometers and it is doped with Arsenic at a concentration of 283874639330080423936 cm^-3. The long gate region is of the material Germanium with a length of 0.33 micrometers and it is doped with Boron at a concentration of 98171697875303415808 cm^-3. The drain region is of the material Germanium with a length of 0.56 micrometers and it is doped with Arsenic at a concentration of 775577679780175151104 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.004 micrometers.
(define tox 0.002) (define Lgs 0.36) (define Lgl 0.33) (define Ltotal (+ Lgs Lgl)) (define Ls 0.56) (define Ld 0.56) (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) "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 473500185867143348224 ) (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 283874639330080423936 ) (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 98171697875303415808 ) (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 775577679780175151104 ) (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")
22
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.46 micrometers and it is doped with Arsenic at a concentration of 25292647311033880576 cm^-3. The short gate region is of the material SiGe with a length of 0.86 micrometers and it is doped with Arsenic at a concentration of 863843610558190190592 cm^-3. The long gate region is of the material Silicon with a length of 0.48 micrometers and it is doped with Boron at a concentration of 986002544956719890432 cm^-3. The drain region is of the material Diamond with a length of 0.46 micrometers and it is doped with Phosphorus at a concentration of 842605864085648441344 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.002 micrometers.
(define tox 0.003) (define Lgs 0.86) (define Lgl 0.48) (define Ltotal (+ Lgs Lgl)) (define Ls 0.46) (define Ld 0.46) (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) "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 25292647311033880576 ) (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 863843610558190190592 ) (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 986002544956719890432 ) (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 842605864085648441344 ) (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")
23
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.11 micrometers and it is doped with Phosphorus at a concentration of 624481859484589228032 cm^-3. The short gate region is of the material Diamond with a length of 0.24 micrometers and it is doped with Boron at a concentration of 495604939465602498560 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 904722321020541861888 cm^-3. The drain region is of the material Silicon with a length of 0.11 micrometers and it is doped with Boron at a concentration of 380604264541292855296 cm^-3. The gate oxide thickness is 0.01 micrometers. The nanowire thickness is 0.005 micrometers.
(define tox 0.01) (define Lgs 0.24) (define Lgl 0.24) (define Ltotal (+ Lgs Lgl)) (define Ls 0.11) (define Ld 0.11) (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) "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) "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 624481859484589228032 ) (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 495604939465602498560 ) (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 904722321020541861888 ) (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 380604264541292855296 ) (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")
24
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.44 micrometers and it is doped with Arsenic at a concentration of 591059290321309794304 cm^-3. The short gate region is of the material SiGe with a length of 0.35 micrometers and it is doped with Arsenic at a concentration of 89481799726874771456 cm^-3. The long gate region is of the material Diamond with a length of 0.44 micrometers and it is doped with Arsenic at a concentration of 441459232348766339072 cm^-3. The drain region is of the material SiGe with a length of 0.44 micrometers and it is doped with Phosphorus at a concentration of 340129032995464544256 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.005 micrometers.
(define tox 0.002) (define Lgs 0.35) (define Lgl 0.44) (define Ltotal (+ Lgs Lgl)) (define Ls 0.44) (define Ld 0.44) (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) "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" Arsenic 591059290321309794304 ) (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 89481799726874771456 ) (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 441459232348766339072 ) (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 340129032995464544256 ) (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")
25
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.17 micrometers and it is doped with Phosphorus at a concentration of 419922758611211517952 cm^-3. The short gate region is of the material Diamond with a length of 0.66 micrometers and it is doped with Arsenic at a concentration of 493999868361789669376 cm^-3. The long gate region is of the material Silicon with a length of 0.58 micrometers and it is doped with Arsenic at a concentration of 417862242148077142016 cm^-3. The drain region is of the material GaN with a length of 0.17 micrometers and it is doped with Boron at a concentration of 73470287232657448960 cm^-3. The gate oxide thickness is 0.01 micrometers. The nanowire thickness is 0.008 micrometers.
(define tox 0.01) (define Lgs 0.66) (define Lgl 0.58) (define Ltotal (+ Lgs Lgl)) (define Ls 0.17) (define Ld 0.17) (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) "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) "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 419922758611211517952 ) (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 493999868361789669376 ) (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 417862242148077142016 ) (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 73470287232657448960 ) (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")
26
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.01 micrometers and it is doped with Arsenic at a concentration of 578632135607285317632 cm^-3. The short gate region is of the material Silicon with a length of 0.46 micrometers and it is doped with Phosphorus at a concentration of 232491141717008416768 cm^-3. The long gate region is of the material SiGe with a length of 0.16 micrometers and it is doped with Phosphorus at a concentration of 623282639936611287040 cm^-3. The drain region is of the material Silicon with a length of 0.01 micrometers and it is doped with Phosphorus at a concentration of 394104021565151772672 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.006 micrometers.
(define tox 0.003) (define Lgs 0.46) (define Lgl 0.16) (define Ltotal (+ Lgs Lgl)) (define Ls 0.01) (define Ld 0.01) (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) "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 578632135607285317632 ) (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 232491141717008416768 ) (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 623282639936611287040 ) (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 394104021565151772672 ) (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")
27
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.19 micrometers and it is doped with Arsenic at a concentration of 470577739846830915584 cm^-3. The short gate region is of the material GaN with a length of 0.93 micrometers and it is doped with Phosphorus at a concentration of 748349159119782412288 cm^-3. The long gate region is of the material Germanium with a length of 0.44 micrometers and it is doped with Phosphorus at a concentration of 80832806853442764800 cm^-3. The drain region is of the material Diamond with a length of 0.19 micrometers and it is doped with Arsenic at a concentration of 578439533959299334144 cm^-3. The gate oxide thickness is 0.01 micrometers. The nanowire thickness is 0.003 micrometers.
(define tox 0.01) (define Lgs 0.93) (define Lgl 0.44) (define Ltotal (+ Lgs Lgl)) (define Ls 0.19) (define Ld 0.19) (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) "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) "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 470577739846830915584 ) (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 748349159119782412288 ) (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 80832806853442764800 ) (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 578439533959299334144 ) (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")
28
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.52 micrometers and it is doped with Boron at a concentration of 816796203451808874496 cm^-3. The short gate region is of the material Germanium with a length of 0.22 micrometers and it is doped with Arsenic at a concentration of 270335564709535121408 cm^-3. The long gate region is of the material Diamond with a length of 0.77 micrometers and it is doped with Arsenic at a concentration of 444316715379308494848 cm^-3. The drain region is of the material GaN with a length of 0.52 micrometers and it is doped with Arsenic at a concentration of 482067001055124520960 cm^-3. The gate oxide thickness is 0.004 micrometers. The nanowire thickness is 0.008 micrometers.
(define tox 0.004) (define Lgs 0.22) (define Lgl 0.77) (define Ltotal (+ Lgs Lgl)) (define Ls 0.52) (define Ld 0.52) (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) "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 816796203451808874496 ) (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 270335564709535121408 ) (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 444316715379308494848 ) (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 482067001055124520960 ) (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")

No dataset card yet

New: Create and edit this dataset card directly on the website!

Contribute a Dataset Card
Downloads last month
4
Add dataset card