C# Solidworks二次开发:枚举应用实战(第十一讲)

大家好,今天继续介绍我们的枚举应用系列。

下面是今天要介绍的枚举值:

(1)第一个为swsPVResultCombinationError_e,这个枚举值的含义为结合压力容器设计研究结果时的错误,下面是官方的具体枚举值:

MemberDescription
swsPVResultCombinationError_AtleastTwoItemsNeeded2 = You need to specify at least two studies and multiplication factors
swsPVResultCombinationError_CombineAnalysisNotDone7 = The analysis was not done
swsPVResultCombinationError_CombineIncompatibleConfiguration10 = Incompatible configurations
swsPVResultCombinationError_CombineIncompatibleConnectors15 = Incompatible connectors
swsPVResultCombinationError_CombineIncompatibleContact14 = Incompatible contacts
swsPVResultCombinationError_CombineIncompatibleMesh9 = Incompatible meshes
swsPVResultCombinationError_CombineIncompatiblePlanarType16 = Incompatible planar types
swsPVResultCombinationError_CombineIncompatibleRestraints11 = Incompatible restraints
swsPVResultCombinationError_CombineIncompatibleResults8 = Incompatible results
swsPVResultCombinationError_CombineIncompatibleShellsMaterials13 = Incompatible shell materials
swsPVResultCombinationError_CombineIncompatibleSolidsMaterials12 = Incompatible solid materials
swsPVResultCombinationError_InvalidFactors5 = One or more multiplication factors are invalid
swsPVResultCombinationError_InvalidStudy6 = One or more studies are invalid
swsPVResultCombinationError_ItemsNotSameInNumber4 = Number of elements in the multiplication factors and study names arrays are not the same
swsPVResultCombinationError_NoError0 = Successful
swsPVResultCombinationError_NotAvailable1 = Result combination is not available for this study
swsPVResultCombinationError_StudyNamesNotProper3 = Study names are not valid

(2)第二个为swsResultPlotErrorCode_e,这个枚举值的含义为结果图错误码,下面是官方的具体枚举值:

MemberDescription
swsResultPlot_CosworksViewNotPresent16 = Cosmos view is not present
swsResultPlot_EquivalentStressNotApplicable15 = Equivalent stress plot is not applicable
swsResultPlot_FailedPlotCreation2 = Plot not created
swsResultPlot_ImproperResultsEquation13 = Invalid results equation
swsResultPlot_InvalidComponentType6 = Invalid result component type
swsResultPlot_InvalidExternalResultsFile17
swsResultPlot_InvalidInputArgInCombiWithTensorVectorFlag4 = Tensor plot cannot be rendered when "Render Shell in 3D" or "Show plot on selected entities" is selected
swsResultPlot_InvalidIsoValueRange18
swsResultPlot_InvalidMeshAppliedToStudy9 = Mesh not compatible with study type
swsResultPlot_InvalidResultType5 = Invalid result type
swsResultPlot_InvalidSelectedEntities3 = Invalid selected entities
swsResultPlot_InvalidSmoothingCycleRange19
swsResultPlot_InvalidStudy1 = Study is missing important internal components
swsResultPlot_InvalidStudyType12 = Step numbers not compatible with study type
swsResultPlot_InvalidUnitType7 = Invalid unit type
swsResultPlot_IsAvailableOnlyForElements8 = Plot is valid only for elements
swsResultPlot_IsAvailableOnlyForNodes11 = Plot is valid only for nodes
swsResultPlot_MeshInformationNotFound20
swsResultPlot_NoError0 = No error
swsResultPlot_PlotDoesNotExist14 = Result plot does not exist
swsResultPlot_TryingToSetInvalidProperty10 = Invalid property

(3)第三个为swsRunAnalysisError_e,这个枚举值的含义为运行分析错误,下面是官方的具体枚举值:

MemberDescription
swsRunAnalysisDefineInitialTemperature3 = Define initial temperatures to perform transient thermal analysis
swsRunAnalysisErrorAnalysisFailed24 = Analysis failed
swsRunAnalysisErrorAuthorizationFailed22 = Authorization failed for this analysis type
swsRunAnalysisErrorDefineRigidVirtualWallContact2 = Rigid virtual wall contact must be defined for grounded bolts
swsRunAnalysisErrorEXMaterialPropertyNotDefined13 = Elastic modulus (EX) material property not defined
swsRunAnalysisErrorEXValue14 = Elastic modulus (EX) should be >  0.0
swsRunAnalysisErrorInvalidLBC30 = Invalid load boundary conditions
swsRunAnalysisErrorMaterialNotDefined19 = Material is not defined
swsRunAnalysisErrorMaterialNotDefinedForComponents20 = Material is not defined for one or more components
swsRunAnalysisErrorMaterialNotDefinedForShells18 = Material is not defined for one or more shells
swsRunAnalysisErrorMeshNotFound23 = Mesh not found; create mesh first
swsRunAnalysisErrorMeshNotIdentical11 = The mesh is not identical for static studies used in different events
swsRunAnalysisErrorMultipleLoadsUseSameTimeCurve4 = Multiple loads on an entity should use the same time curve
swsRunAnalysisErrorNeedOneOrMoreStaticStudies6 = One or more static, nonlinear, or linear dynamic studies needed to perform fatigue analysis; studies containing beams only are excluded
swsRunAnalysisErrorNoFatigueEvent7 = No fatigue event defined
swsRunAnalysisErrorNoSNCurve9 = No SN curve available
swsRunAnalysisErrorNoSolidBody21 = No solid body to process
swsRunAnalysisErrorNoValidShell12 = No valid shell defined
swsRunAnalysisErrorPadaptiveNotSupportCyclicSymmetry27 = Cyclic symmetry is incompatible with p-adaptive method
swsRunAnalysisErrorPadaptiveNotSupportLargeDisplacement26 = Large displacement is incompatible with p-adaptive method
swsRunAnalysisErrorPadaptiveNotSupportNoPenetration28 = No Penetration contact is incompatible with p-adaptive method
swsRunAnalysisErrorPadaptiveNotSupportRemoteLoadMassGapContactConnector

29 = P-adaptive method does not support:

  • remove load/mass
  • gap contact
  • connectors
swsRunAnalysisErrorPoissonsRatio15 = Poisson's Ratio should be less than 0.5
swsRunAnalysisErrorRemoveOrChangeCreep17 = Creep option for material works only with force control method; remove creep or change the control method in the Advanced page of study's properties
swsRunAnalysisErrorSetUpDropTestStudy5 = Drop test study is not set up
swsRunAnalysisErrorStudyNotExist25 = Study does not exist
swsRunAnalysisErrorSuccessful0 = Successful
swsRunAnalysisErrorThermalConductivityNotDefined16 = Thermal conductivity not defined
swsRunAnalysisErrorTimeDependentOrAmplitideOnlyLoads8 = All loads should be either time dependent or amplitude only
swsRunAnalysisErrorUseHighQualityMesh1 = Draft mesh is incompatible with p-adaptive method; use high quality mesh

本篇文章要介绍的就是这么多,我们下篇文章再见。

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

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

相关文章

sudo权限

目录 1.创建普通用户 2.修改sudo配置文件 3.加入用户组 4.测试 1.创建普通用户 useradd daboluopasswd daboluo 2.修改sudo配置文件 vim /etc/sudoers ## Allow root to run any commands anywhere root ALL(ALL) ALL daboluo ALL(ALL) ALL#添加此行后…

[力扣题解]225. 用队列实现栈

题目:225. 用队列实现栈 思路 用一个队列模拟栈; 假设有数字:1,2,3; pop 队列里是这样的存的:3,2,1; 作为一个栈,应该弹出最后进来的那一个3&…

武汉星起航:策略升级,亚马逊平台销售额持续增长显实力

武汉星起航电子商务有限公司,一家致力于跨境电商领域的企业,于2023年10月30日在上海股权托管交易中心成功挂牌展示,这一里程碑事件标志着公司正式踏入资本市场,开启了新的发展篇章。公司董事长张振邦在接受【第一财经】采访时表示…

Layer1 公链竞争破局者:Sui 生态的全面创新之路

随着 Sui 生态逐渐在全球范围内树立起声望,并通过与 Revolut 等前沿金融科技平台合作,推广区块链教育与应用,Sui 生态的未来发展方向已成为业界瞩目的焦点。如今,Sui 的总锁定价值已攀升至 5.93 亿美元,充分展示了其在…

考虑需求响应的微网优化调度模型【粒子群算法】【matlab】

目录 1 主要内容 1.1 模型约束条件 1.2 粒子群算法优化过程 2 部分代码 3 效果图 4 下载链接 1 主要内容 该模型构建了考虑需求响应的微电网优化调度模型,并采用粒子群算法(PSO)进行优化求解,模型主体有储能、风电、光伏、微…

兄弟Brother数控机床网络IP配置设置教程

1、进入通讯参数页面 首先按下面板的数据库按钮: 按F6,选择通信参数: 2、调整网络和远程访问参数 数据改写(从属)从否改为是,远程操作从无效改为有效: 更改ip地址、网关、子网掩码等&#xff…

pcm转MP3怎么转?只需3个步骤~

PCM(Pulse Code Modulation)是一种用于数字音频编码的基础技术,最早起源于模拟音频信号数字化的需求。通过PCM,模拟音频信号可以被精确地转换为数字形式,为数字音频的发展奠定了基础。 MP3文件格式的多个优点 MP3的优…

面试二十五、remove和earse的区别

vector中erase的作用是删除掉某个位置position或一段区域(begin, end)中的元素,减少其size,返回被删除元素下一个元素的位置。 vector中remove的作用是将范围内为val的值都remove到后面,返回新的_last值(非val部分的en…

LeetCode-741. 摘樱桃【数组 动态规划 矩阵】

LeetCode-741. 摘樱桃【数组 动态规划 矩阵】 题目描述:解题思路一:动态规划,定推初遍举。解题思路二:倒序循环解题思路三:0 题目描述: 给你一个 n x n 的网格 grid ,代表一块樱桃地&#xff0…

git/gerrit使用遇到的问题

Push时出现的多个问题及其解决 branch【...】not found 这个错误通常出现在 Git 命令中指定的分支名称中包含特殊字符或者语法错误时。需要确保指定的分支名称是正确的,并且没有任何不支持的字符。 例如,如果分支名称是 feature/branch,应该…

软件系统安全设计规范(word原件)

1.1安全建设原则 1.2 安全管理体系 1.3 安全管理规范 1.4 数据安全保障措施 1.4.1 数据库安全保障 1.4.2 操作系统安全保障 1.4.3 病毒防治 1.5安全保障措施 1.5.1实名认证保障 1.5.2 接口安全保障 1.5.3 加密传输保障 1.5.4终端安全保障 软件资料清单列表部分文档…

亚马逊云科技产品测评:玩转云服务器(EC2)

文章目录 📑引言一、亚马逊发展历史介绍二、云服务器资源地域分布三、云服务器实例规格四、EC2计费模式五、亚马逊免费EC2领取 📑引言 亚马逊:世界上最大的云服务器提供商 亚马逊云科技 是由亚马逊公司提供的一系列云计算服务。它提供了弹性计…

[Flutter]配置pubspec.yaml

pubspec.yaml 文件是 Dart 和 Flutter 项目的核心配置文件,用于管理项目的依赖、版本、元数据等。 下面是 pubspec.yaml 文件中常见项的示例和说明: name: my_private_package #version: 0.0.1 # 开发一个Dart包或Flutter库,用于其他项目引用…

Linux-03

cat 由第一行开始显示文件内容 tac 从最后一行开始显示,可以看出 tac 是 cat 的倒着写 nl 显示的时候,顺道输出行号 more 一页一页的显示文件内容 less 与 more 类似,但是比 more 更好的是,他可以往前翻页 (空格翻页 退出q命令) h…

Codeforces Round 943 (Div. 3) A~E

A. Maximize? Problem - A - Codeforces 给定x求出使这个式子最大的y&#xff1a; 不用想复杂直接循环枚举即可。 #include<bits/stdc.h> using lllong long; ll n,m; void solve() {int x;std::cin>>x;ll ans0,y;for(int i1;i<x;i){if(std::__gcd(i,x)i>a…

Android 巧用putBinder方法传递大文件

使用Intent传递数据大家都知道&#xff0c;但是如果你使用Intent传递大于1Mb的数据时&#xff0c;就一定会报如下的错误&#xff1a; Caused by: android.os.TransactionTooLargeException: data parcel size 1049112 bytes 就是说你的传输数据太大了&#xff0c;当前的大小达…

价值2000元的优质产品经理证书免费考啦(含题库)

小李哥今天带来的的是Pendo家出的2张免费产品经理证书(送Credly徽章&#xff0c;可挂LinkedIn)&#xff0c;原价共计300刀(2000人民币)&#xff0c;使用小李哥文章末尾中的网址可以免费考试&#xff0c;同时小李哥给大家做了题库&#xff0c;欢迎关注小李哥领取&#xff0c;10分…

【个人博客搭建】(17)使用FluentValidation 参数校验

FluentValidation 是一个用于 .NET 的开源验证库&#xff0c;它提供了一种流畅的接口和强类型验证规则&#xff0c;使得验证逻辑表达得更加清晰和简洁。&#xff08;Apache-2.0&#xff09; FluentValidation 的主要作用包括&#xff1a; 提高代码可读性&#xff1a;通过使用 F…

C++基础——构造函数

当我们创建对象的时候,这个对象应该有一个初始状态&#xff0c;当对象销毁之前应该销毁自己创建的一些数据。对象的初始化和清理也是两个非常重要的安全问题&#xff0c;一个对象或者变量没有初始时&#xff0c;对其使用后果是未知&#xff0c;同样的使用完一个变量&#xff0c…

微信小程序开发实战:运动数据轻松获取,让健康生活触手可及【代码示例】

微信小程序开发实战&#xff1a;运动数据轻松获取&#xff0c;让健康生活触手可及【代码示例】 基础概念与API介绍微信运动数据接口权限申请 实战步骤1. 配置权限2. 请求用户授权3. 解密运动数据4. 后端解密逻辑 安全性与性能优化结语与讨论 在移动互联网时代&#xff0c;健康管…