tecitheme 0.3.3 → 0.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (156) hide show
  1. package/.eslintrc.cjs +24 -0
  2. package/.frontmatter/content/mediaDb.json +1 -0
  3. package/.frontmatter/templates/article.md +11 -0
  4. package/.gitpod.yml +19 -0
  5. package/.vscode/ltex.dictionary.en-US.txt +3 -0
  6. package/.vscode/settings.json +7 -0
  7. package/dist/assets/js/store.d.ts +2 -0
  8. package/dist/assets/js/store.js +4 -0
  9. package/{components → dist/components}/CountrySelector.svelte +2 -2
  10. package/{components → dist/components}/Footer.svelte +24 -60
  11. package/{components → dist/components}/Footer.svelte.d.ts +2 -5
  12. package/{components → dist/components}/NewsGrid.svelte +3 -3
  13. package/{components → dist/components}/Video.svelte +1 -1
  14. package/{get-content.d.ts → dist/get-content.d.ts} +2 -1
  15. package/{get-content.js → dist/get-content.js} +5 -2
  16. package/{layouts → dist/layouts}/blocks.svelte +15 -15
  17. package/{site_config.json → dist/site_config.json} +1 -1
  18. package/frontmatter.json +17 -0
  19. package/mdsvex.config.js +19 -0
  20. package/netlify.toml +7 -0
  21. package/package.json +22 -46
  22. package/postcss.config.cjs +13 -0
  23. package/src/app.css +49 -0
  24. package/src/app.html +22 -0
  25. package/src/global.d.ts +5 -0
  26. package/src/lib/assets/TECi_logo.svelte +177 -0
  27. package/src/lib/assets/js/store.js +4 -0
  28. package/src/lib/components/Banner.svelte +91 -0
  29. package/src/lib/components/Button.svelte +12 -0
  30. package/src/lib/components/CTA.svelte +36 -0
  31. package/src/lib/components/CTABranded.svelte +15 -0
  32. package/src/lib/components/CTASplitImage.svelte +27 -0
  33. package/src/lib/components/Card.svelte +93 -0
  34. package/src/lib/components/ContentTwoColumns.svelte +47 -0
  35. package/src/lib/components/CountrySelector.svelte +167 -0
  36. package/src/lib/components/FeatureGrid.svelte +40 -0
  37. package/src/lib/components/Figure.svelte +37 -0
  38. package/src/lib/components/Footer.svelte +270 -0
  39. package/src/lib/components/Header.svelte +1230 -0
  40. package/src/lib/components/HeadingCentered.svelte +33 -0
  41. package/src/lib/components/Hero.svelte +72 -0
  42. package/src/lib/components/Icon.svelte +138 -0
  43. package/src/lib/components/LogoCloud.svelte +25 -0
  44. package/src/lib/components/Math.svelte +24 -0
  45. package/src/lib/components/MediaFeature.svelte +66 -0
  46. package/src/lib/components/Modal.svelte +68 -0
  47. package/src/lib/components/NewsGrid.svelte +182 -0
  48. package/src/lib/components/PricingTable.svelte +92 -0
  49. package/src/lib/components/SidebarContent.svelte +122 -0
  50. package/src/lib/components/Stats.svelte +34 -0
  51. package/src/lib/components/Subscribe.svelte +24 -0
  52. package/src/lib/components/Testimonial.svelte +169 -0
  53. package/src/lib/components/ThreeColumn.svelte +19 -0
  54. package/src/lib/components/TrialForm.svelte +302 -0
  55. package/src/lib/components/Video.svelte +118 -0
  56. package/src/lib/components/Wrap.svelte +12 -0
  57. package/src/lib/get-content.js +98 -0
  58. package/src/lib/layouts/blocks.svelte +93 -0
  59. package/src/lib/req_utils.js +63 -0
  60. package/src/lib/site_config.json +11 -0
  61. package/src/lib/utils.js +92 -0
  62. package/src/lib/variables.ts +3 -0
  63. package/src/routes/+layout.server.js +20 -0
  64. package/src/routes/+layout.svelte +24 -0
  65. package/src/routes/+page.md +61 -0
  66. package/src/routes/features/+page.md +78 -0
  67. package/src/routes/news/+page.md +21 -0
  68. package/src/routes/news/[slug]/+page.svelte +33 -0
  69. package/src/routes/news/[slug]/+page.ts +16 -0
  70. package/src/routes/news/filter/[tag]/+page.svelte +36 -0
  71. package/src/routes/news/filter/[tag]/+page.ts +14 -0
  72. package/src/routes/news/post1.md +45 -0
  73. package/src/routes/news/post2.md +46 -0
  74. package/src/routes/pathfinder/+page.md +240 -0
  75. package/src/routes/pathfinder/news/+page.md +20 -0
  76. package/src/routes/posts.json/+server.js +9 -0
  77. package/src/routes/product/+page.md +240 -0
  78. package/src/routes/product/news/+page.md +20 -0
  79. package/src/routes/product/trial/+page.svelte +7 -0
  80. package/src/routes/sidebar/+page.md +357 -0
  81. package/static/favicon.ico +0 -0
  82. package/static/uploads/company_pathfinder.png +0 -0
  83. package/static/uploads/company_petrasim.png +0 -0
  84. package/static/uploads/company_pyrosim.jpg +0 -0
  85. package/static/uploads/fire.jpg +0 -0
  86. package/static/uploads/pyrosim_libraries_386x395.png +0 -0
  87. package/static/uploads/rocks.jpg +0 -0
  88. package/static/uploads/water.jpg +0 -0
  89. package/svelte.config.js +32 -0
  90. package/tailwind.config.cjs +26 -0
  91. package/tsconfig.json +32 -0
  92. package/vite.config.js +20 -0
  93. package/components/MetaSocial.svelte +0 -15
  94. package/components/MetaSocial.svelte.d.ts +0 -29
  95. package/{assets → dist/assets}/TECi_logo.svelte +0 -0
  96. package/{assets → dist/assets}/TECi_logo.svelte.d.ts +0 -0
  97. package/{components → dist/components}/Banner.svelte +0 -0
  98. package/{components → dist/components}/Banner.svelte.d.ts +0 -0
  99. package/{components → dist/components}/Button.svelte +0 -0
  100. package/{components → dist/components}/Button.svelte.d.ts +0 -0
  101. package/{components → dist/components}/CTA.svelte +0 -0
  102. package/{components → dist/components}/CTA.svelte.d.ts +0 -0
  103. package/{components → dist/components}/CTABranded.svelte +0 -0
  104. package/{components → dist/components}/CTABranded.svelte.d.ts +0 -0
  105. package/{components → dist/components}/CTASplitImage.svelte +0 -0
  106. package/{components → dist/components}/CTASplitImage.svelte.d.ts +0 -0
  107. package/{components → dist/components}/Card.svelte +0 -0
  108. package/{components → dist/components}/Card.svelte.d.ts +0 -0
  109. package/{components → dist/components}/ContentTwoColumns.svelte +0 -0
  110. package/{components → dist/components}/ContentTwoColumns.svelte.d.ts +0 -0
  111. package/{components → dist/components}/CountrySelector.svelte.d.ts +0 -0
  112. package/{components → dist/components}/FeatureGrid.svelte +0 -0
  113. package/{components → dist/components}/FeatureGrid.svelte.d.ts +0 -0
  114. package/{components → dist/components}/Figure.svelte +0 -0
  115. package/{components → dist/components}/Figure.svelte.d.ts +0 -0
  116. package/{components → dist/components}/Header.svelte +0 -0
  117. package/{components → dist/components}/Header.svelte.d.ts +0 -0
  118. package/{components → dist/components}/HeadingCentered.svelte +0 -0
  119. package/{components → dist/components}/HeadingCentered.svelte.d.ts +0 -0
  120. package/{components → dist/components}/Hero.svelte +0 -0
  121. package/{components → dist/components}/Hero.svelte.d.ts +0 -0
  122. package/{components → dist/components}/Icon.svelte +0 -0
  123. package/{components → dist/components}/Icon.svelte.d.ts +0 -0
  124. package/{components → dist/components}/LogoCloud.svelte +0 -0
  125. package/{components → dist/components}/LogoCloud.svelte.d.ts +0 -0
  126. package/{components → dist/components}/Math.svelte +0 -0
  127. package/{components → dist/components}/Math.svelte.d.ts +0 -0
  128. package/{components → dist/components}/MediaFeature.svelte +0 -0
  129. package/{components → dist/components}/MediaFeature.svelte.d.ts +0 -0
  130. package/{components → dist/components}/Modal.svelte +0 -0
  131. package/{components → dist/components}/Modal.svelte.d.ts +0 -0
  132. package/{components → dist/components}/NewsGrid.svelte.d.ts +0 -0
  133. package/{components → dist/components}/PricingTable.svelte +0 -0
  134. package/{components → dist/components}/PricingTable.svelte.d.ts +0 -0
  135. package/{components → dist/components}/SidebarContent.svelte +0 -0
  136. package/{components → dist/components}/SidebarContent.svelte.d.ts +0 -0
  137. package/{components → dist/components}/Stats.svelte +0 -0
  138. package/{components → dist/components}/Stats.svelte.d.ts +0 -0
  139. package/{components → dist/components}/Subscribe.svelte +0 -0
  140. package/{components → dist/components}/Subscribe.svelte.d.ts +0 -0
  141. package/{components → dist/components}/Testimonial.svelte +0 -0
  142. package/{components → dist/components}/Testimonial.svelte.d.ts +0 -0
  143. package/{components → dist/components}/ThreeColumn.svelte +0 -0
  144. package/{components → dist/components}/ThreeColumn.svelte.d.ts +0 -0
  145. package/{components → dist/components}/TrialForm.svelte +0 -0
  146. package/{components → dist/components}/TrialForm.svelte.d.ts +0 -0
  147. package/{components → dist/components}/Video.svelte.d.ts +0 -0
  148. package/{components → dist/components}/Wrap.svelte +0 -0
  149. package/{components → dist/components}/Wrap.svelte.d.ts +0 -0
  150. package/{layouts → dist/layouts}/blocks.svelte.d.ts +2 -2
  151. /package/{req_utils.d.ts → dist/req_utils.d.ts} +0 -0
  152. /package/{req_utils.js → dist/req_utils.js} +0 -0
  153. /package/{utils.d.ts → dist/utils.d.ts} +0 -0
  154. /package/{utils.js → dist/utils.js} +0 -0
  155. /package/{variables.d.ts → dist/variables.d.ts} +0 -0
  156. /package/{variables.js → dist/variables.js} +0 -0
@@ -0,0 +1,240 @@
1
+ ---
2
+ title: Pathfinder Page
3
+ summary: Another example product page.
4
+ layout: blocks
5
+ date: 2022-04-18T22:57:06.596+00:00
6
+ images: StadiumFire.png
7
+ page_sections:
8
+ - name: Hero
9
+ fieldGroup: hero
10
+ color: pathfinder
11
+ logo: pathfinder-logo
12
+ video: page-path-background-1.mp4
13
+ image: Screenshot%202022-12-06%20164613.png
14
+ banner_text: What's new
15
+ banner_link_text: 2022.3
16
+ banner_link_url: /pathfinder/news
17
+ title: Pathfinder
18
+ tagline: Pedestrian movement clarity without complexity
19
+ text: Simulate evacuation and general pedestrian movement in stadiums, hospitals, skyscrapers, transportation stations, and more.
20
+ ctas:
21
+ - text: Purchase
22
+ url: https://store2.thunderheadeng.com/cart
23
+ color: pathfinder
24
+ - text: Free trial
25
+ url: https://store2.thunderheadeng.com/trial
26
+ color: white
27
+ links:
28
+ - text: News
29
+ url: /news
30
+ - text: Features
31
+ url: /
32
+ - text: Publications
33
+ url: /
34
+ heading: Is your pedestrian simulation tool easy to understand?
35
+ body: Building geometry from scratch is expensive.<br>Designing models from a black box is frustrating.<br>Producing results without advanced tools takes too much time.</p>
36
+ cta: View Pathfinder Features
37
+ cta_url: /pathfinder
38
+ - name: Features
39
+ fieldGroup: feature-grid
40
+ color: pathfinder
41
+ preheading:
42
+ heading: Create accurate, flexible, and professional pedestrian models
43
+ subheading:
44
+ blocks:
45
+ - heading: Import CAD geometry
46
+ icon: icon-file_open
47
+ body: Import the architect's model in seconds. Automatically detect BIM data and intelligently generate, the navigation mesh, building objects, and textures. Easily manage what you see and when.
48
+ - heading: Design models intuitively
49
+ icon: icon-design_services
50
+ body: Begin with people, doors, and navigable space. That's all it takes to start your first Pathfinder simulation. Layer in dynamic behaviors, complex profiles, and detailed geometry one step at a time.
51
+ - heading: Combine ingress and egress
52
+ icon: icon-cached
53
+ body: Design a start-to-finish occupancy scenario. Occupants can enter the space with realistic adaptive behaviors. Building alarms can trigger and control evacuation procedures. All in the same model.
54
+ - heading: Deliver professional results
55
+ icon: icon-insights
56
+ body: Put the worries of an AHJ to rest. Answer all their questions with unprecedented clarity by creating plots and videos with advanced controls and information overlay.
57
+ - name: Plan
58
+ fieldGroup: cta-split-image
59
+ color: pathfinder
60
+ preheading: Training and support ready to help you advance
61
+ heading: Start delivering better results now
62
+ image: page-training-laptop.png
63
+ items:
64
+ - text: Download now
65
+ - text: Learn the fundamentals
66
+ - text: Deliver results
67
+ cta: View the training options
68
+ cta_url: /
69
+ - name: Explain
70
+ fieldGroup: content-two-columns
71
+ color: pathfinder
72
+ preheading: Evacuation, social distancing, crowd management, and more
73
+ heading: Model a safer world
74
+ body: <p>Pathfinder works by delivering agent-based simulation through an intuitive interface.</p><p>Each occupant in a Pathfinder model is aware of their surroundings and constantly recalculates their next step based on present information. Behind these decisions comes research and validation. </p><ol role="list"><li>Thunderhead Engineering partners with leading researchers and hosts premier events to promote further development of pedestrian movement understanding.</li><li>We validate and publish our own tests of Pathfinder against research data to ensure our tool can be trusted.</li></ol><p>This process allows the Pathfinder simulation engine to create realistic human behavior. What comes next is making this information accessible.</p><p>Thankfully, Pathfinder scales to the size and complexity of your project. Simple experiments can be setup in minutes, yet our expert users continue to drive growth and innovation by pushing Pathfinder past the limits of other tools with Monte Carlo sensitivity analysis, smoke contaminant exposure, social distance modeling, and more.</p> <p>Thunderhead Engineering supports you every step of the way. Whether you want in-depth training or self-taught materials, you can learn performance-based design modeling with greater efficiency and proficiency. We design our software for anyone to learn, and our customers are delighted when our support team helps them succeed.</p><p>We believe Pathfinder will quickly win you over. Try it free for 30 days - complete and unrestricted.</p>
75
+ ctas:
76
+ - text: Purchase
77
+ url: https://store2.thunderheadeng.com/cart
78
+ color: pathfinder
79
+ - text: Free trial
80
+ url: https://store2.thunderheadeng.com/trial
81
+ color: white
82
+ - name: Stats
83
+ fieldGroup: stats
84
+ color: pathfinder
85
+ heading: Trusted by experts around the world
86
+ subheading:
87
+ image: page-path-chart-map.png
88
+ stats:
89
+ - value: "#1"
90
+ label: Egress tool in SFPE survey
91
+ - value: 18
92
+ label: International Partners
93
+ - value: 14+
94
+ label: Years of Updates
95
+ - name: Testimonial
96
+ fieldGroup: testimonial
97
+ color: pathfinder
98
+ quotes:
99
+ - fullname: David Stacy
100
+ fulltitle: Principal & Founder, Performance Based Fire Protection Engineering, PLLC
101
+ image: page-testimonial-stacy-sq.jpg
102
+ text: PyroSim and Pathfinder allow our team to streamline our model builds, use unique techniques and approaches, and provide clean and concise output data. The software saves us time through many of the powerful features, which translates to both cost and time savings to our clients.
103
+ - fullname: James Milke
104
+ fulltitle: Professor & Chair, Department of Fire Protection Engineering, University of Maryland
105
+ image: page-testimonial-milke.jpg
106
+ text: We utilize Pathfinder in a senior level undergraduate and graduate course to give students experience in evacuation simulations as well as to understand the challenges in providing credible simulations. The tutorials available to describe the use of Pathfinder are great resources to direct students to in order for them to become introduced to the software.
107
+ - name: Highlight Video
108
+ fieldGroup: video
109
+ v: P07Y0jpkbF8
110
+ thumbnail: page-path-video-thumb.png
111
+ - name: Pricing
112
+ fieldGroup: pricing-table
113
+ color: pathfinder
114
+ heading: Pricing
115
+ subheading: Build free for 30 days, then purchase a license to go live. Purchase per computer or per network seat.
116
+ groups:
117
+ - id: annual
118
+ label: Annual
119
+ description: Annual subscriptions start on the date of purchase and are valid for 365 days. Subscriptions can be renewed as needed in the future.
120
+ options:
121
+ - label: Node-Locked
122
+ text: Pathfinder licensed for all users on a single computer.
123
+ unit: $
124
+ price: 2350
125
+ divisor: /yr
126
+ cta_label: Purchase Node-Locked
127
+ cta_url: https://store2.thunderheadeng.com/cart?pth_annu_nl=1
128
+ cta_color: pathfinder
129
+ features_text: What's included
130
+ features:
131
+ - text: Pathfinder pedestrian movement and evacuation simulation.
132
+ - text: Results visual analysis, management, and export.
133
+ - text: One year of support and updates.
134
+ - label: Floating
135
+ text: Pathfinder licensed for all computers and users on a network.
136
+ unit: $
137
+ price: 3525
138
+ divisor: /yr
139
+ cta_label: Purchase Floating
140
+ cta_url: https://store2.thunderheadeng.com/cart?pth_annu_fl=1
141
+ cta_color: pathfinder
142
+ features_text: What's included
143
+ features:
144
+ - text: Everything in Pathfinder Node-Locked.
145
+ - text: Share pool of licenses across multiple PCs.
146
+ - text: Thunderhead License Manager server and support.
147
+ - label: Discounted multi-licensing
148
+ highlight: true
149
+ text: Save 50% on all additional licenses across all products.
150
+ unit: "%"
151
+ price: 50
152
+ divisor: discount
153
+ cta_label: Customize
154
+ cta_url: https://store2.thunderheadeng.com/cart
155
+ cta_color: pathfinder
156
+ features_text: What's included
157
+ features:
158
+ - text: Only pay full price for single most expensive license.
159
+ - text: 50% discount applied to ALL additional licenses ordered.
160
+ - text: Combine PyroSim and Pathfinder, Node-locked and Floating in your order.
161
+ - label: Enterprise
162
+ text: Discounts and service for high volume licensing.
163
+ unit:
164
+ price: Custom
165
+ divisor:
166
+ cta_label: Contact Sales
167
+ cta_url: mailto:sales@thunderheadeng.com
168
+ cta_color: pathfinder
169
+ features_text: What's included
170
+ features:
171
+ - text: 10 or more licenses to fit your needs.
172
+ - text: Advanced support for your projects.
173
+ - text: Early access beta releases.
174
+ - id: permanent
175
+ label: Permanent
176
+ description: After 12 months of Maintenance included with the intial purchase, future support and upgrades require continuous annual maintenance payments.
177
+ options:
178
+ - label: Permanent Node-Locked
179
+ text: Pathfinder for all users on a single computer.
180
+ price: 7850
181
+ unit: $
182
+ cta_label: Purchase Node-Locked
183
+ cta_url: https://store2.thunderheadeng.com/cart?pth_perm_nl=1
184
+ cta_color: pathfinder
185
+ features_text: What's included
186
+ features:
187
+ - text: Pathfinder pedestrian movement and evacuation simulation.
188
+ - text: Results visual analysis, management, and export.
189
+ - text: Includes first 12 months of Maintenance.
190
+ - label: Permanent Floating
191
+ text: Pathfinder on your LAN for all computers and users.
192
+ price: 11775
193
+ unit: $
194
+ cta_label: Purchase Floating
195
+ cta_url: https://store2.thunderheadeng.com/cart?pth_perm_fl=1
196
+ cta_color: pathfinder
197
+ features_text: What's included
198
+ features:
199
+ - text: Everything in PyroSim Node-Locked.
200
+ - text: Share pool of Licenses across multiple PCs.
201
+ - text: Thunderhead License Manager server and support.
202
+ - label: Discounted multi-licensing
203
+ highlight: true
204
+ text: Save 50% on all additional licenses across all products.
205
+ unit: "%"
206
+ price: 50
207
+ divisor: discount
208
+ cta_label: Customize
209
+ cta_url: https://store2.thunderheadeng.com/cart
210
+ cta_color: pathfinder
211
+ features_text: What's included
212
+ features:
213
+ - text: Only pay full price for single most expensive license.
214
+ - text: 50% discount applied to ALL additional licenses ordered.
215
+ - text: Combine PyroSim and Pathfinder, Node-locked and Floating in your order.
216
+ - label: Enterprise
217
+ text: Discounts and service for high volume licensing.
218
+ unit:
219
+ price: Custom
220
+ divisor:
221
+ cta_label: Contact Sales
222
+ cta_url: mailto:sales@thunderheadeng.com
223
+ cta_color: pathfinder
224
+ features_text: What's included
225
+ features:
226
+ - text: 10 or more licenses to fit your needs.
227
+ - text: Advanced support for your projects.
228
+ - text: Early access beta releases.
229
+ footer:
230
+ heading: Apply for free academic or government review licenses.
231
+ text: Educational licenses are available to students and instructors for academic, non-commercial use.</p><p>Review licenses are available to authorities (AHJs) for regulatory, non-commercial use.
232
+ ctas:
233
+ - text: Apply now
234
+ url: https://store2.thunderheadeng.com/trial
235
+ color: pathfinder
236
+ - text: Contact sales
237
+ url: mailto:sales@thunderheadeng.com
238
+ color: white
239
+ lastmod: 2022-05-09T20:57:16.888Z
240
+ ---
@@ -0,0 +1,20 @@
1
+ ---
2
+ title: Product News
3
+ summary: News for a specific product.
4
+ lastmod: 2022-05-31T18:10:18.701Z
5
+ date: 2022-03-20T18:50:14.618Z
6
+ page_sections:
7
+ - name: Product News Grid
8
+ fieldGroup: news-grid
9
+ title: All the News
10
+ subtitle: About a Product
11
+ pageSize: 1
12
+ filter:
13
+ - pyrosim
14
+ layout: blocks
15
+ ---
16
+
17
+ The **NewsGrid** component has 2 inputs used to paginate and filter the items shown in the grid.
18
+
19
+ - **pageSize** : The number of items displayed per page.
20
+ - **filter** : An optional list of post 'categories' that you can filter the list by.
@@ -0,0 +1,9 @@
1
+ import { json } from "@sveltejs/kit";
2
+ import getContent from "$lib/get-content.js";
3
+
4
+ export const prerender = true;
5
+
6
+ export const GET = async () => {
7
+ const posts = await getContent("news");
8
+ return json(posts);
9
+ };
@@ -0,0 +1,240 @@
1
+ ---
2
+ title: Product Page
3
+ summary: Example product page.
4
+ layout: blocks
5
+ date: 2022-04-18T22:57:06.596+00:00
6
+ images: StadiumFire.png
7
+ page_sections:
8
+ - name: Hero
9
+ fieldGroup: hero
10
+ color: pyrosim
11
+ logo: pyrosim-logo
12
+ video: PyroSim_Product_Video_2023q_bg_vid2.mp4
13
+ image: Screenshot%202022-12-06%20164613.png
14
+ banner_text: What's new
15
+ banner_link_text: 2022.3
16
+ banner_link_url: /product/news
17
+ title: PyroSim
18
+ tagline: Faster FDS modeling with professional results
19
+ text: Model dynamic fire simulations in detailed 3D to accelerate and enhance your fire protection analysis.
20
+ ctas:
21
+ - text: Purchase
22
+ url: https://store2.thunderheadeng.com/cart
23
+ color: pyrosim
24
+ - text: Free trial
25
+ url: https://store2.thunderheadeng.com/trial
26
+ color: white
27
+ links:
28
+ - text: News
29
+ url: /news
30
+ - text: Features
31
+ url: /features
32
+ - text: Publications
33
+ url: /publications
34
+ heading: Are hand calculations and text-driven design holding you back?
35
+ body: Building geometry from scratch is expensive. <br> Designing models from only text files is error-prone.<br>Producing results without advanced tools takes too much time.</p>
36
+ cta: View PyroSim Features
37
+ cta_url: /features
38
+ - name: PyroSim Features
39
+ fieldGroup: feature-grid
40
+ color: pyrosim
41
+ preheading:
42
+ heading: Elevate fire protection engineering to the next level.
43
+ subheading:
44
+ blocks:
45
+ - heading: Import CAD geometry
46
+ icon: icon-file_open
47
+ body: Import the architect's model in seconds. Automatically detect BIM data and generate fire model specific geometry. Easily manage what you want to see and when.
48
+ - heading: Design simulations graphically
49
+ icon: icon-design_services
50
+ body: Build in an application tailored to avoiding errors and mistakes. See your model as you work and easily investigate details through intelligent UI.
51
+ - heading: Manage simulation assets
52
+ icon: icon-computer
53
+ body: Control your CPU processing capabilities to optimize simulation time. Maintain multiple simulation configurations for sensitivty analyses.
54
+ - heading: Deliver professional results
55
+ icon: icon-insights
56
+ body: Put the worries of an AHJ to rest. Answer all their questions with unprecedented clarity by creating plots and videos with advanced controls and information overlay.
57
+ - name: Plan
58
+ fieldGroup: cta-split-image
59
+ color: pyrosim
60
+ preheading: Training and support ready to help you advance
61
+ heading: Start delivering better results now
62
+ image: page-training-laptop.png
63
+ items:
64
+ - text: Download now
65
+ - text: Learn the fundamentals
66
+ - text: Deliver results
67
+ cta: View the training options
68
+ cta_url: /
69
+ - name: Explain
70
+ fieldGroup: content-two-columns
71
+ color: pyrosim
72
+ preheading: FDS + PyroSim
73
+ heading: Model a safer world
74
+ body: <p>PyroSim was designed to complement Fire Dynamics Simulator (FDS) developed by NIST in the US. With their state-of-the-art fire research facilities and personnel, they understand the calculations of fire simulation better than anyone.</p><p>FDS is the engine powering fire simulations all over the world. PyroSim empowers more engineers to use this technology and elevates its capabilities.</p><ol role="list"><li>PyroSim provides graphical tools which automatically generate the text-only FDS input file.</li><li>PyroSim imports CAD, enables advanced simulation management, and packages its own results manager.</li></ol><p>None of this is possible without FDS empowering every car park jet fan simulations, sprinkler activation studies, and more.</p><p>FDS is free for anyone to download. Do you need PyroSim? We think so. Consider the time not spent constructing your building geometry from scratch in a text editor. Consider the errors caught in real-time and brought to your attention.</p> <p>Thunderhead Engineering supports you every step of the way. Whether you want in-depth training or self-taught materials, you can learn performance-based design modeling with greater efficiency and proficiency. We design our software for anyone to learn, and our customers are delighted when our support team helps them succeed.</p><p>We believe PyroSim will quickly win you over. Try it free for 30 days - complete and unrestricted.</p>
75
+ ctas:
76
+ - text: Purchase
77
+ url: https://store2.thunderheadeng.com/cart
78
+ color: pyrosim
79
+ - text: Free trial
80
+ url: https://store2.thunderheadeng.com/trial
81
+ color: white
82
+ - name: Stats
83
+ fieldGroup: stats
84
+ color: pyrosim
85
+ heading: Trusted by experts around the world
86
+ subheading:
87
+ image: page-pyro-chart-map.png
88
+ stats:
89
+ - value: 500+
90
+ label: Leading design firms
91
+ - value: 18
92
+ label: International Partners
93
+ - value: 16+
94
+ label: Years of Updates
95
+ - name: Testimonial
96
+ fieldGroup: testimonial
97
+ color: pyrosim
98
+ quotes:
99
+ - fullname: David Stacy
100
+ fulltitle: Principal & Founder, Performance Based Fire Protection Engineering, PLLC
101
+ image: page-testimonial-stacy-sq.jpg
102
+ text: PyroSim and Pathfinder allow our team to streamline our model builds, use unique techniques and approaches, and provide clean and concise output data. The software saves us time through many of the powerful features, which translates to both cost and time savings to our clients.
103
+ - fullname: James Milke
104
+ fulltitle: Professor & Chair, Department of Fire Protection Engineering, University of Maryland
105
+ image: page-testimonial-milke.jpg
106
+ text: PyroSim is utilized in our fire modeling courses and is a valuable tool in simplifying the process to develop input for FDS. Both Pathfinder and PyroSim are highly utilized in the research efforts being conducted by a wide range of students in the department.
107
+ - name: Highlight Video
108
+ fieldGroup: video
109
+ v: pdPt80nEcVQ
110
+ thumbnail: page-pyro-video-thumb.png
111
+ - name: Pricing
112
+ fieldGroup: pricing-table
113
+ color: pyrosim
114
+ heading: Pricing
115
+ subheading: Build free for 30 days, then purchase a license to go live. Purchase per computer or per network seat.
116
+ groups:
117
+ - id: annual
118
+ label: Annual
119
+ description: Annual subscriptions start on the date of purchase and are valid for 365 days. Subscriptions can be renewed as needed in the future.
120
+ options:
121
+ - label: Node-Locked
122
+ text: PyroSim licensed for all users on a single computer.
123
+ price: 1100
124
+ unit: $
125
+ divisor: /yr
126
+ cta_label: Purchase Node-Locked
127
+ cta_url: https://store2.thunderheadeng.com/cart?psm_annu_nl=1
128
+ cta_color: pyrosim
129
+ features_text: What's included
130
+ features:
131
+ - text: PyroSim fire dynamics and smoke control simulation.
132
+ - text: Results visual analysis, management, and export.
133
+ - text: One year of support and updates.
134
+ - label: Floating
135
+ text: PyroSim licensed for all computers and users on a network.
136
+ price: 1650
137
+ unit: $
138
+ divisor: /yr
139
+ cta_label: Purchase Floating
140
+ cta_url: https://store2.thunderheadeng.com/cart?psm_annu_fl=1
141
+ cta_color: pyrosim
142
+ features_text: What's included
143
+ features:
144
+ - text: Everything in PyroSim Node-Locked.
145
+ - text: Share pool of Licenses across multiple PCs.
146
+ - text: Thunderhead License Manager server and support.
147
+ - label: Discounted multi-licensing
148
+ highlight: true
149
+ text: Save 50% on all additional licenses across all products.
150
+ unit: "%"
151
+ price: 50
152
+ divisor: discount
153
+ cta_label: Customize
154
+ cta_url: https://store2.thunderheadeng.com/cart
155
+ cta_color: pyrosim
156
+ features_text: What's included
157
+ features:
158
+ - text: Only pay full price for single most expensive license.
159
+ - text: 50% discount applied to ALL additional licenses ordered.
160
+ - text: Combine PyroSim and Pathfinder, Node-locked and Floating in your order.
161
+ - label: Enterprise
162
+ text: Discounts and service for high volume licensing.
163
+ unit:
164
+ price: Custom
165
+ divisor:
166
+ cta_label: Contact Sales
167
+ cta_url: mailto:sales@thunderheadeng.com
168
+ cta_color: pyrosim
169
+ features_text: What's included
170
+ features:
171
+ - text: 10 or more licenses to fit your needs.
172
+ - text: Advanced support for your projects.
173
+ - text: Early access beta releases.
174
+ - id: permanent
175
+ label: Permanent
176
+ description: After 12 months of Maintenance included with the intial purchase, future support and upgrades require continuous annual maintenance payments.
177
+ options:
178
+ - label: Permanent Node-Locked
179
+ text: PyroSim for all users on a single computer.
180
+ price: 3650
181
+ unit: $
182
+ cta_label: Purchase Node-Locked
183
+ cta_url: https://store2.thunderheadeng.com/cart?psm_perm_nl=1
184
+ cta_color: pyrosim
185
+ features_text: What's included
186
+ features:
187
+ - text: PyroSim fire dynamics and smoke control simulation.
188
+ - text: Results visual analysis, management, and export.
189
+ - text: Includes first 12 months of Maintenance.
190
+ - label: Permanent Floating
191
+ text: PyroSim on your LAN for all computers and users.
192
+ price: 5475
193
+ unit: $
194
+ cta_label: Purchase Floating
195
+ cta_url: https://store2.thunderheadeng.com/cart?psm_perm_fl=1
196
+ cta_color: pyrosim
197
+ features_text: What's included
198
+ features:
199
+ - text: Everything in PyroSim Node-Locked.
200
+ - text: Share pool of Licenses across multiple PCs.
201
+ - text: Thunderhead License Manager server and support.
202
+ - label: Discounted multi-licensing
203
+ highlight: true
204
+ text: Save 50% on all additional licenses across all products.
205
+ unit: "%"
206
+ price: 50
207
+ divisor: discount
208
+ cta_label: Customize
209
+ cta_url: https://store2.thunderheadeng.com/cart
210
+ cta_color: pyrosim
211
+ features_text: What's included
212
+ features:
213
+ - text: Only pay full price for single most expensive license.
214
+ - text: 50% discount applied to ALL additional licenses ordered.
215
+ - text: Combine PyroSim and Pathfinder, Node-locked and Floating in your order.
216
+ - label: Enterprise
217
+ text: Discounts and service for high volume licensing.
218
+ unit:
219
+ price: Custom
220
+ divisor:
221
+ cta_label: Contact Sales
222
+ cta_url: mailto:sales@thunderheadeng.com
223
+ cta_color: pyrosim
224
+ features_text: What's included
225
+ features:
226
+ - text: 10 or more licenses to fit your needs.
227
+ - text: Advanced support for your projects.
228
+ - text: Early access beta releases.
229
+ footer:
230
+ heading: Apply for free academic or government review licenses.
231
+ text: Educational licenses are available to students and instructors for academic, non-commercial use.</p><p>Review licenses are available to authorities (AHJs) for regulatory, non-commercial use.
232
+ ctas:
233
+ - text: Apply now
234
+ url: https://store2.thunderheadeng.com/trial
235
+ color: pyrosim
236
+ - text: Contact sales
237
+ url: mailto:sales@thunderheadeng.com
238
+ color: white
239
+ lastmod: 2022-05-09T20:57:16.888Z
240
+ ---
@@ -0,0 +1,20 @@
1
+ ---
2
+ title: Product News
3
+ summary: News for a specific product.
4
+ lastmod: 2022-05-31T18:10:18.701Z
5
+ date: 2022-03-20T18:50:14.618Z
6
+ page_sections:
7
+ - name: Product News Grid
8
+ fieldGroup: news-grid
9
+ title: All the News
10
+ subtitle: About a Product
11
+ pageSize: 1
12
+ filter:
13
+ - pyrosim
14
+ layout: blocks
15
+ ---
16
+
17
+ The **NewsGrid** component has 2 inputs used to paginate and filter the items shown in the grid.
18
+
19
+ - **pageSize** : The number of items displayed per page.
20
+ - **filter** : An optional list of post 'categories' that you can filter the list by.
@@ -0,0 +1,7 @@
1
+ <script>
2
+ let resellerModal = true;
3
+ </script>
4
+
5
+ <TrialForm />
6
+
7
+ <CountrySelector bind:resellerModal />