ANSYS:Negative pivot encountered
做柔性体仿真,从ANSYS导入模态中性文件时有这个报错.
Negative pivot encountered. This is  likely caused by insufficient displacement constraints or improper master dof selection to avoid rigid body motion of the superelement region currently selected.   
还有一个    
superelement file subelem.sub is not available.
这个与interface point (ip) 的位置选取有关。开始时我选取了两个,就出现这个错误,增加了一个interface point就好了。修改ip位置应该也能避免这个错误,建议选择ip位置时要慎重。
ANSYS:Negative pivot encountered的更多相关文章
- matlab实现高斯消去法、LU分解
		
朴素高斯消去法: function x = GauElim(n, A, b) if nargin < 2 for i = 1 : 1 : n for j = 1 : 1 : n A(i, j) ...
 - pb9常见错误及含义
		
1. by zero 发生被0除错误 2. Null object reference 空对象引用 3. Array boundary exceeded 数组越界 4. Enumerated v ...
 - ansys 有限元自学手册
		
李兵.人邮2013.4 实体模型 –> 修正后划分 有限元网格 offset WP 偏移工作平面 模型的建立 将cT轮廓曲线 提取出来输入三维造型软件进行建模的方法,这种方法由于要对 ...
 - 3-8 pivot操作
		
数据透视表¶ In [1]: import pandas as pd excelample=pd.DataFrame({'Month':["January","Jan ...
 - 关于org.apache.lucene.queryParser.ParseException: Encountered "" 解决方法
		
现象: org.apache.lucene.queryParser.ParseException: Encountered "<EOF>" at line 1, col ...
 - Pivot 和 Unpivot
		
在TSQL中,使用Pivot和Unpivot运算符将一个关系表转换成另外一个关系表,两个命令实现的操作是“相反”的,但是,pivot之后,不能通过unpivot将数据还原.这两个运算符的操作数比较复杂 ...
 - Encountered an unexpected error when attempting to resolve tag helper directive '@addTagHelper' with value '"*, Microsoft.AspNet.Mvc.TagHelpers"'
		
project.json 配置: { "version": "1.0.0-*", "compilationOptions": { " ...
 - 探究负边距(negative margin)原理
		
W3C规范在介绍margin时有这样一句话: Negative values for margin properties are allowed, but there may be implement ...
 - VS2015突然报错————Encountered an unexpected error when attempting to resolve tag helper directive '@addTagHelper' with value 'Microsoft.AspNet.Mvc.Razor.TagHelpers.UrlResolutionTagHelper
		
Encountered an unexpected error when attempting to resolve tag helper directive '@addTagHelper' with ...
 
随机推荐
- Toast工具类,Android中不用再每次都写烦人的Toast了
			
package com.zhanggeng.contact.tools; /** * Toasttool can make you use Toast more easy ; * * @author ...
 - [Effective JavaScript 笔记] 第11条:熟练掌握闭包
			
理解闭包三个基本的事实 第一个事实:js允许你引用在当前函数以外定义的变量. function makeSandwich(){ var magicIngredient=”peanut butter”; ...
 - 在服务器上远程链接另一台服务器的数据库的方法how to connet the database from the other host
			
iwangzheng.com 16:57 [root@a02.cmsapi]$ mysql -u<username> -p<password> -h10.103.xx.xx W ...
 - Linux prerouting和postrouting的区别
			
我大概清楚一点就是从内网出去的时候用POSTROUTING进来的时候用PREROUTING,可是做透明代理的时候确是用PREROUTING.这是为什么呢? 回复: sunnygg pre还是post是 ...
 - TokuDB的特点验证 - billy鹏
			
TokuDB的特点验证 - billy鹏 时间 2014-03-03 14:28:00 博客园_billy鹏的足迹原文 http://www.cnblogs.com/billyxp/p/35674 ...
 - linux 系统下查看raid信息,以及磁盘信息
			
有时想知道服务器上有几块磁盘,如果没有做raid,则可以简单使用fdisk -l 就可以看到. 但是做了raid呢,这样就看不出来了.那么如何查看服务器上做了raid? 软件raid:只能通过Lin ...
 - 【系统】CentOS、Ubuntu、Debian三个linux比较异同
			
CentOS.Ubuntu.Debian三个linux比较异同 2014-07-31 12:58 53428人阅读 评论(6) ...
 - JQuery $(function(){})和$(document).ready(function(){})
			
document.ready和onload的区别——JavaScript文档加载完成事件页面加载完成有两种事件一是ready,表示文档结构已经加载完成(不包含图片等非文字媒体文件)二是onload,指 ...
 - extjs在窗体中添加搜索框
			
在extjs中添加搜索框,搜索框代码如下: this.searchField = new Ext.ux.form.SearchField({ store : this.store ...
 - ORACLE查询某一字段重复的数据
			
第一种方法: select a.* from ASSET_MAINTAIN a inner join ASSET_MAINTAIN b on a.asset_id=b.asset_id and a. ...