
發布
注冊
/
登錄submit的案例
Moldex3D模流分析之點擊Submit開始進行分析
1.點擊 Submit 產生所需要的檔案,進行 Moldex3D 與結構的耦合分析
a.選擇工作目錄。然后,點擊 Confirm 。
b..點擊 run ,計算材料參數
c.點擊 run locally 。
d.點擊 run ,并設定以幾個 CPU 來執行分析。 (可用CPU數目根據結構分析軟件的授權決定)
2.當分析工作開始執行, FE analyses 窗口會自動出現。這窗口分 3 部分。第一部分,包括會列出所有的工作清單與執行狀能。第二部分,結構分析的執行狀況。第三部分,記錄 Digimat 的執行狀況。
注意:當分析工作開始執行后,Moldex3D Digimat-MS 可立即用于另一偶合分析的設定,不影響正在運行的分析。
3.當分析完成后,會出現下列窗口,點擊 Yes 后,會開啟結構分析軟件,可以檢視分析結果。
4.另一種方式是,右鍵點擊上方的狀況列的任何一個位置,選擇 View results 或 Open working directory 來檢視分析結果。
展開 abaqus批量提交inp文件進行計算
from abaqusConstants import*
import job
(2)下面為計算代碼
mdb.JobFromInputFile(name='result-1',inputFileName='cal-1.inp',numCpus=62,numDomains=62)
mdb.jobs['result-1'].submit()
mdb.jobs['result-1'].waitForCompletion()
resut-1為計算后odb文件名稱,inp文件為模型計算文件,numCpus,numDomains對于計算機的線程數
當同時計算多個模型文件時,將計算代碼copy多次即可,注意odb文件名不要重復,例如
mdb.JobFromInputFile(name='result-10',inputFileName='cal-10.inp',numCpus=62,numDomains=62)
mdb.jobs['result-10'].submit()
mdb.jobs['result-10'].waitForCompletion()
mdb.JobFromInputFile(name='result-11',inputFileName='cal-11.inp',numCpus=62,numDomains=62)
mdb.jobs['result-11'].submit()
mdb.jobs['result-11'].waitForCompletion()
mdb.JobFromInputFile(name='result-12',inputFileName='cal-12.inp',numCpus=62,numDomains=62)
mdb.jobs['result-12'].submit()
mdb.jobs['result-12'].waitForCompletion
展開 使用python進行ABAQUS批處理-kernel代碼
(consistencyChecking=OFF)
可以看得出雖然只有兩條命令但是參數多的不像話, 我們可以試一下只保留我們關心的參數, 看看其余的參數是否都存在默認值(其實也可以查閱參考文檔確定這兩個函數的參數, 不過我覺得并沒有試一下快捷):
mdb.JobFromInputFile(name='Job-1',
inputFileName='W:\\temp\\Job-1.inp',
numCpus=16, numDomains=16)
mdb.jobs[jobname].submit()
代碼精簡后重新嘗試運行宏, 發現完全可以完成預想的操作.
展開 韓清龍教授講座手稿整理
Must Be Within the Main Scope of the Journal Submitted(必須在期刊提交的最佳時間提交你的論文)
l Article outside of the journal scope may not receive fair and objective review
在雜志審稿期之外發表的論文,可能不會得到公正、客觀的回復
l Remember that the prime source of reviewers are authors of previously published articles in the journal submitted
記住,雜志的主要投稿人是以前在這個雜志發表過論文的作者
l If article is publish in wrong journal it may left unnoticed
如果文章被發表在不合適的雜志上,這篇文章可能不會怎么引人注意
7. Well Select References(合理的選擇參考文獻)
l Have to follow current references (article without recent references-couple years are automatically rejected)
必須跟隨當今的參考文獻(如果你的文章沒有應用足夠的最近年份的參考文獻,那可能會直接被自動駁回)
l Avoid second-sited references
避免重復引用參考文獻
l Not too many self-cited references
不要有太多自引的參考文獻
展開 
Ei檢索的“腫瘤研究”國際會議征文 hz
You are welcome to submit papers to us.
The topics of this special session are related in the fields as follows:
Pharmaceutical & medical therapy development
Latest technology in cancer detection and treatment
Target identification & validation
Cancer treatment—Integrated Medicine
Scientific advances in prevention & diagnosis
Principles of cancer biology
Cancer genes and genomics
Biomarkers discovery
Cancer etiology
The deadline of full paper submission is Oct. 30, 2009
Notification of acceptance will be given by Dec. 31, 2009
For more information, please contact: submit@icbbe.org
展開 Abaqus插件,切削自動建模、計算 ¥9.9
切削模型如圖所示:
計算結果部分截圖如下:
插件的使用:(注:本插件在Abaqus/CAE 2016版本下開發)
本插件使用步驟如下兩張截圖所示:
點擊工具欄Plug-ins,選擇CuttingAnalysisJob,出現創建工程的對話框;
依次填入對應的參數,點擊OK即可自動創建模型和Job,如果選擇了“Submit Now”,則會自動提交計算;如果不需要立刻執行或在執行前需要修改材料參數、接觸參數或其他設置,可不選擇“Submit Now”。
如果出現切屑變形過大(卷曲360度甚至更大)導致工件右表面結點卷曲穿透上表面的情況,請在提交計算前添加上表面與這部分結點的接觸算法(不包括工件右上角這個結點)。由于這個不一定出現,所以并未設置接觸。
展開 [User Submitted Code Samples]Simulated R
Simulated Radar Sweep (OpenGL - C++)
Author: Steve Butrimas
This sample demonstrates how to use a pixel buffer to simulate the trailing persistent after-glow of a radar's sweep.
Relevant Keywords: wglCreatePbufferARB, wglGetPbufferDCARB, wglReleasePbufferDCARB, wglDestroyPbufferARB, wglQueryPbufferARB, gluNewQuadric, gluDeleteQuadric, wglGetPixelFormatAttribivARB, wglGetPixelFormatAttribfvARB, wglChoosePixelFormatARB, gluOrtho2D, glViewport, glCopyTexSubImage2D, PFNWGLCREATEPBUFFERARBPROC, PFNWGLGETPBUFFERDCARBPROC, PFNWGLRELEASEPBUFFERDCARBPROC, PFNWGLDESTROYPBUFFERARBPROC, PFNWGLQUERYPBUFFERARBPROC, PFNWGLGETPIXELFORMATATTRIBIVARBPROC, PFNWGLGETPIXELFORMATATTRIBFVARBPROC, and PFNWGLCHOOSEPIXELFORMATARBPROC.
Download (Last Updated: 08/22/05)
展開 Abaqus中三種自適應網格介紹及對比
2)在Job功能模塊中選擇菜單Adaptivity---Manage,在彈出的Adaptivity Process Manager對話框中單擊Create按鈕,創建自適應分析作業系列(adaptivity process),指定最大重復次數(Maximum iterations),然后單擊這個對話框中的Submit按鈕提交分析,注意不是通常所用的Job Manager對話框中的Submit按鈕。
3)ABAQUS/CAE會自動完成以下自適應網格重劃過程:首先提交一個基于當前網格的分析作業,在分析完成后,根據得到的結果計算誤差因子,根據這個誤差因子重新生成網格(在JOB功能模塊中可以看到新的網格),然后重新提交分析。以上過程將會自動重復,直到達到第一步設定的網格重劃目標或在第二步中設定的最大重復次數。
3、 網格間的求解變換(mesh-to-mesh solution mapping)
網格間的求解變換是用一個新的網格代替因變形過大而嚴重扭曲的原有網格,把原來的分析結果自動映射到新網格上,然后繼續分析。這種方法僅適用于大變形問題的(ABAQUS/Standard)分析,只能通過INP文件中使用關鍵詞*MAP SOLUTION 實現。
文章轉自有限元在線博客,分享給大家學習交流
展開 第二屆工程物理國際學術研討會(IWEP2024)
? IWEP2024 Publication
Publication: Journal of Physics: Conference Series (IOP Publishing)
Index: Submit to Ei Compendex, Scopus, etc.
? Call for Papers
The topic of the paper submitted to IWEP is included but not limited to:
Engineering Mechanics
Fluid Mechanics
Acoustics
Thermodynamics
Electrical Engineering
Electric Circuit
Material Physics
Geophysics
Optics and Optoelectronics
Electromagnetics
Computational Physics
Signal Processing
Computer Network
Quantum Physics
Biophysics
Astrophysics
? Impressions of Kunming
2 Kunming is known as 'the Spring City' as every season is like spring: changeable but not too extreme.
展開 【公益貼】 ABAQUS批量提交CAE計算(非inp)
(consistencyChecking=OFF) #提交作業
Python腳本文件
abaqus_submit.txt
以及相關CAE測試文件
ABAQUS.rar
如何加速Map圖計算?
LSDSO設置如下:
1)在Toolkit設置最后一頁:
勾選 Save Toolkit settings to file
勾選Only prepare new design compatible for LS-DSOjob (user to submit job)
點Finish,自動創建新design
2)右鍵點新design的ParametricSetup1,點Submit Job…提交參數化求解任務;
3)勾選 Use large scale DSO;
4)設置 Tasks 和 Cores ;
5)點擊 Submit Job;
6)計算結束,重新進入Toolkit,next到最后一頁,勾選Use results of LS-UDO run..,選擇對應的 Design 和LS-DSO job ID 生成Map 圖。
4 模型周期對稱性設置
當電機具有對稱時候采用單元電機模型代替全模型,可以大大減少計算量,提高計算速度及效率。
使用最小單元電機模型,需在2D Design Settings設置周期對稱數。同時對于邊界條件需要注意,當單元電機為一對極時,如16p24s,設置Hs= Hm邊界條件;當單元電機為單個極時,如8p48s,設置Hs = -Hm邊界條件。
16p24s,Hs=Hm邊界條件
8p48s,Hs=-Hm邊界條件
5 ACT參數設置
ACT參數設置包含時間步長、周期數及參數掃描設置等。
(1)時間步數
由于電機軸功率對時間步長的敏感性相對電功率來說較小,因此Toolkit在計算效率時始終采用了軸功率和損耗組成的效率表達式。
展開 
第二屆環境與能源新材料國際學術會議(NMEE 2024)
? Conference History
NMEE 2023 was successfully held in October 2023, and we sincerely thank 70 scholars from Huazhong University of Science and Technology, China University of Petroleum, Harbin Engineering University, China Jiliang University and other universities at home and abroad for submitting their papers/participating in the conference and exchanging ideas.
The proceedings were published 10 weeks after the conference, and indexed by EI Compendex, Scopus in 4 weeks after publishing.
? NMEE2024 Publication
Publication: Journal of Physics: Conference Series (IOP Publishing)
Index: Submit to Ei Compendex, Scopus, etc.
展開 [User Submitted Code Samples]Bump Mappin
Bump Mapping with GLSlang (OpenGL - C++)
Author: Anudhyan Boral
This sample demonstrates how to perform simple bump mapping using GLSlang.
Relevant Keywords:
Download (Last Updated: 02/27/06)
[User Submitted Code Samples]Simulated R
Cel-shading with GL_ARB_vetex_program (OpenGL - C++)
Author: Simon Flannery
This sample demonstrates how to perform cel-shading or toon-rendering using GL_ARB_vertex_program.
Relevant Keywords: GL_ARB_vertex_program, glGenProgramsARB, glDeleteProgramsARB, glBindProgramARB, glProgramStringARB, glProgramEnvParameter4fARB, glGetString, wglGetProcAddress, GL_VERTEX_PROGRAM_ARB, GL_PROGRAM_FORMAT_ASCII_ARB, PFNGLGENPROGRAMSARBPROC, PFNGLDELETEPROGRAMSARBPROC, PFNGLBINDPROGRAMARBPROC, PFNGLPROGRAMSTRINGARBPROC, PFNGLPROGRAMENVPARAMETER4FARBPROC, !!ARBvp1.0, PARAM, ATTRIB, OUTPUT, state.matrix.mvp, program.env, vertex.position, vertex.color, result.position, result.color, fragment.texcoord, fragment.color.primary, texture, TEMP, MUL, ADD, 2D, DP3, DP4, MOV, RSQ, and END.
展開 [User Submitted Code Samples]Loading a&n
Loading a 3DS File (OpenGL - C++)
Author: Anudhyan Boral
This sample demonstrates how to load 3D geometry from a .3DS file.
Relevant Keywords:
Download (Last Updated: 02/27/06)