|
13 | 13 | GRGM1200B_RM1_1E0 : Goossens et al. (2020) |
14 | 14 | GL0900D : Konopliv et al. (2014) |
15 | 15 | GL1500E : Konopliv et al. (2014) |
| 16 | +GL1800F : Park et al. (2025) |
16 | 17 |
|
17 | 18 | Magnetic field |
18 | 19 | -------------- |
@@ -400,6 +401,39 @@ def GL1500E(lmax=1500): |
400 | 401 | name='GL1500E (Moon)', encoding='utf-8') |
401 | 402 |
|
402 | 403 |
|
| 404 | +def GL1800F(lmax=1800): |
| 405 | + ''' |
| 406 | + GL1800F is a JPL 1800 degree and order spherical harmonic model of |
| 407 | + the gravitational potential of the Moon. This model uses a rank-minus-1 |
| 408 | + constraint based on gravity from surface topography for degrees greater |
| 409 | + than 600. |
| 410 | +
|
| 411 | + Parameters |
| 412 | + ---------- |
| 413 | + lmax : int, optional |
| 414 | + The maximum spherical harmonic degree to return. |
| 415 | +
|
| 416 | + Reference |
| 417 | + --------- |
| 418 | + R. S. Park, A. Berne, A. S. Konopliv, J. T. Keane, I. Matsuyama, F. Nimmo, |
| 419 | + M. Rovira-Navarro, M. P. Panning, M. Simons, D. J. Stevenson, |
| 420 | + R. C. Weber, Thermal asymmetry in the Moon's mantle inferred from |
| 421 | + monthly tidal response, Nature, 2025. |
| 422 | + ''' |
| 423 | + if lmax < 0: |
| 424 | + lmax = 1800 |
| 425 | + |
| 426 | + fname = _retrieve( |
| 427 | + url="https://pds-geosciences.wustl.edu/grail/grail-l-lgrs-5-rdr-v1/grail_1001/shadr/jggrx_1800f_sha.tab", # noqa: E501 |
| 428 | + known_hash="sha256:d2a552067a78bf1d2755807ae14ee1d6843a8f6a4228e01ce59a665516738fec", # noqa: E501 |
| 429 | + downloader=_HTTPDownloader(progressbar=True), |
| 430 | + path=_os_cache('pyshtools'), |
| 431 | + ) |
| 432 | + return _SHGravCoeffs.from_file(fname, lmax=lmax, header_units='km', |
| 433 | + errors=True, omega=_omega.value, |
| 434 | + name='GL1800F (Moon)', encoding='utf-8') |
| 435 | + |
| 436 | + |
403 | 437 | __all__ = ['LDEM_shape_pa', 'LOLA_shape', 'T2015_449', 'Ravat2020', 'GRGM900C', |
404 | | - 'GRGM1200B', 'GRGM1200B_RM1_1E0', 'GL0900D', 'GL1500E', |
| 438 | + 'GRGM1200B', 'GRGM1200B_RM1_1E0', 'GL0900D', 'GL1500E', 'GL1800F', |
405 | 439 | 'historical'] |
0 commit comments