Electronic – How to model a Schottky diode based on datasheet

datasheetdiodesmodelingschottky

I have a question about how to model a non-linear a Schottky diode based on available datasheet in ADS. Should I just assign Rs and Cj values from datasheet?

http://datasheet.octopart.com/DMK2790-G4D-Skyworks-Solutions-datasheet-23706700.pdf

enter image description here

The diode will be used as a switch. Could anyone help? Thanks

Best Answer

The spice model is in the datasheet:

enter image description here

It's a little confusing because they tell you to use these parameters:

enter image description here

R1 and LS, Csh are values for the circuit model, the rest are for the diode model.

You make a diode model like this:

General form: d[name] [anode] [cathode] [modelname]
.model ([modelname] d [parmtr1=x] [parmtr2=y] . . .)

Example: d1 1 2 mod1
.model mod1 d

Example2: D2 1 2 Da1N4004

.model Da1N4004 D (IS=18.8n RS=0 BV=400 IBV=5.00u CJO=30 M=0.333 N=2)

Source: Diode Spice Models - All about circuits.

Draw the circuit up and plug in the other parameters for the diode model.

Here is another way to model a schottky diode if the above model does not sufficiently model all of the dynamics, you would need to take measurements of a real device and fit them to the model:

enter image description here

Source: A novel physical parameter extraction approach for Schottky diodes

Edit: ADS does use spice models and the model format looks the same. You can also import models from spice into ADS.