https://github.com/geodynamics/citcoms
Revision 63b41551c1e94567ff90c7a256d150bda6da2c50 authored by Leif Strand on 28 November 2006, 23:28:36 UTC, committed by Leif Strand on 28 November 2006, 23:28:36 UTC
transition.

Using a pidXXXX.cfg file as input should "work" now, although it still
doesn't reproduce the original simulation, since at least one
parameter is missing ('steps').  I maintain that dumping the
configuration is really the job of the framework (Pyre).
Unfortunately, Pyre's current capabilities in this area are buggy in
the case of '.pml' files, and non-existent in the case of '.cfg'
files.

Note: 'nproc_surf' is now a real inventory item, instead of a fake
one.  It looks like it doesn't belong in the inventory at all, though.
(I left it there to avoid breakage.)

1 parent 08658cd
Raw File
Tip revision: 63b41551c1e94567ff90c7a256d150bda6da2c50 authored by Leif Strand on 28 November 2006, 23:28:36 UTC
Fixed some bugs, some of which were introduced during the C -> C++
Tip revision: 63b4155
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.0b7, < 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