首页 > 其他分享 >08、foamSearch使用

08、foamSearch使用

时间:2023-04-06 21:00:09浏览次数:40  
标签:phi 08 Gauss foamSearch bounded 使用 reconstruct div linearUpwind

我们可以使用openfoam自带的foamSearch工具进行搜索

在某个文件夹内搜索文件的某个内容

foamSearch $FOAM_TUTORIALS fvSchemes "divSchemes/div(phi,U)"

输出结果

div(phi,U)      bounded Gauss limitedLinear 0.2;
div(phi,U)      bounded Gauss limitedLinearV 1;
div(phi,U)      bounded Gauss linear;
div(phi,U)      bounded Gauss linearUpwind grad;
div(phi,U)      bounded Gauss linearUpwind grad(U);
div(phi,U)      bounded Gauss linearUpwind limited;
div(phi,U)      bounded Gauss linearUpwind unlimited;
div(phi,U)      bounded Gauss linearUpwindV grad(U);
div(phi,U)      bounded Gauss upwind;
div(phi,U)      Gauss cubic;
"div\(phi.*,U.*\)" Gauss limitedLinearV 1;
div(phi,U)      Gauss limitedLinearV 1;
div(phi,U)      Gauss linear;
div(phi,U)      Gauss linearUpwind grad(U);
"div\(phi.*,U.*\)" Gauss linearUpwind limited;
div(phi,U)      Gauss linearUpwind limited;
div(phi,U)      Gauss linearUpwindV grad(U);
div(phi,U)      Gauss LUST grad(U);
div(phi,U)      Gauss LUST unlimitedGrad(U);
div(phi,U)      Gauss upwind;

显示次数

foamSearch -c $FOAM_TUTORIALS  fvSchemes interpolationSchemes

输出结果

    252 {
    252 }
      2     default         cubic;
    227     default         linear;
     14     default         none;
      2     fi              upwind alphaRhoPhi.particles;
      1     interpolate(HbyA) linear;
      1     interpolate(U)  linear;
    252 interpolationSchemes
      1     reconstruct(rho) vanAlbada;
      6     reconstruct(rho) vanLeer;
      1     reconstruct(T)  vanAlbada;
      6     reconstruct(T)  vanLeer;
      1     reconstruct(U)  vanAlbadaV;
      6     reconstruct(U)  vanLeerV;

标签:phi,08,Gauss,foamSearch,bounded,使用,reconstruct,div,linearUpwind
From: https://www.cnblogs.com/dbai/p/17294142.html

相关文章

  • foreach/增强for循环 中 使用iterator.remove();
    Set<String>set=newHashSet<>();set.add("a");set.add("b");Iterator<String>iterator=set.iterator();for(Stringstring:set){iterator.next();iterator.remove();} Excep......
  • 【Azure 应用服务】使用Docker Compose创建App Service遇见"Linux Version is too lo
    问题描述使用DockerCompose方式合并多个镜像(Images)文件,然后部署到AppService中,结果失败。报错LinuxVersion太长,不能超过4000个字符。错误消息:{"code":"DeploymentFailed","message":"Atleastoneresourcedeploymentoperationfailed.Pleaselistdeploymentoper......
  • Spring Cache使用
    packagecom.itheima.controller;importcom.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;importcom.itheima.entity.User;importcom.itheima.service.UserService;importlombok.extern.slf4j.Slf4j;importorg.springframework.beans.factory.a......
  • 使用open live writer客户端写博客(亲测有效)
    博客都开了这么久了,才开始将资料上传,但是每次都要登录网页确实很麻烦,所以就用openlivewriter,使用起来真的是挺方便的,所以将我在安装配置时,发现的问题汇总起来以便日后再次碰到忘记怎么处理了,哈哈,我记性不好 一:安装                              ......
  • 使用TableLayout应该注意的地方
    4.0之后推荐使用GridLayout代替TableLayout详情见:浅谈android4.0开发之GridLayout布局TableLayout和我们平时在网页上见到的Table有所不同,TableLayout没有边框的,它是由多个TableRow对象组成,每个TableRow可以有0个或多个单元格,每个单元格就是一个View。......
  • 使用DbContext.Set<TEntity>()方法也可以对数据库实体进行CRUD操作
    我们可以用DbContext.Set<TEntity>()方法获取到一个DbSet<TEntity>对象,从而对泛型TEntity类所代表的数据库表进行CRUD操作。例如我们现在有数据库表和TEntity类Person,那么下面两种写法是完全等价的:dbContext.Persons.Take(10).ToList();//dbContext.Persons等于dbContext.Set<P......
  • 使用Kettle定时从数据库A刷新数据到数据库B
    一、需求背景由于项目场景原因,需要将A库(MySQL)中的表a、表b、表c中的数据定时T+1增量的同步到B库(MySQL)。这里说明一下,不是数据库的主从备份,就是普通的数据同步。经过技术调研,发现Kettle挺合适的,原因如下:Kettle(数据抽取、清洗、转换、装载)是由java编写,可以在Window、Lin......
  • CS61A_lab08
    题目:Writethegeneratorfunction make_generators_generator,whichtakesazero-argumentgeneratorfunction g andreturnsageneratorthatyieldsgenerators.Foreachelement e yieldedbythegeneratorobjectreturnedbycalling g,anewgeneratorobjec......
  • 快速学习反假币教程(仅供交流使用)
    仅供交流使用,如有侵权请联系[email protected] 反假币跳过十五分钟(仅供交流使用)以edge浏览器为例1.打开edge浏览器输入:http://wechat.renzhenwh.com/studyExam/examLogin2.按电脑F12打开开发者工具3.在edge上输入账号密码登录4.查看开发者工具,进行如下操作,复制Cookie后......
  • WPF的控件字符串内容使用StringFormat进行字符串转换
    在WPF中TextBlock的Text有时内容只需要改变个别数字,而不需要所以内容都修改,这时候就要使用StringFormat, 如:<TextBlockText="Ihavexxxfriends"/>这里面的xxx是个变量,那在Binding时应该怎样写呢<TextBlockText="{BindingFirendNumber,StringFormat='Ihave{0}firends......