


{"id":346757,"date":"2024-01-26T11:23:59","date_gmt":"2024-01-26T11:23:59","guid":{"rendered":"\/forum\/forums\/reply\/346757\/"},"modified":"2024-01-26T11:23:59","modified_gmt":"2024-01-26T11:23:59","slug":"346757","status":"publish","type":"reply","link":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/346757\/","title":{"rendered":"Reply To: Automated Import of Load history data uisng scripts (Python or Mapdl)"},"content":{"rendered":"<p>&lt;p&gt;For anyone looking through this thread in the future&lt;br&gt;&lt;br&gt;&lt;\/p&gt;&lt;p&gt;This is the code adapted to componentwise force import (in this case Y direction)&lt;\/p&gt;&lt;div&gt;import csv&lt;\/div&gt;&lt;div&gt;filePath = &#8216;filepath\\\\force.csv'&lt;\/div&gt;&lt;div&gt;timesteps = [] #Create empty list to store timestep values&lt;\/div&gt;&lt;div&gt;loads = [] #Create empty list to store load values&lt;\/div&gt;&lt;div&gt;with open(filePath, &#8216;r&#8217;) as csvFile:&lt;\/div&gt;&lt;div&gt;&nbsp; &nbsp; csvRead = csv.reader(csvFile, delimiter=&#8217;,&#8217;)&lt;\/div&gt;&lt;div&gt;&nbsp; &nbsp; next(csvRead) #Skip first line (assumed headers)&lt;\/div&gt;&lt;div&gt;&nbsp; &nbsp;&nbsp;&lt;\/div&gt;&lt;div&gt;&nbsp; &nbsp; for row in csvRead:&lt;\/div&gt;&lt;div&gt;&nbsp; &nbsp; &nbsp; &nbsp; timesteps.append(row[0]) #Populate list with first column&#8217;s values&lt;\/div&gt;&lt;div&gt;&nbsp; &nbsp; &nbsp; &nbsp; loads.append(row[1]) #Populate list with second column&#8217;s values&lt;\/div&gt;&lt;div&gt;&nbsp;&lt;\/div&gt;&lt;div&gt;#Configure lists&lt;\/div&gt;&lt;div&gt;timeUnit = &#8216;[sec]&#8217; #Timestep unit&lt;\/div&gt;&lt;div&gt;loadUnit = &#8216;[N]&#8217; #Load unit&lt;\/div&gt;&lt;div&gt;timesteps = [str(time) + timeUnit for time in timesteps] #Convert values to strings and append unit&lt;\/div&gt;&lt;div&gt;loads = [str(load) + loadUnit for load in loads] #Convert values to strings and append unit&lt;\/div&gt;&lt;div&gt;#Create load&lt;\/div&gt;&lt;div&gt;analysis_104 = DataModel.GetObjectById(207)&lt;\/div&gt;&lt;div&gt;force_207 = DataModel.GetObjectById(207)&lt;\/div&gt;&lt;div&gt;selection = ExtAPI.SelectionManager.CreateSelectionInfo(SelectionTypeEnum.GeometryEntities)&lt;\/div&gt;&lt;div&gt;selection.Ids = [23]&lt;\/div&gt;&lt;div&gt;force_207.Location = selection&lt;\/div&gt;&lt;div&gt;force_207.DefineBy = LoadDefineBy.ComponentY&lt;\/div&gt;&lt;div&gt;force_207.YComponent.Inputs[0].DiscreteValues = [Quantity(time) for time in timesteps]&lt;\/div&gt;&lt;div&gt;force_207.YComponent.Output.DiscreteValues = [Quantity(load) for load in loads]&lt;\/div&gt;&lt;div&gt;&nbsp;&lt;\/div&gt;&lt;div&gt;Don&#8217;t forget to change the Ids!!&lt;br&gt;&lt;br&gt;&lt;br&gt;Also, I got the automation working these are resources for both after and before&lt;br&gt;&lt;br&gt;<a href=\"https:\/\/developer.ansys.com\/blog\/script-tip-friday-examples-python-results-mechanical-part-2\">Script Tip Friday &#8211; Examples of Python Results for Mechanical (Part 2) | Ansys Developer Portal<\/a>&lt;br&gt;&lt;br&gt;<a href=\"https:\/\/developer.ansys.com\/blog\/script-tip-friday-examples-python-results-mechanical-part-1\">Script Tip Friday &#8211; Examples of Python Results for Mechanical (Part 1) | Ansys Developer Portal<\/a>&lt;br&gt;&lt;br&gt;<a href=\"https:\/\/developer.ansys.com\/blog\/script-tip-friday-python-code-object-mechanical\">Script Tip Friday- &#8220;Python Code&#8221;\u200b object in Mechanical | Ansys Developer Portal<\/a>&lt;br&gt;&lt;br&gt;Note these codes work when the mechanical GUI is open.&lt;br&gt;&lt;br&gt;Cheers&nbsp;&lt;\/div&gt;<\/p>\n","protected":false},"template":"","class_list":["post-346757","reply","type-reply","status-publish","hentry"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"For anyone looking through this thread in the futureThis is the code adapted to componentwise force import (in this case Y direction)import csvfilePath = &#039;filepath\\force.csv&#039;timesteps = [] #Create empty list to store timestep valuesloads = [] #Create empty list to store load valueswith open(filePath, &#039;r&#039;) as csvFile: csvRead = csv.reader(csvFile, delimiter=&#039;,&#039;) next(csvRead) #Skip\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/346757\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Ansys Learning Forum | Ansys Innovation Space\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Reply To: Automated Import of Load history data uisng scripts (Python or Mapdl) | Ansys Learning Forum\" \/>\n\t\t<meta property=\"og:description\" content=\"For anyone looking through this thread in the futureThis is the code adapted to componentwise force import (in this case Y direction)import csvfilePath = &#039;filepath\\force.csv&#039;timesteps = [] #Create empty list to store timestep valuesloads = [] #Create empty list to store load valueswith open(filePath, &#039;r&#039;) as csvFile: csvRead = csv.reader(csvFile, delimiter=&#039;,&#039;) next(csvRead) #Skip\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/346757\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-01-26T11:23:59+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-01-26T11:23:59+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Reply To: Automated Import of Load history data uisng scripts (Python or Mapdl) | Ansys Learning Forum\" \/>\n\t\t<meta name=\"twitter:description\" content=\"For anyone looking through this thread in the futureThis is the code adapted to componentwise force import (in this case Y direction)import csvfilePath = &#039;filepath\\force.csv&#039;timesteps = [] #Create empty list to store timestep valuesloads = [] #Create empty list to store load valueswith open(filePath, &#039;r&#039;) as csvFile: csvRead = csv.reader(csvFile, delimiter=&#039;,&#039;) next(csvRead) #Skip\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/reply\\\/346757\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/reply\\\/346757\\\/#listItem\",\"name\":\"Reply To: Automated Import of Load history data uisng scripts (Python or Mapdl)\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/reply\\\/346757\\\/#listItem\",\"position\":2,\"name\":\"Reply To: Automated Import of Load history data uisng scripts (Python or Mapdl)\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum#listItem\",\"name\":\"Home\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/#organization\",\"name\":\"Ansys Learning Forum\",\"description\":\"Ansys Innovation Space\",\"url\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/reply\\\/346757\\\/#webpage\",\"url\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/reply\\\/346757\\\/\",\"name\":\"Reply To: Automated Import of Load history data uisng scripts (Python or Mapdl) | Ansys Learning Forum\",\"description\":\"For anyone looking through this thread in the futureThis is the code adapted to componentwise force import (in this case Y direction)import csvfilePath = 'filepath\\\\force.csv'timesteps = [] #Create empty list to store timestep valuesloads = [] #Create empty list to store load valueswith open(filePath, 'r') as csvFile: csvRead = csv.reader(csvFile, delimiter=',') next(csvRead) #Skip\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/reply\\\/346757\\\/#breadcrumblist\"},\"datePublished\":\"2024-01-26T11:23:59+00:00\",\"dateModified\":\"2024-01-26T11:23:59+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/#website\",\"url\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/\",\"name\":\"Ansys Learning Forum\",\"description\":\"Ansys Innovation Space\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Reply To: Automated Import of Load history data uisng scripts (Python or Mapdl) | Ansys Learning Forum","description":"For anyone looking through this thread in the futureThis is the code adapted to componentwise force import (in this case Y direction)import csvfilePath = 'filepath\\force.csv'timesteps = [] #Create empty list to store timestep valuesloads = [] #Create empty list to store load valueswith open(filePath, 'r') as csvFile: csvRead = csv.reader(csvFile, delimiter=',') next(csvRead) #Skip","canonical_url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/346757\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/346757\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum#listItem","position":1,"name":"Home","item":"https:\/\/innovationspace.ansys.com\/forum","nextItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/346757\/#listItem","name":"Reply To: Automated Import of Load history data uisng scripts (Python or Mapdl)"}},{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/346757\/#listItem","position":2,"name":"Reply To: Automated Import of Load history data uisng scripts (Python or Mapdl)","previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum#listItem","name":"Home"}}]},{"@type":"Organization","@id":"https:\/\/innovationspace.ansys.com\/forum\/#organization","name":"Ansys Learning Forum","description":"Ansys Innovation Space","url":"https:\/\/innovationspace.ansys.com\/forum\/"},{"@type":"WebPage","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/346757\/#webpage","url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/346757\/","name":"Reply To: Automated Import of Load history data uisng scripts (Python or Mapdl) | Ansys Learning Forum","description":"For anyone looking through this thread in the futureThis is the code adapted to componentwise force import (in this case Y direction)import csvfilePath = 'filepath\\force.csv'timesteps = [] #Create empty list to store timestep valuesloads = [] #Create empty list to store load valueswith open(filePath, 'r') as csvFile: csvRead = csv.reader(csvFile, delimiter=',') next(csvRead) #Skip","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/innovationspace.ansys.com\/forum\/#website"},"breadcrumb":{"@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/346757\/#breadcrumblist"},"datePublished":"2024-01-26T11:23:59+00:00","dateModified":"2024-01-26T11:23:59+00:00"},{"@type":"WebSite","@id":"https:\/\/innovationspace.ansys.com\/forum\/#website","url":"https:\/\/innovationspace.ansys.com\/forum\/","name":"Ansys Learning Forum","description":"Ansys Innovation Space","inLanguage":"en-US","publisher":{"@id":"https:\/\/innovationspace.ansys.com\/forum\/#organization"}}]},"og:locale":"en_US","og:site_name":"Ansys Learning Forum | Ansys Innovation Space","og:type":"article","og:title":"Reply To: Automated Import of Load history data uisng scripts (Python or Mapdl) | Ansys Learning Forum","og:description":"For anyone looking through this thread in the futureThis is the code adapted to componentwise force import (in this case Y direction)import csvfilePath = 'filepath\\force.csv'timesteps = [] #Create empty list to store timestep valuesloads = [] #Create empty list to store load valueswith open(filePath, 'r') as csvFile: csvRead = csv.reader(csvFile, delimiter=',') next(csvRead) #Skip","og:url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/346757\/","article:published_time":"2024-01-26T11:23:59+00:00","article:modified_time":"2024-01-26T11:23:59+00:00","twitter:card":"summary_large_image","twitter:title":"Reply To: Automated Import of Load history data uisng scripts (Python or Mapdl) | Ansys Learning Forum","twitter:description":"For anyone looking through this thread in the futureThis is the code adapted to componentwise force import (in this case Y direction)import csvfilePath = 'filepath\\force.csv'timesteps = [] #Create empty list to store timestep valuesloads = [] #Create empty list to store load valueswith open(filePath, 'r') as csvFile: csvRead = csv.reader(csvFile, delimiter=',') next(csvRead) #Skip"},"aioseo_meta_data":{"post_id":"346757","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"content","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":true,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2024-10-28 17:03:02","updated":"2024-10-28 17:03:02","ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/innovationspace.ansys.com\/forum\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tReply To: Automated Import of Load history data uisng scripts (Python or Mapdl)\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/innovationspace.ansys.com\/forum"},{"label":"Reply To: Automated Import of Load history data uisng scripts (Python or Mapdl)","link":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/346757\/"}],"acf":[],"_links":{"self":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/replies\/346757","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/replies"}],"about":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/types\/reply"}],"version-history":[{"count":0,"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/replies\/346757\/revisions"}],"wp:attachment":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/media?parent=346757"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}