2007-06-05 Stefan Jahn <stefan@lkcc.org>

* contrib/Makefile.am (dist_man_MANS): Added 'ps2ps.pl' perl
        script (preprocessor) as well as an appropriate manpage.  Thanks
        to Friedrich Schmidt.


git-svn-id: https://qucs.svn.sourceforge.net/svnroot/qucs/trunk@1279 b5b04e8c-4942-46c9-ab4f-83783d557d1c
This commit is contained in:
ela 2007-06-05 18:03:50 +00:00
parent d70965c90e
commit 36ce91d011
7 changed files with 4148 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2007-06-05 Stefan Jahn <stefan@lkcc.org>
* contrib/Makefile.am (dist_man_MANS): Added 'ps2ps.pl' perl
script (preprocessor) as well as an appropriate manpage. Thanks
to Friedrich Schmidt.
2007-03-29 Stefan Jahn <stefan@lkcc.org>
* qucs-edit/qucsedit.cpp (QucsEdit): Try using mono-spaced font

View File

@ -23,7 +23,7 @@
#
SUBDIRS = qucs qucs-edit qucs-help qucs-transcalc qucs-filter qucs-lib \
qucs-attenuator $(RELEASEDIRS)
qucs-attenuator contrib $(RELEASEDIRS)
EXTRA_DIST = autogen.sh depcomp PLATFORMS RELEASE

View File

@ -275,6 +275,7 @@ AH_TOP([
dnl Add here all your Makefiles. These are created by configure.
AC_CONFIG_FILES([Makefile
contrib/Makefile
qucs-edit/Makefile
qucs-help/Makefile
qucs-help/docs/Makefile

30
contrib/Makefile.am Normal file
View File

@ -0,0 +1,30 @@
## Process this file with automake to produce Makefile.in
#
# qucs/contrib/Makefile.am
#
# Automake input file.
#
# Copyright (C) 2007 Stefan Jahn <stefan@lkcc.org>
#
# This 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 2, or (at your option)
# any later version.
#
# This software 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 package; see the file COPYING. If not, write to
# the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
# Boston, MA 02110-1301, USA.
#
dist_bin_SCRIPTS = ps2sp.pl
dist_man_MANS = ps2sp.1
CLEANFILES = *~ *.rej *.orig
MAINTAINERCLEANFILES = Makefile.in

88
contrib/ps2sp.1 Normal file
View File

@ -0,0 +1,88 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.36.
.TH PS2SP "1" "June 2007" "ps2sp version 4.14" "User Commands"
.SH NAME
ps2sp \- manual page for ps2sp version 4.14
.SH SYNOPSIS
.B perl
\fIps2sp.pl \fR[\fIOPTION\fR] \fIinfile > outfile\fR
.SH DESCRIPTION
.TP
This utility is a SPICE netlist preprocessor.
.TP
It converts netlists in PSPICE syntax to an equivalent SPICE3/XSPICE netlist syntax.
.TP
Recognized are nearly all PSPICE features like:
.IP "*" 4
local and global parameter (expression) definition (.PARAM)
.IP "*" 4
parameter (expression) passing to subcircuits (PARAMS:)
.IP "*" 4
local and global function definition (.FUNC)
.IP "*" 4
E and G-device VALUE=f(V,I), TABLE and POLY lines
.IP "*" 4
E and G-device functions like IDT(), DDT(), LIMIT(), PWRS(), PWR(), IF(),
MAX(), MIN(), relational ops, ...
.IP "*" 4
R-device VALUE=f(V,I), L-device FLUX=f(V,I) and C-device Q=f(V,I)
.IP "*" 4
spice2 like C and L-device POLY expressions
.IP "*" 4
pspice VSWITCH and ISWITCH models
.IP "*" 4
pspice .PROBE lines (also with expressions)
.IP "*" 4
R-device lines with temperature coefficients like TC=tc1,tc2
.IP "*" 4
pspice .STEP PARAM lines (not yet tested on GNU/Linux)
.IP "*" 4
pspice .LIB and .INC(lude) lines (not yet tested on GNU/Linux)
.SH OPTIONS
\fB\-h\fR, \fB\-\-help\fR
displays the help screen
.TP
\fB\-v\fR, \fB\-\-version\fR
display version information and exit
.TP
\fB\-sp3\fR
switch means conversion of pspice table to spice 3 b\-source
instead of xspice core model (default)
.TP
\fB\-ltspice\fR
switch means conversion of ^ spice 3 power to ** ltspice
power and addition of tripdv=1 tripdt=1 in b\-lines
.TP
\fB\-debug\fR
for debugging all .param .func and .pfunc definitions
(default is nodebug)
.TP
\fB\-tosub\fR
only output subckt expansions
.TP
\fB\-fromsub\fR
inputfile is a sub.tmp file
.TP
\fB\-tolib\fR
only output lib expansions
.TP
\fB\-fromlib\fR
inputfile is a lib.tmp file
.TP
\fB\-check\fR
determine the same count of open and closed paranthesis
in b\-lines (default is nocheck)
.TP
\fB\-notinylines\fR
produces longer b\-lines for some functions (default is
tinylines = shorter b\-lines)
.TP
\fB\-xornot\fR
allows ^ and ~ operators in the netfile (don't mix with ^ as
power operator) use the ** operator as power instead
.SH "REPORTING BUGS"
Report bugs to Friedrich Schmidt <frie.schmidt@aon.at>
.SH COPYRIGHT
Copyright \(co 2003, 2004, 2005, 2006, 2007 Friedrich Schmidt <frie.schmidt@aon.at>
.PP
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

4020
contrib/ps2sp.pl Executable file

File diff suppressed because it is too large Load Diff

View File

@ -78,13 +78,13 @@
#define PACKAGE_NAME "qucs"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "qucs 0.0.11"
#define PACKAGE_STRING "qucs 0.0.12"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "qucs"
/* Define to the version of this package. */
#define PACKAGE_VERSION "0.0.11"
#define PACKAGE_VERSION "0.0.12"
/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1