blob: dfefba20fc688af3b65eb0333e2efe6ae0da7263 [file] [log] [blame]
***************************
** nmos_3p3_t_id
***************************
* Copyright 2022 Efabless Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
** library calling
.include "../../../design.ngspice"
.lib "../../../sm141064.ngspice" typical
** Circuit Description **
* power supply
vds D_tn 0 dc=3.3
vgs G_tn 0 dc=3.3
.temp {{temp}}
.options tnom={{temp}}
* circuit
xmn1 D_tn G_tn 0 0 nmos_3p3_sab W = {{width}}u L = {{length}}u
.control
set filetype=ascii
let vds_min = 0
let vds_step = 0.05
let vds_max = 3.3
compose vgs_vector start=0.8 stop=3.3 step=0.5
set appendwrite
foreach t {{temp}}
let vgs_counter = 0
while vgs_counter < length(vgs_vector)
option TEMP=$t
alter vgs = vgs_vector[vgs_counter]
save all @m.xmn1.m0[gds]
*******************
** simulation part
*******************
DC vds $&vds_min $&vds_max $&vds_step
* ** parameters calculation
let Rds = 1/@m.xmn1.m0[gds]
print Rds
wrdata nmos_3p3_sab_iv/simulated_Rds/{{i}}_simulated_W{{width}}_L{{length}}.csv Rds
reset
let vgs_counter = vgs_counter + 1
end
end
.endc
.end