https://github.com/geodynamics/citcoms
Revision 6962d60446ef0c949e1d8cd7faa26b57e630b460 authored by Eh Tan on 25 April 2007, 19:30:44 UTC, committed by Eh Tan on 25 April 2007, 19:30:44 UTC
Setting solver.ic.restart=on won't read the *.tracer.* and *.comp_el.* files 
anymore. 

Setting solver.tracer.ic_method=2 will read the old *.tracer.* files as before,
but the composition field will be calculated according to the tracers, not read
from the *.comp_el.* files. The parameter 
solver.tracer.reset_initial_composition becomes obsolete.

1 parent 12e75b9
Raw File
Tip revision: 6962d60446ef0c949e1d8cd7faa26b57e630b460 authored by Eh Tan on 25 April 2007, 19:30:44 UTC
Clean up the old way of tracers/composition restart.
Tip revision: 6962d60
setup.py

from archimedes import use_merlin
use_merlin()

from merlin import setup, find_packages

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

    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