Search is not available for this dataset
int64 0 2k | instruction stringlengths 945 985 | output stringlengths 5.12k 5.16k |
|---|---|---|
500 | 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.38 micrometers and it is doped with Arsenic at a concentration of 265050746332195913728 cm^-3. The short gate region is of the material Diamond with a length of 0.63 micrometers and it is doped with Arsenic at a concentration of 970289835816496005120 cm^-3. The long gate region is of the material SiGe with a length of 0.74 micrometers and it is doped with Arsenic at a concentration of 610458304315152662528 cm^-3. The drain region is of the material Diamond with a length of 0.38 micrometers and it is doped with Arsenic at a concentration of 322321621716894089216 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.006 micrometers.
| (define tox 0.003)
(define Lgs 0.63)
(define Lgl 0.74)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.38)
(define Ld 0.38)
(define Rl 0.006)
(define Rs 0.006)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Germanium" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "SiGe" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Arsenic
265050746332195913728
)
(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
970289835816496005120
)
(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
610458304315152662528
)
(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
322321621716894089216
)
(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") |
501 | 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 Boron at a concentration of 709175114459369701376 cm^-3. The short gate region is of the material Diamond with a length of 0.54 micrometers and it is doped with Boron at a concentration of 36201043412081704960 cm^-3. The long gate region is of the material Silicon with a length of 0.45 micrometers and it is doped with Arsenic at a concentration of 922028360794366017536 cm^-3. The drain region is of the material Diamond with a length of 0.6 micrometers and it is doped with Phosphorus at a concentration of 725076763816366440448 cm^-3. The gate oxide thickness is 0.006 micrometers. The nanowire thickness is 0.002 micrometers.
| (define tox 0.006)
(define Lgs 0.54)
(define Lgl 0.45)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.6)
(define Ld 0.6)
(define Rl 0.002)
(define Rs 0.002)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Germanium" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Boron
709175114459369701376
)
(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
36201043412081704960
)
(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
922028360794366017536
)
(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
725076763816366440448
)
(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") |
502 | 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.5 micrometers and it is doped with Phosphorus at a concentration of 55494820852631805952 cm^-3. The short gate region is of the material Diamond with a length of 0.56 micrometers and it is doped with Boron at a concentration of 243483289625326190592 cm^-3. The long gate region is of the material GaN with a length of 0.41 micrometers and it is doped with Arsenic at a concentration of 226782107663175319552 cm^-3. The drain region is of the material Germanium with a length of 0.5 micrometers and it is doped with Arsenic at a concentration of 536427769029712281600 cm^-3. The gate oxide thickness is 0.008 micrometers. The nanowire thickness is 0.008 micrometers.
| (define tox 0.008)
(define Lgs 0.56)
(define Lgl 0.41)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.5)
(define Ld 0.5)
(define Rl 0.008)
(define Rs 0.008)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "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
55494820852631805952
)
(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
243483289625326190592
)
(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
226782107663175319552
)
(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
536427769029712281600
)
(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") |
503 | 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.86 micrometers and it is doped with Arsenic at a concentration of 385094479109167775744 cm^-3. The short gate region is of the material Diamond with a length of 0.35 micrometers and it is doped with Phosphorus at a concentration of 598601087291772633088 cm^-3. The long gate region is of the material Silicon with a length of 0.75 micrometers and it is doped with Boron at a concentration of 676976796605468114944 cm^-3. The drain region is of the material Silicon with a length of 0.86 micrometers and it is doped with Phosphorus at a concentration of 168945766241922744320 cm^-3. The gate oxide thickness is 0.009 micrometers. The nanowire thickness is 0.002 micrometers.
| (define tox 0.009)
(define Lgs 0.35)
(define Lgl 0.75)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.86)
(define Ld 0.86)
(define Rl 0.002)
(define Rs 0.002)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "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
385094479109167775744
)
(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
598601087291772633088
)
(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
676976796605468114944
)
(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
168945766241922744320
)
(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") |
504 | 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.11 micrometers and it is doped with Phosphorus at a concentration of 874897045014040674304 cm^-3. The short gate region is of the material GaN with a length of 0.97 micrometers and it is doped with Phosphorus at a concentration of 261508372031529975808 cm^-3. The long gate region is of the material SiGe with a length of 0.1 micrometers and it is doped with Phosphorus at a concentration of 143570756878542979072 cm^-3. The drain region is of the material Germanium with a length of 0.11 micrometers and it is doped with Phosphorus at a concentration of 420708604990549393408 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.003 micrometers.
| (define tox 0.002)
(define Lgs 0.97)
(define Lgl 0.1)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.11)
(define Ld 0.11)
(define Rl 0.003)
(define Rs 0.003)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Germanium" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "SiGe" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "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
874897045014040674304
)
(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
261508372031529975808
)
(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
143570756878542979072
)
(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
420708604990549393408
)
(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") |
505 | This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Diamond with a length of 0.11 micrometers and it is doped with Boron at a concentration of 874602391824056057856 cm^-3. The short gate region is of the material SiGe with a length of 0.2 micrometers and it is doped with Phosphorus at a concentration of 549247089911717691392 cm^-3. The long gate region is of the material Diamond with a length of 0.31 micrometers and it is doped with Arsenic at a concentration of 113189080154633142272 cm^-3. The drain region is of the material Germanium with a length of 0.11 micrometers and it is doped with Boron at a concentration of 47957172855961059328 cm^-3. The gate oxide thickness is 0.008 micrometers. The nanowire thickness is 0.003 micrometers.
| (define tox 0.008)
(define Lgs 0.2)
(define Lgl 0.31)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.11)
(define Ld 0.11)
(define Rl 0.003)
(define Rs 0.003)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Germanium" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Boron
874602391824056057856
)
(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
549247089911717691392
)
(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
113189080154633142272
)
(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
47957172855961059328
)
(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") |
506 | 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.11 micrometers and it is doped with Boron at a concentration of 725537589506478178304 cm^-3. The short gate region is of the material Germanium with a length of 0.32 micrometers and it is doped with Boron at a concentration of 175408915151440314368 cm^-3. The long gate region is of the material SiGe with a length of 0.08 micrometers and it is doped with Arsenic at a concentration of 78262381365795438592 cm^-3. The drain region is of the material Germanium with a length of 0.11 micrometers and it is doped with Arsenic at a concentration of 435526512069878218752 cm^-3. The gate oxide thickness is 0.01 micrometers. The nanowire thickness is 0.003 micrometers.
| (define tox 0.01)
(define Lgs 0.32)
(define Lgl 0.08)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.11)
(define Ld 0.11)
(define Rl 0.003)
(define Rs 0.003)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "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"
Boron
725537589506478178304
)
(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
175408915151440314368
)
(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
78262381365795438592
)
(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
435526512069878218752
)
(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") |
507 | 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.17 micrometers and it is doped with Boron at a concentration of 278681645110024896512 cm^-3. The short gate region is of the material Silicon with a length of 0.68 micrometers and it is doped with Arsenic at a concentration of 961915569159002521600 cm^-3. The long gate region is of the material SiGe with a length of 0.11 micrometers and it is doped with Boron at a concentration of 819093577422779842560 cm^-3. The drain region is of the material Diamond with a length of 0.17 micrometers and it is doped with Arsenic at a concentration of 583861590844167946240 cm^-3. The gate oxide thickness is 0.007 micrometers. The nanowire thickness is 0.003 micrometers.
| (define tox 0.007)
(define Lgs 0.68)
(define Lgl 0.11)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.17)
(define Ld 0.17)
(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) "Silicon" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "SiGe" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Boron
278681645110024896512
)
(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
961915569159002521600
)
(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
819093577422779842560
)
(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
583861590844167946240
)
(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") |
508 | 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.97 micrometers and it is doped with Boron at a concentration of 174804834544649568256 cm^-3. The short gate region is of the material GaN with a length of 0.61 micrometers and it is doped with Phosphorus at a concentration of 250811771830941908992 cm^-3. The long gate region is of the material Silicon with a length of 0.1 micrometers and it is doped with Arsenic at a concentration of 431859598270564532224 cm^-3. The drain region is of the material GaN with a length of 0.97 micrometers and it is doped with Boron at a concentration of 916014846497485357056 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.005 micrometers.
| (define tox 0.003)
(define Lgs 0.61)
(define Lgl 0.1)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.97)
(define Ld 0.97)
(define Rl 0.005)
(define Rs 0.005)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "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"
Boron
174804834544649568256
)
(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
250811771830941908992
)
(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
431859598270564532224
)
(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
916014846497485357056
)
(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") |
509 | 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.34 micrometers and it is doped with Boron at a concentration of 206764182154562732032 cm^-3. The short gate region is of the material Germanium with a length of 0.51 micrometers and it is doped with Phosphorus at a concentration of 497755525959967309824 cm^-3. The long gate region is of the material Silicon with a length of 0.13 micrometers and it is doped with Boron at a concentration of 318172303322182975488 cm^-3. The drain region is of the material Diamond with a length of 0.34 micrometers and it is doped with Phosphorus at a concentration of 458021737197182779392 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.006 micrometers.
| (define tox 0.002)
(define Lgs 0.51)
(define Lgl 0.13)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.34)
(define Ld 0.34)
(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) "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) "Diamond" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Boron
206764182154562732032
)
(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
497755525959967309824
)
(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
318172303322182975488
)
(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
458021737197182779392
)
(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") |
510 | 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.91 micrometers and it is doped with Arsenic at a concentration of 583993018332157575168 cm^-3. The short gate region is of the material GaN with a length of 0.84 micrometers and it is doped with Phosphorus at a concentration of 730814733549478608896 cm^-3. The long gate region is of the material Diamond with a length of 0.96 micrometers and it is doped with Arsenic at a concentration of 792956967284528119808 cm^-3. The drain region is of the material Germanium with a length of 0.91 micrometers and it is doped with Boron at a concentration of 476270439799961026560 cm^-3. The gate oxide thickness is 0.009 micrometers. The nanowire thickness is 0.008 micrometers.
| (define tox 0.009)
(define Lgs 0.84)
(define Lgl 0.96)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.91)
(define Ld 0.91)
(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) "GaN" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Germanium" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Arsenic
583993018332157575168
)
(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
730814733549478608896
)
(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
792956967284528119808
)
(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
476270439799961026560
)
(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") |
511 | 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.16 micrometers and it is doped with Phosphorus at a concentration of 602847686584658427904 cm^-3. The short gate region is of the material Diamond with a length of 0.07 micrometers and it is doped with Phosphorus at a concentration of 723548222638710849536 cm^-3. The long gate region is of the material SiGe with a length of 0.76 micrometers and it is doped with Phosphorus at a concentration of 233548658690268397568 cm^-3. The drain region is of the material GaN with a length of 0.16 micrometers and it is doped with Phosphorus at a concentration of 505103476382777606144 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.009 micrometers.
| (define tox 0.005)
(define Lgs 0.07)
(define Lgl 0.76)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.16)
(define Ld 0.16)
(define Rl 0.009)
(define Rs 0.009)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "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"
Phosphorus
602847686584658427904
)
(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
723548222638710849536
)
(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
233548658690268397568
)
(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
505103476382777606144
)
(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") |
512 | 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.93 micrometers and it is doped with Boron at a concentration of 450491865864813412352 cm^-3. The short gate region is of the material Silicon with a length of 0.72 micrometers and it is doped with Phosphorus at a concentration of 675154785071677702144 cm^-3. The long gate region is of the material Silicon with a length of 0.14 micrometers and it is doped with Arsenic at a concentration of 580373711233201995776 cm^-3. The drain region is of the material Diamond with a length of 0.93 micrometers and it is doped with Phosphorus at a concentration of 115828527157807251456 cm^-3. The gate oxide thickness is 0.004 micrometers. The nanowire thickness is 0.006 micrometers.
| (define tox 0.004)
(define Lgs 0.72)
(define Lgl 0.14)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.93)
(define Ld 0.93)
(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) "Silicon" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Boron
450491865864813412352
)
(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
675154785071677702144
)
(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
580373711233201995776
)
(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
115828527157807251456
)
(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") |
513 | 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.67 micrometers and it is doped with Boron at a concentration of 826112434574943191040 cm^-3. The short gate region is of the material SiGe with a length of 0.77 micrometers and it is doped with Arsenic at a concentration of 660761425361679548416 cm^-3. The long gate region is of the material Silicon with a length of 0.88 micrometers and it is doped with Arsenic at a concentration of 494647491099664711680 cm^-3. The drain region is of the material Diamond with a length of 0.67 micrometers and it is doped with Arsenic at a concentration of 744872069301215035392 cm^-3. The gate oxide thickness is 0.004 micrometers. The nanowire thickness is 0.009 micrometers.
| (define tox 0.004)
(define Lgs 0.77)
(define Lgl 0.88)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.67)
(define Ld 0.67)
(define Rl 0.009)
(define Rs 0.009)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Boron
826112434574943191040
)
(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
660761425361679548416
)
(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
494647491099664711680
)
(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
744872069301215035392
)
(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") |
514 | 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.25 micrometers and it is doped with Boron at a concentration of 707578616578718957568 cm^-3. The short gate region is of the material Silicon with a length of 0.79 micrometers and it is doped with Phosphorus at a concentration of 720400798390936272896 cm^-3. The long gate region is of the material Germanium with a length of 0.68 micrometers and it is doped with Arsenic at a concentration of 246063330783947948032 cm^-3. The drain region is of the material Diamond with a length of 0.25 micrometers and it is doped with Phosphorus at a concentration of 144019968127912984576 cm^-3. The gate oxide thickness is 0.006 micrometers. The nanowire thickness is 0.007 micrometers.
| (define tox 0.006)
(define Lgs 0.79)
(define Lgl 0.68)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.25)
(define Ld 0.25)
(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) "GaN" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Boron
707578616578718957568
)
(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
720400798390936272896
)
(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
246063330783947948032
)
(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
144019968127912984576
)
(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") |
515 | 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.57 micrometers and it is doped with Arsenic at a concentration of 8623283223874961408 cm^-3. The short gate region is of the material Silicon with a length of 0.11 micrometers and it is doped with Boron at a concentration of 452190724688163373056 cm^-3. The long gate region is of the material Germanium with a length of 0.51 micrometers and it is doped with Boron at a concentration of 95806759496870150144 cm^-3. The drain region is of the material SiGe with a length of 0.57 micrometers and it is doped with Boron at a concentration of 808726248299347574784 cm^-3. The gate oxide thickness is 0.007 micrometers. The nanowire thickness is 0.008 micrometers.
| (define tox 0.007)
(define Lgs 0.11)
(define Lgl 0.51)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.57)
(define Ld 0.57)
(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) "Germanium" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Arsenic
8623283223874961408
)
(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
452190724688163373056
)
(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
95806759496870150144
)
(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
808726248299347574784
)
(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") |
516 | 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.06 micrometers and it is doped with Boron at a concentration of 190317646070168190976 cm^-3. The short gate region is of the material GaN with a length of 0.15 micrometers and it is doped with Boron at a concentration of 545431960319600754688 cm^-3. The long gate region is of the material Germanium with a length of 0.71 micrometers and it is doped with Arsenic at a concentration of 495472027164131328000 cm^-3. The drain region is of the material SiGe with a length of 0.06 micrometers and it is doped with Boron at a concentration of 344593467056939991040 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.007 micrometers.
| (define tox 0.005)
(define Lgs 0.15)
(define Lgl 0.71)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.06)
(define Ld 0.06)
(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) "GaN" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Boron
190317646070168190976
)
(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
545431960319600754688
)
(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
495472027164131328000
)
(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
344593467056939991040
)
(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") |
517 | This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.99 micrometers and it is doped with Boron at a concentration of 637393377755380187136 cm^-3. The short gate region is of the material GaN with a length of 0.3 micrometers and it is doped with Arsenic at a concentration of 498495013610744315904 cm^-3. The long gate region is of the material Germanium with a length of 0.46 micrometers and it is doped with Boron at a concentration of 477711043192976834560 cm^-3. The drain region is of the material Germanium with a length of 0.99 micrometers and it is doped with Phosphorus at a concentration of 608181560915656179712 cm^-3. The gate oxide thickness is 0.009 micrometers. The nanowire thickness is 0.007 micrometers.
| (define tox 0.009)
(define Lgs 0.3)
(define Lgl 0.46)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.99)
(define Ld 0.99)
(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) "GaN" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "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
637393377755380187136
)
(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
498495013610744315904
)
(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
477711043192976834560
)
(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
608181560915656179712
)
(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") |
518 | 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.77 micrometers and it is doped with Phosphorus at a concentration of 43232650600446484480 cm^-3. The short gate region is of the material GaN with a length of 0.2 micrometers and it is doped with Phosphorus at a concentration of 341693430763048402944 cm^-3. The long gate region is of the material Silicon with a length of 0.34 micrometers and it is doped with Phosphorus at a concentration of 106552309000124694528 cm^-3. The drain region is of the material GaN with a length of 0.77 micrometers and it is doped with Arsenic at a concentration of 209377516409299959808 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.009 micrometers.
| (define tox 0.002)
(define Lgs 0.2)
(define Lgl 0.34)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.77)
(define Ld 0.77)
(define Rl 0.009)
(define Rs 0.009)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "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
43232650600446484480
)
(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
341693430763048402944
)
(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
106552309000124694528
)
(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
209377516409299959808
)
(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") |
519 | 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.12 micrometers and it is doped with Boron at a concentration of 297917728521491316736 cm^-3. The short gate region is of the material GaN with a length of 0.04 micrometers and it is doped with Boron at a concentration of 8768104379806656512 cm^-3. The long gate region is of the material Diamond with a length of 0.23 micrometers and it is doped with Arsenic at a concentration of 592789106559213109248 cm^-3. The drain region is of the material SiGe with a length of 0.12 micrometers and it is doped with Arsenic at a concentration of 444282060921315786752 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.009 micrometers.
| (define tox 0.003)
(define Lgs 0.04)
(define Lgl 0.23)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.12)
(define Ld 0.12)
(define Rl 0.009)
(define Rs 0.009)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Boron
297917728521491316736
)
(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
8768104379806656512
)
(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
592789106559213109248
)
(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
444282060921315786752
)
(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") |
520 | 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.61 micrometers and it is doped with Arsenic at a concentration of 380986904332705857536 cm^-3. The short gate region is of the material Silicon with a length of 0.46 micrometers and it is doped with Boron at a concentration of 146543660914265260032 cm^-3. The long gate region is of the material Silicon with a length of 0.64 micrometers and it is doped with Arsenic at a concentration of 359813435827960283136 cm^-3. The drain region is of the material Germanium with a length of 0.61 micrometers and it is doped with Boron at a concentration of 702021212296117092352 cm^-3. The gate oxide thickness is 0.004 micrometers. The nanowire thickness is 0.007 micrometers.
| (define tox 0.004)
(define Lgs 0.46)
(define Lgl 0.64)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.61)
(define Ld 0.61)
(define Rl 0.007)
(define Rs 0.007)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Germanium" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Arsenic
380986904332705857536
)
(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
146543660914265260032
)
(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
359813435827960283136
)
(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
702021212296117092352
)
(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") |
521 | This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Silicon with a length of 0.38 micrometers and it is doped with Boron at a concentration of 982601111689921822720 cm^-3. The short gate region is of the material Germanium with a length of 0.3 micrometers and it is doped with Phosphorus at a concentration of 259636968288102350848 cm^-3. The long gate region is of the material SiGe with a length of 0.58 micrometers and it is doped with Phosphorus at a concentration of 913312460971529863168 cm^-3. The drain region is of the material Silicon with a length of 0.38 micrometers and it is doped with Phosphorus at a concentration of 866286547668569817088 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.004 micrometers.
| (define tox 0.003)
(define Lgs 0.3)
(define Lgl 0.58)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.38)
(define Ld 0.38)
(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) "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
982601111689921822720
)
(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
259636968288102350848
)
(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
913312460971529863168
)
(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
866286547668569817088
)
(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") |
522 | 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.6 micrometers and it is doped with Arsenic at a concentration of 455887626799301132288 cm^-3. The short gate region is of the material GaN with a length of 0.06 micrometers and it is doped with Phosphorus at a concentration of 735311580161932787712 cm^-3. The long gate region is of the material SiGe with a length of 0.83 micrometers and it is doped with Arsenic at a concentration of 334612656635919597568 cm^-3. The drain region is of the material Silicon with a length of 0.6 micrometers and it is doped with Arsenic at a concentration of 358705678337317797888 cm^-3. The gate oxide thickness is 0.01 micrometers. The nanowire thickness is 0.003 micrometers.
| (define tox 0.01)
(define Lgs 0.06)
(define Lgl 0.83)
(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) "GaN" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "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
455887626799301132288
)
(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
735311580161932787712
)
(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
334612656635919597568
)
(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
358705678337317797888
)
(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") |
523 | 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.47 micrometers and it is doped with Arsenic at a concentration of 616360413151557058560 cm^-3. The short gate region is of the material SiGe with a length of 0.32 micrometers and it is doped with Arsenic at a concentration of 949150500613083234304 cm^-3. The long gate region is of the material Germanium with a length of 0.45 micrometers and it is doped with Arsenic at a concentration of 67566595182237245440 cm^-3. The drain region is of the material Diamond with a length of 0.47 micrometers and it is doped with Phosphorus at a concentration of 133671804870381420544 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.003 micrometers.
| (define tox 0.003)
(define Lgs 0.32)
(define Lgl 0.45)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.47)
(define Ld 0.47)
(define Rl 0.003)
(define Rs 0.003)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "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
616360413151557058560
)
(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
949150500613083234304
)
(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
67566595182237245440
)
(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
133671804870381420544
)
(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") |
524 | 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.59 micrometers and it is doped with Boron at a concentration of 798768580660444397568 cm^-3. The short gate region is of the material SiGe with a length of 0.38 micrometers and it is doped with Phosphorus at a concentration of 790972575379416547328 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 784848854869521596416 cm^-3. The drain region is of the material Silicon with a length of 0.59 micrometers and it is doped with Arsenic at a concentration of 547123318207929647104 cm^-3. The gate oxide thickness is 0.004 micrometers. The nanowire thickness is 0.006 micrometers.
| (define tox 0.004)
(define Lgs 0.38)
(define Lgl 0.24)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.59)
(define Ld 0.59)
(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) "SiGe" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "GaN" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Boron
798768580660444397568
)
(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
790972575379416547328
)
(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
784848854869521596416
)
(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
547123318207929647104
)
(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") |
525 | 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.26 micrometers and it is doped with Phosphorus at a concentration of 5987579999206173696 cm^-3. The short gate region is of the material Silicon with a length of 0.12 micrometers and it is doped with Phosphorus at a concentration of 618496573378664595456 cm^-3. The long gate region is of the material Germanium with a length of 0.25 micrometers and it is doped with Arsenic at a concentration of 419052350335505137664 cm^-3. The drain region is of the material Silicon with a length of 0.26 micrometers and it is doped with Phosphorus at a concentration of 273541013841376542720 cm^-3. The gate oxide thickness is 0.007 micrometers. The nanowire thickness is 0.005 micrometers.
| (define tox 0.007)
(define Lgs 0.12)
(define Lgl 0.25)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.26)
(define Ld 0.26)
(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) "Silicon" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Phosphorus
5987579999206173696
)
(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
618496573378664595456
)
(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
419052350335505137664
)
(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
273541013841376542720
)
(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") |
526 | 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.52 micrometers and it is doped with Phosphorus at a concentration of 59053028050080374784 cm^-3. The short gate region is of the material Diamond with a length of 0.51 micrometers and it is doped with Phosphorus at a concentration of 230058826386961530880 cm^-3. The long gate region is of the material Diamond with a length of 0.44 micrometers and it is doped with Phosphorus at a concentration of 466037199107362783232 cm^-3. The drain region is of the material Silicon with a length of 0.52 micrometers and it is doped with Arsenic at a concentration of 971654817530826981376 cm^-3. The gate oxide thickness is 0.007 micrometers. The nanowire thickness is 0.004 micrometers.
| (define tox 0.007)
(define Lgs 0.51)
(define Lgl 0.44)
(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) "Diamond" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Phosphorus
59053028050080374784
)
(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
230058826386961530880
)
(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
466037199107362783232
)
(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
971654817530826981376
)
(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") |
527 | 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.19 micrometers and it is doped with Boron at a concentration of 325417677456308436992 cm^-3. The short gate region is of the material SiGe with a length of 0.64 micrometers and it is doped with Phosphorus at a concentration of 596399623241459040256 cm^-3. The long gate region is of the material Diamond with a length of 0.6 micrometers and it is doped with Boron at a concentration of 429149098381911523328 cm^-3. The drain region is of the material Silicon with a length of 0.19 micrometers and it is doped with Boron at a concentration of 29154544433896587264 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.01 micrometers.
| (define tox 0.002)
(define Lgs 0.64)
(define Lgl 0.6)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.19)
(define Ld 0.19)
(define Rl 0.01)
(define Rs 0.01)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "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) "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
325417677456308436992
)
(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
596399623241459040256
)
(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
429149098381911523328
)
(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
29154544433896587264
)
(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") |
528 | 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.05 micrometers and it is doped with Arsenic at a concentration of 817009046221651836928 cm^-3. The short gate region is of the material SiGe with a length of 0.42 micrometers and it is doped with Boron at a concentration of 535256334132616101888 cm^-3. The long gate region is of the material GaN with a length of 0.52 micrometers and it is doped with Phosphorus at a concentration of 543197335171720806400 cm^-3. The drain region is of the material SiGe with a length of 0.05 micrometers and it is doped with Arsenic at a concentration of 704337844703459672064 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.005 micrometers.
| (define tox 0.005)
(define Lgs 0.42)
(define Lgl 0.52)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.05)
(define Ld 0.05)
(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) "GaN" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Arsenic
817009046221651836928
)
(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
535256334132616101888
)
(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
543197335171720806400
)
(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
704337844703459672064
)
(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") |
529 | This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.1 micrometers and it is doped with Phosphorus at a concentration of 782930789748800094208 cm^-3. The short gate region is of the material SiGe with a length of 0.95 micrometers and it is doped with Boron at a concentration of 383884477062302269440 cm^-3. The long gate region is of the material Diamond with a length of 0.45 micrometers and it is doped with Arsenic at a concentration of 665699845201492049920 cm^-3. The drain region is of the material GaN with a length of 0.1 micrometers and it is doped with Boron at a concentration of 939117717440934051840 cm^-3. The gate oxide thickness is 0.006 micrometers. The nanowire thickness is 0.006 micrometers.
| (define tox 0.006)
(define Lgs 0.95)
(define Lgl 0.45)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.1)
(define Ld 0.1)
(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) "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) "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
782930789748800094208
)
(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
383884477062302269440
)
(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
665699845201492049920
)
(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
939117717440934051840
)
(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") |
530 | 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.09 micrometers and it is doped with Boron at a concentration of 53930475633599569920 cm^-3. The short gate region is of the material Silicon with a length of 0.85 micrometers and it is doped with Arsenic at a concentration of 809492415667678871552 cm^-3. The long gate region is of the material GaN with a length of 0.51 micrometers and it is doped with Phosphorus at a concentration of 606664194766394621952 cm^-3. The drain region is of the material Diamond with a length of 0.09 micrometers and it is doped with Arsenic at a concentration of 434036520242328109056 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.001 micrometers.
| (define tox 0.005)
(define Lgs 0.85)
(define Lgl 0.51)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.09)
(define Ld 0.09)
(define Rl 0.001)
(define Rs 0.001)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "GaN" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Boron
53930475633599569920
)
(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
809492415667678871552
)
(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
606664194766394621952
)
(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
434036520242328109056
)
(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") |
531 | 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.98 micrometers and it is doped with Arsenic at a concentration of 752844136216630394880 cm^-3. The short gate region is of the material Silicon with a length of 0.88 micrometers and it is doped with Arsenic at a concentration of 709970518206832312320 cm^-3. The long gate region is of the material Diamond with a length of 0.25 micrometers and it is doped with Boron at a concentration of 411081619388443918336 cm^-3. The drain region is of the material SiGe with a length of 0.98 micrometers and it is doped with Arsenic at a concentration of 253257837669814599680 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.004 micrometers.
| (define tox 0.003)
(define Lgs 0.88)
(define Lgl 0.25)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.98)
(define Ld 0.98)
(define Rl 0.004)
(define Rs 0.004)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "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
752844136216630394880
)
(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
709970518206832312320
)
(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
411081619388443918336
)
(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
253257837669814599680
)
(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") |
532 | 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.71 micrometers and it is doped with Arsenic at a concentration of 434132449172301545472 cm^-3. The short gate region is of the material GaN with a length of 0.27 micrometers and it is doped with Arsenic at a concentration of 228595956711501234176 cm^-3. The long gate region is of the material Germanium with a length of 0.98 micrometers and it is doped with Boron at a concentration of 282062355202874474496 cm^-3. The drain region is of the material Germanium with a length of 0.71 micrometers and it is doped with Boron at a concentration of 540278759088192356352 cm^-3. The gate oxide thickness is 0.006 micrometers. The nanowire thickness is 0.002 micrometers.
| (define tox 0.006)
(define Lgs 0.27)
(define Lgl 0.98)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.71)
(define Ld 0.71)
(define Rl 0.002)
(define Rs 0.002)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Germanium" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Arsenic
434132449172301545472
)
(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
228595956711501234176
)
(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
282062355202874474496
)
(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
540278759088192356352
)
(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") |
533 | 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.67 micrometers and it is doped with Arsenic at a concentration of 997929976938437017600 cm^-3. The short gate region is of the material GaN with a length of 0.2 micrometers and it is doped with Phosphorus at a concentration of 897937794755727982592 cm^-3. The long gate region is of the material Germanium with a length of 0.55 micrometers and it is doped with Boron at a concentration of 91744882721104412672 cm^-3. The drain region is of the material SiGe with a length of 0.67 micrometers and it is doped with Arsenic at a concentration of 432620842058949328896 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.009 micrometers.
| (define tox 0.003)
(define Lgs 0.2)
(define Lgl 0.55)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.67)
(define Ld 0.67)
(define Rl 0.009)
(define Rs 0.009)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Arsenic
997929976938437017600
)
(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
897937794755727982592
)
(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
91744882721104412672
)
(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
432620842058949328896
)
(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") |
534 | 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.04 micrometers and it is doped with Phosphorus at a concentration of 684285663452635201536 cm^-3. The short gate region is of the material Diamond with a length of 0.75 micrometers and it is doped with Arsenic at a concentration of 275118796330393567232 cm^-3. The long gate region is of the material GaN with a length of 0.07 micrometers and it is doped with Arsenic at a concentration of 811279250635147444224 cm^-3. The drain region is of the material SiGe with a length of 0.04 micrometers and it is doped with Phosphorus at a concentration of 326140336529553358848 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.005 micrometers.
| (define tox 0.002)
(define Lgs 0.75)
(define Lgl 0.07)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.04)
(define Ld 0.04)
(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) "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
684285663452635201536
)
(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
275118796330393567232
)
(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
811279250635147444224
)
(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
326140336529553358848
)
(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") |
535 | 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.66 micrometers and it is doped with Phosphorus at a concentration of 846190250977267810304 cm^-3. The short gate region is of the material Silicon with a length of 0.55 micrometers and it is doped with Arsenic at a concentration of 838462375425675493376 cm^-3. The long gate region is of the material Diamond with a length of 0.84 micrometers and it is doped with Boron at a concentration of 297766702209896153088 cm^-3. The drain region is of the material Silicon with a length of 0.66 micrometers and it is doped with Boron at a concentration of 851860766345721806848 cm^-3. The gate oxide thickness is 0.008 micrometers. The nanowire thickness is 0.008 micrometers.
| (define tox 0.008)
(define Lgs 0.55)
(define Lgl 0.84)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.66)
(define Ld 0.66)
(define Rl 0.008)
(define Rs 0.008)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Phosphorus
846190250977267810304
)
(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
838462375425675493376
)
(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
297766702209896153088
)
(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
851860766345721806848
)
(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") |
536 | 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.44 micrometers and it is doped with Arsenic at a concentration of 800399152248557928448 cm^-3. The short gate region is of the material SiGe with a length of 0.62 micrometers and it is doped with Arsenic at a concentration of 668051823595982422016 cm^-3. The long gate region is of the material SiGe with a length of 0.02 micrometers and it is doped with Phosphorus at a concentration of 610247218592380354560 cm^-3. The drain region is of the material GaN with a length of 0.44 micrometers and it is doped with Phosphorus at a concentration of 7395606042351688704 cm^-3. The gate oxide thickness is 0.004 micrometers. The nanowire thickness is 0.007 micrometers.
| (define tox 0.004)
(define Lgs 0.62)
(define Lgl 0.02)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.44)
(define Ld 0.44)
(define Rl 0.007)
(define Rs 0.007)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "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"
Arsenic
800399152248557928448
)
(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
668051823595982422016
)
(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
610247218592380354560
)
(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
7395606042351688704
)
(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") |
537 | 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.3 micrometers and it is doped with Boron at a concentration of 586419387014553665536 cm^-3. The short gate region is of the material Silicon with a length of 0.6 micrometers and it is doped with Arsenic at a concentration of 184651375431864025088 cm^-3. The long gate region is of the material Germanium with a length of 0.51 micrometers and it is doped with Boron at a concentration of 809736735115846746112 cm^-3. The drain region is of the material SiGe with a length of 0.3 micrometers and it is doped with Phosphorus at a concentration of 179187157514236559360 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.008 micrometers.
| (define tox 0.003)
(define Lgs 0.6)
(define Lgl 0.51)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.3)
(define Ld 0.3)
(define Rl 0.008)
(define Rs 0.008)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Boron
586419387014553665536
)
(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
184651375431864025088
)
(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
809736735115846746112
)
(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
179187157514236559360
)
(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") |
538 | This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Germanium with a length of 0.91 micrometers and it is doped with Phosphorus at a concentration of 293949538075814494208 cm^-3. The short gate region is of the material Germanium with a length of 0.36 micrometers and it is doped with Boron at a concentration of 572445753139711705088 cm^-3. The long gate region is of the material SiGe with a length of 0.48 micrometers and it is doped with Boron at a concentration of 207062840746442096640 cm^-3. The drain region is of the material Silicon with a length of 0.91 micrometers and it is doped with Arsenic at a concentration of 81169159168668729344 cm^-3. The gate oxide thickness is 0.007 micrometers. The nanowire thickness is 0.006 micrometers.
| (define tox 0.007)
(define Lgs 0.36)
(define Lgl 0.48)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.91)
(define Ld 0.91)
(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) "Germanium" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "SiGe" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Phosphorus
293949538075814494208
)
(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
572445753139711705088
)
(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
207062840746442096640
)
(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
81169159168668729344
)
(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") |
539 | 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.14 micrometers and it is doped with Arsenic at a concentration of 947975381291466620928 cm^-3. The short gate region is of the material Germanium with a length of 0.87 micrometers and it is doped with Phosphorus at a concentration of 274950192117091270656 cm^-3. The long gate region is of the material GaN with a length of 0.4 micrometers and it is doped with Arsenic at a concentration of 570187351710065360896 cm^-3. The drain region is of the material Germanium with a length of 0.14 micrometers and it is doped with Arsenic at a concentration of 56295567354109632512 cm^-3. The gate oxide thickness is 0.01 micrometers. The nanowire thickness is 0.005 micrometers.
| (define tox 0.01)
(define Lgs 0.87)
(define Lgl 0.4)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.14)
(define Ld 0.14)
(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) "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
947975381291466620928
)
(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
274950192117091270656
)
(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
570187351710065360896
)
(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
56295567354109632512
)
(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") |
540 | 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.28 micrometers and it is doped with Boron at a concentration of 670116811920632315904 cm^-3. The short gate region is of the material Silicon with a length of 0.77 micrometers and it is doped with Phosphorus at a concentration of 669959089037781762048 cm^-3. The long gate region is of the material Germanium with a length of 0.15 micrometers and it is doped with Arsenic at a concentration of 733514921754553876480 cm^-3. The drain region is of the material Germanium with a length of 0.28 micrometers and it is doped with Arsenic at a concentration of 444604198913387134976 cm^-3. The gate oxide thickness is 0.008 micrometers. The nanowire thickness is 0.003 micrometers.
| (define tox 0.008)
(define Lgs 0.77)
(define Lgl 0.15)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.28)
(define Ld 0.28)
(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) "Silicon" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "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
670116811920632315904
)
(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
669959089037781762048
)
(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
733514921754553876480
)
(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
444604198913387134976
)
(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") |
541 | 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.95 micrometers and it is doped with Arsenic at a concentration of 212875027516143239168 cm^-3. The short gate region is of the material Silicon with a length of 0.82 micrometers and it is doped with Arsenic at a concentration of 878703089765469782016 cm^-3. The long gate region is of the material GaN with a length of 0.87 micrometers and it is doped with Arsenic at a concentration of 333071803636728463360 cm^-3. The drain region is of the material SiGe with a length of 0.95 micrometers and it is doped with Phosphorus at a concentration of 449670860325737988096 cm^-3. The gate oxide thickness is 0.008 micrometers. The nanowire thickness is 0.006 micrometers.
| (define tox 0.008)
(define Lgs 0.82)
(define Lgl 0.87)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.95)
(define Ld 0.95)
(define Rl 0.006)
(define Rs 0.006)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "GaN" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "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
212875027516143239168
)
(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
878703089765469782016
)
(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
333071803636728463360
)
(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
449670860325737988096
)
(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") |
542 | 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.51 micrometers and it is doped with Arsenic at a concentration of 341454641235654475776 cm^-3. The short gate region is of the material Diamond with a length of 0.95 micrometers and it is doped with Phosphorus at a concentration of 571162382859228938240 cm^-3. The long gate region is of the material Diamond with a length of 0.54 micrometers and it is doped with Arsenic at a concentration of 735746884659919454208 cm^-3. The drain region is of the material Silicon with a length of 0.51 micrometers and it is doped with Arsenic at a concentration of 657366665373230432256 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.009 micrometers.
| (define tox 0.002)
(define Lgs 0.95)
(define Lgl 0.54)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.51)
(define Ld 0.51)
(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) "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"
Arsenic
341454641235654475776
)
(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
571162382859228938240
)
(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
735746884659919454208
)
(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
657366665373230432256
)
(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") |
543 | 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.47 micrometers and it is doped with Phosphorus at a concentration of 532777714256215670784 cm^-3. The short gate region is of the material Silicon with a length of 0.69 micrometers and it is doped with Phosphorus at a concentration of 804623430414982184960 cm^-3. The long gate region is of the material Diamond with a length of 0.45 micrometers and it is doped with Boron at a concentration of 963782041544141045760 cm^-3. The drain region is of the material GaN with a length of 0.47 micrometers and it is doped with Boron at a concentration of 726268961555963314176 cm^-3. The gate oxide thickness is 0.001 micrometers. The nanowire thickness is 0.008 micrometers.
| (define tox 0.001)
(define Lgs 0.69)
(define Lgl 0.45)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.47)
(define Ld 0.47)
(define Rl 0.008)
(define Rs 0.008)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "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"
Phosphorus
532777714256215670784
)
(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
804623430414982184960
)
(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
963782041544141045760
)
(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
726268961555963314176
)
(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") |
544 | 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.44 micrometers and it is doped with Arsenic at a concentration of 370784274094741127168 cm^-3. The short gate region is of the material Diamond with a length of 0.71 micrometers and it is doped with Boron at a concentration of 157615261339105394688 cm^-3. The long gate region is of the material Germanium with a length of 0.2 micrometers and it is doped with Arsenic at a concentration of 849976422118021136384 cm^-3. The drain region is of the material Diamond with a length of 0.44 micrometers and it is doped with Boron at a concentration of 854738373502042374144 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.004 micrometers.
| (define tox 0.005)
(define Lgs 0.71)
(define Lgl 0.2)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.44)
(define Ld 0.44)
(define Rl 0.004)
(define Rs 0.004)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "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
370784274094741127168
)
(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
157615261339105394688
)
(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
849976422118021136384
)
(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
854738373502042374144
)
(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") |
545 | This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material SiGe with a length of 0.73 micrometers and it is doped with Phosphorus at a concentration of 854184159855924871168 cm^-3. The short gate region is of the material SiGe with a length of 0.7 micrometers and it is doped with Arsenic at a concentration of 186578991529319333888 cm^-3. The long gate region is of the material SiGe with a length of 0.75 micrometers and it is doped with Arsenic at a concentration of 937319662923200724992 cm^-3. The drain region is of the material Germanium with a length of 0.73 micrometers and it is doped with Boron at a concentration of 299137350141939810304 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.007 micrometers.
| (define tox 0.002)
(define Lgs 0.7)
(define Lgl 0.75)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.73)
(define Ld 0.73)
(define Rl 0.007)
(define Rs 0.007)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "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"
Phosphorus
854184159855924871168
)
(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
186578991529319333888
)
(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
937319662923200724992
)
(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
299137350141939810304
)
(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") |
546 | 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.81 micrometers and it is doped with Arsenic at a concentration of 80741839854072561664 cm^-3. The short gate region is of the material GaN with a length of 0.1 micrometers and it is doped with Arsenic at a concentration of 183902664173292453888 cm^-3. The long gate region is of the material SiGe with a length of 0.83 micrometers and it is doped with Phosphorus at a concentration of 183274866331897790464 cm^-3. The drain region is of the material Silicon with a length of 0.81 micrometers and it is doped with Phosphorus at a concentration of 200183146409159000064 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.005 micrometers.
| (define tox 0.002)
(define Lgs 0.1)
(define Lgl 0.83)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.81)
(define Ld 0.81)
(define Rl 0.005)
(define Rs 0.005)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "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
80741839854072561664
)
(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
183902664173292453888
)
(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
183274866331897790464
)
(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
200183146409159000064
)
(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") |
547 | 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.29 micrometers and it is doped with Phosphorus at a concentration of 660087514019634479104 cm^-3. The short gate region is of the material Diamond with a length of 0.91 micrometers and it is doped with Phosphorus at a concentration of 551792063521761525760 cm^-3. The long gate region is of the material SiGe with a length of 0.16 micrometers and it is doped with Arsenic at a concentration of 372841617021655711744 cm^-3. The drain region is of the material Germanium with a length of 0.29 micrometers and it is doped with Boron at a concentration of 421177881485263765504 cm^-3. The gate oxide thickness is 0.004 micrometers. The nanowire thickness is 0.006 micrometers.
| (define tox 0.004)
(define Lgs 0.91)
(define Lgl 0.16)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.29)
(define Ld 0.29)
(define Rl 0.006)
(define Rs 0.006)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Germanium" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "SiGe" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "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
660087514019634479104
)
(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
551792063521761525760
)
(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
372841617021655711744
)
(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
421177881485263765504
)
(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") |
548 | 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.01 micrometers and it is doped with Boron at a concentration of 758258644759032889344 cm^-3. The short gate region is of the material Diamond with a length of 0.36 micrometers and it is doped with Arsenic at a concentration of 755987338662086049792 cm^-3. The long gate region is of the material SiGe with a length of 0.49 micrometers and it is doped with Arsenic at a concentration of 506178654912126386176 cm^-3. The drain region is of the material SiGe with a length of 0.01 micrometers and it is doped with Phosphorus at a concentration of 951162325778003656704 cm^-3. The gate oxide thickness is 0.008 micrometers. The nanowire thickness is 0.002 micrometers.
| (define tox 0.008)
(define Lgs 0.36)
(define Lgl 0.49)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.01)
(define Ld 0.01)
(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) "Diamond" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "SiGe" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Boron
758258644759032889344
)
(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
755987338662086049792
)
(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
506178654912126386176
)
(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
951162325778003656704
)
(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") |
549 | 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.14 micrometers and it is doped with Arsenic at a concentration of 908169318489025937408 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 14649153193340067840 cm^-3. The long gate region is of the material Diamond with a length of 0.92 micrometers and it is doped with Boron at a concentration of 283066018497031798784 cm^-3. The drain region is of the material Diamond with a length of 0.14 micrometers and it is doped with Boron at a concentration of 658486606801058529280 cm^-3. The gate oxide thickness is 0.007 micrometers. The nanowire thickness is 0.005 micrometers.
| (define tox 0.007)
(define Lgs 0.86)
(define Lgl 0.92)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.14)
(define Ld 0.14)
(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) "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
908169318489025937408
)
(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
14649153193340067840
)
(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
283066018497031798784
)
(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
658486606801058529280
)
(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") |
550 | 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.07 micrometers and it is doped with Boron at a concentration of 13768146588788137984 cm^-3. The short gate region is of the material Germanium with a length of 0.73 micrometers and it is doped with Boron at a concentration of 616080122445297221632 cm^-3. The long gate region is of the material GaN with a length of 0.18 micrometers and it is doped with Phosphorus at a concentration of 304167657952295911424 cm^-3. The drain region is of the material Germanium with a length of 0.07 micrometers and it is doped with Boron at a concentration of 800057667310572142592 cm^-3. The gate oxide thickness is 0.001 micrometers. The nanowire thickness is 0.009 micrometers.
| (define tox 0.001)
(define Lgs 0.73)
(define Lgl 0.18)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.07)
(define Ld 0.07)
(define Rl 0.009)
(define Rs 0.009)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "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"
Boron
13768146588788137984
)
(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
616080122445297221632
)
(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
304167657952295911424
)
(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
800057667310572142592
)
(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") |
551 | 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.77 micrometers and it is doped with Arsenic at a concentration of 792671356975917826048 cm^-3. The short gate region is of the material Germanium with a length of 0.24 micrometers and it is doped with Arsenic at a concentration of 643195508129928708096 cm^-3. The long gate region is of the material Germanium with a length of 0.72 micrometers and it is doped with Phosphorus at a concentration of 329499649650774376448 cm^-3. The drain region is of the material Germanium with a length of 0.77 micrometers and it is doped with Phosphorus at a concentration of 230732479357579296768 cm^-3. The gate oxide thickness is 0.004 micrometers. The nanowire thickness is 0.01 micrometers.
| (define tox 0.004)
(define Lgs 0.24)
(define Lgl 0.72)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.77)
(define Ld 0.77)
(define Rl 0.01)
(define Rs 0.01)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Germanium" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "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
792671356975917826048
)
(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
643195508129928708096
)
(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
329499649650774376448
)
(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
230732479357579296768
)
(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") |
552 | 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.88 micrometers and it is doped with Boron at a concentration of 621960111992364335104 cm^-3. The short gate region is of the material Diamond with a length of 0.16 micrometers and it is doped with Phosphorus at a concentration of 166875587965574381568 cm^-3. The long gate region is of the material Silicon with a length of 0.18 micrometers and it is doped with Phosphorus at a concentration of 38196778546501902336 cm^-3. The drain region is of the material Silicon with a length of 0.88 micrometers and it is doped with Phosphorus at a concentration of 569069149585275748352 cm^-3. The gate oxide thickness is 0.007 micrometers. The nanowire thickness is 0.009 micrometers.
| (define tox 0.007)
(define Lgs 0.16)
(define Lgl 0.18)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.88)
(define Ld 0.88)
(define Rl 0.009)
(define Rs 0.009)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "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
621960111992364335104
)
(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
166875587965574381568
)
(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
38196778546501902336
)
(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
569069149585275748352
)
(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") |
553 | 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.14 micrometers and it is doped with Phosphorus at a concentration of 109327817567283200000 cm^-3. The short gate region is of the material SiGe with a length of 0.46 micrometers and it is doped with Phosphorus at a concentration of 351228641293466861568 cm^-3. The long gate region is of the material GaN with a length of 0.46 micrometers and it is doped with Arsenic at a concentration of 507651770724826218496 cm^-3. The drain region is of the material Silicon with a length of 0.14 micrometers and it is doped with Boron at a concentration of 605277214091589189632 cm^-3. The gate oxide thickness is 0.006 micrometers. The nanowire thickness is 0.007 micrometers.
| (define tox 0.006)
(define Lgs 0.46)
(define Lgl 0.46)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.14)
(define Ld 0.14)
(define Rl 0.007)
(define Rs 0.007)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "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
109327817567283200000
)
(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
351228641293466861568
)
(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
507651770724826218496
)
(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
605277214091589189632
)
(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") |
554 | 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.3 micrometers and it is doped with Boron at a concentration of 226164232076627083264 cm^-3. The short gate region is of the material Diamond with a length of 0.15 micrometers and it is doped with Arsenic at a concentration of 512356357928535719936 cm^-3. The long gate region is of the material Diamond with a length of 0.16 micrometers and it is doped with Boron at a concentration of 296899848013006503936 cm^-3. The drain region is of the material Silicon with a length of 0.3 micrometers and it is doped with Phosphorus at a concentration of 283860137067162533888 cm^-3. The gate oxide thickness is 0.006 micrometers. The nanowire thickness is 0.008 micrometers.
| (define tox 0.006)
(define Lgs 0.15)
(define Lgl 0.16)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.3)
(define Ld 0.3)
(define Rl 0.008)
(define Rs 0.008)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "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
226164232076627083264
)
(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
512356357928535719936
)
(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
296899848013006503936
)
(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
283860137067162533888
)
(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") |
555 | 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.73 micrometers and it is doped with Arsenic at a concentration of 695731949200222191616 cm^-3. The short gate region is of the material GaN with a length of 0.07 micrometers and it is doped with Boron at a concentration of 269053491642307772416 cm^-3. The long gate region is of the material SiGe with a length of 0.55 micrometers and it is doped with Boron at a concentration of 138854398103628234752 cm^-3. The drain region is of the material GaN with a length of 0.73 micrometers and it is doped with Arsenic at a concentration of 926100328811153195008 cm^-3. The gate oxide thickness is 0.004 micrometers. The nanowire thickness is 0.006 micrometers.
| (define tox 0.004)
(define Lgs 0.07)
(define Lgl 0.55)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.73)
(define Ld 0.73)
(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) "GaN" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "SiGe" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "GaN" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Arsenic
695731949200222191616
)
(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
269053491642307772416
)
(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
138854398103628234752
)
(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
926100328811153195008
)
(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") |
556 | 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.51 micrometers and it is doped with Arsenic at a concentration of 29435803627558191104 cm^-3. The short gate region is of the material GaN with a length of 0.39 micrometers and it is doped with Boron at a concentration of 397981859308608028672 cm^-3. The long gate region is of the material GaN with a length of 0.75 micrometers and it is doped with Boron at a concentration of 134525479738390396928 cm^-3. The drain region is of the material Silicon with a length of 0.51 micrometers and it is doped with Boron at a concentration of 909025662654402265088 cm^-3. The gate oxide thickness is 0.006 micrometers. The nanowire thickness is 0.004 micrometers.
| (define tox 0.006)
(define Lgs 0.39)
(define Lgl 0.75)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.51)
(define Ld 0.51)
(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) "GaN" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Arsenic
29435803627558191104
)
(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
397981859308608028672
)
(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
134525479738390396928
)
(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
909025662654402265088
)
(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") |
557 | This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material SiGe with a length of 0.81 micrometers and it is doped with Boron at a concentration of 174805474464363151360 cm^-3. The short gate region is of the material Silicon with a length of 0.76 micrometers and it is doped with Boron at a concentration of 577903795321556697088 cm^-3. The long gate region is of the material Germanium with a length of 0.07 micrometers and it is doped with Arsenic at a concentration of 220646829358581776384 cm^-3. The drain region is of the material Silicon with a length of 0.81 micrometers and it is doped with Boron at a concentration of 45115604534803349504 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.008 micrometers.
| (define tox 0.003)
(define Lgs 0.76)
(define Lgl 0.07)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.81)
(define Ld 0.81)
(define Rl 0.008)
(define Rs 0.008)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "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
174805474464363151360
)
(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
577903795321556697088
)
(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
220646829358581776384
)
(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
45115604534803349504
)
(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") |
558 | 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.21 micrometers and it is doped with Phosphorus at a concentration of 250103555341449134080 cm^-3. The short gate region is of the material Germanium with a length of 0.4 micrometers and it is doped with Arsenic at a concentration of 995916972166472007680 cm^-3. The long gate region is of the material SiGe with a length of 0.5 micrometers and it is doped with Boron at a concentration of 358158220815820259328 cm^-3. The drain region is of the material GaN with a length of 0.21 micrometers and it is doped with Phosphorus at a concentration of 384116155338878746624 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.004 micrometers.
| (define tox 0.005)
(define Lgs 0.4)
(define Lgl 0.5)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.21)
(define Ld 0.21)
(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) "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"
Phosphorus
250103555341449134080
)
(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
995916972166472007680
)
(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
358158220815820259328
)
(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
384116155338878746624
)
(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") |
559 | This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.87 micrometers and it is doped with Arsenic at a concentration of 804355919947857526784 cm^-3. The short gate region is of the material Germanium with a length of 0.9 micrometers and it is doped with Arsenic at a concentration of 633505113670658031616 cm^-3. The long gate region is of the material Diamond with a length of 0.97 micrometers and it is doped with Boron at a concentration of 91664651932245688320 cm^-3. The drain region is of the material Germanium with a length of 0.87 micrometers and it is doped with Boron at a concentration of 579736754202750222336 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.002 micrometers.
| (define tox 0.003)
(define Lgs 0.9)
(define Lgl 0.97)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.87)
(define Ld 0.87)
(define Rl 0.002)
(define Rs 0.002)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "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) "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
804355919947857526784
)
(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
633505113670658031616
)
(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
91664651932245688320
)
(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
579736754202750222336
)
(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") |
560 | 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.07 micrometers and it is doped with Arsenic at a concentration of 961181356119531061248 cm^-3. The short gate region is of the material Diamond with a length of 0.73 micrometers and it is doped with Arsenic at a concentration of 461198009757483008000 cm^-3. The long gate region is of the material SiGe with a length of 0.47 micrometers and it is doped with Boron at a concentration of 21973877136212824064 cm^-3. The drain region is of the material SiGe with a length of 0.07 micrometers and it is doped with Arsenic at a concentration of 912664878884802396160 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.002 micrometers.
| (define tox 0.005)
(define Lgs 0.73)
(define Lgl 0.47)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.07)
(define Ld 0.07)
(define Rl 0.002)
(define Rs 0.002)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "SiGe" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "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
961181356119531061248
)
(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
461198009757483008000
)
(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
21973877136212824064
)
(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
912664878884802396160
)
(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") |
561 | 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.51 micrometers and it is doped with Phosphorus at a concentration of 936500041821357211648 cm^-3. The short gate region is of the material SiGe with a length of 0.51 micrometers and it is doped with Arsenic at a concentration of 411097537954532294656 cm^-3. The long gate region is of the material Silicon with a length of 0.49 micrometers and it is doped with Arsenic at a concentration of 706926808494651867136 cm^-3. The drain region is of the material GaN with a length of 0.51 micrometers and it is doped with Phosphorus at a concentration of 466863014308430348288 cm^-3. The gate oxide thickness is 0.009 micrometers. The nanowire thickness is 0.002 micrometers.
| (define tox 0.009)
(define Lgs 0.51)
(define Lgl 0.49)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.51)
(define Ld 0.51)
(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) "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
936500041821357211648
)
(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
411097537954532294656
)
(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
706926808494651867136
)
(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
466863014308430348288
)
(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") |
562 | This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.18 micrometers and it is doped with Boron at a concentration of 641472023461157928960 cm^-3. The short gate region is of the material Germanium with a length of 0.65 micrometers and it is doped with Phosphorus at a concentration of 629813130550695165952 cm^-3. The long gate region is of the material Diamond with a length of 0.55 micrometers and it is doped with Arsenic at a concentration of 298652140761859620864 cm^-3. The drain region is of the material Diamond with a length of 0.18 micrometers and it is doped with Phosphorus at a concentration of 797060804852401307648 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.004 micrometers.
| (define tox 0.005)
(define Lgs 0.65)
(define Lgl 0.55)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.18)
(define Ld 0.18)
(define Rl 0.004)
(define Rs 0.004)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "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"
Boron
641472023461157928960
)
(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
629813130550695165952
)
(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
298652140761859620864
)
(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
797060804852401307648
)
(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") |
563 | 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.88 micrometers and it is doped with Boron at a concentration of 32582745607657119744 cm^-3. The short gate region is of the material GaN with a length of 0.26 micrometers and it is doped with Arsenic at a concentration of 819626202490794934272 cm^-3. The long gate region is of the material Germanium with a length of 0.88 micrometers and it is doped with Arsenic at a concentration of 169272861794068594688 cm^-3. The drain region is of the material Germanium with a length of 0.88 micrometers and it is doped with Boron at a concentration of 240253330205629677568 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.008 micrometers.
| (define tox 0.003)
(define Lgs 0.26)
(define Lgl 0.88)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.88)
(define Ld 0.88)
(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) "GaN" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Germanium" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Boron
32582745607657119744
)
(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
819626202490794934272
)
(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
169272861794068594688
)
(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
240253330205629677568
)
(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") |
564 | 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.19 micrometers and it is doped with Arsenic at a concentration of 856063709029668356096 cm^-3. The short gate region is of the material GaN with a length of 0.63 micrometers and it is doped with Boron at a concentration of 516228253784446337024 cm^-3. The long gate region is of the material Silicon with a length of 0.76 micrometers and it is doped with Arsenic at a concentration of 821373908486653345792 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 786158200675772268544 cm^-3. The gate oxide thickness is 0.009 micrometers. The nanowire thickness is 0.002 micrometers.
| (define tox 0.009)
(define Lgs 0.63)
(define Lgl 0.76)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.19)
(define Ld 0.19)
(define Rl 0.002)
(define Rs 0.002)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Arsenic
856063709029668356096
)
(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
516228253784446337024
)
(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
821373908486653345792
)
(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
786158200675772268544
)
(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") |
565 | 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.92 micrometers and it is doped with Phosphorus at a concentration of 556605267348834091008 cm^-3. The short gate region is of the material SiGe with a length of 0.08 micrometers and it is doped with Arsenic at a concentration of 173986596202359914496 cm^-3. The long gate region is of the material SiGe with a length of 0.35 micrometers and it is doped with Boron at a concentration of 71128136111555633152 cm^-3. The drain region is of the material Silicon with a length of 0.92 micrometers and it is doped with Phosphorus at a concentration of 485414909303421140992 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.009 micrometers.
| (define tox 0.005)
(define Lgs 0.08)
(define Lgl 0.35)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.92)
(define Ld 0.92)
(define Rl 0.009)
(define Rs 0.009)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "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
556605267348834091008
)
(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
173986596202359914496
)
(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
71128136111555633152
)
(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
485414909303421140992
)
(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") |
566 | 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.34 micrometers and it is doped with Phosphorus at a concentration of 410420578071266852864 cm^-3. The short gate region is of the material SiGe with a length of 0.86 micrometers and it is doped with Boron at a concentration of 803163274711802183680 cm^-3. The long gate region is of the material Diamond with a length of 0.96 micrometers and it is doped with Phosphorus at a concentration of 998812497768921432064 cm^-3. The drain region is of the material GaN with a length of 0.34 micrometers and it is doped with Boron at a concentration of 897580779222505357312 cm^-3. The gate oxide thickness is 0.004 micrometers. The nanowire thickness is 0.009 micrometers.
| (define tox 0.004)
(define Lgs 0.86)
(define Lgl 0.96)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.34)
(define Ld 0.34)
(define Rl 0.009)
(define Rs 0.009)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "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
410420578071266852864
)
(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
803163274711802183680
)
(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
998812497768921432064
)
(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
897580779222505357312
)
(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") |
567 | This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Germanium with a length of 0.25 micrometers and it is doped with Arsenic at a concentration of 829587086301710254080 cm^-3. The short gate region is of the material Germanium with a length of 0.05 micrometers and it is doped with Arsenic at a concentration of 825101117916927098880 cm^-3. The long gate region is of the material GaN with a length of 0.02 micrometers and it is doped with Phosphorus at a concentration of 513965948613472813056 cm^-3. The drain region is of the material Germanium with a length of 0.25 micrometers and it is doped with Arsenic at a concentration of 837763811202366963712 cm^-3. The gate oxide thickness is 0.007 micrometers. The nanowire thickness is 0.008 micrometers.
| (define tox 0.007)
(define Lgs 0.05)
(define Lgl 0.02)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.25)
(define Ld 0.25)
(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) "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
829587086301710254080
)
(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
825101117916927098880
)
(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
513965948613472813056
)
(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
837763811202366963712
)
(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") |
568 | This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Germanium with a length of 0.77 micrometers and it is doped with Phosphorus at a concentration of 786620140470633234432 cm^-3. The short gate region is of the material Silicon with a length of 0.98 micrometers and it is doped with Arsenic at a concentration of 600775342156133826560 cm^-3. The long gate region is of the material Diamond with a length of 0.72 micrometers and it is doped with Boron at a concentration of 449558284947984089088 cm^-3. The drain region is of the material GaN with a length of 0.77 micrometers and it is doped with Phosphorus at a concentration of 811246248996659527680 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.003 micrometers.
| (define tox 0.003)
(define Lgs 0.98)
(define Lgl 0.72)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.77)
(define Ld 0.77)
(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) "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"
Phosphorus
786620140470633234432
)
(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
600775342156133826560
)
(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
449558284947984089088
)
(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
811246248996659527680
)
(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") |
569 | 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 Boron at a concentration of 70443513786415955968 cm^-3. The short gate region is of the material GaN with a length of 0.51 micrometers and it is doped with Phosphorus at a concentration of 731067834638836301824 cm^-3. The long gate region is of the material Silicon with a length of 0.23 micrometers and it is doped with Arsenic at a concentration of 370559392322857336832 cm^-3. The drain region is of the material GaN with a length of 0.44 micrometers and it is doped with Arsenic at a concentration of 334695925276468576256 cm^-3. The gate oxide thickness is 0.007 micrometers. The nanowire thickness is 0.009 micrometers.
| (define tox 0.007)
(define Lgs 0.51)
(define Lgl 0.23)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.44)
(define Ld 0.44)
(define Rl 0.009)
(define Rs 0.009)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "GaN" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Boron
70443513786415955968
)
(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
731067834638836301824
)
(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
370559392322857336832
)
(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
334695925276468576256
)
(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") |
570 | 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.6 micrometers and it is doped with Phosphorus at a concentration of 474195979678763843584 cm^-3. The short gate region is of the material GaN with a length of 0.65 micrometers and it is doped with Arsenic at a concentration of 591217986827952979968 cm^-3. The long gate region is of the material Diamond with a length of 0.8 micrometers and it is doped with Boron at a concentration of 538848854529899495424 cm^-3. The drain region is of the material GaN with a length of 0.6 micrometers and it is doped with Arsenic at a concentration of 556309017040249028608 cm^-3. The gate oxide thickness is 0.004 micrometers. The nanowire thickness is 0.005 micrometers.
| (define tox 0.004)
(define Lgs 0.65)
(define Lgl 0.8)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.6)
(define Ld 0.6)
(define Rl 0.005)
(define Rs 0.005)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "GaN" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Phosphorus
474195979678763843584
)
(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
591217986827952979968
)
(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
538848854529899495424
)
(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
556309017040249028608
)
(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") |
571 | 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.75 micrometers and it is doped with Arsenic at a concentration of 587909369392646848512 cm^-3. The short gate region is of the material GaN with a length of 0.55 micrometers and it is doped with Phosphorus at a concentration of 390732392810988961792 cm^-3. The long gate region is of the material SiGe with a length of 0.85 micrometers and it is doped with Phosphorus at a concentration of 728710274048984612864 cm^-3. The drain region is of the material Silicon with a length of 0.75 micrometers and it is doped with Arsenic at a concentration of 39617116747391172608 cm^-3. The gate oxide thickness is 0.007 micrometers. The nanowire thickness is 0.005 micrometers.
| (define tox 0.007)
(define Lgs 0.55)
(define Lgl 0.85)
(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) "Diamond" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "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
587909369392646848512
)
(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
390732392810988961792
)
(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
728710274048984612864
)
(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
39617116747391172608
)
(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") |
572 | 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.89 micrometers and it is doped with Phosphorus at a concentration of 787257615721113714688 cm^-3. The short gate region is of the material Germanium with a length of 0.3 micrometers and it is doped with Phosphorus at a concentration of 959248884727562502144 cm^-3. The long gate region is of the material Diamond with a length of 0.09 micrometers and it is doped with Boron at a concentration of 393609130834970673152 cm^-3. The drain region is of the material Diamond with a length of 0.89 micrometers and it is doped with Arsenic at a concentration of 604838226323398197248 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.006 micrometers.
| (define tox 0.002)
(define Lgs 0.3)
(define Lgl 0.09)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.89)
(define Ld 0.89)
(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) "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) "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"
Phosphorus
787257615721113714688
)
(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
959248884727562502144
)
(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
393609130834970673152
)
(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
604838226323398197248
)
(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") |
573 | 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 Arsenic at a concentration of 318201220150082011136 cm^-3. The short gate region is of the material GaN with a length of 0.64 micrometers and it is doped with Arsenic at a concentration of 227166637748652703744 cm^-3. The long gate region is of the material Diamond with a length of 0.08 micrometers and it is doped with Phosphorus at a concentration of 233329664640475201536 cm^-3. The drain region is of the material GaN with a length of 0.13 micrometers and it is doped with Arsenic at a concentration of 527444600035993845760 cm^-3. The gate oxide thickness is 0.009 micrometers. The nanowire thickness is 0.009 micrometers.
| (define tox 0.009)
(define Lgs 0.64)
(define Lgl 0.08)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.13)
(define Ld 0.13)
(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) "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
318201220150082011136
)
(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
227166637748652703744
)
(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
233329664640475201536
)
(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
527444600035993845760
)
(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") |
574 | 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.8 micrometers and it is doped with Arsenic at a concentration of 786002018910506188800 cm^-3. The short gate region is of the material Silicon with a length of 0.08 micrometers and it is doped with Boron at a concentration of 158889004333099417600 cm^-3. The long gate region is of the material GaN with a length of 0.58 micrometers and it is doped with Arsenic at a concentration of 662849941128783724544 cm^-3. The drain region is of the material GaN with a length of 0.8 micrometers and it is doped with Boron at a concentration of 560156506719717163008 cm^-3. The gate oxide thickness is 0.008 micrometers. The nanowire thickness is 0.005 micrometers.
| (define tox 0.008)
(define Lgs 0.08)
(define Lgl 0.58)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.8)
(define Ld 0.8)
(define Rl 0.005)
(define Rs 0.005)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Germanium" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "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"
Arsenic
786002018910506188800
)
(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
158889004333099417600
)
(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
662849941128783724544
)
(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
560156506719717163008
)
(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") |
575 | 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.74 micrometers and it is doped with Boron at a concentration of 695146903096337235968 cm^-3. The short gate region is of the material Silicon with a length of 0.49 micrometers and it is doped with Boron at a concentration of 732659837378914287616 cm^-3. The long gate region is of the material Silicon with a length of 0.39 micrometers and it is doped with Arsenic at a concentration of 675959911311507062784 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 386516173356631195648 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.009 micrometers.
| (define tox 0.002)
(define Lgs 0.49)
(define Lgl 0.39)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.74)
(define Ld 0.74)
(define Rl 0.009)
(define Rs 0.009)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Silicon" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "SiGe" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Boron
695146903096337235968
)
(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
732659837378914287616
)
(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
675959911311507062784
)
(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
386516173356631195648
)
(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") |
576 | This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material SiGe with a length of 0.81 micrometers and it is doped with Phosphorus at a concentration of 151140360269251084288 cm^-3. The short gate region is of the material Diamond with a length of 0.83 micrometers and it is doped with Arsenic at a concentration of 244962732874795253760 cm^-3. The long gate region is of the material Silicon with a length of 0.42 micrometers and it is doped with Phosphorus at a concentration of 985307360842559258624 cm^-3. The drain region is of the material Silicon with a length of 0.81 micrometers and it is doped with Arsenic at a concentration of 186283177793028161536 cm^-3. The gate oxide thickness is 0.007 micrometers. The nanowire thickness is 0.009 micrometers.
| (define tox 0.007)
(define Lgs 0.83)
(define Lgl 0.42)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.81)
(define Ld 0.81)
(define Rl 0.009)
(define Rs 0.009)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Silicon" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Phosphorus
151140360269251084288
)
(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
244962732874795253760
)
(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
985307360842559258624
)
(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
186283177793028161536
)
(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") |
577 | 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.16 micrometers and it is doped with Phosphorus at a concentration of 704722200892256157696 cm^-3. The short gate region is of the material SiGe with a length of 0.42 micrometers and it is doped with Boron at a concentration of 728067077935319744512 cm^-3. The long gate region is of the material Diamond with a length of 0.07 micrometers and it is doped with Phosphorus at a concentration of 23557775717441318912 cm^-3. The drain region is of the material SiGe with a length of 0.16 micrometers and it is doped with Phosphorus at a concentration of 699332460347507998720 cm^-3. The gate oxide thickness is 0.004 micrometers. The nanowire thickness is 0.007 micrometers.
| (define tox 0.004)
(define Lgs 0.42)
(define Lgl 0.07)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.16)
(define Ld 0.16)
(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) "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) "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
704722200892256157696
)
(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
728067077935319744512
)
(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
23557775717441318912
)
(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
699332460347507998720
)
(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") |
578 | This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.14 micrometers and it is doped with Arsenic at a concentration of 544688709137802592256 cm^-3. The short gate region is of the material GaN with a length of 0.27 micrometers and it is doped with Boron at a concentration of 653051708324601266176 cm^-3. The long gate region is of the material Silicon with a length of 0.38 micrometers and it is doped with Arsenic at a concentration of 454806437108946698240 cm^-3. The drain region is of the material Germanium with a length of 0.14 micrometers and it is doped with Boron at a concentration of 130490911790490353664 cm^-3. The gate oxide thickness is 0.003 micrometers. The nanowire thickness is 0.004 micrometers.
| (define tox 0.003)
(define Lgs 0.27)
(define Lgl 0.38)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.14)
(define Ld 0.14)
(define Rl 0.004)
(define Rs 0.004)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Germanium" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Arsenic
544688709137802592256
)
(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
653051708324601266176
)
(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
454806437108946698240
)
(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
130490911790490353664
)
(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") |
579 | 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.34 micrometers and it is doped with Arsenic at a concentration of 664685706070944514048 cm^-3. The short gate region is of the material Germanium with a length of 0.89 micrometers and it is doped with Boron at a concentration of 787295867445189541888 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 115801015351716462592 cm^-3. The drain region is of the material Diamond with a length of 0.34 micrometers and it is doped with Boron at a concentration of 558630966549181235200 cm^-3. The gate oxide thickness is 0.008 micrometers. The nanowire thickness is 0.007 micrometers.
| (define tox 0.008)
(define Lgs 0.89)
(define Lgl 0.52)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.34)
(define Ld 0.34)
(define Rl 0.007)
(define Rs 0.007)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Germanium" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "GaN" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Arsenic
664685706070944514048
)
(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
787295867445189541888
)
(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
115801015351716462592
)
(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
558630966549181235200
)
(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") |
580 | 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.45 micrometers and it is doped with Phosphorus at a concentration of 474871327176174206976 cm^-3. The short gate region is of the material Diamond with a length of 0.5 micrometers and it is doped with Arsenic at a concentration of 266429920355048095744 cm^-3. The long gate region is of the material SiGe with a length of 0.94 micrometers and it is doped with Arsenic at a concentration of 889866289041513906176 cm^-3. The drain region is of the material Diamond with a length of 0.45 micrometers and it is doped with Arsenic at a concentration of 59467306107572125696 cm^-3. The gate oxide thickness is 0.004 micrometers. The nanowire thickness is 0.01 micrometers.
| (define tox 0.004)
(define Lgs 0.5)
(define Lgl 0.94)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.45)
(define Ld 0.45)
(define Rl 0.01)
(define Rs 0.01)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "SiGe" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Phosphorus
474871327176174206976
)
(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
266429920355048095744
)
(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
889866289041513906176
)
(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
59467306107572125696
)
(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") |
581 | 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.39 micrometers and it is doped with Boron at a concentration of 962814468097939865600 cm^-3. The short gate region is of the material SiGe with a length of 0.89 micrometers and it is doped with Boron at a concentration of 591148287938317516800 cm^-3. The long gate region is of the material Germanium with a length of 0.97 micrometers and it is doped with Arsenic at a concentration of 384190262020493148160 cm^-3. The drain region is of the material Diamond with a length of 0.39 micrometers and it is doped with Arsenic at a concentration of 698295955204970381312 cm^-3. The gate oxide thickness is 0.006 micrometers. The nanowire thickness is 0.007 micrometers.
| (define tox 0.006)
(define Lgs 0.89)
(define Lgl 0.97)
(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) "GaN" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Boron
962814468097939865600
)
(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
591148287938317516800
)
(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
384190262020493148160
)
(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
698295955204970381312
)
(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") |
582 | 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.51 micrometers and it is doped with Boron at a concentration of 246484126884297998336 cm^-3. The short gate region is of the material SiGe with a length of 0.87 micrometers and it is doped with Phosphorus at a concentration of 377067064107584323584 cm^-3. The long gate region is of the material Germanium with a length of 0.26 micrometers and it is doped with Arsenic at a concentration of 526614683818965467136 cm^-3. The drain region is of the material GaN with a length of 0.51 micrometers and it is doped with Phosphorus at a concentration of 511275914370372599808 cm^-3. The gate oxide thickness is 0.007 micrometers. The nanowire thickness is 0.009 micrometers.
| (define tox 0.007)
(define Lgs 0.87)
(define Lgl 0.26)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.51)
(define Ld 0.51)
(define Rl 0.009)
(define Rs 0.009)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "GaN" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Boron
246484126884297998336
)
(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
377067064107584323584
)
(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
526614683818965467136
)
(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
511275914370372599808
)
(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") |
583 | 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.73 micrometers and it is doped with Boron at a concentration of 389152012300740722688 cm^-3. The short gate region is of the material Diamond with a length of 0.46 micrometers and it is doped with Arsenic at a concentration of 60901925688889720832 cm^-3. The long gate region is of the material Silicon with a length of 0.87 micrometers and it is doped with Boron at a concentration of 699465612103388364800 cm^-3. The drain region is of the material Germanium with a length of 0.73 micrometers and it is doped with Arsenic at a concentration of 510593579794720882688 cm^-3. The gate oxide thickness is 0.009 micrometers. The nanowire thickness is 0.009 micrometers.
| (define tox 0.009)
(define Lgs 0.46)
(define Lgl 0.87)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.73)
(define Ld 0.73)
(define Rl 0.009)
(define Rs 0.009)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Diamond" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "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
389152012300740722688
)
(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
60901925688889720832
)
(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
699465612103388364800
)
(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
510593579794720882688
)
(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") |
584 | This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.87 micrometers and it is doped with Arsenic at a concentration of 459534943864880496640 cm^-3. The short gate region is of the material Silicon with a length of 0.75 micrometers and it is doped with Boron at a concentration of 71331809192600829952 cm^-3. The long gate region is of the material Silicon with a length of 0.37 micrometers and it is doped with Boron at a concentration of 700841610861946994688 cm^-3. The drain region is of the material GaN with a length of 0.87 micrometers and it is doped with Boron at a concentration of 304921467349265022976 cm^-3. The gate oxide thickness is 0.001 micrometers. The nanowire thickness is 0.008 micrometers.
| (define tox 0.001)
(define Lgs 0.75)
(define Lgl 0.37)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.87)
(define Ld 0.87)
(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) "Silicon" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Silicon" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "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
459534943864880496640
)
(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
71331809192600829952
)
(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
700841610861946994688
)
(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
304921467349265022976
)
(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") |
585 | 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.88 micrometers and it is doped with Arsenic at a concentration of 540453636062336253952 cm^-3. The short gate region is of the material Diamond with a length of 0.66 micrometers and it is doped with Phosphorus at a concentration of 272084400687772860416 cm^-3. The long gate region is of the material GaN with a length of 0.41 micrometers and it is doped with Phosphorus at a concentration of 63839931733046738944 cm^-3. The drain region is of the material GaN with a length of 0.88 micrometers and it is doped with Boron at a concentration of 819423855503914958848 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.01 micrometers.
| (define tox 0.002)
(define Lgs 0.66)
(define Lgl 0.41)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.88)
(define Ld 0.88)
(define Rl 0.01)
(define Rs 0.01)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "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) "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"
Arsenic
540453636062336253952
)
(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
272084400687772860416
)
(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
63839931733046738944
)
(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
819423855503914958848
)
(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") |
586 | 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.31 micrometers and it is doped with Arsenic at a concentration of 743975292093509140480 cm^-3. The short gate region is of the material Germanium with a length of 0.88 micrometers and it is doped with Arsenic at a concentration of 209085499748972855296 cm^-3. The long gate region is of the material Germanium with a length of 0.36 micrometers and it is doped with Phosphorus at a concentration of 540682783503672147968 cm^-3. The drain region is of the material Germanium with a length of 0.31 micrometers and it is doped with Boron at a concentration of 899275182232665980928 cm^-3. The gate oxide thickness is 0.007 micrometers. The nanowire thickness is 0.007 micrometers.
| (define tox 0.007)
(define Lgs 0.88)
(define Lgl 0.36)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.31)
(define Ld 0.31)
(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) "GaN" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Germanium" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Germanium" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Germanium" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Arsenic
743975292093509140480
)
(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
209085499748972855296
)
(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
540682783503672147968
)
(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
899275182232665980928
)
(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") |
587 | 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.84 micrometers and it is doped with Arsenic at a concentration of 762615231288984600576 cm^-3. The short gate region is of the material Diamond with a length of 0.94 micrometers and it is doped with Arsenic at a concentration of 33607752621823238144 cm^-3. The long gate region is of the material GaN with a length of 0.17 micrometers and it is doped with Boron at a concentration of 457231646147612377088 cm^-3. The drain region is of the material Silicon with a length of 0.84 micrometers and it is doped with Phosphorus at a concentration of 941999368029028089856 cm^-3. The gate oxide thickness is 0.008 micrometers. The nanowire thickness is 0.001 micrometers.
| (define tox 0.008)
(define Lgs 0.94)
(define Lgl 0.17)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.84)
(define Ld 0.84)
(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) "SiGe" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "GaN" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "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
762615231288984600576
)
(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
33607752621823238144
)
(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
457231646147612377088
)
(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
941999368029028089856
)
(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") |
588 | 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.79 micrometers and it is doped with Boron at a concentration of 478627417119531204608 cm^-3. The short gate region is of the material Silicon with a length of 0.11 micrometers and it is doped with Phosphorus at a concentration of 802501908496623599616 cm^-3. The long gate region is of the material Diamond with a length of 0.95 micrometers and it is doped with Boron at a concentration of 541920003255257923584 cm^-3. The drain region is of the material Diamond with a length of 0.79 micrometers and it is doped with Phosphorus at a concentration of 234084172011850366976 cm^-3. The gate oxide thickness is 0.001 micrometers. The nanowire thickness is 0.005 micrometers.
| (define tox 0.001)
(define Lgs 0.11)
(define Lgl 0.95)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.79)
(define Ld 0.79)
(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) "Silicon" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "Diamond" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Boron
478627417119531204608
)
(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
802501908496623599616
)
(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
541920003255257923584
)
(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
234084172011850366976
)
(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") |
589 | 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 Phosphorus at a concentration of 875140271329005273088 cm^-3. The short gate region is of the material Germanium with a length of 0.77 micrometers and it is doped with Phosphorus at a concentration of 772454175821716389888 cm^-3. The long gate region is of the material SiGe with a length of 0.27 micrometers and it is doped with Boron at a concentration of 195557033325928513536 cm^-3. The drain region is of the material GaN with a length of 0.52 micrometers and it is doped with Phosphorus at a concentration of 587585132778352410624 cm^-3. The gate oxide thickness is 0.009 micrometers. The nanowire thickness is 0.006 micrometers.
| (define tox 0.009)
(define Lgs 0.77)
(define Lgl 0.27)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.52)
(define Ld 0.52)
(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) "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) "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
875140271329005273088
)
(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
772454175821716389888
)
(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
195557033325928513536
)
(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
587585132778352410624
)
(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") |
590 | This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.12 micrometers and it is doped with Phosphorus at a concentration of 516416879062695280640 cm^-3. The short gate region is of the material Diamond with a length of 0.59 micrometers and it is doped with Phosphorus at a concentration of 773954173586830131200 cm^-3. The long gate region is of the material SiGe with a length of 0.81 micrometers and it is doped with Arsenic at a concentration of 334200339294439997440 cm^-3. The drain region is of the material Germanium with a length of 0.12 micrometers and it is doped with Arsenic at a concentration of 168383977948803858432 cm^-3. The gate oxide thickness is 0.009 micrometers. The nanowire thickness is 0.008 micrometers.
| (define tox 0.009)
(define Lgs 0.59)
(define Lgl 0.81)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.12)
(define Ld 0.12)
(define Rl 0.008)
(define Rs 0.008)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "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
516416879062695280640
)
(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
773954173586830131200
)
(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
334200339294439997440
)
(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
168383977948803858432
)
(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") |
591 | 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 Boron at a concentration of 179828352255428132864 cm^-3. The short gate region is of the material SiGe with a length of 0.69 micrometers and it is doped with Phosphorus at a concentration of 598412736731709964288 cm^-3. The long gate region is of the material Silicon with a length of 0.18 micrometers and it is doped with Arsenic at a concentration of 876170593023365611520 cm^-3. The drain region is of the material Germanium with a length of 0.19 micrometers and it is doped with Arsenic at a concentration of 525695754018984689664 cm^-3. The gate oxide thickness is 0.002 micrometers. The nanowire thickness is 0.008 micrometers.
| (define tox 0.002)
(define Lgs 0.69)
(define Lgl 0.18)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.19)
(define Ld 0.19)
(define Rl 0.008)
(define Rs 0.008)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "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
179828352255428132864
)
(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
598412736731709964288
)
(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
876170593023365611520
)
(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
525695754018984689664
)
(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") |
592 | This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Germanium with a length of 0.16 micrometers and it is doped with Phosphorus at a concentration of 110992324588896288768 cm^-3. The short gate region is of the material Germanium with a length of 0.75 micrometers and it is doped with Arsenic at a concentration of 691119960836895145984 cm^-3. The long gate region is of the material Silicon with a length of 0.07 micrometers and it is doped with Phosphorus at a concentration of 742746813212250865664 cm^-3. The drain region is of the material Silicon with a length of 0.16 micrometers and it is doped with Boron at a concentration of 851561186143427362816 cm^-3. The gate oxide thickness is 0.001 micrometers. The nanowire thickness is 0.008 micrometers.
| (define tox 0.001)
(define Lgs 0.75)
(define Lgl 0.07)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.16)
(define Ld 0.16)
(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) "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"
Phosphorus
110992324588896288768
)
(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
691119960836895145984
)
(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
742746813212250865664
)
(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
851561186143427362816
)
(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") |
593 | 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.58 micrometers and it is doped with Boron at a concentration of 863546264355487350784 cm^-3. The short gate region is of the material Germanium with a length of 0.5 micrometers and it is doped with Phosphorus at a concentration of 317380297570521055232 cm^-3. The long gate region is of the material Silicon with a length of 0.81 micrometers and it is doped with Phosphorus at a concentration of 618450530463006720000 cm^-3. The drain region is of the material Silicon with a length of 0.58 micrometers and it is doped with Arsenic at a concentration of 439250902408592359424 cm^-3. The gate oxide thickness is 0.007 micrometers. The nanowire thickness is 0.003 micrometers.
| (define tox 0.007)
(define Lgs 0.5)
(define Lgl 0.81)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.58)
(define Ld 0.58)
(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) "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
863546264355487350784
)
(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
317380297570521055232
)
(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
618450530463006720000
)
(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
439250902408592359424
)
(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") |
594 | 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.32 micrometers and it is doped with Boron at a concentration of 333406471876984045568 cm^-3. The short gate region is of the material Germanium with a length of 0.42 micrometers and it is doped with Boron at a concentration of 374598275488421249024 cm^-3. The long gate region is of the material GaN with a length of 0.82 micrometers and it is doped with Arsenic at a concentration of 23855183115435499520 cm^-3. The drain region is of the material Diamond with a length of 0.32 micrometers and it is doped with Boron at a concentration of 608121909824239435776 cm^-3. The gate oxide thickness is 0.007 micrometers. The nanowire thickness is 0.002 micrometers.
| (define tox 0.007)
(define Lgs 0.42)
(define Lgl 0.82)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.32)
(define Ld 0.32)
(define Rl 0.002)
(define Rs 0.002)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "SiGe" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Germanium" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "GaN" "R.Long_Gate")
(sdegeo:create-rectangle (position XGatel Ymin 0) (position Xmax Ymax 0) "Diamond" "R.Drain")
; Old replaces New
(sdegeo:set-default-boolean "BAB")
(sdegeo:create-rectangle (position Xmin Ymin 0) (position Xmax (+ Ymax tox) 0) "Oxide" "R.Oxide")
(define gatedummy (sdegeo:create-rectangle (position XSource Ymin 0) (position XGatel (+ Ymax tox tg) 0) "PolySilicon" "R.Gate"))
; Old replaces New
(sdegeo:set-default-boolean "BAB")
;(define dummy (sdegeo:create-rectangle (position XSource (+ Rs tox tg) 0) (position XGatel (+ Ymax tox tox tg) 0) "Metal" "R.Dummy"))
(sdegeo:define-contact-set "gate" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "gate")
(sdegeo:set-contact-boundary-edges gatedummy "gate")
(sdegeo:delete-region gatedummy)
(sdegeo:define-contact-set "source" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "source")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmin (/ Ymax 2) 0)))) "source")
(sdegeo:define-contact-set "drain" 4 (color:rgb 1 0 0 ) "##")
(sdegeo:set-current-contact-set "drain")
(sdegeo:set-contact-edges (list (car (find-edge-id (position Xmax (/ Ymax 2) 0)))) "drain")
; Constant doping profile in a given material
(define NAME "Body")
; - Common dopants:
; "PhosphorusActiveConcentration" | "ArsenicActiveConcentration"
; | "BoronActiveConcentration"
(define Boron "BoronActiveConcentration")
(define Phosphorus "PhosphorusActiveConcentration")
(define Arsenic "ArsenicActiveConcentration")
;-------------------------------------------------------------------------------
; Doping in Source
(sdedr:define-constant-profile
"Const.Source"
Boron
333406471876984045568
)
(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
374598275488421249024
)
(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
23855183115435499520
)
(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
608121909824239435776
)
(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") |
595 | 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.94 micrometers and it is doped with Boron at a concentration of 63518497078914473984 cm^-3. The short gate region is of the material SiGe with a length of 0.52 micrometers and it is doped with Arsenic at a concentration of 153760154241767309312 cm^-3. The long gate region is of the material SiGe with a length of 0.82 micrometers and it is doped with Arsenic at a concentration of 980433698941498294272 cm^-3. The drain region is of the material Silicon with a length of 0.94 micrometers and it is doped with Boron at a concentration of 910992566049604501504 cm^-3. The gate oxide thickness is 0.009 micrometers. The nanowire thickness is 0.009 micrometers.
| (define tox 0.009)
(define Lgs 0.52)
(define Lgl 0.82)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.94)
(define Ld 0.94)
(define Rl 0.009)
(define Rs 0.009)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "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
63518497078914473984
)
(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
153760154241767309312
)
(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
980433698941498294272
)
(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
910992566049604501504
)
(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") |
596 | 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.05 micrometers and it is doped with Phosphorus at a concentration of 971315259849252012032 cm^-3. The short gate region is of the material GaN with a length of 0.58 micrometers and it is doped with Arsenic at a concentration of 389367486091846615040 cm^-3. The long gate region is of the material SiGe with a length of 0.41 micrometers and it is doped with Arsenic at a concentration of 109491297765626626048 cm^-3. The drain region is of the material GaN with a length of 0.05 micrometers and it is doped with Boron at a concentration of 525207291839220154368 cm^-3. The gate oxide thickness is 0.004 micrometers. The nanowire thickness is 0.002 micrometers.
| (define tox 0.004)
(define Lgs 0.58)
(define Lgl 0.41)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.05)
(define Ld 0.05)
(define Rl 0.002)
(define Rs 0.002)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "GaN" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "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"
Phosphorus
971315259849252012032
)
(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
389367486091846615040
)
(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
109491297765626626048
)
(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
525207291839220154368
)
(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") |
597 | This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material Silicon with a length of 0.21 micrometers and it is doped with Boron at a concentration of 494439695447115169792 cm^-3. The short gate region is of the material Diamond with a length of 0.74 micrometers and it is doped with Boron at a concentration of 445175830101718073344 cm^-3. The long gate region is of the material Silicon with a length of 0.76 micrometers and it is doped with Phosphorus at a concentration of 128014801711270150144 cm^-3. The drain region is of the material GaN with a length of 0.21 micrometers and it is doped with Boron at a concentration of 365746502477381894144 cm^-3. The gate oxide thickness is 0.008 micrometers. The nanowire thickness is 0.004 micrometers.
| (define tox 0.008)
(define Lgs 0.74)
(define Lgl 0.76)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.21)
(define Ld 0.21)
(define Rl 0.004)
(define Rs 0.004)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "Silicon" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "Diamond" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "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"
Boron
494439695447115169792
)
(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
445175830101718073344
)
(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
128014801711270150144
)
(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
365746502477381894144
)
(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") |
598 | This structure is a nanowire transistor. There are 5 main regions: the source, short gate, long gate, drain, and oxide. There are also 3 contacts: source, drain, and gate. The gate contact covers the short gate and long gate length. The source region is of the material GaN with a length of 0.14 micrometers and it is doped with Arsenic at a concentration of 543175461537346748416 cm^-3. The short gate region is of the material SiGe with a length of 0.53 micrometers and it is doped with Arsenic at a concentration of 559172547368653291520 cm^-3. The long gate region is of the material Diamond with a length of 0.19 micrometers and it is doped with Arsenic at a concentration of 789316821705097084928 cm^-3. The drain region is of the material SiGe with a length of 0.14 micrometers and it is doped with Phosphorus at a concentration of 325208728330388766720 cm^-3. The gate oxide thickness is 0.009 micrometers. The nanowire thickness is 0.008 micrometers.
| (define tox 0.009)
(define Lgs 0.53)
(define Lgl 0.19)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.14)
(define Ld 0.14)
(define Rl 0.008)
(define Rs 0.008)
(define Xmin 0)
(define Xmax (+ Ls Ltotal Ld))
(define tg 0.01)
(define Ymin 0)
(define Ymax Rl)
(define XSource (+ Xmin Ls))
(define XGates (+ XSource Lgs))
(define XGatel (+ XGates Lgl))
(sdegeo:create-rectangle (position Xmin Ymin 0) (position XSource Ymax 0) "GaN" "R.Source")
(sdegeo:create-rectangle (position XSource Ymin 0) (position XGates Rs 0) "SiGe" "R.Short_Gate")
(sdegeo:create-rectangle (position XGates Ymin 0) (position XGatel Ymax 0) "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
543175461537346748416
)
(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
559172547368653291520
)
(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
789316821705097084928
)
(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
325208728330388766720
)
(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") |
599 | 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.22 micrometers and it is doped with Arsenic at a concentration of 32415412485486161920 cm^-3. The short gate region is of the material Diamond with a length of 0.92 micrometers and it is doped with Boron at a concentration of 105597814860754206720 cm^-3. The long gate region is of the material Silicon with a length of 0.95 micrometers and it is doped with Boron at a concentration of 549736857366880976896 cm^-3. The drain region is of the material Silicon with a length of 0.22 micrometers and it is doped with Arsenic at a concentration of 647913516248383881216 cm^-3. The gate oxide thickness is 0.005 micrometers. The nanowire thickness is 0.003 micrometers.
| (define tox 0.005)
(define Lgs 0.92)
(define Lgl 0.95)
(define Ltotal (+ Lgs Lgl))
(define Ls 0.22)
(define Ld 0.22)
(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) "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
32415412485486161920
)
(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
105597814860754206720
)
(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
549736857366880976896
)
(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
647913516248383881216
)
(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") |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.