Skip to content

Commit 1900363

Browse files
committed
v5.6 with bug fix for particle initiation
There was an error with initialising the particle-phase composition of newly introduced particles made of multiple components which has now been resolved. Also contains notes for reproducing the guaiacol EUPHORE experiments in PyCHAM simulation.
1 parent d7424b6 commit 1900363

File tree

194 files changed

+2763
-164913
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

194 files changed

+2763
-164913
lines changed

PyCHAM/ODE_solver_break_relevant_fluxes.txt

Lines changed: 585 additions & 42476 deletions
Large diffs are not rendered by default.

PyCHAM/__main__.py

Lines changed: 24 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,27 @@
1-
##########################################################################################
2-
# #
3-
# Copyright (C) 2018-2023 Simon O'Meara : simon.omeara@manchester.ac.uk #
4-
# #
5-
# All Rights Reserved. #
6-
# This file is part of PyCHAM #
7-
# #
8-
# PyCHAM is free software: you can redistribute it and/or modify it under #
9-
# the terms of the GNU General Public License as published by the Free Software #
10-
# Foundation, either version 3 of the License, or (at your option) any later #
11-
# version. #
12-
# #
13-
# PyCHAM is distributed in the hope that it will be useful, but WITHOUT #
14-
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS #
15-
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more #
16-
# details. #
17-
# #
18-
# You should have received a copy of the GNU General Public License along with #
19-
# PyCHAM. If not, see <http://www.gnu.org/licenses/>. #
20-
# #
21-
##########################################################################################
1+
########################################################################
2+
# #
3+
# Copyright (C) 2018-2025 #
4+
# Simon O'Meara : simon.omeara@manchester.ac.uk #
5+
# #
6+
# All Rights Reserved. #
7+
# This file is part of PyCHAM #
8+
# #
9+
# PyCHAM is free software: you can redistribute it and/or modify it #
10+
# under the terms of the GNU General Public License as published by #
11+
# the Free Software Foundation, either version 3 of the License, or #
12+
# (at your option) any later version. #
13+
# #
14+
# PyCHAM is distributed in the hope that it will be useful, but #
15+
# WITHOUT ANY WARRANTY; without even the implied warranty of #
16+
# MERCHANTABILITY or## FITNESS FOR A PARTICULAR PURPOSE. See the GNU #
17+
# General Public License for more details. #
18+
# #
19+
# You should have received a copy of the GNU General Public License #
20+
# along with PyCHAM. If not, see <http://www.gnu.org/licenses/>. #
21+
# #
22+
########################################################################
2223
'''module called to run the PyCHAM programme via a graphical user interface'''
23-
from PyQt5.QtWidgets import QApplication, QWidget
24+
from PyQt6.QtWidgets import QApplication, QWidget
2425
import sys
2526
import os
2627

@@ -38,7 +39,7 @@ def sig_han(signum, frame):
3839
app = QApplication(sys.argv)
3940
signal.signal(signal.SIGINT, sig_han) # in case of ctrl+c
4041
ex = gui.PyCHAM()
41-
app.exec_()
42+
app.exec()
4243

4344
return()
4445

951 Bytes
Binary file not shown.
45 Bytes
Binary file not shown.
-1 Bytes
Binary file not shown.
462 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
1.05 KB
Binary file not shown.
3.82 KB
Binary file not shown.

0 commit comments

Comments
 (0)