135 Commits

Author SHA1 Message Date
ThomasZecha
0d97f032bb Fix compiler warnings
Qt6 QTranslator::load() uses [[nodiscard]] which currently leads to
compiler warnings. This is fixed using static_cast<void>.

Signed-off-by: ThomasZecha <zecha@ihp-microelectronics.com>
2025-01-07 12:11:57 +01:00
Vadim Kuznetsov
6b39fda03c Remove WITH_QT6; switch to Qt6 by default 2025-01-03 22:06:56 +03:00
Muhammet Şükrü Demir
fb686be61f add some compiler opt. flag 2024-11-26 21:05:14 +00:00
Integral
30f8ddd583
refactor: replace non-empty QString constructors with QStringLiteral() 2024-11-04 15:53:11 +08:00
Vadim Kuznetsov
beaed2596f Fix hardcoded version in Cauer LC filter 2024-11-01 08:57:17 +03:00
dsm
4f8a7aac01 for continous build switch nightly versioning. 2024-08-26 20:20:18 +03:00
dsm
95786c2647 fixed MSVC build crash. 2024-07-31 12:02:41 +03:00
dsm
51330f176b changed cpp standard before qt6.7 cpp17 otherwise cpp20 2024-07-31 12:02:41 +03:00
dsm
c89b84b306 cmake refactoring.
- cmake files refactored for different compiler and only enable warnings for debug build.

- switch c++17 to c++20 so recent Qt version support C++20.
2024-07-31 12:02:41 +03:00
Vadim Kuznetsov
83e3598ef4 Switch to C++17 everywhere 2024-07-15 09:00:58 +03:00
Vadim Kuznetsov
6dc79af1b1 Fix equation for Cauer filter 2024-07-05 18:13:03 +03:00
andresmmera
e38e0b1aff Update quarterwave_filter.cpp/.h copyright 2024-06-17 17:39:39 +02:00
andresmmera
4eb2dad70d Add MOPEN to MS QW BSF
In this commit an MS open circuit is added to the QW BSF as it was missing. It models the fringing effects of the stub.
2024-06-17 17:27:00 +02:00
andresmmera
de5e535123 Add MS via to quarter wavelength MS filter
In line with the previous addition of the MTEEs to the MS QW filter, MS vias are added.

A wrapper function is added too to simpiify the coding
2024-06-16 15:43:49 +02:00
andresmmera
3953042d0c Rotate MLIN and TLIN texts in getLineString() function
So far, this function effectively rotated the component, but not the text associated. This commit is intended to fix this
2024-06-16 08:17:40 +02:00
andresmmera
3f8b53556b Move schematic drawing functions to Filter class
getLineString(), getTeeString(), and getWireString() were recently created inside the QuarterWave_Filter class. The purpose of these functions is to ease the schematic generation code and they could be used in other filter implementations. It makes more sense to put them in a more general class, such as the Filter class.
2024-06-16 08:17:40 +02:00
andresmmera
bb7b9fa3c9 Unify schematic generation code for MS and ideal TLIN implementation
The schematic generation code for microstrip and ideal transmission lines splitted at some point, duplicating the for-loop, etc. The code is much clearer and less prone to errors if both the microstrip implementation and the TLINES share the same logic as much as possible.

It was also found that in the microstrip implementation, the lambda/4 distance did not take into account the effective dielectric permittivity.

The recently created functions getZ() and getMicrostripWidth() were removed. Their functionality is implemented in a single line in the createSchematic() reducing the clutter.
2024-06-16 08:17:40 +02:00
andresmmera
eba9550735 Simplify TLINE MLIN string creation
The genearation of the TLINE and MLIN string code is simplified by explicitly indicating the rotation code (e.g. '3' for 90 deg)
2024-06-16 08:17:40 +02:00
andresmmera
ac39cef36e Fix QW Resonators BPF TLINE implementation
It was found that after commit 601548 (Add MTEEs to microstrip quarterwave filter) the shunt resonators impedance was set to Z0 instead of that calculated from the lowpass prototype mask.

This commit fixes this issue.
2024-06-16 08:17:40 +02:00
Julien Colafrancesco
7fe6b73933 fixup! Refactoring qf_cauer and adding tee types 2024-05-10 09:30:00 +02:00
Julien Colafrancesco
d0ca291de1 fixup! Refactoring qf_cauer and adding tee types 2024-05-10 09:27:55 +02:00
Julien Colafrancesco
e32044accd Refactoring qf_cauer and adding tee types 2024-05-09 21:45:28 +02:00
Julien Colafrancesco
6015488fc2 Add MTEEs to microstrip quarterwave filter 2024-04-05 14:24:27 +02:00
Vadim Kuznetsov
30c24ab5ad Revert WITH_QT6 flag 2024-03-06 10:21:32 +03:00
ThomasZecha
e74b2d380e Fix all build warnings/issues
-Unconditional re-build of flex/bison parser by fixing wrong dependencies
-Removed unused code causing compiler warnings
-Removed unused function variables
-Refactor switch-case statements to prevent compiler warnings

Signed-off-by: ThomasZecha <zecha@ihp-microelectronics.com>
2023-12-18 13:47:26 +01:00
Krasilnikov Sergey
de260a94b3 fix utilities build 2023-06-17 01:02:31 +03:00
Krasilnikov Sergey
b1681daaab fix multiple enum definition 2023-06-16 16:20:34 +03:00
Vadim Kuznetsov
c9dac25b20 Change required CMake version to ensure compatibility with Ubunutu22.04 #264 2023-05-25 09:09:49 +03:00
Vadim Kuznetsov
c6dec8391f Set explicit locale for QDoubleValidator 2023-03-25 20:12:58 +03:00
dsm
a22e4ba234 add msvc build support. - added msvc compiler flags. - fixed wrong file encoding. - change VLA to fixed or dynamic array for msvc. - succesfully build with qt6.5.0 and vs2019 on win10 native. 2023-02-28 14:49:51 +03:00
dsm
3dc306a611 fixed fPIC and corrected cmake qt5 package find. 2023-02-14 09:52:43 +03:00
dsm
d8bd72206b cmake update
1. cmake minimum version updated to 3.18
2. find_package qt updated no need for  -DWITH_QT6
2023-02-13 21:50:15 +03:00
Vadim Kuznetsov
4e782ec31e Set -fPIC using CMake 2023-02-13 15:28:36 +03:00
Muhammet Şükrü Demir
834ea4d19a compiler options more generic now 2023-02-13 13:25:30 +03:00
Vadim Kuznetsov
6616ff4ffb Attenautor and Filter compiles with Qt6 2023-01-26 12:12:21 +03:00
Vadim Kuznetsov
764bf9ff85 Provide options to build utilities with Qt6 2023-01-26 11:15:02 +03:00
Krasilnikov Sergey
2a76359bfd fix qucs setShorcuts() deprecation 2023-01-14 22:02:59 +03:00
Vadim Kuznetsov
98b1ca187d Merge branch 'master' into current 2022-10-30 12:34:50 +03:00
Vadim Kuznetsov
2111e52606 Fix equation type for auto-generated filter circuit #148 2022-09-10 16:59:43 +03:00
Vadim Kuznetsov
20d3207c8b Hide microstrip filters when Ngspice is set as default #96 2022-08-06 16:26:45 +03:00
luz paz
10c1ee639c Fix various typos (including documenation)
Found via `codespell -q 3 -S *.ts,./qucs/ChangeLog -L ba,coul,inout,leaded,nd,numer,ro`
2022-07-05 07:08:28 -04:00
Vadim Kuznetsov
4a10052fa1 Update minimum cmake version 2022-04-26 16:40:35 +03:00
Vadim Kuznetsov
8e148581ea Fix CMakeLists
1. Remvove invalid option -Wno-deprecated-register
2. Supress messages form qDebug() when Release mode activated
2022-02-19 12:04:51 +01:00
Vadim Kuznetsov
c9ffce91a7 Fixed default font in utilities 2022-02-18 19:47:32 +01:00
Vadim Kuznetsov
680e69e3e2 Qucs-filter compiled and run on Qt5 2022-02-14 22:24:38 +01:00
Vadim Kuznetzov
c56cfe6a15 Disable Autotools 2017-10-21 15:03:09 +03:00
Vadim Kuznetzov
a62186403b Further remove WITH_SPICE... 2017-10-20 18:23:21 +03:00
Vadim Kuznetzov
9a1a7b17ec Remove WITH_SPICE CMake switch 2017-10-20 17:37:13 +03:00
Vadim Kuznetzov
d1bd120d41 Don't use QUCSDIR with QUCS-S 2016-12-08 11:04:16 +03:00
Vadim Kuznetzov
5e9ceffa49 Fixed after merge of release-0.0.19 2016-11-05 17:54:15 +03:00