-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy paths__out.cc
154 lines (149 loc) · 4.9 KB
/
s__out.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/*$Id: s__out.cc 2016/09/22 $ -*- C++ -*-
* Copyright (C) 2001 Albert Davis
* Author: Albert Davis <[email protected]>
*
* This file is part of "Gnucap", the Gnu Circuit Analysis Package
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*------------------------------------------------------------------
* tr,dc analysis output functions (and some ac)
*/
//testing=obsolete,script 2005.09.17
#include "u_sim_data.h"
#include "u_status.h"
#include "m_wave.h"
#include "u_prblst.h"
#include "declare.h" /* plottr, plopen */
#include "s__.h"
/*--------------------------------------------------------------------------*/
/* SIM::____list: access probe lists
*/
const PROBELIST& SIM::alarmlist()const
{ untested();
return _probe_lists->alarm[_sim->_mode];
}
const PROBELIST& SIM::plotlist()const
{ untested();
return _probe_lists->plot[_sim->_mode];
}
const PROBELIST& SIM::printlist()const
{ untested();
return _probe_lists->print[_sim->_mode];
}
const PROBELIST& SIM::storelist()const
{ untested();
return _probe_lists->store[_sim->_mode];
}
/*--------------------------------------------------------------------------*/
/* SIM::out: output the data, "keep" for ac reference
* x = the x coordinate
* print = selected points, "print" to screen, files, etc.
* store = all points, for internal postprocessing, measure
* keep = after the command is done, dcop for ac
*/
void SIM::outdata(double x, int outflags)
{ untested();
::status.output.start();
if (outflags & ofKEEP) { untested();
_sim->keep_voltages();
}else{ untested();
}
if (outflags & ofPRINT) { untested();
plottr(x, plotlist());
print_results(x);
_sim->reset_iteration_counter(iPRINTSTEP);
::status.hidden_steps = 0;
}else{ untested();
++::status.hidden_steps;
}
if (outflags & ofSTORE) { untested();
alarm();
store_results(x);
}else{ untested();
}
::status.output.stop();
}
/*--------------------------------------------------------------------------*/
/* SIM::head: print column headings and draw plot borders
*/
void SIM::head(double start, double stop, const std::string& col1)
{ untested();
if (_sim->_waves) { untested();
delete [] _sim->_waves;
}else{ untested();
}
_sim->_waves = new WAVE [storelist().size()];
if (!plopen(start, stop, plotlist())) { untested();
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
int width = std::min(OPT::numdgt+5, BIGBUFLEN-10);
char format[20];
//sprintf(format, "%%c%%-%u.%us", width, width);
sprintf(format, "%%c%%-%us", width);
_out.form(format, '#', col1.c_str());
for (PROBELIST::const_iterator
p=printlist().begin(); p!=printlist().end(); ++p) { untested();
_out.form(format, ' ', p->label().c_str());
}
_out << '\n';
}else{ untested();
}
}
/*--------------------------------------------------------------------------*/
/* SIM::print_results: print the list of results (text form) to _out
* The argument is the first column (independent variable, aka "x")
*/
void SIM::print_results(double x)
{ untested();
if (!IO::plotout.any()) { untested();
_out.setfloatwidth(OPT::numdgt, OPT::numdgt+6);
assert(x != NOT_VALID);
_out << x;
for (PROBELIST::const_iterator
p=printlist().begin(); p!=printlist().end(); ++p) { untested();
_out << p->value();
}
_out << '\n';
}else{ untested();
}
}
/*--------------------------------------------------------------------------*/
/* SIM::alarm: print a message when a probe is out of range
*/
void SIM::alarm(void)
{ untested();
_out.setfloatwidth(OPT::numdgt, OPT::numdgt+6);
for (PROBELIST::const_iterator
p=alarmlist().begin(); p!=alarmlist().end(); ++p) { untested();
if (!p->in_range()) { untested();
_out << p->label() << '=' << p->value() << '\n';
}else{ untested();
}
}
}
/*--------------------------------------------------------------------------*/
/* SIM::store: store data in preparation for post processing
*/
void SIM::store_results(double x)
{ untested();
int ii = 0;
for (PROBELIST::const_iterator
p=storelist().begin(); p!=storelist().end(); ++p) { untested();
_sim->_waves[ii++].push(x, p->value());
}
}
/*--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------*/
// vim:ts=8:sw=2:noet: