Git Product home page Git Product logo

Comments (14)

tomhajjar avatar tomhajjar commented on September 27, 2024

Not happening to me in Win 10. Post your file and OS details.

from qucs_s.

ra3xdh avatar ra3xdh commented on September 27, 2024

I am regularly testing Qucs-S on different platforms and never seen black windows on F8. What is you platfrom? Please also submit a screenshot. This may be related if you picked a wrong ngspice. You should use ngspice_con.exe for Windows. The ngspice.exe always opens GUI on launch. Also you may have something like global "run in terminal" setting in your system.

from qucs_s.

ra3xdh avatar ra3xdh commented on September 27, 2024

I recommend adding a dockable console window, which show all simulator (and other) console outputs to the GUI

This task is planned. See #235 But I cannot say when it will be implemented.

from qucs_s.

TheTesla avatar TheTesla commented on September 27, 2024

OK, I made the screenshot and forgot to add it. It is on Ubuntu 23.10 with default settings, I thought.

from qucs_s.

ra3xdh avatar ra3xdh commented on September 27, 2024

I have never seen popup windows except the simulation dialog itself using Ubuntu. I still cannot reproduce this.

from qucs_s.

TheTesla avatar TheTesla commented on September 27, 2024

The black window:
Bildschirmfoto vom 2024-03-07 23-01-14
The setting:
Bildschirmfoto vom 2024-03-08 09-34-18

from qucs_s.

TheTesla avatar TheTesla commented on September 27, 2024
$ /usr/bin/ngspice
******
** ngspice-40 : Circuit level simulation program
** The U. C. Berkeley CAD Group
** Copyright 1985-1994, Regents of the University of California.
** Copyright 2001-2023, The ngspice team.
** Please get your ngspice manual from https://ngspice.sourceforge.io/docs.html
** Please file your bug-reports at http://ngspice.sourceforge.net/bugrep.html
** Creation Date: Mon Jun 12 16:33:44 UTC 2023
******

from qucs_s.

ra3xdh avatar ra3xdh commented on September 27, 2024

It's strange. The simulator settings are correct. I never observed this using KDE/XFCE or Windows. It seems you have some GNOME settings for global modal windows that prevents automatic closing of the simulation dialog. Need to wait until someone will provide debugging and fix. I cannot say what exactly prevents simulation log window from closing.

from qucs_s.

TheTesla avatar TheTesla commented on September 27, 2024

How can I help you? I can prepare a virtual box with everything to be ready for reproduction. May this be helpful?

from qucs_s.

ra3xdh avatar ra3xdh commented on September 27, 2024

I have to install the Ubuntu 23.10 myself into a VM and debug everything using GDB. I am unable to fix this on my main host. Don't expect a quick fix for this. Probably some users of Ubuntu+GNOME may suggest something.

from qucs_s.

ra3xdh avatar ra3xdh commented on September 27, 2024

Also implementation of #235 will resolve this issue. I cannot say when it will be implemented.

from qucs_s.

ra3xdh avatar ra3xdh commented on September 27, 2024

@TheTesla Please try the following patch and report if the black window still appear.

diff --git a/qucs/qucs.cpp b/qucs/qucs.cpp
index f9c38448..09f5f6fb 100644
--- a/qucs/qucs.cpp
+++ b/qucs/qucs.cpp
@@ -3424,8 +3424,8 @@ void QucsApp::slotSimulateWithSpice()
                 this,SLOT(slotAfterSpiceSimulation(ExternSimDialog*)));
         connect(SimDlg,SIGNAL(warnings()),this,SLOT(slotShowWarnings()));
         connect(SimDlg,SIGNAL(success()),this,SLOT(slotResetWarnings()));
-        if (!TuningMode) SimDlg->exec();
-        else SimDlg->slotStart();
+        if (TuningMode || sch->showBias == 0) SimDlg->slotStart();
+        else SimDlg->exec();
         /*disconnect(SimDlg,SIGNAL(simulated()),this,SLOT(slotAfterSpiceSimulation()));
         disconnect(SimDlg,SIGNAL(warnings()),this,SLOT(slotShowWarnings()));
         disconnect(SimDlg,SIGNAL(success()),this,SLOT(slotResetWarnings()));*/

from qucs_s.

TheTesla avatar TheTesla commented on September 27, 2024

Thanks, it worked without any pop-up window now.

from qucs_s.

ra3xdh avatar ra3xdh commented on September 27, 2024

The PR #651 contains the fix.

from qucs_s.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.