Metadata-Version: 1.2
Name: heatequation
Version: 1.0.0
Summary: Calculate heat transfer in a matrix of heterogeneous materials
Home-page: https://github.com/worden341/heatequation
Author: Eric Worden
Author-email: UNKNOWN
License: GPL-3.0+
Description-Content-Type: UNKNOWN
Description: heatequation provides a single class HeatEquation to calculate heat transfer in a matrix of heterogeneous materials. It implements an incremental, arithmetic solution to the heat equation [#1]_ . This solution allows you calculate the system state at any point in time by calculating the system state at all increments up to that point.  It only implements a two dimensional solution of the heat equation, though someone could relatively easily extend it to one or three dimensions.
        
        The HeatEquation class is initialized with arrays corresponding to physical properties in the physical space of the simulated materials. The required arrays are initial temperature, mass density, thermal conductivity, and specific heat capacity.
        
        The source distribution includes a sample script to help you get started.
        
        .. [#1] https://en.wikipedia.org/wiki/Heat_equation
Keywords: heat equation thermal transfer
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Requires-Python: >=2.7
