Could someone help me with how I could display the...
# xschem
s
Could someone help me with how I could display the temperature information? I am trying to run a simulation where I pick a random value for "temp" and "VDD". However when i try to display or write the temperature value, ngspice states that there is no vector available. Below i stated my code that i use, where i use the param VDD for my voltage source and that seems to work perfectly. Does some know I can display or write the information of my temperature gaussian?
Copy code
.param VDDGAUSS = agauss(1.8, 0.05, 1)
.param VDD = 'VDDGAUSS'
.param TEMPGAUSS = agauss(40, 30, 1)
.option temp = 'TEMPGAUSS'

.control
set wr_vecnames
set wr_singlescale
  option seed=9
  let run=0

  dowhile run <= 10000
    save all
    op

if run eq 0
 set appendwrite
 set wr_vecnames = FALSE
end
    wrdata ~/test.txt "TEMPGAUSS" v(VDD) i(vmeasout) voutput
    remzerovec
    reset
    let run = run + 1
  end
.endc