2024-03-21 16:42:40 +03:00
2023-06-19 15:32:28 +03:00
2017-10-21 15:03:09 +03:00
2024-02-09 09:59:51 +03:00
2024-03-06 10:21:32 +03:00
2024-03-06 10:21:32 +03:00
2024-03-06 10:21:32 +03:00
2024-03-06 10:21:32 +03:00
2024-03-06 10:21:32 +03:00
2024-03-20 17:58:43 +03:00
2024-02-19 18:02:46 +01:00
2024-03-19 09:11:33 +03:00
2012-08-08 14:28:03 +02:00
2024-03-19 10:13:44 +03:00
2023-06-19 16:00:56 +03:00
2024-01-16 20:02:21 +03:00
2022-06-30 21:34:40 +03:00
2024-02-15 19:58:00 +03:00
2013-06-16 15:00:32 +02:00
2024-03-19 16:06:53 +03:00
2009-03-12 19:36:13 +00:00
2024-02-18 20:33:49 +03:00

Qucs-S: Quite universal circuit simulator with SPICE

Boosty Telegram Website Packaging status

About Qucs-S

Qucs-S provides a fancy graphical user interface for a number of popular circuit simulation engines. Qucs-S contains instruments for schematic capture, visualization and provides differents passive and active components including device library. The following simulation kernels are supported:

  • Ngspice (recommended)
  • Xyce
  • SpiceOpus
  • Qucsator (non-spice)

See the https://ra3xdh.github.io/ for more details. Qucs-S is based on original Qucs code: https://github.com/Qucs/qucs

Donation

Qucs-S accepts donation using Boosty platform: https://boosty.to/qucs_s

Build instructions

Use CMake to build Qucs-S. Install all necessary dependencies: GCC, Qt, Flex, Bison and SPICE (optional). Install ngspice that is not needed for build, but serves as the simulation kernel.

Dependencies

Ubuntu

sudo apt-get install ngspice build-essential git cmake qtbase5-dev qttools5-dev libqt5svg5-dev flex bison gperf dos2unix

OpenSUSE Tumbleweed

sudo zypper install ngspice git cmake libqt5-qtbase-devel libqt5-qttools-devel libqt5-qtsvg-devel flex bison gperf dos2unix

Compiling

Qt5

Then clone this git repository and execute in the top directory:

git submodule init
git submodule update
mkdir builddir
cd builddir
cmake ..  -DCMAKE_INSTALL_PREFIX=/your_install_prefix/
make
make install

Where /your_install_prefix/ is desired installation directory. Substitute any desire path (for example $HOME/qucs-s) here. You may omit this option and installation steps. Default installation directory will be /usr/local if CMAKE_INSTALL_PREFIX is not defined.

Qt6

Since v1.0.1 Qucs-S supports build with Qt6. Set the WITH_QT6 flag to tell CMake use the Qt6. For example use the following command sequence for Ubuntu-22.04

cmake .. -DWITH_QT6=ON -DCMAKE_INSTALL_PREFIX=/your_install_prefix/

Running

Then run qucs-s executable to launch the application:

cd /your_installation prefix/bin
./qucs-s

clangd LSP support

Clangd looks for compile_commands.json file in parent folders of the file it processes. compile_commands.json should be generated along with other build configuration files when you run cmake as part of building routine:

mkdir builddir
cd builddir
cmake ..  -DCMAKE_INSTALL_PREFIX=/your_install_prefix/

If compile_commands.json is already there, create a symbolic link to it from project root dir:

cd project_root
ln -s ./builddir/compile_commands.json compile_commands.json

It may take some time to index files at first run. Clangd configuration is in .clangd file.

Description
Qucs-S is a circuit simulation program with Qt-based GUI
Readme 56 MiB
Languages
C++ 91.3%
Perl 3.3%
C 1.9%
CMake 1.4%
Rich Text Format 0.7%
Other 1.3%