Code Monkey home page Code Monkey logo

permeability's Introduction

title permalink
Read me file
readme

Personal web page of Josef Melcr

based on the following scheme -- thanks!

inserting site-image

image is inserted using the following code

{% if site.image %}
  <div class="cover-image"><img src="{{ site.image }}" alt="" /></div>
{% endif %}

Crossing

A Jekyll theme.

Demo × Download

Demo images are from Unsplash.

Cover images

Site cover image:

# _config.yml
image: /crossing-jekyll/images/site-image.jpg

Post cover image:

---
image: /crossing-jekyll/images/post-image.jpg
---

Author information

To have author bylines and bio at bottom of posts, add configuration like the following in _config.yml:

authors:
  johndoe:
    name: John Doe
    website: https://github.com/barepants
    bio: An awesome bio # Author info at bottom of post only shows if bio exists
    avatar: /crossing-jekyll/images/avatar.jpg

and specify the author in the Front Matter of posts:

---
author: johndoe
---

Social meta tags

Crossing generates Open Graph and Twitter Cards meta tags automatically for better social media sharing. There are two extra settings:

# _config.yml
og_image: /images/og-image.jpg # Fallback og:image when no page.image or site.image. at least 200 x 200px.
twitter_site: # twitter:site. Your Twitter username without "@"

Meta description

page.excerpt is used for meta description of posts and pages. It is the first paragraph by default for posts. For pages you have to set it in the Front Matter:

---
excerpt: An excerpt
---

Twitter Cards requires meta description. Facebook could infer it from the page if it's empty.

License

CC0

permeability's People

Contributors

jmelcr avatar

Stargazers

 avatar

Watchers

 avatar  avatar

permeability's Issues

ML application - classifier

Use the simulated data set to train some (decision tree? ) ML model to classify 3 permeability classes , which shall eventually turn out to be equally classified by bilayer phases (judging by current results).

Friction profiles require better sampling of their autocorrelation

I have found that the noisy Friction profile
arises also from the fact that the umbrella potentials
that restrain the configuration in a too narrow region.
As a result, the particle decorrelates too quickly to
tell on the autocorrelation and calculate the friction well (likely explenation).

Using an updated setting revealed that the particles really exhibit a small peak in friction profile
at the place where they change from solvated to dry.
This is nicely in line with the work of Siewert and Berendsen,
who have found the same feature at that place too.

➡️ I have to update the friction profiles to use simulations that show their features.

Also, I should try using some filtering to reduce the noise in the profiles.
(e.g. from my previous work: from scipy.signal import butter, filtfilt)

Change the units of frcition profiles

currently the friction is in ps/nm^2, but would be much nicer if it were in ns/nm^2 (the results will not be in order of "thousands", but "ones")

Improve style in property-setter in notebook

The setting of properties in the main class
is a bit clumsy and can be improved in the following sense:

    @property
    def ensemble(self):
        r"""EnsembleData: Information on the sampled ensemble

        Returns
        -------
        ensemble : EnsembleData
        """
        return self.__ensemble

    @ensemble.setter
    def ensemble(self, ensemble):
        if not isinstance(ensemble, EnsembleData):
            raise TypeError('No known conversion from ' + str(type(ensemble)) +
                            'to EnsembleData')
        self.__ensemble = ensemble

from https://gitlab.com/gromacs/gromacs/-/blob/master/tests/physicalvalidation/physical_validation/data/simulation_data.py

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.