Skip to content

Commit

Permalink
Merge pull request #35 from HUGG/develop
Browse files Browse the repository at this point in the history
Revert to old eU calculation
  • Loading branch information
davewhipp authored Aug 3, 2023
2 parents 7f2c54e + c538032 commit afc847c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup

setup(name='tcplotter',
version='0.3.5',
version='0.3.6',
description='Plots thermochronometer ages and closure temperatures',
url='https://github.com/HUGG/tcplotter',
author='David Whipp',
Expand Down
4 changes: 2 additions & 2 deletions tcplotter/tcplotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

# Define function for calculating effective uranium concentration
def calc_eu(uranium, thorium):
"""Calculates effective uranium concentration from U, Th inputs"""
return uranium + 0.235 * thorium
"""Calculates effective uranium concentration from U, Th inputs (Cooperdock et al., 2019)"""
return uranium + 0.238 * thorium


# Define function to find which version of the RDAAM_He/ketch_aft to use
Expand Down

0 comments on commit afc847c

Please sign in to comment.