


{"id":360546,"date":"2024-04-04T17:46:15","date_gmt":"2024-04-04T17:46:15","guid":{"rendered":"\/forum\/forums\/reply\/360546\/"},"modified":"2024-04-04T17:46:15","modified_gmt":"2024-04-04T17:46:15","slug":"360546","status":"publish","type":"reply","link":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/360546\/","title":{"rendered":"Reply To: simple question regarding S-parameter data extraction coding."},"content":{"rendered":"<p>&lt;p&gt;Hi Jeong Hee,&lt;\/p&gt;&lt;p&gt;I think you can not specify the operation in visualize using script. Either you have to create a new dataset with the squared values, and then visualize that dataset. Or you can simply plot the square values using the <a href=\"https:\/\/optics.ansys.com\/hc\/en-us\/articles\/360034410474-plot-Script-command\">plot<\/a> script command and then use <a href=\"https:\/\/optics.ansys.com\/hc\/en-us\/articles\/360034411134-write-Script-command\">write<\/a> to save the values into a text file. I wrote a sample script to plot data and write them into text file, that might be useful for your case:&lt;\/p&gt;<\/p>\n<pre>S_para= getsweepresult(\"S-parameters\",\"S parameters\");&lt;br&gt;lambda = S_para.lambda;&lt;br&gt;S_11_2 = abs(S_para.S11)^2; #_2 after S_11 is just to indicate that it's squared&lt;br&gt;S_12_2 = abs(S_para.S12)^2;&lt;br&gt;S_21_2 = abs(S_para.S21)^2;&lt;br&gt;S_22_2 = abs(S_para.S22)^2;&lt;br&gt;&lt;br&gt;plot(lambda,S_11_2);&lt;br&gt;holdon;&lt;br&gt;plot(lambda,S_12_2);&lt;br&gt;plot(lambda,S_21_2);&lt;br&gt;plot(lambda,S_22_2);&lt;br&gt;holdoff;&lt;br&gt;&lt;br&gt;write(\"S_param.txt\",\"S11_2: \"+ num2str(S_11_2));&lt;br&gt;write(\"S_param.txt\",\"S12_2: \"+ num2str(S_12_2));&lt;br&gt;write(\"S_param.txt\",\"S21_2: \"+ num2str(S_21_2));&lt;br&gt;write(\"S_param.txt\",\"S22_2: \"+ num2str(S_22_2));<\/pre>\n<p>&lt;p style=&#8221;-qt-paragraph-type: empty; -qt-block-indent: 0; text-indent: 0px; margin: 0px;&#8221;&gt;&nbsp;&lt;\/p&gt;&lt;p style=&#8221;-qt-block-indent: 0; text-indent: 0px; margin: 0px;&#8221;&gt;Here&#8217;s a screenshot of the figure window and the created text file:&lt;\/p&gt;&lt;p style=&#8221;-qt-block-indent: 0; text-indent: 0px; margin: 0px;&#8221;&gt;<img loading=\"lazy\" decoding=\"async\" src=\"\/forum\/wp-content\/uploads\/sites\/2\/2024\/04\/04-04-2024-1712252580-mceclip0.png\" width=\"698\" height=\"382\" \/>&lt;\/p&gt;&lt;p style=&#8221;-qt-block-indent: 0; text-indent: 0px; margin: 0px;&#8221;&gt;&nbsp;&lt;\/p&gt;&lt;p style=&#8221;-qt-block-indent: 0; text-indent: 0px; margin: 0px;&#8221;&gt;Let me know if you have any questions.&lt;\/p&gt;&lt;p style=&#8221;-qt-block-indent: 0; text-indent: 0px; margin: 0px;&#8221;&gt;&nbsp;&lt;\/p&gt;&lt;p style=&#8221;-qt-block-indent: 0; text-indent: 0px; margin: 0px;&#8221;&gt;Regards,&lt;br&gt;Amrita&lt;\/p&gt;&lt;p&gt;&nbsp;&lt;\/p&gt;<\/p>\n","protected":false},"template":"","class_list":["post-360546","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=\"Hi Jeong Hee,I think you can not specify the operation in visualize using script. Either you have to create a new dataset with the squared values, and then visualize that dataset. Or you can simply plot the square values using the plot script command and then use write to save the values into a text\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/360546\/\" \/>\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: simple question regarding S-parameter data extraction coding. | Ansys Learning Forum\" \/>\n\t\t<meta property=\"og:description\" content=\"Hi Jeong Hee,I think you can not specify the operation in visualize using script. Either you have to create a new dataset with the squared values, and then visualize that dataset. Or you can simply plot the square values using the plot script command and then use write to save the values into a text\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/360546\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/innovationspace.ansys.com\/forum\/forum\/wp-content\/uploads\/sites\/2\/2024\/04\/04-04-2024-1712252580-mceclip0.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/innovationspace.ansys.com\/forum\/forum\/wp-content\/uploads\/sites\/2\/2024\/04\/04-04-2024-1712252580-mceclip0.png\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-04-04T17:46:15+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-04-04T17:46:15+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Reply To: simple question regarding S-parameter data extraction coding. | Ansys Learning Forum\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Hi Jeong Hee,I think you can not specify the operation in visualize using script. Either you have to create a new dataset with the squared values, and then visualize that dataset. Or you can simply plot the square values using the plot script command and then use write to save the values into a text\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/innovationspace.ansys.com\/forum\/forum\/wp-content\/uploads\/sites\/2\/2024\/04\/04-04-2024-1712252580-mceclip0.png\" \/>\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\\\/360546\\\/#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\\\/360546\\\/#listItem\",\"name\":\"Reply To: simple question regarding S-parameter data extraction coding.\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/reply\\\/360546\\\/#listItem\",\"position\":2,\"name\":\"Reply To: simple question regarding S-parameter data extraction coding.\",\"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\\\/360546\\\/#webpage\",\"url\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/reply\\\/360546\\\/\",\"name\":\"Reply To: simple question regarding S-parameter data extraction coding. | Ansys Learning Forum\",\"description\":\"Hi Jeong Hee,I think you can not specify the operation in visualize using script. Either you have to create a new dataset with the squared values, and then visualize that dataset. Or you can simply plot the square values using the plot script command and then use write to save the values into a text\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/reply\\\/360546\\\/#breadcrumblist\"},\"datePublished\":\"2024-04-04T17:46:15+00:00\",\"dateModified\":\"2024-04-04T17:46:15+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: simple question regarding S-parameter data extraction coding. | Ansys Learning Forum","description":"Hi Jeong Hee,I think you can not specify the operation in visualize using script. Either you have to create a new dataset with the squared values, and then visualize that dataset. Or you can simply plot the square values using the plot script command and then use write to save the values into a text","canonical_url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/360546\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/360546\/#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\/360546\/#listItem","name":"Reply To: simple question regarding S-parameter data extraction coding."}},{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/360546\/#listItem","position":2,"name":"Reply To: simple question regarding S-parameter data extraction coding.","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\/360546\/#webpage","url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/360546\/","name":"Reply To: simple question regarding S-parameter data extraction coding. | Ansys Learning Forum","description":"Hi Jeong Hee,I think you can not specify the operation in visualize using script. Either you have to create a new dataset with the squared values, and then visualize that dataset. Or you can simply plot the square values using the plot script command and then use write to save the values into a text","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/innovationspace.ansys.com\/forum\/#website"},"breadcrumb":{"@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/360546\/#breadcrumblist"},"datePublished":"2024-04-04T17:46:15+00:00","dateModified":"2024-04-04T17:46:15+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: simple question regarding S-parameter data extraction coding. | Ansys Learning Forum","og:description":"Hi Jeong Hee,I think you can not specify the operation in visualize using script. Either you have to create a new dataset with the squared values, and then visualize that dataset. Or you can simply plot the square values using the plot script command and then use write to save the values into a text","og:url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/360546\/","og:image":"https:\/\/innovationspace.ansys.com\/forum\/forum\/wp-content\/uploads\/sites\/2\/2024\/04\/04-04-2024-1712252580-mceclip0.png","og:image:secure_url":"https:\/\/innovationspace.ansys.com\/forum\/forum\/wp-content\/uploads\/sites\/2\/2024\/04\/04-04-2024-1712252580-mceclip0.png","article:published_time":"2024-04-04T17:46:15+00:00","article:modified_time":"2024-04-04T17:46:15+00:00","twitter:card":"summary_large_image","twitter:title":"Reply To: simple question regarding S-parameter data extraction coding. | Ansys Learning Forum","twitter:description":"Hi Jeong Hee,I think you can not specify the operation in visualize using script. Either you have to create a new dataset with the squared values, and then visualize that dataset. Or you can simply plot the square values using the plot script command and then use write to save the values into a text","twitter:image":"https:\/\/innovationspace.ansys.com\/forum\/forum\/wp-content\/uploads\/sites\/2\/2024\/04\/04-04-2024-1712252580-mceclip0.png"},"aioseo_meta_data":{"post_id":"360546","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 16:50:32","updated":"2024-10-28 16:50:32","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: simple question regarding S-parameter data extraction coding.\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/innovationspace.ansys.com\/forum"},{"label":"Reply To: simple question regarding S-parameter data extraction coding.","link":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/360546\/"}],"acf":[],"_links":{"self":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/replies\/360546","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\/360546\/revisions"}],"wp:attachment":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/media?parent=360546"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}