开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
master
分支 (15)
标签 (99)
master
azamat/enable-rearranger-alltoall
worleyph/buf_alloc_in_rearranger
rljacob/update-mpiserial-20170424
azamat/perf-updates-gsmap
rljacob/remove-whitespace
worleyph/Disable_RSEND_by_default
rljacob/systest/fix-smatinit
worleyph/Router_initp_optimization
worleyph/peLocs_optimization
worleyph/swapm_in_rearranger
rljacob/mpiserial-to-subtree
worleyph/active_pes_perf_fix
remove_malloc_header
routertest
MCT_2.10.0
MCT_2.10.0-rc2
MCT_2.10.0-rc1
MCT_2.10.beta1
MCT_2.10.beta
MCT_2.9.0
MCT_2.9.0-rc1
MCT_2.9.0-rc0
NagFix_MCT_2.8.3
MCT_2.8.3
MCT_2.8.2
MCT_2.8.1
MCT_2.8.0
MCT_2.7.4
MCT_2.7.3
MCT_2.7.2
MCT_2.7.1
MCT_2.7.0
MCT_2.6.0
MCT_2_6_0beta
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
贡献代码
同步代码
对比差异 通过 Pull Request 同步
同步更新到分支
通过 Pull Request 同步
将会在向当前分支创建一个 Pull
Request,合入后将完成同步
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
未知许可证
######################################################################
 -- Argonne National Laboratory
 Model Coupling Toolkit (MCT)
 Robert Jacob
 Jay Larson
 Everest Ong
 Ray Loy
 For more information, see http://www.mcs.anl.gov/mct
 See MCT/LICENSE for license.
######################################################################
 This is version 2.10 of the Model Coupling Toolkit (MCT).
 Our purpose in creating this toolkit is to support the construction
 of highly portable and extensible high-performance couplers
 for distributed memory parallel coupled models.
######################################################################
 Current Contents of the directory MCT:
 README -- this file
 LICENSE -- copyright statement and license.
 mct/ -- Source code for the Model Coupling Toolkit.
 mpeu/ -- Source code for the message-passing environment utilities
 library (MPEU), which provides support for MCT
 mpi-serial/ -- Source code for optional mpi replacement library.
 examples/-- Source code for examples which demonstrate the use of MCT.
 doc/ -- documentation for MCT
 protex/ -- tool for constructing documentation from source code
 data/ -- input data for running example programs. Not needed to
 compile the library.
 m4/ -- files for autoconf (not needed to build).
Optional Contents available
 babel/ -- multi language interface for MCT using BABEL.
 See babel/README for more information.
	 NO LONGER SUPPORTED
######################################################################
 REQUIREMENTS:
 Building MCT requires a Fortran90 compiler.
 A full MPI library is now optional. To compile without MPI, add
 --enable-mpiserial to the configure command below. Note that
 not all the examples will work without MPI. See mpi-serial/README
 for more information.
 The MCT library builds and the examples run on the following
 platforms/compilers:
 Linux: Portland Group, Intel, gfortran, Absoft, Pathscale, Lahey, NAG
 MacOSX: gfortran
 IBM (AIX) xlf
 IBM BlueGene (see PLATFORM NOTE below)
 NEC
 Fujitsu
 Running some of the examples requires a full MPI installation with mpirun
 Memory requirements are modest.
######################################################################
 BUILD INSTRUCTIONS:
 In the top level directory (the location of this README):
	> ./configure
	> make
 "make examples" will build the example programs.
 BUILD HELP:
 Try "./configure -help" for a list of options.
 The correct Fortran90 compiler must be in your current path.
 A frequent problem on Linux is when more than one F90 compiler
 is in your path and configure finds one and later finds mpif90
 for another.
 Example: If configure has trouble finding the correct F90 compiler:
 > ./configure FC=pgf90.
 You can also direct configure through environment variables:
 > setenv FC xlf90
 > ./configure
 If the build fails, please do the following:
 > ./configure >& config.out
 > make >& make.out
 and send us config.out, make.out and config.log (which is produced by the
 configure command)
 PLATFORM NOTES:
 On a BlueGene, use:
 > ./configure FC=bgxlf90_r CC=mpixlc_r MPIFC=mpixlf90_r (can also use versions without _r)
######################################################################
 INSTALLATION INSTRUCTIONS:
 "make install" will copy the .mod files to the /usr/include directory
 and the *lib.a files to /usr/lib. To override these choices, use
 "-prefix" when running configure:
 > ./configure --prefix=/home/$USER
 With the above option, "make install" will place .mod's in /home/$USER/include
 and *lib.a's in /home/$USER/lib
######################################################################
 BUILDING AND RUNNING THE EXAMPLES
 The programs in MCT/examples/simple require no input.
 The programs in MCT/examples/climate_concur1 and MCT/examples/climate_sequen1
 require some input data in a directory called MCT/data. The dataset is available with MCT
 or separately from the website.
 To build them, type "make examples" in the top level directory or
 cd to examples and type "make".
######################################################################
 Both MCT and MPEU source code are self-documenting. All modules
 and routines contain prologues that can be extracted and processed
 into LaTeX source code by the public-domain tool ProTeX. ProTeX is
 included in the MCT source and available from:
 http://gmao.gsfc.nasa.gov/software/protex/
 You can build the documentation with protex and latex by following
 the directions in the doc directory.
######################################################################
 REVISION HISTORY:
 18 Oct, 2000 -- Initial prototype
 09 Feb, 2001 -- working MxN transfer
 27 Apr, 2001 -- Sparse Matrix Multiply
 13 Jun, 2001 -- General Grid
 23 Aug, 2001 -- Linux PGF90 port
 14 Dec, 2001 -- PCM support
 29 Mar, 2002 -- Rearranger
 14 Nov, 2002 -- version 1.0.0 -- first public release
 11 Feb, 2003 -- version 1.0.4
 12 Mar, 2003 -- version 1.0.5
 02 Apr, 2003 -- version 1.0.7
 03 Jul, 2003 -- version 1.0.9
 26 Aug, 2003 -- version 1.0.12
 12 Sep, 2003 -- version 1.0.14
 21 Jan, 2004 -- version 1.4.0
 05 Feb, 2004 -- version 1.6.0
 23 Apr, 2004 -- version 2.0.0
 18 May, 2004 -- version 2.0.1
 11 Jul, 2004 -- version 2.0.2
 19 Oct, 2004 -- version 2.0.3 (not released)
 21 Jan, 2005 -- version 2.1.0
 01 Dec, 2005 -- version 2.2.0
 22 Apr, 2006 -- version 2.2.1 (not released)
 08 Sep, 2006 -- version 2.2.2
 16 Oct, 2006 -- version 2.2.3
 10 Jan, 2007 -- version 2.3.0
 17 Aug, 2007 -- version 2.4.0
 21 Nov, 2007 -- version 2.4.1
 20 Dec, 2007 -- version 2.4.2 (not released)
 21 Jan, 2008 -- version 2.4.3 (not released)
 28 Jan, 2008 -- version 2.5.0
 20 May, 2008 -- version 2.5.1
 05 Mar, 2009 -- version 2.6.0
 05 Jan, 2010 -- version 2.7.0 (released only in CCSM4)
 28 Feb, 2010 -- version 2.7.1 (released only in CESM1)
 30 Nov, 2010 -- version 2.7.2 (released only in CESM1.0.3)
 25 Jan, 2011 -- version 2.7.3 (not released)
 07 Mar, 2012 -- version 2.7.4 (not released)
 30 Apr, 2012 -- version 2.8.0
 05 Jul, 2012 -- version 2.8.1 (not released)
 12 Sep, 2012 -- version 2.8.2 (not released)
 16 Dec, 2012 -- version 2.8.3
 19 Jun, 2015 -- version 2.9.0
 19 Apr, 2018 -- version 2.10.0
Copyright © 2018, UChicago Argonne, LLC All Rights Reserved Software Name: Model Coupling Toolkit (MCT) Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the names of UChicago Argonne, LLC or the Department of Energy nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THE SOFTWARE IS SUPPLIED "AS IS" WITHOUT WARRANTY OF ANY KIND. NEITHER THE UNITED STATES GOVERNMENT, NOR THE UNITED STATES DEPARTMENT OF ENERGY, NOR UCHICAGO ARGONNE, LLC, NOR ANY OF THEIR EMPLOYEES, MAKES ANY WARRANTY, EXPRESS OR IMPLIED, OR ASSUMES ANY LEGAL LIABILITY OR RESPONSIBILITY FOR THE ACCURACY, COMPLETENESS, OR USEFULNESS OF ANY INFORMATION, DATA, APPARATUS, PRODUCT, OR PROCESS DISCLOSED, OR REPRESENTS THAT ITS USE WOULD NOT INFRINGE PRIVATELY OWNED RIGHTS.
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

copied from github, model coupling system
暂无标签
README
未知许可证
查看未知开源许可协议
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/skywall/MCT.git
git@gitee.com:skywall/MCT.git
skywall
MCT
MCT
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /