Monthly may 2021 post
parent
7775ebc6d3
commit
035ecd4547
@ -0,0 +1,45 @@
|
||||
---
|
||||
title: "This month in AvaFrame - May 2021 edition"
|
||||
date: 2021-06-05T17:08:58+01:00
|
||||
draft: false
|
||||
---
|
||||
|
||||
Welcome to the May 2021 edition of our monthly update. Our main goal was the
|
||||
preparation for the switch of the dense flow model com1DFA from a C code to
|
||||
python (cython) code. This meant to check every little detail and difference that
|
||||
we found as well as:
|
||||
|
||||
+ updated the documentation for the new python com1DFAP: algorithm, workflow and description
|
||||
|
||||
+ updated the re-projection method of particles. Now particles are re-projected
|
||||
normal to the surface and not vertically. This is especially important at
|
||||
sharp drops. We also added a test case for this.
|
||||
|
||||
+ restructured the com1DFA run workflow
|
||||
|
||||
- now everything is controlled in model configuration via ini (the previous
|
||||
com1DFA had a lot of internal setup)
|
||||
|
||||
- allow for parameter variation runs right from python
|
||||
|
||||
- new naming of simulations which provides easy filtering options
|
||||
|
||||
+ restructured the benchmark workflow and updated run scripts for standard tests
|
||||
|
||||
- added simple functions to fetch benchmarks
|
||||
|
||||
- simplify plotting and AIMEC path functions according to new structure based
|
||||
on simulation name and configuration
|
||||
|
||||
+ com2AB (Alpha Beta) now allows for running with custom parameters
|
||||
|
||||
+ added an export function to visualise particle properties with Paraview
|
||||
|
||||
+ started the development of the QGis Connection. See this
|
||||
[repository](https://github.com/avaframe/QGisAF) for the development.
|
||||
|
||||
Since we are now nearing the milestone of our first public prototype, I guess we
|
||||
will have to start posting some nice graphics as well... So watch this space for
|
||||
upcoming posts! :-)
|
||||
|
||||
Felix
|
||||
@ -0,0 +1,179 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<meta name="author" content="AvaFrame">
|
||||
<meta name="description" content="https://avaframe.org">
|
||||
<meta name="keywords" content="project,avalanche">
|
||||
|
||||
<meta property="og:site_name" content="AvaFrame">
|
||||
<meta property="og:title" content="
|
||||
This month in AvaFrame - May 2021 edition - AvaFrame
|
||||
">
|
||||
<meta property="og:description" content="">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:url" content="https://avaframe.org/posts/monthlymay2021/">
|
||||
<meta property="og:image" content="https://avaframe.org">
|
||||
<meta name="twitter:card" content="summary">
|
||||
<meta name="twitter:site" content="https://avaframe.org/posts/monthlymay2021/">
|
||||
<meta name="twitter:image" content="https://avaframe.org">
|
||||
|
||||
<base href="https://avaframe.org/posts/monthlymay2021/">
|
||||
<title>
|
||||
This month in AvaFrame - May 2021 edition - AvaFrame
|
||||
</title>
|
||||
|
||||
<link rel="canonical" href="https://avaframe.org/posts/monthlymay2021/">
|
||||
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Fira+Mono:400,700">
|
||||
<link rel="stylesheet" href="https://avaframe.org/css/normalize.min.css">
|
||||
<link rel="stylesheet" href="https://avaframe.org/css/style.min.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="icon" type="image/png" href="https://avaframe.org/images/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://avaframe.org/images/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
<link rel="alternate" href="https://avaframe.org/index.xml" type="application/rss+xml" title="AvaFrame">
|
||||
<link href="https://avaframe.org/index.xml" rel="feed" type="application/rss+xml" title="AvaFrame" />
|
||||
|
||||
|
||||
<meta name="generator" content="Hugo 0.83.1" />
|
||||
</head>
|
||||
|
||||
<body class="">
|
||||
<main class="wrapper">
|
||||
<nav class="navigation">
|
||||
<section class="container">
|
||||
<a class="navigation-title" href="/">AvaFrame</a>
|
||||
<input type="checkbox" id="menu-control"/>
|
||||
<label class="menu-mobile float-right " for="menu-control">
|
||||
<span class="btn-mobile float-right ">☰</span>
|
||||
<ul class="navigation-list">
|
||||
|
||||
|
||||
<li class="navigation-item align-center ">
|
||||
<a class="navigation-link" href="https://avaframe.org/about">About</a>
|
||||
</li>
|
||||
|
||||
<li class="navigation-item align-center ">
|
||||
<a class="navigation-link" href="https://avaframe.org/posts">Posts</a>
|
||||
</li>
|
||||
|
||||
<li class="navigation-item align-center ">
|
||||
<a class="navigation-link" href="https://avaframe.org/contact">Contact</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</label>
|
||||
</section>
|
||||
</nav>
|
||||
|
||||
|
||||
<div class="content">
|
||||
|
||||
<section class="container post">
|
||||
<article>
|
||||
<header>
|
||||
<h1 class="title">This month in AvaFrame - May 2021 edition</h1>
|
||||
<h2 class="date">June 5, 2021</h2>
|
||||
|
||||
|
||||
</header>
|
||||
|
||||
<p>Welcome to the May 2021 edition of our monthly update. Our main goal was the
|
||||
preparation for the switch of the dense flow model com1DFA from a C code to
|
||||
python (cython) code. This meant to check every little detail and difference that
|
||||
we found as well as:</p>
|
||||
<ul>
|
||||
<li>
|
||||
<p>updated the documentation for the new python com1DFAP: algorithm, workflow and description</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>updated the re-projection method of particles. Now particles are re-projected
|
||||
normal to the surface and not vertically. This is especially important at
|
||||
sharp drops. We also added a test case for this.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>restructured the com1DFA run workflow</p>
|
||||
<ul>
|
||||
<li>
|
||||
<p>now everything is controlled in model configuration via ini (the previous
|
||||
com1DFA had a lot of internal setup)</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>allow for parameter variation runs right from python</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>new naming of simulations which provides easy filtering options</p>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<p>restructured the benchmark workflow and updated run scripts for standard tests</p>
|
||||
<ul>
|
||||
<li>
|
||||
<p>added simple functions to fetch benchmarks</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>simplify plotting and AIMEC path functions according to new structure based
|
||||
on simulation name and configuration</p>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<p>com2AB (Alpha Beta) now allows for running with custom parameters</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>added an export function to visualise particle properties with Paraview</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>started the development of the QGis Connection. See this
|
||||
<a href="https://github.com/avaframe/QGisAF">repository</a> for the development.</p>
|
||||
</li>
|
||||
</ul>
|
||||
<p>Since we are now nearing the milestone of our first public prototype, I guess we
|
||||
will have to start posting some nice graphics as well… So watch this space for
|
||||
upcoming posts! :-)</p>
|
||||
<p>Felix</p>
|
||||
|
||||
</article>
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
|
||||
</div>
|
||||
|
||||
<footer class="footer">
|
||||
|
||||
</footer>
|
||||
<div class="fixed-bar">
|
||||
<section class="container">
|
||||
|
||||
<p id="privateTriggerText">Want to contact us? Visit our matrix room at: <a id="privateTrigger"
|
||||
href="https://matrix.to/#/!qmUrKSNurDoVuKAtRU:matrix.avaframe.org?via=matrix.avaframe.org">
|
||||
#public:matrix.avaframe.org</a></p>
|
||||
|
||||
</section>
|
||||
</div>
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
|
||||
|
||||
<script src="https://avaframe.org/js/app.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue