{"id":157150,"date":"2022-06-06T08:32:55","date_gmt":"2022-06-06T08:32:55","guid":{"rendered":"\/knowledge\/forums\/topic\/how-do-i-simulate-an-atmospheric-boundary-layer-in-cfx-2\/"},"modified":"2022-06-06T08:32:55","modified_gmt":"2022-06-06T08:32:55","slug":"how-do-i-simulate-an-atmospheric-boundary-layer-in-cfx-2","status":"publish","type":"topic","link":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/how-do-i-simulate-an-atmospheric-boundary-layer-in-cfx-2\/","title":{"rendered":"How do I simulate an atmospheric boundary layer in CFX?"},"content":{"rendered":"<p>The atmospheric boundary layer (ABL) is the lowest part of the atmosphere and its behavior is directly influenced by its contact with a planetary surface. Sometimes for simulations at different boundaries we need to account effect of ABL. The CCL below can be used to set an atmospheric boundary layer wind or pressure profile on an inlet, outlet or opening. <br \/># Explanation of expressions <br \/># ========================== <br \/># <br \/># Glossary of names<br \/> # &#8212;&#8212;&#8212;&#8212;&#8212;&#8211; <br \/># <br \/># &#8212;&#8212;&#8212;&#8212;&#8212;&#8211; <br \/># wind profile section # &#8212;&#8212;&#8212;&#8212;&#8212;&#8211; # ReferenceHeight = reference height above ground # ReferenceSpeed = velocity at reference height # groundRougness = ground aerodynamic roughness # example values # open sea 0.005 [m] # open terrain 0.05 [m] # forest or suberbs 0.5 [m] <br \/># city centre 2 [m] <br \/># ak = Von Karmen constant <br \/># uStar = friction velocity <br \/># zgrnd = height of the ground <br \/># zprof = height above ground <br \/># speed = wind speed as a function of height <br \/># windAngle = wind angle (measured from the x axis) # uWind = x component of wind speed # vWind = y component of wind speed # wWind = z component of wind speed # cmu = k-epsilon turbulence model constant # teWind = wind turbulent kinetic energy # edWind = wind turbulent eddy dissipation <br \/># sandGrainRoughness = sand grain roughness height of the ground <br \/># &#8212;&#8212;&#8212;&#8212;&#8212;&#8211; <br \/># buoyancy section <br \/># &#8212;&#8212;&#8212;&#8212;&#8212;&#8211; <br \/># Wair &#8211; molecular weight of air <br \/># tamb &#8211; ambient temperature <br \/># refP &#8211; reference pressure <br \/># denref &#8211; reference density <br \/># &#8212;&#8212;&#8212;&#8212;&#8212;&#8211; <br \/># pressure profile section <br \/># &#8212;&#8212;&#8212;&#8212;&#8212;&#8211; <br \/># Pground &#8211; absoulte pressure at the ground <br \/># zRefBuoy &#8211; buoyancy reference height <br \/># the buoyancy reference location should be set consistently on the domain models form <br \/># isoScaleHeight &#8211; atmospheric scale height <br \/># Patmos &#8211; vertical profile of absolute pressure <br \/># Popening &#8211; The pressure to set on a vertical opening <br \/># <br \/>LIBRARY: <br \/>CEL: <br \/>EXPRESSIONS: <br \/>ReferenceHeight = 10.0 [m] <br \/>ReferenceSpeed = 5.0 [m s^-1] groundRougness = 2 [m] ak = 0.41 cmu = 0.09 zgrnd = 0 [m] windAngle = 60 [deg] uStar = ak*ReferenceSpeed\/loge(ReferenceHeight\/groundRougness) zprof = max(groundRougness,z-zgrnd) speed = uStar*loge(zprof\/groundRougness)\/ak uWind = speed*cos(windAngle) <br \/>vWind = speed*sin(windAngle) <br \/>wWind = 0.0 [m\/s] <br \/>teWind = (uStar^2)\/sqrt(cmu) <br \/>edWind = (uStar^3)\/(ak*zprof) <br \/>sandGrainRoughness = groundRougness*exp(8.48*ak) <br \/>Wair = 28.96 [kg\/kmol] <br \/>denref = Wair * refP\/(R*tamb) <br \/>refP = 1 [atm] <br \/>tamb = 25 [C] <br \/>zGround = zgrnd <br \/>Pground = refP <br \/>zRefBuoy = zgrnd <br \/>isoScaleHeight = R*tamb\/(Wair*g) <br \/>Patmos = Pground*exp(-(z-zGround)\/isoScaleHeight) <br \/>Popening = Patmos-refP+denref*g*(z-zRefBuoy) <br \/>END <br \/>END <br \/>END <br \/># <br \/># Example to set the rougness on the ground <br \/># <br \/>#FLOW: Flow Analysis 1 <br \/># DOMAIN: Domain 1 <br \/># <br \/># BOUNDARY: Ground <br \/># Boundary Type = WALL <br \/># Location = ground <br \/># BOUNDARY CONDITIONS: <br \/># HEAT TRANSFER: <br \/># Option = Adiabatic <br \/># END <br \/># MASS AND MOMENTUM: <br \/># Option = No Slip Wall <br \/># END <br \/># WALL ROUGHNESS: <br \/># Option = Rough Wall <br \/># Sand Grain Roughness Height = sandGrainRoughness <br \/># END <br \/># END <br \/># END <br \/># <br \/># END <br \/>#END <br \/># <br \/># Example settings for downtream opening boundaries and upstream wind inlets <br \/># Could also set the windinlet on all sides for cylindrical domains &#8211; may be an a good idea to leave the top as an opening pressure boundary to help with mass conservation <br \/># <br \/># <br \/>#FLOW: Flow Analysis 1 <br \/># DOMAIN: Domain 1 <br \/># <br \/># BOUNDARY: WindInlet <br \/># Boundary Type = INLET <br \/># Location = south,west <br \/># BOUNDARY CONDITIONS: <br \/># FLOW REGIME: <br \/># Option = Subsonic <br \/># END <br \/># HEAT TRANSFER: <br \/># Option = Static Temperature <br \/># Static Temperature = tamb <br \/># END <br \/># MASS AND MOMENTUM: <br \/># Option = Cartesian Velocity Components <br \/># U = uWind <br \/># V = vWind <br \/># W = wWind <br \/># END <br \/># TURBULENCE: <br \/># Epsilon = edWind <br \/># Option = k and Epsilon <br \/># k = teWind <br \/># END <br \/># END <br \/># END <br \/># <br \/># BOUNDARY: DownstreamOpening <br \/># Boundary Type = OPENING <br \/># Location = north,east <br \/># BOUNDARY CONDITIONS: <br \/># FLOW DIRECTION: <br \/># Option = Normal to Boundary Condition <br \/># END <br \/># FLOW REGIME: <br \/># Option = Subsonic <br \/># END <br \/># HEAT TRANSFER: <br \/># Opening Temperature = tamb <br \/># Option = Opening Temperature <br \/># END <br \/># MASS AND MOMENTUM:<br \/> # Option = Opening Pressure and Direction <br \/># Relative Pressure = Popening <br \/># END <br \/># TURBULENCE: <br \/># Option = Medium Intensity and Eddy Viscosity Ratio <br \/># END <br \/># END <br \/># END <br \/># # END <br \/>#END<\/p>\n","protected":false},"template":"","class_list":["post-157150","topic","type-topic","status-publish","hentry","topic-tag-ansys-cfx","topic-tag-atmospheric-boundary-layer"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"The atmospheric boundary layer (ABL) is the lowest part of the atmosphere and its behavior is directly influenced by its contact with a planetary surface. Sometimes for simulations at different boundaries we need to account effect of ABL. The CCL below can be used to set an atmospheric boundary layer wind or pressure profile on\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/how-do-i-simulate-an-atmospheric-boundary-layer-in-cfx-2\/\" \/>\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 Knowledge | Ansys Innovation Space\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"How do I simulate an atmospheric boundary layer in CFX? | Ansys Knowledge\" \/>\n\t\t<meta property=\"og:description\" content=\"The atmospheric boundary layer (ABL) is the lowest part of the atmosphere and its behavior is directly influenced by its contact with a planetary surface. Sometimes for simulations at different boundaries we need to account effect of ABL. The CCL below can be used to set an atmospheric boundary layer wind or pressure profile on\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/how-do-i-simulate-an-atmospheric-boundary-layer-in-cfx-2\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2022-06-06T08:32:55+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2022-06-06T08:32:55+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How do I simulate an atmospheric boundary layer in CFX? | Ansys Knowledge\" \/>\n\t\t<meta name=\"twitter:description\" content=\"The atmospheric boundary layer (ABL) is the lowest part of the atmosphere and its behavior is directly influenced by its contact with a planetary surface. Sometimes for simulations at different boundaries we need to account effect of ABL. The CCL below can be used to set an atmospheric boundary layer wind or pressure profile on\" \/>\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\\\/knowledge\\\/forums\\\/topic\\\/how-do-i-simulate-an-atmospheric-boundary-layer-in-cfx-2\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/topics\\\/#listItem\",\"name\":\"Topics\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/topics\\\/#listItem\",\"position\":2,\"name\":\"Topics\",\"item\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/topics\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/forums\\\/topic-tag\\\/ansys-cfx\\\/#listItem\",\"name\":\"ansys-cfx\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/forums\\\/topic-tag\\\/ansys-cfx\\\/#listItem\",\"position\":3,\"name\":\"ansys-cfx\",\"item\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/forums\\\/topic-tag\\\/ansys-cfx\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/forums\\\/topic\\\/how-do-i-simulate-an-atmospheric-boundary-layer-in-cfx-2\\\/#listItem\",\"name\":\"How do I simulate an atmospheric boundary layer in CFX?\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/topics\\\/#listItem\",\"name\":\"Topics\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/forums\\\/topic\\\/how-do-i-simulate-an-atmospheric-boundary-layer-in-cfx-2\\\/#listItem\",\"position\":4,\"name\":\"How do I simulate an atmospheric boundary layer in CFX?\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/forums\\\/topic-tag\\\/ansys-cfx\\\/#listItem\",\"name\":\"ansys-cfx\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/#organization\",\"name\":\"Ansys Knowledge\",\"description\":\"Ansys Innovation Space\",\"url\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/forums\\\/topic\\\/how-do-i-simulate-an-atmospheric-boundary-layer-in-cfx-2\\\/#webpage\",\"url\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/forums\\\/topic\\\/how-do-i-simulate-an-atmospheric-boundary-layer-in-cfx-2\\\/\",\"name\":\"How do I simulate an atmospheric boundary layer in CFX? | Ansys Knowledge\",\"description\":\"The atmospheric boundary layer (ABL) is the lowest part of the atmosphere and its behavior is directly influenced by its contact with a planetary surface. Sometimes for simulations at different boundaries we need to account effect of ABL. The CCL below can be used to set an atmospheric boundary layer wind or pressure profile on\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/forums\\\/topic\\\/how-do-i-simulate-an-atmospheric-boundary-layer-in-cfx-2\\\/#breadcrumblist\"},\"datePublished\":\"2022-06-06T08:32:55+00:00\",\"dateModified\":\"2022-06-06T08:32:55+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/#website\",\"url\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/\",\"name\":\"Ansys Knowledge\",\"description\":\"Ansys Innovation Space\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"How do I simulate an atmospheric boundary layer in CFX? | Ansys Knowledge","description":"The atmospheric boundary layer (ABL) is the lowest part of the atmosphere and its behavior is directly influenced by its contact with a planetary surface. Sometimes for simulations at different boundaries we need to account effect of ABL. The CCL below can be used to set an atmospheric boundary layer wind or pressure profile on","canonical_url":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/how-do-i-simulate-an-atmospheric-boundary-layer-in-cfx-2\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/how-do-i-simulate-an-atmospheric-boundary-layer-in-cfx-2\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/knowledge#listItem","position":1,"name":"Home","item":"https:\/\/innovationspace.ansys.com\/knowledge","nextItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/topics\/#listItem","name":"Topics"}},{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/topics\/#listItem","position":2,"name":"Topics","item":"https:\/\/innovationspace.ansys.com\/knowledge\/topics\/","nextItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic-tag\/ansys-cfx\/#listItem","name":"ansys-cfx"},"previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/knowledge#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic-tag\/ansys-cfx\/#listItem","position":3,"name":"ansys-cfx","item":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic-tag\/ansys-cfx\/","nextItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/how-do-i-simulate-an-atmospheric-boundary-layer-in-cfx-2\/#listItem","name":"How do I simulate an atmospheric boundary layer in CFX?"},"previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/topics\/#listItem","name":"Topics"}},{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/how-do-i-simulate-an-atmospheric-boundary-layer-in-cfx-2\/#listItem","position":4,"name":"How do I simulate an atmospheric boundary layer in CFX?","previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic-tag\/ansys-cfx\/#listItem","name":"ansys-cfx"}}]},{"@type":"Organization","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/#organization","name":"Ansys Knowledge","description":"Ansys Innovation Space","url":"https:\/\/innovationspace.ansys.com\/knowledge\/"},{"@type":"WebPage","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/how-do-i-simulate-an-atmospheric-boundary-layer-in-cfx-2\/#webpage","url":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/how-do-i-simulate-an-atmospheric-boundary-layer-in-cfx-2\/","name":"How do I simulate an atmospheric boundary layer in CFX? | Ansys Knowledge","description":"The atmospheric boundary layer (ABL) is the lowest part of the atmosphere and its behavior is directly influenced by its contact with a planetary surface. Sometimes for simulations at different boundaries we need to account effect of ABL. The CCL below can be used to set an atmospheric boundary layer wind or pressure profile on","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/innovationspace.ansys.com\/knowledge\/#website"},"breadcrumb":{"@id":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/how-do-i-simulate-an-atmospheric-boundary-layer-in-cfx-2\/#breadcrumblist"},"datePublished":"2022-06-06T08:32:55+00:00","dateModified":"2022-06-06T08:32:55+00:00"},{"@type":"WebSite","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/#website","url":"https:\/\/innovationspace.ansys.com\/knowledge\/","name":"Ansys Knowledge","description":"Ansys Innovation Space","inLanguage":"en-US","publisher":{"@id":"https:\/\/innovationspace.ansys.com\/knowledge\/#organization"}}]},"og:locale":"en_US","og:site_name":"Ansys Knowledge | Ansys Innovation Space","og:type":"article","og:title":"How do I simulate an atmospheric boundary layer in CFX? | Ansys Knowledge","og:description":"The atmospheric boundary layer (ABL) is the lowest part of the atmosphere and its behavior is directly influenced by its contact with a planetary surface. Sometimes for simulations at different boundaries we need to account effect of ABL. The CCL below can be used to set an atmospheric boundary layer wind or pressure profile on","og:url":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/how-do-i-simulate-an-atmospheric-boundary-layer-in-cfx-2\/","article:published_time":"2022-06-06T08:32:55+00:00","article:modified_time":"2022-06-06T08:32:55+00:00","twitter:card":"summary_large_image","twitter:title":"How do I simulate an atmospheric boundary layer in CFX? | Ansys Knowledge","twitter:description":"The atmospheric boundary layer (ABL) is the lowest part of the atmosphere and its behavior is directly influenced by its contact with a planetary surface. Sometimes for simulations at different boundaries we need to account effect of ABL. The CCL below can be used to set an atmospheric boundary layer wind or pressure profile on"},"aioseo_meta_data":{"post_id":"157150","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":"default","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":false,"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":"2025-10-17 17:32:36","updated":"2026-07-29 02:50:27","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\/knowledge\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/innovationspace.ansys.com\/knowledge\/topics\/\" title=\"Topics\">Topics<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic-tag\/ansys-cfx\/\" title=\"ansys-cfx\">ansys-cfx<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow do I simulate an atmospheric boundary layer in CFX?\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/innovationspace.ansys.com\/knowledge"},{"label":"Topics","link":"https:\/\/innovationspace.ansys.com\/knowledge\/topics\/"},{"label":"ansys-cfx","link":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic-tag\/ansys-cfx\/"},{"label":"How do I simulate an atmospheric boundary layer in CFX?","link":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/how-do-i-simulate-an-atmospheric-boundary-layer-in-cfx-2\/"}],"acf":[],"custom_fields":[{"0":{"_wp_page_template":["default"],"_bbp_last_active_time":["06-06-2022 20:20"],"_bbp_forum_id":["27796"],"_btv_view_count":["1311"],"_bbp_likes_count":["0"]},"test":"articlesansys-com"}],"_links":{"self":[{"href":"https:\/\/innovationspace.ansys.com\/knowledge\/wp-json\/wp\/v2\/topics\/157150","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/innovationspace.ansys.com\/knowledge\/wp-json\/wp\/v2\/topics"}],"about":[{"href":"https:\/\/innovationspace.ansys.com\/knowledge\/wp-json\/wp\/v2\/types\/topic"}],"version-history":[{"count":0,"href":"https:\/\/innovationspace.ansys.com\/knowledge\/wp-json\/wp\/v2\/topics\/157150\/revisions"}],"wp:attachment":[{"href":"https:\/\/innovationspace.ansys.com\/knowledge\/wp-json\/wp\/v2\/media?parent=157150"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}