https://github.com/geodynamics/citcoms
Revision d9e66bf3820a14ac302966c468079f303d5c7df0 authored by Michael Gurnis on 29 January 2007, 20:37:00 UTC, committed by Michael Gurnis on 29 January 2007, 20:37:00 UTC
1 parent 55cca22
Raw File
Tip revision: d9e66bf3820a14ac302966c468079f303d5c7df0 authored by Michael Gurnis on 29 January 2007, 20:37:00 UTC
A minor change so that restart now works properly when lith_age=1. Now restart from old temperature fields appear to work without any obvious corruption of the Temp field. Only tested with Full.
Tip revision: d9e66bf
setup.py

from archimedes import use_merlin
use_merlin()

from merlin import setup, find_packages

setup(
    
    name = 'CitcomS', 
    version = '2.1',

    zip_safe = False,
    packages = find_packages(),
    
    install_requires = [
    'pythia[mpi] >= 0.8.1.0, < 0.8.2a',
    ],

    author = 'Louis Moresi, et al.',
    author_email = 'cig-mc@geodynamics.org',
    description = """A finite element mantle convection code.""",
    long_description = """CitcomS is a finite element code designed to solve thermal convection problems relevant to Earth's mantle. Written in C, the code runs on a variety of parallel processing computers, including shared and distributed memory platforms.""",
    license = 'GPL',
    url = 'http://www.geodynamics.org/cig/software/packages/mc/citcoms/',

)
back to top