From eaf1585504c1a710018cae4971e177130b9f5044 Mon Sep 17 00:00:00 2001 From: TristanHehnen Date: Thu, 21 Aug 2025 16:26:34 +0200 Subject: [PATCH 01/10] Fixed typo. --- docs/tutorials/pyrolysis/notebooks/FireSciPy_KAS_Demo.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/pyrolysis/notebooks/FireSciPy_KAS_Demo.ipynb b/docs/tutorials/pyrolysis/notebooks/FireSciPy_KAS_Demo.ipynb index 155e520..2c91f1f 100644 --- a/docs/tutorials/pyrolysis/notebooks/FireSciPy_KAS_Demo.ipynb +++ b/docs/tutorials/pyrolysis/notebooks/FireSciPy_KAS_Demo.ipynb @@ -76,7 +76,7 @@ "# SciPy version: 1.16.1\n", "# Pandas version: 2.3.1\n", "# Matplotlib version: 3.10.5\n", - "# FireSciPy version: 0.0.3\n", + "# FireSciPy version: 0.0.5\n", "\n", "\n", "print('Package Versions')\n", From 931c648ec271468dcee0888e91ee4bc5b708a36c Mon Sep 17 00:00:00 2001 From: TristanHehnen Date: Wed, 27 Aug 2025 12:34:59 +0200 Subject: [PATCH 02/10] Added function to simplify data series. --- src/firescipy/utils.py | 69 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) diff --git a/src/firescipy/utils.py b/src/firescipy/utils.py index 3093f2e..85e07fa 100644 --- a/src/firescipy/utils.py +++ b/src/firescipy/utils.py @@ -252,3 +252,72 @@ def gaussian(x, mu, sigma, a=1.0): normalisation = a / (sigma * np.sqrt(2 * np.pi)) f_x = normalisation * np.exp(exponent) return f_x + + +def dynamic_local_change_simplification(time, temperature, basis_tolerance=0.2): + """ + Simplify a time-temperature dataset by dynamically assessing local changes + against a "basis" change. + + This function allows to remove data points from a series but preserves the + shape. This is helpful when defining a RAMP for FDS. For example, when a + simulation is to be conducted where the temperature development of a heater + over time is to be used as input, e.g. TGA, or cone calorimeter. + It works as follows: + + The first point is retained. Then, the change between the first and second + data point is established (basis change). A range is defined around the + basis change, using the `basis_tolerance`. Next, it is determined if the + change between the first and third point is inside that range. If this is + true, the point is excluded and the change between first and fourth point + is assessed. This process is repeated until a point is outside the range. + This point is retained and the process starts again. The last point in the + series is always retained. + + + Parameters + ---------- + time : ndarray + Time values. + temperature : ndarray + Temperature values. + basis_tolerance : float + Tolerance range for deviations from the basis change (e.g., 0.2 = 20%). + + Returns + ------- + ndarray + Indices of the retained points in the original data. + """ + + # Always keep the first point + retained_indices = [0] + + # Establish the basis change (change between the first two points) + start_idx = 0 + basis_change = abs(temperature[1] - temperature[0]) + + for i in range(1, len(temperature)): + # Calculate the cumulative change since the current start point + cumulative_change = abs(temperature[i] - temperature[start_idx]) + + # Calculate the allowed range around the basis change + lower_bound = basis_change * (1 - basis_tolerance) + upper_bound = basis_change * (1 + basis_tolerance) + + # If the cumulative change exceeds the allowed range + if cumulative_change < lower_bound or cumulative_change > upper_bound: + # Keep the current point + retained_indices.append(i) + + # Reset the start point and basis change + start_idx = i + if i + 1 < len(temperature): # Check to avoid index errors + basis_change = abs(temperature[i + 1] - temperature[i]) + else: + basis_change = cumulative_change # Final segment uses the last change + + # Always keep the last point + retained_indices.append(len(temperature) - 1) + + return np.array(retained_indices) From bca9acd40cee82165aa3f2f311d1663f88fc9419 Mon Sep 17 00:00:00 2001 From: TristanHehnen Date: Wed, 15 Oct 2025 16:00:47 +0200 Subject: [PATCH 03/10] Adjusted contributions section. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c2106b8..0f10260 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,8 @@ Contributions to this package are welcome! Please feel free to use the [discussions forum](https://github.com/FireDynamics/FireSciPy/discussions) or the [issue tracker](https://github.com/FireDynamics/FireSciPy/issues) to get in contact with us. From there, we can talk about your ideas and see how to implement them. +Note: From version 0.1.0 onward, the main branch should contain only stable versions and no development on the main branch is permitted. Create new branches for development work, regardless if it is for fixing bugs or adding new features. + Practical summary for contributions directly to the repo: 1. Fork it () From f71e2ed53f1120334d17f2eecadc071b9a5c3c99 Mon Sep 17 00:00:00 2001 From: TristanHehnen Date: Wed, 5 Nov 2025 09:05:01 +0100 Subject: [PATCH 04/10] Removed dublicated entry. --- src/firescipy/handcalculation/design_fires.py | 111 +----------------- 1 file changed, 6 insertions(+), 105 deletions(-) diff --git a/src/firescipy/handcalculation/design_fires.py b/src/firescipy/handcalculation/design_fires.py index cd15327..cbf8b00 100644 --- a/src/firescipy/handcalculation/design_fires.py +++ b/src/firescipy/handcalculation/design_fires.py @@ -214,106 +214,7 @@ def simple_design_fire(Q_max, Q_total, decay_model="t_squared", **kwargs): Q_combined = np.concatenate((Q_growth, np.full(2, Q_max), Q_decay)) return t_combined, Q_combined -def ignition(model,**kwargs): - """ - Returnes pre defined fire curves that are usually used as ignition sources. - Parameters - ---------- - model : str - Name of the ignition source model. - - EN45545-1: Ignition model 5 from EN 45545-1 - - TRStrab: Ignition model from TRStrab BS - - E-Bike: Values from https://www.youtube.com/watch?v=2vir4_1qSSc - - Optional keyword arguments (`**kwargs`) depending on the selected model: - sampling_rate : float - Sampling rate in Hz. Default is 1 Hz. - - Returns - ------- - time : np.ndarray - time array in seconds - hrr : np.ndarray - corresponding heat release rate array in kW. - """ - sampling_rate=kwargs.get("sampling_rate", 1) - ignitioncurves={'EN45545-1': np.array((np.array((0,2,2,10,10))*60,np.array((75,75,150,150,0)))), - 'TRStrab BS': np.array(([0,300,480,1800],[0,120,150,0])), - 'E-Bike': np.array(([0,12,45,84,900],[0,55,900,80,0]))} - values=ignitioncurves[model] - time=np.linspace(0,values[0].max(),values[0].max()*sampling_rate+1) - hrr=np.interp(time,values[0],values[1]) - return time,hrr - -def din5647(length=20,**kwargs): - """ - Returnes parametrized version of the design fire for trams from DIN 5647/TRStrab BS with six different - design fire phases. - - Parameters - ---------- - length : int - Length of tram in meter. Original model designed for lengths of - - EN45545-1: Ignition model 5 from EN 45545-1 - - TRStrab: Ignition model from TRStrab BS - - E-Bike: Values from https://www.youtube.com/watch?v=2vir4_1qSSc - - Optional keyword arguments (`**kwargs`) depending on the selected model: - alpha: [float,float] - alpha1 for design fire phase (alpha³ model) in kW/s^3 and alpha2 for design fire phase 2 (alpha² model) in kW/s^2 - sampling_rate : float - Sampling rate in Hz. Default is 1 Hz. - - Returns - ------- - time : np.ndarray - time array in seconds - hrr : np.ndarray - corresponding heat release rate array in kW. - """ - sampling_rate=kwargs.get("sampling_rate", 1) - alpha1,alpha2=kwargs.get("alpha", [5.2E-5,0.025]) - x=np.arange(0,4200) - q=np.full(4200,np.nan) - q1=x[0:421]**3*alpha1 - q[0:421]=q1 - q2=(x[421:901]-360)**2*alpha2+q1[-1] - q[421:901]=q2 - qap=q2[-1] - i=900 - q3=np.array(((q2[-1]),)) - q3max=q3[(i-901)] - while round(q3max)<1387*length: - i+=60 - q3=np.append(q3,np.array(((q3[-1]+252*np.exp(0.004*i-1.68)),)),axis=0) - q3max=q3[-1] - i+=61 - q[901:i]=np.interp(x[901:i],x[901:i:60],q3) - i=np.where(q>1387*length)[0][0]+300 - q4=np.full(300,1387*length) - q[i-300:i]=q4 - j=i - q5=np.array(((q4[-1]),)) - q5min=q5[-1] - while round(q5min)>0.78*length*1387: - i+=60 - q5=np.append(q5,np.array(((0.94*q5[-1]),)),axis=0) - q5min=q5[-1] - #i=i-60 - q[j:i]=np.interp(x[j:i],x[j:i+1:60],q5) - i=np.where(q[j:]<0.78*length*1387)[0][0]+j - j=i - q6=np.array((q[i],)) - i+=60 - while i<=4200: - q6=np.append(q6,np.array(((0.9*q6[-1]),)),axis=0) - i+=60 - q[j:i]=np.interp(x[j:i],x[j:i+1:60],q6) - values=np.array((x,q)) - time=np.linspace(0,values[0].max(),values[0].max()*sampling_rate+1) - hrr=np.interp(time,values[0],values[1]) - return time,hrr def ignition(model,**kwargs): """ @@ -326,7 +227,7 @@ def ignition(model,**kwargs): - EN45545-1: Ignition model 5 from EN 45545-1 - TRStrab: Ignition model from TRStrab BS - E-Bike: Values from https://www.youtube.com/watch?v=2vir4_1qSSc - + Optional keyword arguments (`**kwargs`) depending on the selected model: sampling_rate : float Sampling rate in Hz. Default is 1 Hz. @@ -347,6 +248,7 @@ def ignition(model,**kwargs): hrr=np.interp(time,values[0],values[1]) return time,hrr + def din5647(length=20,**kwargs): """ Returnes parametrized version of the design fire for trams from DIN 5647/TRStrab BS with six different @@ -355,11 +257,11 @@ def din5647(length=20,**kwargs): Parameters ---------- length : int - Length of tram in meter. Original model designed for lengths of + Length of tram in meter. Original model designed for lengths of - EN45545-1: Ignition model 5 from EN 45545-1 - TRStrab: Ignition model from TRStrab BS - E-Bike: Values from https://www.youtube.com/watch?v=2vir4_1qSSc - + Optional keyword arguments (`**kwargs`) depending on the selected model: alpha: [float,float] alpha1 for design fire phase (alpha³ model) in kW/s^3 and alpha2 for design fire phase 2 (alpha² model) in kW/s^2 @@ -412,7 +314,6 @@ def din5647(length=20,**kwargs): i+=60 q[j:i]=np.interp(x[j:i],x[j:i+1:60],q6) values=np.array((x,q)) - time=np.linspace(0,int(values[0].max()),int(values[0].max())*sampling_rate+1) + time=np.linspace(0,values[0].max(),values[0].max()*sampling_rate+1) hrr=np.interp(time,values[0],values[1]) - return time,hrr - + return time,hrr From 40f1d6a25dd033347997ee05bc9b9494701f5062 Mon Sep 17 00:00:00 2001 From: TristanHehnen Date: Wed, 5 Nov 2025 10:46:00 +0100 Subject: [PATCH 05/10] Relicense to MPL-2.0; bump version to 0.0.6 --- LICENSE | 445 ++++-------------- pyproject.toml | 8 +- src/firescipy/__init__.py | 5 + src/firescipy/constants.py | 5 + src/firescipy/handcalculation/__init__.py | 5 + src/firescipy/handcalculation/design_fires.py | 5 + src/firescipy/microscale/__init__.py | 3 + src/firescipy/microscale/microscale.py | 5 + src/firescipy/pyrolysis/__init__.py | 5 + src/firescipy/pyrolysis/kinetics.py | 5 + src/firescipy/pyrolysis/modeling.py | 5 + src/firescipy/utils.py | 4 + 12 files changed, 156 insertions(+), 344 deletions(-) diff --git a/LICENSE b/LICENSE index da6ab6c..d7f71bc 100644 --- a/LICENSE +++ b/LICENSE @@ -1,396 +1,159 @@ -Attribution 4.0 International - -======================================================================= - -Creative Commons Corporation ("Creative Commons") is not a law firm and -does not provide legal services or legal advice. Distribution of -Creative Commons public licenses does not create a lawyer-client or -other relationship. Creative Commons makes its licenses and related -information available on an "as-is" basis. Creative Commons gives no -warranties regarding its licenses, any material licensed under their -terms and conditions, or any related information. Creative Commons -disclaims all liability for damages resulting from their use to the -fullest extent possible. - -Using Creative Commons Public Licenses - -Creative Commons public licenses provide a standard set of terms and -conditions that creators and other rights holders may use to share -original works of authorship and other material subject to copyright -and certain other rights specified in the public license below. The -following considerations are for informational purposes only, are not -exhaustive, and do not form part of our licenses. - - Considerations for licensors: Our public licenses are - intended for use by those authorized to give the public - permission to use material in ways otherwise restricted by - copyright and certain other rights. Our licenses are - irrevocable. Licensors should read and understand the terms - and conditions of the license they choose before applying it. - Licensors should also secure all rights necessary before - applying our licenses so that the public can reuse the - material as expected. Licensors should clearly mark any - material not subject to the license. This includes other CC- - licensed material, or material used under an exception or - limitation to copyright. More considerations for licensors: - wiki.creativecommons.org/Considerations_for_licensors - - Considerations for the public: By using one of our public - licenses, a licensor grants the public permission to use the - licensed material under specified terms and conditions. If - the licensor's permission is not necessary for any reason--for - example, because of any applicable exception or limitation to - copyright--then that use is not regulated by the license. Our - licenses grant only permissions under copyright and certain - other rights that a licensor has authority to grant. Use of - the licensed material may still be restricted for other - reasons, including because others have copyright or other - rights in the material. A licensor may make special requests, - such as asking that all changes be marked or described. - Although not required by our licenses, you are encouraged to - respect those requests where reasonable. More considerations - for the public: - wiki.creativecommons.org/Considerations_for_licensees - -======================================================================= - -Creative Commons Attribution 4.0 International Public License - -By exercising the Licensed Rights (defined below), You accept and agree -to be bound by the terms and conditions of this Creative Commons -Attribution 4.0 International Public License ("Public License"). To the -extent this Public License may be interpreted as a contract, You are -granted the Licensed Rights in consideration of Your acceptance of -these terms and conditions, and the Licensor grants You such rights in -consideration of benefits the Licensor receives from making the -Licensed Material available under these terms and conditions. - - -Section 1 -- Definitions. - - a. Adapted Material means material subject to Copyright and Similar - Rights that is derived from or based upon the Licensed Material - and in which the Licensed Material is translated, altered, - arranged, transformed, or otherwise modified in a manner requiring - permission under the Copyright and Similar Rights held by the - Licensor. For purposes of this Public License, where the Licensed - Material is a musical work, performance, or sound recording, - Adapted Material is always produced where the Licensed Material is - synched in timed relation with a moving image. - - b. Adapter's License means the license You apply to Your Copyright - and Similar Rights in Your contributions to Adapted Material in - accordance with the terms and conditions of this Public License. - - c. Copyright and Similar Rights means copyright and/or similar rights - closely related to copyright including, without limitation, - performance, broadcast, sound recording, and Sui Generis Database - Rights, without regard to how the rights are labeled or - categorized. For purposes of this Public License, the rights - specified in Section 2(b)(1)-(2) are not Copyright and Similar - Rights. - - d. Effective Technological Measures means those measures that, in the - absence of proper authority, may not be circumvented under laws - fulfilling obligations under Article 11 of the WIPO Copyright - Treaty adopted on December 20, 1996, and/or similar international - agreements. - - e. Exceptions and Limitations means fair use, fair dealing, and/or - any other exception or limitation to Copyright and Similar Rights - that applies to Your use of the Licensed Material. - - f. Licensed Material means the artistic or literary work, database, - or other material to which the Licensor applied this Public - License. - - g. Licensed Rights means the rights granted to You subject to the - terms and conditions of this Public License, which are limited to - all Copyright and Similar Rights that apply to Your use of the - Licensed Material and that the Licensor has authority to license. - - h. Licensor means the individual(s) or entity(ies) granting rights - under this Public License. - - i. Share means to provide material to the public by any means or - process that requires permission under the Licensed Rights, such - as reproduction, public display, public performance, distribution, - dissemination, communication, or importation, and to make material - available to the public including in ways that members of the - public may access the material from a place and at a time - individually chosen by them. - - j. Sui Generis Database Rights means rights other than copyright - resulting from Directive 96/9/EC of the European Parliament and of - the Council of 11 March 1996 on the legal protection of databases, - as amended and/or succeeded, as well as other essentially - equivalent rights anywhere in the world. - - k. You means the individual or entity exercising the Licensed Rights - under this Public License. Your has a corresponding meaning. - - -Section 2 -- Scope. - - a. License grant. - - 1. Subject to the terms and conditions of this Public License, - the Licensor hereby grants You a worldwide, royalty-free, - non-sublicensable, non-exclusive, irrevocable license to - exercise the Licensed Rights in the Licensed Material to: - - a. reproduce and Share the Licensed Material, in whole or - in part; and - - b. produce, reproduce, and Share Adapted Material. - - 2. Exceptions and Limitations. For the avoidance of doubt, where - Exceptions and Limitations apply to Your use, this Public - License does not apply, and You do not need to comply with - its terms and conditions. - - 3. Term. The term of this Public License is specified in Section - 6(a). - - 4. Media and formats; technical modifications allowed. The - Licensor authorizes You to exercise the Licensed Rights in - all media and formats whether now known or hereafter created, - and to make technical modifications necessary to do so. The - Licensor waives and/or agrees not to assert any right or - authority to forbid You from making technical modifications - necessary to exercise the Licensed Rights, including - technical modifications necessary to circumvent Effective - Technological Measures. For purposes of this Public License, - simply making modifications authorized by this Section 2(a) - (4) never produces Adapted Material. - 5. Downstream recipients. - - a. Offer from the Licensor -- Licensed Material. Every - recipient of the Licensed Material automatically - receives an offer from the Licensor to exercise the - Licensed Rights under the terms and conditions of this - Public License. - - b. No downstream restrictions. You may not offer or impose - any additional or different terms or conditions on, or - apply any Effective Technological Measures to, the - Licensed Material if doing so restricts exercise of the - Licensed Rights by any recipient of the Licensed - Material. - - 6. No endorsement. Nothing in this Public License constitutes or - may be construed as permission to assert or imply that You - are, or that Your use of the Licensed Material is, connected - with, or sponsored, endorsed, or granted official status by, - the Licensor or others designated to receive attribution as - provided in Section 3(a)(1)(A)(i). +Mozilla Public License +Version 2.0 +1. Definitions - b. Other rights. +1.1. “Contributor” - 1. Moral rights, such as the right of integrity, are not - licensed under this Public License, nor are publicity, - privacy, and/or other similar personality rights; however, to - the extent possible, the Licensor waives and/or agrees not to - assert any such rights held by the Licensor to the limited - extent necessary to allow You to exercise the Licensed - Rights, but not otherwise. + means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software. +1.2. “Contributor Version” - 2. Patent and trademark rights are not licensed under this - Public License. + means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor’s Contribution. +1.3. “Contribution” - 3. To the extent possible, the Licensor waives any right to - collect royalties from You for the exercise of the Licensed - Rights, whether directly or through a collecting society - under any voluntary or waivable statutory or compulsory - licensing scheme. In all other cases the Licensor expressly - reserves any right to collect such royalties. - - -Section 3 -- License Conditions. + means Covered Software of a particular Contributor. +1.4. “Covered Software” -Your exercise of the Licensed Rights is expressly made subject to the -following conditions. + means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof. +1.5. “Incompatible With Secondary Licenses” - a. Attribution. + means - 1. If You Share the Licensed Material (including in modified - form), You must: + that the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or - a. retain the following if it is supplied by the Licensor - with the Licensed Material: + that the Covered Software was made available under the terms of version 1.1 or earlier of the License, but not also under the terms of a Secondary License. - i. identification of the creator(s) of the Licensed - Material and any others designated to receive - attribution, in any reasonable manner requested by - the Licensor (including by pseudonym if - designated); +1.6. “Executable Form” - ii. a copyright notice; + means any form of the work other than Source Code Form. +1.7. “Larger Work” - iii. a notice that refers to this Public License; + means a work that combines Covered Software with other material, in a separate file or files, that is not Covered Software. +1.8. “License” - iv. a notice that refers to the disclaimer of - warranties; + means this document. +1.9. “Licensable” - v. a URI or hyperlink to the Licensed Material to the - extent reasonably practicable; + means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License. +1.10. “Modifications” - b. indicate if You modified the Licensed Material and - retain an indication of any previous modifications; and + means any of the following: - c. indicate the Licensed Material is licensed under this - Public License, and include the text of, or the URI or - hyperlink to, this Public License. + any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or - 2. You may satisfy the conditions in Section 3(a)(1) in any - reasonable manner based on the medium, means, and context in - which You Share the Licensed Material. For example, it may be - reasonable to satisfy the conditions by providing a URI or - hyperlink to a resource that includes the required - information. + any new file in Source Code Form that contains any Covered Software. - 3. If requested by the Licensor, You must remove any of the - information required by Section 3(a)(1)(A) to the extent - reasonably practicable. +1.11. “Patent Claims” of a Contributor - 4. If You Share Adapted Material You produce, the Adapter's - License You apply must not prevent recipients of the Adapted - Material from complying with this Public License. + means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version. +1.12. “Secondary License” + means either the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses. +1.13. “Source Code Form” -Section 4 -- Sui Generis Database Rights. + means the form of the work preferred for making modifications. +1.14. “You” (or “Your”) -Where the Licensed Rights include Sui Generis Database Rights that -apply to Your use of the Licensed Material: + means an individual or a legal entity exercising rights under this License. For legal entities, “You” includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, “control” means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. - a. for the avoidance of doubt, Section 2(a)(1) grants You the right - to extract, reuse, reproduce, and Share all or a substantial - portion of the contents of the database; +2. License Grants and Conditions +2.1. Grants - b. if You include all or a substantial portion of the database - contents in a database in which You have Sui Generis Database - Rights, then the database in which You have Sui Generis Database - Rights (but not its individual contents) is Adapted Material; and +Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: - c. You must comply with the conditions in Section 3(a) if You Share - all or a substantial portion of the contents of the database. + under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and -For the avoidance of doubt, this Section 4 supplements and does not -replace Your obligations under this Public License where the Licensed -Rights include other Copyright and Similar Rights. + under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version. +2.2. Effective Date -Section 5 -- Disclaimer of Warranties and Limitation of Liability. +The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution. +2.3. Limitations on Grant Scope - a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE - EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS - AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF - ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, - IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, - WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR - PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, - ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT - KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT - ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. +The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor: - b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE - TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, - NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, - INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, - COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR - USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN - ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR - DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR - IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + for any code that a Contributor has removed from Covered Software; or - c. The disclaimer of warranties and limitation of liability provided - above shall be interpreted in a manner that, to the extent - possible, most closely approximates an absolute disclaimer and - waiver of all liability. + for infringements caused by: (i) Your and any other third party’s modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or + under Patent Claims infringed by Covered Software in the absence of its Contributions. -Section 6 -- Term and Termination. +This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4). +2.4. Subsequent Licenses - a. This Public License applies for the term of the Copyright and - Similar Rights licensed here. However, if You fail to comply with - this Public License, then Your rights under this Public License - terminate automatically. +No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3). +2.5. Representation - b. Where Your right to use the Licensed Material has terminated under - Section 6(a), it reinstates: +Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License. +2.6. Fair Use - 1. automatically as of the date the violation is cured, provided - it is cured within 30 days of Your discovery of the - violation; or +This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents. +2.7. Conditions - 2. upon express reinstatement by the Licensor. +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1. +3. Responsibilities +3.1. Distribution of Source Form - For the avoidance of doubt, this Section 6(b) does not affect any - right the Licensor may have to seek remedies for Your violations - of this Public License. +All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You may not attempt to alter or restrict the recipients’ rights in the Source Code Form. +3.2. Distribution of Executable Form - c. For the avoidance of doubt, the Licensor may also offer the - Licensed Material under separate terms or conditions or stop - distributing the Licensed Material at any time; however, doing so - will not terminate this Public License. +If You distribute Covered Software in Executable Form then: - d. Sections 1, 5, 6, 7, and 8 survive termination of this Public - License. + such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and + You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients’ rights in the Source Code Form under this License. -Section 7 -- Other Terms and Conditions. +3.3. Distribution of a Larger Work - a. The Licensor shall not be bound by any additional or different - terms or conditions communicated by You unless expressly agreed. +You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s). +3.4. Notices - b. Any arrangements, understandings, or agreements regarding the - Licensed Material not stated herein are separate from and - independent of the terms and conditions of this Public License. +You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies. +3.5. Application of Additional Terms +You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction. +4. Inability to Comply Due to Statute or Regulation -Section 8 -- Interpretation. +If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be placed in a text file included with all distributions of the Covered Software under this License. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. +5. Termination - a. For the avoidance of doubt, this Public License does not, and - shall not be interpreted to, reduce, limit, restrict, or impose - conditions on any use of the Licensed Material that could lawfully - be made without permission under this Public License. +5.1. The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60 days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30 days after Your receipt of the notice. - b. To the extent possible, if any provision of this Public License is - deemed unenforceable, it shall be automatically reformed to the - minimum extent necessary to make it enforceable. If the provision - cannot be reformed, it shall be severed from this Public License - without affecting the enforceability of the remaining terms and - conditions. +5.2. If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate. - c. No term or condition of this Public License will be waived and no - failure to comply consented to unless expressly agreed to by the - Licensor. +5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or Your distributors under this License prior to termination shall survive termination. +6. Disclaimer of Warranty - d. Nothing in this Public License constitutes or may be interpreted - as a limitation upon, or waiver of, any privileges and immunities - that apply to the Licensor or You, including from the legal - processes of any jurisdiction or authority. +Covered Software is provided under this License on an “as is” basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer. +7. Limitation of Liability +Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party’s negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. +8. Litigation -======================================================================= +Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party’s ability to bring cross-claims or counter-claims. +9. Miscellaneous -Creative Commons is not a party to its public -licenses. Notwithstanding, Creative Commons may elect to apply one of -its public licenses to material it publishes and in those instances -will be considered the “Licensor.” The text of the Creative Commons -public licenses is dedicated to the public domain under the CC0 Public -Domain Dedication. Except for the limited purpose of indicating that -material is shared under a Creative Commons public license or as -otherwise permitted by the Creative Commons policies published at -creativecommons.org/policies, Creative Commons does not authorize the -use of the trademark "Creative Commons" or any other trademark or logo -of Creative Commons without its prior written consent including, -without limitation, in connection with any unauthorized modifications -to any of its public licenses or any other arrangements, -understandings, or agreements concerning use of licensed material. For -the avoidance of doubt, this paragraph does not form part of the -public licenses. +This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not be used to construe this License against a Contributor. +10. Versions of the License +10.1. New Versions -Creative Commons may be contacted at creativecommons.org. +Mozilla Foundation is the license steward. Except as provided in Section 10.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number. +10.2. Effect of New Versions +You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward. +10.3. Modified Versions + +If you create software not governed by this License, and you want to create a new license for such software, you may create and use a modified version of this License if you rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License). +10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses + +If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached. +Exhibit A - Source Code Form License Notice + + This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice. + +You may add additional accurate notices of copyright ownership. +Exhibit B - “Incompatible With Secondary Licenses” Notice + + This Source Code Form is “Incompatible With Secondary Licenses”, as defined by the Mozilla Public License, v. 2.0. diff --git a/pyproject.toml b/pyproject.toml index c5b7a73..63cb1ba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,13 +4,15 @@ build-backend = "hatchling.build" [project] name = "firescipy" -version = "0.0.5" +version = "0.0.6" description = "FireSciPy: Fundamental algorithms from the field of fire science, for computations with Python." readme = "README.md" keywords = ["Fire Safety Engineering", "fire", "pyrolysis", "kinetics", "FDS"] requires-python = ">=3.9" -license = { text = "CC-BY-4.0" } # adjust if you use another license -license-files = ["LICEN[CS]E*"] +license = { file = "LICEN[CS]E*" } +classifiers = [ + "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", +] authors = [ { name = "Tristan Hehnen", email = "you@example.com" }, { name = "Lukas Arnold", email = "you@example.com" } diff --git a/src/firescipy/__init__.py b/src/firescipy/__init__.py index 3dcdff0..b1baa2a 100644 --- a/src/firescipy/__init__.py +++ b/src/firescipy/__init__.py @@ -1,3 +1,8 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. + + from . import utils from . import pyrolysis from . import constants diff --git a/src/firescipy/constants.py b/src/firescipy/constants.py index bcf7f4a..f0c3d04 100644 --- a/src/firescipy/constants.py +++ b/src/firescipy/constants.py @@ -1,3 +1,8 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. + + """ Physical and chemical constants used throughout FireSciPy. diff --git a/src/firescipy/handcalculation/__init__.py b/src/firescipy/handcalculation/__init__.py index 8469575..6aaabad 100644 --- a/src/firescipy/handcalculation/__init__.py +++ b/src/firescipy/handcalculation/__init__.py @@ -1 +1,6 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. + + from .design_fires import alpha_t_squared, simple_design_fire diff --git a/src/firescipy/handcalculation/design_fires.py b/src/firescipy/handcalculation/design_fires.py index cbf8b00..ec47f4e 100644 --- a/src/firescipy/handcalculation/design_fires.py +++ b/src/firescipy/handcalculation/design_fires.py @@ -1,3 +1,8 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. + + import numpy as np diff --git a/src/firescipy/microscale/__init__.py b/src/firescipy/microscale/__init__.py index e69de29..5b954a9 100644 --- a/src/firescipy/microscale/__init__.py +++ b/src/firescipy/microscale/__init__.py @@ -0,0 +1,3 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. diff --git a/src/firescipy/microscale/microscale.py b/src/firescipy/microscale/microscale.py index 80b4c1b..90aecd2 100644 --- a/src/firescipy/microscale/microscale.py +++ b/src/firescipy/microscale/microscale.py @@ -1,3 +1,8 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. + + import numpy as np diff --git a/src/firescipy/pyrolysis/__init__.py b/src/firescipy/pyrolysis/__init__.py index 1b0eb10..adf28b8 100644 --- a/src/firescipy/pyrolysis/__init__.py +++ b/src/firescipy/pyrolysis/__init__.py @@ -1,3 +1,8 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. + + from .kinetics import initialize_investigation_skeleton, add_isothermal_tga, add_constant_heating_rate_tga, combine_repetitions, differential_conversion, integral_conversion, compute_conversion, compute_conversion_levels, KAS_Ea, compute_Ea_KAS from .modeling import create_linear_temp_program, reaction_rate, solve_kinetics, get_reaction_model diff --git a/src/firescipy/pyrolysis/kinetics.py b/src/firescipy/pyrolysis/kinetics.py index 090fc8b..cd5a454 100644 --- a/src/firescipy/pyrolysis/kinetics.py +++ b/src/firescipy/pyrolysis/kinetics.py @@ -1,3 +1,8 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. + + import warnings import numpy as np diff --git a/src/firescipy/pyrolysis/modeling.py b/src/firescipy/pyrolysis/modeling.py index 90d4e8c..91e3373 100644 --- a/src/firescipy/pyrolysis/modeling.py +++ b/src/firescipy/pyrolysis/modeling.py @@ -1,3 +1,8 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. + + import numpy as np import pandas as pd diff --git a/src/firescipy/utils.py b/src/firescipy/utils.py index 85e07fa..c21d555 100644 --- a/src/firescipy/utils.py +++ b/src/firescipy/utils.py @@ -1,3 +1,7 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. + import numpy as np import pandas as pd From 8c194ee5bd9ff7b60a52e289f4d43dae28178877 Mon Sep 17 00:00:00 2001 From: TristanHehnen Date: Wed, 5 Nov 2025 10:53:12 +0100 Subject: [PATCH 06/10] Added CONTRIBUTING.md and NOTICE files. --- CONTRIBUTING.md | 59 +++++++++++++++++++++++++++++++++++++++++++++++++ NOTICE | 9 ++++++++ 2 files changed, 68 insertions(+) create mode 100644 CONTRIBUTING.md create mode 100644 NOTICE diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..1614189 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,59 @@ +# Contributing to FireSciPy + +Thank you for your interest in contributing! FireSciPy is a community-driven project, +and contributions of all kinds are welcome — including code, documentation, examples, +bug reports, feature requests, and discussion. + +--- + +## How to Contribute + +### 1. Reporting Issues +If you find a bug, have a question, or want to request a new feature, please open an +issue on GitHub. When reporting a bug, try to include: +- A clear description of the problem +- Steps to reproduce +- Expected behavior +- Your Python version and platform + +### 2. Making Code Contributions +1. Fork the repository +2. Create a **new branch** for your work: +`git checkout -b feature/my-improvement` +3. Make your changes +4. Add tests if applicable +5. Submit a pull request with a clear explanation of what the change does and why + +We try to keep the code readable and maintainable. If you're unsure about design +choices, open an issue or draft PR first and we can discuss. + +--- + +## Licensing (Important) + +FireSciPy is licensed under the **Mozilla Public License Version 2.0 (MPL-2.0)**. + +By submitting a pull request, **you agree that your contributions will be licensed under +the MPL-2.0**, which ensures: +- Your improvements to FireSciPy remain open and available to the community +- You retain your own copyright to your contributions + +No Contributor License Agreement (CLA) is required. + +For more information on MPL-2.0: +https://www.mozilla.org/en-US/MPL/2.0/ + +--- + +## Code Style + +- Follow general [PEP 8](https://peps.python.org/pep-0008/) guidelines +- Write clear variable names, meaningful docstrings, and comments where helpful +- Keep functions small and focused where possible + +--- + +## Thank You + +Your contribution helps move the field of fire science forward. +We’re glad to have you here! diff --git a/NOTICE b/NOTICE new file mode 100644 index 0000000..b7e3bd9 --- /dev/null +++ b/NOTICE @@ -0,0 +1,9 @@ +FireSciPy +Copyright (c) 2025 FireSciPy contributors + +This project is licensed under the Mozilla Public License Version 2.0. +https://www.mozilla.org/en-US/MPL/2.0/ + +Some portions of this project may incorporate or adapt work from other open-source +projects. Attributions for such components are included in the relevant source files +and documentation where required. From 9584159a768857a78a1a22103d8bbad0ba583cc1 Mon Sep 17 00:00:00 2001 From: TristanHehnen Date: Wed, 5 Nov 2025 10:56:56 +0100 Subject: [PATCH 07/10] Adjusted README. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0f10260..bd7ded2 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,8 @@ Examples are available in Jupyter notebooks in the [FireSciPy repo on GitHub](ht ## Meta Information -Distributed under the CC-BY-4.0 license (Creative Commons Attribution 4.0 International Public License, https://creativecommons.org/licenses/by/4.0/). See ``LICENSE`` for more information. +This project is licensed under the Mozilla Public License Version 2.0. +https://www.mozilla.org/en-US/MPL/2.0/ See ``LICENSE`` for more information. [https://github.com/FireDynamics/FireSciPy](https://github.com/FireDynamics/FireSciPy) From b66b01ded629bd95e64cde7a26f94c31e1d4a876 Mon Sep 17 00:00:00 2001 From: TristanHehnen Date: Wed, 5 Nov 2025 10:58:11 +0100 Subject: [PATCH 08/10] Adjusted README. --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index bd7ded2..c24a1de 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,9 @@ Examples are available in Jupyter notebooks in the [FireSciPy repo on GitHub](ht ## Meta Information This project is licensed under the Mozilla Public License Version 2.0. -https://www.mozilla.org/en-US/MPL/2.0/ See ``LICENSE`` for more information. +https://www.mozilla.org/en-US/MPL/2.0/ + +See ``LICENSE`` for more information. [https://github.com/FireDynamics/FireSciPy](https://github.com/FireDynamics/FireSciPy) From 4dcf25b8974a6976e56e85db6682a4cc41ccf6af Mon Sep 17 00:00:00 2001 From: TristanHehnen Date: Wed, 5 Nov 2025 11:01:55 +0100 Subject: [PATCH 09/10] Fixed typos. --- pyproject.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 63cb1ba..f6f2da0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,9 +10,6 @@ readme = "README.md" keywords = ["Fire Safety Engineering", "fire", "pyrolysis", "kinetics", "FDS"] requires-python = ">=3.9" license = { file = "LICEN[CS]E*" } -classifiers = [ - "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", -] authors = [ { name = "Tristan Hehnen", email = "you@example.com" }, { name = "Lukas Arnold", email = "you@example.com" } @@ -20,6 +17,7 @@ authors = [ classifiers = [ "Programming Language :: Python :: 3", "Operating System :: OS Independent", + "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", "Intended Audience :: Science/Research", "Topic :: Scientific/Engineering" ] From e5d4874a6833779abbae841a73258c6a26b3da31 Mon Sep 17 00:00:00 2001 From: TristanHehnen Date: Wed, 5 Nov 2025 11:06:38 +0100 Subject: [PATCH 10/10] Fixed yet another typo. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f6f2da0..cf7d156 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ description = "FireSciPy: Fundamental algorithms from the field of fire science, readme = "README.md" keywords = ["Fire Safety Engineering", "fire", "pyrolysis", "kinetics", "FDS"] requires-python = ">=3.9" -license = { file = "LICEN[CS]E*" } +license = { file = "LICENSE" } authors = [ { name = "Tristan Hehnen", email = "you@example.com" }, { name = "Lukas Arnold", email = "you@example.com" }