发展模式 Fortran 错误记录2023-12-15

 

/data/chengxl/CAS-ESM2.0-test1/models/atm/iap/src/physics/pbl_iap.F90(476): error #6236: A specification statement cannot appear in the executable section.

real(r8) :: rrho(pcols) ! 1/rho m^3/kg

-----^

定义语句不能出现在可执行部分。

我忘记把临时写的定义语句移到前面了。

/data/chengxl/CAS-ESM2.0-test1/models/atm/iap/src/physics/pbl_iap.F90(478): error #6285: There is no matching specific subroutine for this generic subroutine call. [CALC_USTAR]

call calc_ustar(ncol,state%t(:ncol,pver),state%pmid(:ncol,pver),taux,tauy,rrho,ustar)

----------^

该通用子程序调用没有匹配的特定子程序

可是这不是有吗,难道是因为没有public吗

加上 public calc_ustar先试试

/data/chengxl/CAS-ESM2.0-test1/models/atm/iap/src/physics/pbl_iap.F90(480): error #6404: This name does not have a type, and must have an explicit type. [THVS]

thvs = state%t(:ncol,pver) * ( 1_r8 + 0.61*state%q(:ncol,pver) )

-----^

这个感觉是忘记定义thvs

/data/chengxl/CAS-ESM2.0-test1/models/atm/iap/src/physics/pbl_iap.F90(480): error #6351: The number of subscripts is incorrect. [Q]

thvs = state%t(:ncol,pver) * ( 1_r8 + 0.61*state%q(:ncol,pver) )

------------------------------------------------------^

这应该是索引少写了一个,因为q(:,:,1)才是液态水比湿,2好像是固态冰比湿等

/data/chengxl/CAS-ESM2.0-test1/models/atm/iap/src/physics/pbl_iap.F90(480): error #6366: The shapes of the array expressions do not conform. [THVS]

thvs = state%t(:ncol,pver) * ( 1_r8 + 0.61*state%q(:ncol,pver) )

-----^

定义好了这个问题应该就没了吧

/data/chengxl/CAS-ESM2.0-test1/models/atm/iap/src/physics/pbl_iap.F90(482): error #6460: This is not a field name that is defined in the encompassing structure. [LHFLX]

call calc_obklen(ncol , state%t(:ncol,pver) , thvs , state%lhflx/latvap, state%shflx(:ncol) , rrho , ustar ,&

----------------------------------------------------------------^

这不是包含结构中定义的字段名称,或许是因为我的变量名写错了,我直接用lhflx 了

/data/chengxl/CAS-ESM2.0-test1/models/atm/iap/src/physics/pbl_iap.F90(482): error #6460: This is not a field name that is defined in the encompassing structure. [SHFLX]

call calc_obklen(ncol , state%t(:ncol,pver) , thvs , state%lhflx/latvap, state%shflx(:ncol) , rrho , ustar ,&

------------------------------------------------------------------------------------^

同上

好吧state中就没有lhf,shf ,cam_in 里面才有的

/data/chengxl/CAS-ESM2.0-test1/models/atm/iap/src/physics/pbl_iap.F90(482): error #6158: The structure-name is invalid or is missing. [STATE]

call calc_obklen(ncol , state%t(:ncol,pver) , thvs , state%lhflx/latvap, state%shflx(:ncol) , rrho , ustar ,&

------------------------------------------------------------------------------^

同上问题

/data/chengxl/CAS-ESM2.0-test1/models/atm/iap/src/physics/pbl_iap.F90(483): error #6404: This name does not have a type, and must have an explicit type. [KHFS]

khfs , kqfs , kbfs ,obklen) !位温,虚位温,比湿通量,位温通量,1/rho , u_star

----------------^

忘记定义了

/data/chengxl/CAS-ESM2.0-test1/models/atm/iap/src/physics/pbl_iap.F90(483): error #6404: This name does not have a type, and must have an explicit type. [KQFS]

khfs , kqfs , kbfs ,obklen) !位温,虚位温,比湿通量,位温通量,1/rho , u_star

-----------------------^

忘记定义了

/data/chengxl/CAS-ESM2.0-test1/models/atm/iap/src/physics/pbl_iap.F90(483): error #6404: This name does not have a t

ype, and must have an explicit type. [KBFS]

忘记定义了

khfs , kqfs , kbfs ,obklen) !位温,虚位温,比湿通量,位温通量,1/rho , u_star

------------------------------^

/data/chengxl/CAS-ESM2.0-test1/models/atm/iap/src/physics/pbl_iap.F90(482): error #6285: There is no matching specific subroutine for this generic subroutine call. [CALC_OBKLEN]

call calc_obklen(ncol , state%t(:ncol,pver) , thvs , state%lhflx/latvap, state%shflx(:ncol) , rrho , ustar ,&

----------^

同上面问题

/data/chengxl/CAS-ESM2.0-test1/models/atm/iap/src/physics/pbl_iap.F90(202): warning #6843: A dummy argument with an explicit INTENT(OUT) declaration is not given an explicit value. [PBLH]

taux , tauy , shflx , cflx , pblh , &

----------------------------------------------------------------------------------^

/data/chengxl/CAS-ESM2.0-test1/models/atm/iap/src/physics/pbl_iap.F90(203): warning #6843: A dummy argument with an

explicit INTENT(OUT) declaration is not given an explicit value. [USTAR]

tpert , qpert , ustar , obklen , ptend , &

------------------------------------------------------------^

/data/chengxl/CAS-ESM2.0-test1/models/atm/iap/src/physics/pbl_iap.F90(203): warning #6843: A dummy argument with an explicit INTENT(OUT) declaration is not given an explicit value. [OBKLEN]

tpert , qpert , ustar , obklen , ptend , &

-----------------------------------------------------------------------^

/data/chengxl/CAS-ESM2.0-test1/models/atm/iap/src/physics/pbl_iap.F90(1639): warning #6843: A dummy argument with an

explicit INTENT(OUT) declaration is not given an explicit value. [SIGMA_THETA]

subroutine calc_sigma_scalar(zeta,sigma_u,sigma_v,sigma_w,sigma_theta,sigma_q)

------------------------------------------------------------------^

/data/chengxl/CAS-ESM2.0-test1/models/atm/iap/src/physics/pbl_iap.F90(1639): warning #6843: A dummy argument with an explicit INTENT(OUT) declaration is not given an explicit value. [SIGMA_Q]

subroutine calc_sigma_scalar(zeta,sigma_u,sigma_v,sigma_w,sigma_theta,sigma_q)

这几个warning 是老演员了不想管他们。


再次编译出现问题

 

/data/chengxl/CAS-ESM2.0-test1/models/atm/iap/src/physics/pbl_iap.F90(363): error #6417: The dimensions of this array have been defined more than once. [RRHO]

real(r8) :: rrho(pcols) ! 1/rho m^3/kg

------------------------^

应该多次定义的问题,删去其中一个

/data/chengxl/CAS-ESM2.0-test1/models/atm/iap/src/physics/pbl_iap.F90(483): error #6285: There is no matching specific subroutine for this generic subroutine call. [CALC_USTAR]

call calc_ustar(ncol,state%t(:ncol,pver),state%pmid(:ncol,pver),taux(:ncol),tauy(:ncol),rrho(:ncol),ustar(:ncol

))

----------^

interface 目的是为了能自己判断选用哪个函数,为什么会没有适合的函数呢?难道是因为变量的维度不对吗,是这个原因的。rrho正确后这个问题消失了。

/data/chengxl/CAS-ESM2.0-test1/models/atm/iap/src/physics/pbl_iap.F90(488): error #6285: There is no matching specific subroutine for this generic subroutine call. [CALC_OBKLEN]

call calc_obklen(ncol , state%t(:ncol,pver) , thvs(:ncol) , lhflx(:ncol)/latvap, shflx(:ncol) , rrho(:ncol) , u

star(:ncol) ,&

----------^同上问题

/data/chengxl/CAS-ESM2.0-test1/models/atm/iap/src/physics/pbl_iap.F90(203): warning #6843: A dummy argument with an

explicit INTENT(OUT) declaration is not given an explicit value. [PBLH]

taux , tauy , shflx , cflx , pblh , &

----------------------------------------------------------------------------------^

/data/chengxl/CAS-ESM2.0-test1/models/atm/iap/src/physics/pbl_iap.F90(204): warning #6843: A dummy argument with anexplicit INTENT(OUT) declaration is not given an explicit value. [USTAR]

tpert , qpert , ustar , obklen , ptend , &

------------------------------------------------------------^

/data/chengxl/CAS-ESM2.0-test1/models/atm/iap/src/physics/pbl_iap.F90(204): warning #6843: A dummy argument with an

explicit INTENT(OUT) declaration is not given an explicit value. [OBKLEN]

tpert , qpert , ustar , obklen , ptend , &

-----------------------------------------------------------------------^

/data/chengxl/CAS-ESM2.0-test1/models/atm/iap/src/physics/pbl_iap.F90(1645): warning #6843: A dummy argument with an

explicit INTENT(OUT) declaration is not given an explicit value. [SIGMA_THETA]

subroutine calc_sigma_scalar(zeta,sigma_u,sigma_v,sigma_w,sigma_theta,sigma_q)

------------------------------------------------------------------^

/data/chengxl/CAS-ESM2.0-test1/models/atm/iap/src/physics/pbl_iap.F90(1645): warning #6843: A dummy argument with an

explicit INTENT(OUT) declaration is not given an explicit value. [SIGMA_Q]

subroutine calc_sigma_scalar(zeta,sigma_u,sigma_v,sigma_w,sigma_theta,sigma_q)

------------------------------------------------------------------------------^

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/222923.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

外汇天眼:Coinbase国际交易所将启动现货市场

Coinbase宣布了Coinbase国际交易所扩张的下一阶段——退出符合条件客户的非美国现货市场。 这一最新发展旨在满足Coinbase全球用户群体的独特需求和需求,同时强化其扩大国际访问可信产品和服务的战略使命。 Coinbase国际交易所现货交易的推出和扩展将分阶段进行。1…

JS - 浅拷贝和深拷贝

目录 1,概念2,浅拷贝1,直接赋值2,Object.assign()3,扩展运算符4,数组 slice() 和 concat()5,jquery 中的 $.extend()6,lodash.clone() 3,深拷贝1,JSON.parse(…

Java数据类型相关

数据类型 Java有哪些数据类型 定义:Java语言是强类型语言,对于每一种数据都定义了明确的具体的数据类 型,在内存中分配了不同大小的内存空间。 分类: 基本数据类型 数值型 整数类型(byte,short,int,long) 浮点类型(float,dou…

【数据结构】模式匹配之KMP算法与Bug日志—C/C++实现

​🌈个人主页:Sarapines Programmer🔥 系列专栏:《数据结构奇遇记》🔖墨香寄清辞:墨痕寄壮志,星辰梦未满。 通幽径心凝意,剑指苍穹势如山。 目录 🌞1. 模式匹配的基本概念…

Spring Boot之自定义starter

🥳🥳Welcome Huihuis Code World ! !🥳🥳 接下来看看由辉辉所写的关于Spring Boot的相关操作吧 目录 🥳🥳Welcome Huihuis Code World ! !🥳🥳 一. starter是什么 二.为什么要使…

计算机操作系统-第十六天

目录 线程的实现方式 用户级线程 内核级线程 多线程模型 一对一模型 多对多模型 多对多模型 本节思维导图 线程的实现方式 用户级线程 历史背景:早期操作系统只支持进程,不支持线程,当时的线程是由线程库实现的 本质:从…

【普中】基于51单片机简易计算器显示设计( proteus仿真+程序+设计报告+实物演示+讲解视频)

目录标题 📟1. 主要功能:📟2. 讲解视频:📟3. 设计说明书(报告)📟4. 仿真📟5. 实物烧录和现象📟6. 程序代码📟7. 设计资料内容清单 【普中开发板】基于51单片机简易计算器…

二叉树中的中序遍历、反向遍历和逆序

概念 中序遍历(Inorder Traversal): 中序遍历是二叉树遍历的一种方式,它的顺序是左子树、根节点、右子树。对于一个二叉搜索树(BST),中序遍历可以得到一个升序的节点序列。中序遍历的步骤是首先…

深度学习之模型权重

在深度学习中,模型的权重(weights)是指神经网络中的参数,这些参数用于调整和学习模型的行为,以便能够对输入数据进行有效的映射和提取有用的特征。深度学习模型通常由许多神经元和连接组成,而权重就是连接这…

processon使用及流程图和泳道图的绘画(登录界面流程图,门诊流程图绘制门诊泳道图,住院泳道图,OA会议泳道图),Axure自定义元件

目录 一.processon图形的使用场景介绍 二.流程图绘画 三.泳道图的绘画 1.绘制门诊流程图绘制门诊泳道图 2. 绘制住院泳道图​编辑 3.绘制药库采购入库流程图 4.绘制OA会议泳道图 四.Axure自定义元件 1.Axure载入元件库 一.processon图形的使用场景介绍 二.流程图绘画 示例&…

数字图像处理 - 使用Rembg库在Python中轻松删除背景

Python 中的 rembg 模块是一个用于去除图像背景的库。它基于Rembg算法,采用神经网络来执行背景去除任务。该算法经过训练,可以识别图像中的前景物体并将其与背景分开,从而产生具有透明背景的图像。 rembg库基于Rembg算法,该算法本身有一个有趣的历史。Rembg算法由研究员兼软…

鸿蒙开发组件之Web

一、加载一个url myWebController: WebviewController new webview.WebviewControllerbuild() {Column() {Web({src: https://www.baidu.com,controller: this.myWebController})}.width(100%).height(100%)} 二、注意点 2.1 不能用Previewer预览 Web这个组件不能使用预览…

C/C++函数调用栈信息输出(backtrace backtrace_symbols)

C/C函数调用栈信息输出(backtrace & backtrace_symbols) 最近工作,搞了一个死锁问题,加了好多输出无法定位问题。 就想着在锁操作调用的地方输出函数调用栈信息,试了一下,竟然实现了。 源代码 #incl…

《PCL多线程加速处理》-配准-icp

《PCL多线程加速处理》-配准-icp 一、效果展示二、具体实现三、代码一、效果展示 数据越大,速度提升效果越快 1、48万点 2、十万点 3、三万点 4、9000点 配准数据 二、具体实现

构建智能外卖跑腿小程序:技术实践与代码示例

在快节奏的现代生活中,外卖跑腿服务已成为人们日常生活中不可或缺的一部分。为了提供更智能、高效的外卖跑腿体验,本文将深入探讨构建一款智能外卖跑腿小程序所需的关键技术,并提供相应的代码示例。 1. 地理位置服务的整合 外卖跑腿小程序…

小程序 -网络请求post/get

1.1网络请求的概念(post和get) 1.2步骤 1.3 应用函数 js里面写,用bindtap绑在控件上,就不讲了 实例代码: //发起get数据请求get_info(){wx.request({url:https://www.escook.cn/api/get,//请求的接口地址,必须基于https协议//请求的方式met…

ElasticSearch之Shard request cache settings

对于查询操作,Elasticsearch提供了缓存特性来暂存结果。 对于相同条件的查询请求,在缓存中的数据失效前,响应后续的查询操作时可以直接从缓存中提取结果,有效降低检索操作的时延,提升检索数据时的体验。 提到缓存相关的…

SpringBoot项目打成War包部署

简介 一般情况下,在SpringBoot项目开发完成进行服务器部署时,都是打成JAR包进行部署运行的。但是在有些情况下也需要将其打成War包使用Tomcat进行部署。本篇文章就简单介绍一下SpringBoot如何打成War包。 注意: 测试Demo的SpringBoot版本为2…

python selenium chrome114版本之后环境配置和携带缓存打开chrome

尽力局 chrome驱动环境配置chrome打开带缓存设置待缓存打开自动关闭浏览器自动关闭浏览器弹窗 最终代码找资料难啊最终效果代码 依赖包和生成依赖包方法关闭谷歌升级 chrome驱动环境配置 网上找到的资料,我现在安装的是120版本的,这个资料是可行的。比较…

Jetbrains IDEA 2023.3 更新

本心、输入输出、结果 文章目录 Jetbrains IDEA 2023.3 更新前言Jetbrains IDEA 2023.3 主要更新内容功能更新用户体验优化数据库工具花有重开日,人无再少年实践是检验真理的唯一标准Jetbrains IDEA 2023.3 更新 编辑:简简单单 Online zuozuo 地址:https://blog.csdn.net/qq…