https://github.com/geodynamics/citcoms
Revision 91aba940cd2ad1e7282312c5d1dc877aeba0a728 authored by Eh Tan on 05 September 2008, 19:46:12 UTC, committed by Eh Tan on 05 September 2008, 19:46:12 UTC
svn+ssh://svn@geodynamics.org/cig/mc/3D/CitcomS/trunk

........
  r12272 | tan2 | 2008-06-18 18:04:06 -0700 (Wed, 18 Jun 2008) | 6 lines
  
  Compute E->surf_det (top surface area, ie. surface jacobian, of an element) on a unit sphere.
  
  Use E->surf_det, instead of the surface jacobian returned by get_global_1d_shape_fn(), to expand spherical harmonics. 
  
  The surface jacobian returned by get_global_1d_shape_fn() is defined at the top radius of the current mesh. When nprocz>1, the top radius is not the same as the outer radius of the sphere for processors. As a result, the spherical harmonics expansion gave incorrect result when nprocz>1 in the previous revisions.
........
  r12273 | tan2 | 2008-06-18 18:05:12 -0700 (Wed, 18 Jun 2008) | 2 lines
  
  Send geoid arrays to vertical columns of processors. After this fix, the geoid output is the same for nprocz=1 and nprocz>1.
........
  r12276 | tan2 | 2008-06-19 14:42:27 -0700 (Thu, 19 Jun 2008) | 2 lines
  
  Added debugging (but disabled) function for spherical harmonics expansion.
........

1 parent e558725
Raw File
Tip revision: 91aba940cd2ad1e7282312c5d1dc877aeba0a728 authored by Eh Tan on 05 September 2008, 19:46:12 UTC
Merged revisions 12272-12276 via svnmerge from
Tip revision: 91aba94
setup.py

from archimedes import use_merlin
use_merlin()

from merlin import setup, find_packages, require

install_requires = ['pythia[mpi] >= 0.8.1.0, < 0.8.2a']

import os
want_exchanger = os.environ.get('want_exchanger', 'auto')
exchanger = "Exchanger >= 1, < 2a"
if want_exchanger == 'auto':
    # Use Exchanger if it's available.
    try:
        require(exchanger)
    except Exception, e:
        pass
    else:
        install_requires.append(exchanger)
elif want_exchanger == 'yes':
    # Require Exchanger.
    install_requires.append(exchanger)

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

    zip_safe = False,
    packages = find_packages(),
    
    install_requires = install_requires,

    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