GPRMAX-V3.0


GPRMAX3.0 是利用有限差分时域 (fdtd) 方法求解3D 麦克斯韦方程组,用来模拟探地雷达而设计的, 但也可用于为许多其它应用建立电磁波传播模型。该软件主要使用Python语言编写,同时需要支持OpenMP的C编译器visual stdio
资源截图
代码片段和文件信息
# Copyright (C) 2015-2018: The University of Edinburgh
#                 Authors: Craig Warren and Antonis Giannopoulos
#
# This file is part of gprMax.
#
# gprMax is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation either version 3 of the License or
# (at your option) any later version.
#
# gprMax is distributed in the hope that it will be useful
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with gprMax.  If not see .

try:
    from setuptools import setup Extension
except ImportError:
    from distutils.core import setup
    from distutils.extension import Extension

try:
    import numpy as np
except ImportError:
    raise ImportError(‘gprMax requires the NumPy package.‘)

import glob
import os
import re
import shutil
import sys

# Importing _version__.py before building can cause issues.
with open(‘gprMax/_version.py‘ ‘r‘) as fd:
    version = re.search(r‘^__version__s*=s*[‘“]([^‘“]*)[‘“]‘
                        fd.read() re.MULTILINE).group(1)

# Parse package name from init file. Importing __init__.py / gprMax will break as gprMax depends on compiled .pyx files.
with open(‘gprMax/__init__.py‘ ‘r‘) as fd:
    packagename = re.search(r‘^__name__s*=s*[‘“]([^‘“]*)[‘“]‘
                            fd.read() re.MULTILINE).group(1)

packages = [packagename ‘tests‘ ‘tools‘ ‘user_libs‘]

# Python version
if sys.version_info[:2] < (3 4):
    sys.exit(‘
Exited: Requires Python 3.4 or newer!
‘)

# Process ‘build‘ command line argument
if ‘build‘ in sys.argv:
    print(“Running ‘build_ext --inplace‘“)
    sys.argv.remove(‘build‘)
    sys.argv.append(‘build_ext‘)
    sys.argv.append(‘--inplace‘)

# Process ‘--no-cython‘ command line argument - either Cythonize or just compile the .c files
if ‘--no-cython‘ in sys.argv:
    USE_CYTHON = False
    sys.argv.remove(‘--no-cython‘)
else:
    USE_CYTHON = True

# Build a list of all the files that need to be Cythonized looking in gprMax directory and user_libs
cythonfiles = []
for root dirs files in os.walk(os.path.join(os.getcwd() packagename)):
    for file in files:
        if file.endswith(‘.pyx‘):
            cythonfiles.append(os.path.join(packagename file))
for root dirs files in os.walk(os.path.join(os.getcwd() ‘user_libs‘)):
    for file in files:
        if file.endswith(‘.pyx‘):
            cythonfiles.append(os.path.join(‘user_libs‘ file))

# Process ‘cleanall‘ command line argument - cleanup Cython files
if ‘cleanall‘ in sys.argv:
    USE_CYTHON = False
    print(‘Deleting Cython files...‘)
    for file in cythonfiles:
        filebase = os.path.splitext(file)[0]
        # Remove Cython C files
        if os.path.isfile(fileba

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-04-05 09:08  gprMax-master
     文件          45  2018-04-05 09:08  gprMax-master.gitattributes
     文件         204  2018-04-05 09:08  gprMax-master.gitignore
     文件         661  2018-04-05 09:08  gprMax-masterCREDITS
     文件       35141  2018-04-05 09:08  gprMax-masterLICENSE
     文件         127  2018-04-05 09:08  gprMax-masterMANIFEST.in
     文件       12326  2018-04-05 09:08  gprMax-masterREADME.rst
     文件         294  2018-04-05 09:08  gprMax-masterconda_env.yml
     目录           0  2018-04-05 09:08  gprMax-masterdocs
     文件        7417  2018-04-05 09:08  gprMax-masterdocsMakefile
     目录           0  2018-04-05 09:08  gprMax-masterdocssource
     目录           0  2018-04-05 09:08  gprMax-masterdocssource\_static
     目录           0  2018-04-05 09:08  gprMax-masterdocssource\_staticcss
     文件         388  2018-04-05 09:08  gprMax-masterdocssource\_staticcssmy_theme.css
     文件        3567  2018-04-05 09:08  gprMax-masterdocssourceenchmarking.rst
     文件         709  2018-04-05 09:08  gprMax-masterdocssourcecoding.rst
     文件        2380  2018-04-05 09:08  gprMax-masterdocssourcecomparisons_analytical.rst
     文件        2129  2018-04-05 09:08  gprMax-masterdocssourcecomparisons_numerical.rst
     文件       12089  2018-04-05 09:08  gprMax-masterdocssourceconf.py
     文件        2408  2018-04-05 09:08  gprMax-masterdocssourceexamples_advanced.rst
     文件        9057  2018-04-05 09:08  gprMax-masterdocssourceexamples_antennas.rst
     文件       10734  2018-04-05 09:08  gprMax-masterdocssourceexamples_simple_2D.rst
     文件        4103  2018-04-05 09:08  gprMax-masterdocssourcefaqs.rst
     文件       14741  2018-04-05 09:08  gprMax-masterdocssourcefeatures.rst
     文件       12266  2018-04-05 09:08  gprMax-masterdocssourcegprmodelling.rst
     文件        2663  2018-04-05 09:08  gprMax-masterdocssourcegpu.rst
     目录           0  2018-04-05 09:08  gprMax-masterdocssourceimages
     文件       77590  2018-04-05 09:08  gprMax-masterdocssourceimagesabcs.png
     文件       22697  2018-04-05 09:08  gprMax-masterdocssourceimagesantenna_like_GSSI_1500.png
     文件       57723  2018-04-05 09:08  gprMax-masterdocssourceimagesantenna_like_GSSI_400.png
     文件      195785  2018-04-05 09:08  gprMax-masterdocssourceimagesantenna_like_MALA_1200.png
............此处省略383个文件信息

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)