News:

SMF - Just Installed!

Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Wahid

#1
Thank you for your reply Mr Barkey
#2
Hello,

I have a question about how finding surface average temperature on Abaqus.

I computed a heat transfer model on Abaqus, and I would like to calculate the average temperature of a surface for example.
I think that the mean temperature is not simply the mean of the nodes temperatures.

Can you help me to find the best method.

Thank you
#3
Thank you for te reply Mr. Barkey.

I found the solution, the name of the set must be noted in upper case ['SET-1']. knowing that in the model abaqus CAE, it is defined like that ['Set-1']

Thanks
Wahid
#4
Hello,
I would like to extract the Node set coordinates using a python script. i tried with this method using an odb file :

import sys
from odbAccess import *
from abaqus import *
from abaqusConstants import *
import __main__

odb = openOdb('C:/Temp/Job-1.odb')
set = odb.rootAssembly.instances['part-1'].nodeSets['Set-1']

numNodes = len(set.nodes)
partlabel=[];
partxcord=[];
partycord=[];
partzcord=[];
for curNode in a.nodes:
    partlabel.append(curNode.label)
    partxcord.append(curNode.coordinates[0])
    partycord.append(curNode.coordinates[1])
    partzcord.append(curNode.coordinates[2])

The error displayed is : keyerror : Set-1.
knowing that when I defined the same syntax for the coordinates of the instance nodes, it works correctly.

myInstance = odb.rootAssembly.instances['part-1']
#5
Thank you Mr. Barkey for your reply
#6
Hello,

I am working on a heat transfer model on abaqus,  and I would like to apply a non-uniform heat flux at nodes.

Knowing that each node had a heat flux different from others.

Could you please help me to write a python script which allows to introduce the heat flux in each node.

Thank you
#7
Thank you Mr. Barkey
#8
Scripting and Python / Re: ODB temperature reader
March 12, 2021, 01:10:18 PM
Hello,

How to add lines in the program to read and display the maximum temperature.

I will be very grateful for your help.
#9
Hello,

I need to know how to use an output temperature data NT11 from a previous job as an initial PredefinedField in the next job in Abaqus. I need to do this operation many times (100 times for example). I think that i will doing it with a Python Script.

Thank you very much.