add examples for OSDI noise

This commit is contained in:
Pascal Kuthe 2023-10-25 21:25:21 +02:00 committed by Holger Vogt
parent f66e0bf2ac
commit 826cddb483
2 changed files with 63 additions and 0 deletions

View File

@ -0,0 +1,44 @@
* noise of a resistive divider
* noise of a resistive divider, lower resistor noiseless
* noise of a resistive divider with filter
* 'set behavior = lta' is required
.model res1 resistorva has_noise=1 R=10K
.model noiseless resistorva has_noise=0 R=10K
V1 1 0 dc 0 ac 1
n1 1 2 res1
R2 2 0
V11 11 0 dc 0 ac 1
n11 11 12 res1
n12 12 0 noiseless
V21 21 0 dc 0 ac 1
n21 21 22 res1
n22 22 0 res1
C22 22 0 1u
.control
pre_osdi resistor.osdi
noise v(2) V1 dec 10 1 100k 1
echo **resistive divider**
print onoise_total inoise_total
setplot noise1
print onoise_spectrum[0] inoise_spectrum[0]
noise v(12) V11 dec 10 1 100k
echo **resistive divider, lower resistor noiseless**
print onoise_total inoise_total
setplot noise3
print onoise_spectrum[0] inoise_spectrum[0]
noise v(22) V21 dec 10 1 100k
echo **resistive divider with filter**
print onoise_total inoise_total
setplot noise5
print onoise_spectrum[0] inoise_spectrum[0]
set xbrushwidth=2
plot onoise_spectrum inoise_spectrum xlimit 1 1e5
.endc
.end

View File

@ -0,0 +1,19 @@
`include "discipline.h"
`define P_KB 1.38064852e-23 // copied from const.h to exactly jmatch builtin
`define MPRoz(nam,def,uni, des) (*units=uni, desc=des*) parameter real nam=def from(0.0:inf);
module resistorva(p,n);
electrical p,n;
inout p,n;
`MPRoz(R, 1.0, "Ohm", "Resistance")
parameter integer has_noise=1;
analog
begin
I(p,n) <+ V(p,n)/R;
if (has_noise)
I(p,n) <+ white_noise(4*`P_KB*$temperature/R, "thermal");
end
endmodule