Add monthly, nov 2020 edition
parent
ca6c00d863
commit
f5add73daa
@ -0,0 +1,52 @@
|
||||
---
|
||||
title: "This month in AvaFrame - November 2020 edition"
|
||||
date: 2020-11-29T20:19:18+01:00
|
||||
draft: false
|
||||
slug: "monthlynov2020"
|
||||
---
|
||||
|
||||
Welcome to our next monthly update.
|
||||
|
||||
+ This month started with the exciting (at least for us :-) ) release of
|
||||
version 0.1. Head over to our [github repository](https://github.com/avaframe/avaframe)
|
||||
and our [documentation](https://docs.avaframe.org/en/v0.1) to learn more about
|
||||
it (or read our last [post](https://avaframe.org/posts/version0_1/)).
|
||||
|
||||
+ With this release (and the rest of the month as well) we improved our
|
||||
documentation quite a lot. New *getting started* and *installation* pages
|
||||
should make it possible for you to get started (*ha, who would have
|
||||
guessed*..) with AvaFrame. To make it more readable we reordered the modules
|
||||
documentation. Just recently we started adding the API documentation with all
|
||||
our functions as well (for those interested: this is achieved with sphinx
|
||||
autodoc/autosummary and docstrings). To acknowledge the (very important) data
|
||||
providers, a data sources page was added, with sources and references to data
|
||||
we use in our framework.
|
||||
|
||||
+ Our existing test cases received more features, now we include multiple
|
||||
release areas and multiple scenarios per avalanche. Also included are scenarios
|
||||
with resistance areas for our main dense flow avalanche kernel.
|
||||
|
||||
+ The first data for real avalanche test cases has made it to the
|
||||
repository. So far we concentrated on idealised cases, but we now include 6
|
||||
real world avalanches. For now release areas and DEMs are available. Soon these
|
||||
cases will also end up in our test scripts.
|
||||
|
||||
+ New functions for probability / parameter range simulations are available for
|
||||
the dense flow kernel com1DFA. Testing this with an applied example is underway at
|
||||
the moment.
|
||||
|
||||
+ We started working on the implementation of our dense flow kernel com1DFA in
|
||||
python. This means digging deep into the programming and theory of our C++ reference
|
||||
code. The base structure is already there, current developments concentrate on the
|
||||
implementation of 2D SPH for depth integrated equations on a surface living in
|
||||
3D and time discretizations, among others. Head over to our
|
||||
[github issues](https://github.com/avaframe/AvaFrame/issues/) to get an idea about
|
||||
the issues (..ha..) at hand.
|
||||
|
||||
+ And finally: the second steering committee meeting took place. Which reminds
|
||||
me, I need to add a page about AvaFrame's organisational structure... So watch
|
||||
this space...
|
||||
|
||||
On to the next month!
|
||||
|
||||
Felix
|
||||
@ -0,0 +1,176 @@
|
||||
<!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 - November 2020 edition - AvaFrame
|
||||
">
|
||||
<meta property="og:description" content="">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:url" content="https://avaframe.org/posts/monthlynov2020/">
|
||||
<meta property="og:image" content="https://avaframe.org">
|
||||
<meta name="twitter:card" content="summary">
|
||||
<meta name="twitter:site" content="https://avaframe.org/posts/monthlynov2020/">
|
||||
<meta name="twitter:image" content="https://avaframe.org">
|
||||
|
||||
<base href="https://avaframe.org/posts/monthlynov2020/">
|
||||
<title>
|
||||
This month in AvaFrame - November 2020 edition - AvaFrame
|
||||
</title>
|
||||
|
||||
<link rel="canonical" href="https://avaframe.org/posts/monthlynov2020/">
|
||||
|
||||
<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.79.0" />
|
||||
</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 - November 2020 edition</h1>
|
||||
<h2 class="date">November 29, 2020</h2>
|
||||
|
||||
|
||||
</header>
|
||||
|
||||
<p>Welcome to our next monthly update.</p>
|
||||
<ul>
|
||||
<li>
|
||||
<p>This month started with the exciting (at least for us :-) ) release of
|
||||
version 0.1. Head over to our <a href="https://github.com/avaframe/avaframe">github repository</a>
|
||||
and our <a href="https://docs.avaframe.org/en/v0.1">documentation</a> to learn more about
|
||||
it (or read our last <a href="https://avaframe.org/posts/version0_1/">post</a>).</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>With this release (and the rest of the month as well) we improved our
|
||||
documentation quite a lot. New <em>getting started</em> and <em>installation</em> pages
|
||||
should make it possible for you to get started (<em>ha, who would have
|
||||
guessed</em>..) with AvaFrame. To make it more readable we reordered the modules
|
||||
documentation. Just recently we started adding the API documentation with all
|
||||
our functions as well (for those interested: this is achieved with sphinx
|
||||
autodoc/autosummary and docstrings). To acknowledge the (very important) data
|
||||
providers, a data sources page was added, with sources and references to data
|
||||
we use in our framework.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Our existing test cases received more features, now we include multiple
|
||||
release areas and multiple scenarios per avalanche. Also included are scenarios
|
||||
with resistance areas for our main dense flow avalanche kernel.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>The first data for real avalanche test cases has made it to the
|
||||
repository. So far we concentrated on idealised cases, but we now include 6
|
||||
real world avalanches. For now release areas and DEMs are available. Soon these
|
||||
cases will also end up in our test scripts.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>New functions for probability / parameter range simulations are available for
|
||||
the dense flow kernel com1DFA. Testing this with an applied example is underway at
|
||||
the moment.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>We started working on the implementation of our dense flow kernel com1DFA in
|
||||
python. This means digging deep into the programming and theory of our C++ reference
|
||||
code. The base structure is already there, current developments concentrate on the
|
||||
implementation of 2D SPH for depth integrated equations on a surface living in
|
||||
3D and time discretizations, among others. Head over to our
|
||||
<a href="https://github.com/avaframe/AvaFrame/issues/">github issues</a> to get an idea about
|
||||
the issues (..ha..) at hand.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>And finally: the second steering committee meeting took place. Which reminds
|
||||
me, I need to add a page about AvaFrame’s organisational structure… So watch
|
||||
this space…</p>
|
||||
</li>
|
||||
</ul>
|
||||
<p>On to the next month!</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