create account

Managing particle physics model information in Python by lemouth

View this thread on: hive.blogpeakd.comecency.com
· @lemouth ·
$35.94
Managing particle physics model information in Python
<div class='text-justify'> 

Particle physicists currently explore the fundamental laws of Nature through very powerful machines, the LHC at CERN being one of them. The good accomplishment of this task crucially depends on our ability to implement, in appropriate simulation tools, any model physicists could dream of. This would indeed allow us to draw conclusive statements from theory-data comparisons.

<div class="pull-left">

<center> <img width="350" src="https://i.postimg.cc/02wVDNYm/boom.jpg"><br />
<sub>[image credits: <a href="https://pixabay.com/en/abstract-cosmos-space-particle-3460328/">GamOI</a> (CC0)]</sub> </center> 

</div>

A week ago, I proposed to [**run a full particle physics research project on Steem**](https://steemit.com/utopian-io/@lemouth/state-of-the-art-science-on-steem-towards-a-new-python-program-for-particle-collision-simulations) in this context. The aim is to **design a Python program allowing for inputting any particle physics model in the simulation tools**. 

Thanks to a joint effort from @steemstem and @utopian-io, we are here today, ready to start working.

<br />

The first part of this project consists in **designing a data format** to store the information that will have to be inputted by the users. As the amount of inputs is pretty large, I decided to organize the project in terms of one Utopian sub-task per type of inputs. The topic of the day consists in the **treatment of the model parameters**. 

___

## <center> EXTERNAL AND INTERNAL PARAMETERS </center>
___

<div class="pull-right">

<center> <img  src="https://i.postimg.cc/m20bBRWV/lagt.png"><br />
<sub>[image credits: <a href="https://arxiv.org/abs/1608.02382">ArXiv</a>]</sub> </center> 

</div>

As explained in my [**previous post**](https://steemit.com/utopian-io/@lemouth/state-of-the-art-science-on-steem-towards-a-new-python-program-for-particle-collision-simulations), the entire information on a particle physics model is included in an equation called [**a Lagrangian**](https://en.wikipedia.org/wiki/Lagrangian_(field_theory)). 

Such a Lagrangian is in generally compact, and for the Standard Model, it even fits on a t-shirt, as illustrated with the picture. Note that this t-shirt can be bought at [**the CERN shop**](https://visit.cern/cern-shop).

Now let us go back to the Lagrangian. It contains various things, that include **parameters**. This is what we will talk about today. 

In any typical particle physics model, we have two types of parameters, namely **external** and **internal** parameters. 
 - External parameters are real numbers for which the user must provide a numerical value.
 - Internal parameters can be either real or complex, and are connected to other parameters via an analytical formula.

An illustrative declaration of external parameter is provided below in the [**good old FeynRules syntax**](https://arxiv.org/abs/1310.1921) (which we want to adapt for the needs of this project). The parameter that is chosen as an example is named `aS`.
```
aS == {
   ParameterType    -> External,
   Value            -> 0.1184,
   InteractionOrder -> {QCD, 2},
   BlockName        -> SMINPUTS,
   OrderBlock       -> 3
}
 ```

I guess the meaning of each attribute of this `aS` parameter is almost straightforward. Please ignore the Mathematica syntax and mentally convert it into a future Python syntax.

A remark is in order concerning three attributes. The **interaction order** is an optional property. It indicates the nature of a parameter with respect to the fundamental interactions embedded in the model. Here, the `aS` parameter has the same strength as the square (this is the 2) of the coupling strength of the strong interaction (this is the QCD part). Whilst QCD and QED are reserved keywords with very well defined meanings, the user is actually free to use anything.

All external parameters are then organized in groups (or **blocks**... yes, this is not invented, see [**here**](https://arxiv.org/abs/hep-ph/0311123)) and each entry in a block connects a **counter** (that consists in one integer) and a value.

<br />

It is now the time to move on with internal parameters. In the FeynRules syntax, the declaration of an internal parameter (named `gs` for the sake of the example) would read
```
gs == {
  ParameterType    -> Internal,
  ComplexParameter -> False,
  InteractionOrder -> {QCD, 1},
  Value            -> Sqrt[4 Pi aS],
  ParameterName    -> G
}
```
Once again, please ignore the Mathematica syntax and mentally trade it with a Python class. I need to discuss one of the above lines in detail (the rest can be guessed). Some parameters are special in the sense that one must clearly be able to identify what they are physically (physics always [**strikes back**](http://www.welikela.com/wp-content/uploads/2018/06/Empire-Strikes-Back-in-Concert-Hollywood-Bowl-e1530426710650.jpg)). This is what the ParameterName option allows us to do in the above syntax. It tags `gs` as a β€˜G’ parameter that is well known and with well defined properties.

___

## <center> MATRIX PARAMETERS AND INDICES  </center>
___

Some specificities exist for parameters that are **matrices**. First of all, their indices must be specified. In addition, some properties can optionally be turned on (**unitarity, hermiticity, orthogonality**).

For instance, in the FeynRules syntax, the typical declaration of a matrix would read
```
CKM == {
  ParameterType    -> Internal,
  Indices          -> {Index[Generation], Index[Generation]},
  Unitary          ->True,
  ComplexParameter -> True,
  Value            -> { … }
 }

```

Any unindicated option (hermiticity, orthogonality) means that it is set to false (that is the default choice). Moreover, the value of the parameter, represented by the dots, is this time a **list of values**, one entry for each element of the matrix. 

Moreover, for external matrices, one needs as usual to provide a block name. There is however no need to specify the counter. They can be dealt with internally. The counter consists this time in a 2-tuple corresponding to the line and column numbers of each element. 

Very importantly, one must be able to generalize that to any tensor (any parameter carrying at least 2 indices).

Concerning the indices, they must also be declared. In this declaration, one must define their **range** and their **unfolding** properties. The latter is a bit hard to explain. In short, if set to true, it means that if the index appears summed in the Lagrangian, the summ must be explicitly expanded when the Lagrangian will be treated.

___

## <center> SUMMARY AND EXTRA INFORMATION </center>
___

In this post, we really start this particle physics research project at SteemSTEM/Utopian.io. 

I decided to focus on the input parameters that the user will have to provide and that the code will have to read, and process internally. 

The tasks that have to be done for now are quite simple.
 1. The first step is to design a **command line interface** (CLI). Whilst users can in principle have their own Python program handling tasks, some may want to have a CLI to act on the various objects. We will, task after task, introduce the set of methods that this CLI should be able to cope with.
 2. One needs to define a class to handle the parameters of a particle physics model (*i.e.* the **parameter class**), that are provided as inputs by the user.
 3. One needs to design a bunch of **functions** allowing to test whether a parameter is real, is complex, is a matrix. In case of a matrix parameter, one also needs functions testing the unitary/hermitian/orthogonal nature of the matrices. Those functions should be methods of the class, as well as methods taking a parameter as an argument that could be played with in the CLI.
 4. One especially needs a function that returns the **coupling order** of a product of parameters (could be something like QCD<sup>2</sup> QED<sup>3</sup> if we have several coupling orders involved.
 5. BONUS: we may need a **nice logo** for this project! ^^

I am totally open for the strategy to follow for the input format. The simplest option is generally the best and is the one I will choose as a default. However, if you want to get an opinion before coding, leaving a comment to this post may be helpful.

I think that for now, we are all good. To tackle this project, I have created a [**fresh GitHub folder**](https://github.com/BFuks/PyRules). The subdirectory structure is left open for now.

Please do not hesitate to come back to me for questions. 

</div>
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 936 others
properties (23)
authorlemouth
permlinkmanaging-particle-physics-model-information-in-python
categoryutopian-io
json_metadata{"tags":["utopian-io","task-development","steemstem","physics"],"users":["steemstem","utopian-io"],"image":["https://i.postimg.cc/02wVDNYm/boom.jpg","https://i.postimg.cc/m20bBRWV/lagt.png"],"links":["https://pixabay.com/en/abstract-cosmos-space-particle-3460328/","https://steemit.com/utopian-io/@lemouth/state-of-the-art-science-on-steem-towards-a-new-python-program-for-particle-collision-simulations","https://arxiv.org/abs/1608.02382","https://en.wikipedia.org/wiki/Lagrangian_(field_theory)","https://visit.cern/cern-shop","https://arxiv.org/abs/1310.1921","https://arxiv.org/abs/hep-ph/0311123","http://www.welikela.com/wp-content/uploads/2018/06/Empire-Strikes-Back-in-Concert-Hollywood-Bowl-e1530426710650.jpg","https://github.com/BFuks/PyRules"],"app":"steemit/0.1","format":"markdown"}
created2018-10-16 14:04:45
last_update2018-10-16 14:04:45
depth0
children24
last_payout2018-10-23 14:04:45
cashout_time1969-12-31 23:59:59
total_payout_value28.153 HBD
curator_payout_value7.788 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8,544
author_reputation338,011,164,701,274
root_title"Managing particle physics model information in Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,414,345
net_rshares29,460,750,371,045
author_curate_reward""
vote details (1000)
@amosbastian · (edited)
$2.52
Thanks for the task request, @lemouth! I'm very looking forward to getting started with this (already doing some research) and curious to see if there will be others who are also willing to help out.

Everything about the task is pretty much clear to me, so I think you did a great job of explaining everything. I think it will be quite a lot of work, but people who are interested and invested in the project will definitely be able to take it on!

---

Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category.

To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/11/112111).

---- 
Need help? Write a ticket on https://support.utopian.io/. 
Chat with us on [Discord](https://discord.gg/uTyJkNm). 
[[utopian-moderator]](https://join.utopian.io/)
πŸ‘  , , , , , , , , , , ,
properties (23)
authoramosbastian
permlinkre-lemouth-managing-particle-physics-model-information-in-python-20181016t142904093z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["lemouth"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/11/112111","https://support.utopian.io/","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"}
created2018-10-16 14:29:03
last_update2018-10-16 14:29:45
depth1
children2
last_payout2018-10-23 14:29:03
cashout_time1969-12-31 23:59:59
total_payout_value1.922 HBD
curator_payout_value0.602 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length944
author_reputation174,473,586,900,705
root_title"Managing particle physics model information in Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,415,945
net_rshares2,015,652,906,142
author_curate_reward""
vote details (12)
@lemouth ·
Thanks amos for the report. I am pretty exciting to see where this will bring us. Let's create a precedent! :)
properties (22)
authorlemouth
permlinkre-amosbastian-re-lemouth-managing-particle-physics-model-information-in-python-20181016t234004968z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-10-16 23:40:06
last_update2018-10-16 23:40:06
depth2
children0
last_payout2018-10-23 23:40:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length110
author_reputation338,011,164,701,274
root_title"Managing particle physics model information in Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,443,033
net_rshares0
@utopian-io ·
Thank you for your review, @amosbastian!

So far this week you've reviewed 20 contributions. Keep up the good work!
properties (22)
authorutopian-io
permlinkre-re-lemouth-managing-particle-physics-model-information-in-python-20181016t142904093z-20181021t100513z
categoryutopian-io
json_metadata"{"app": "beem/0.20.1"}"
created2018-10-21 10:05:15
last_update2018-10-21 10:05:15
depth2
children0
last_payout2018-10-28 10:05:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length115
author_reputation152,955,367,999,756
root_title"Managing particle physics model information in Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,740,300
net_rshares0
@drsensor ·
$0.03
I forgot to ask. Does particle physicists that work using Python also use [JupyterNotebook][]/[JupyterLab][]?
I'm wondering if Javascript communities can also take parts someday by providing custom widgets/extensions for visualization or mini-dashboard.

[JupyterNotebook]: http://jupyter.org
[JupyterLab]: https://jupyterlab.readthedocs.io/en/stable/getting_started/overview.html
πŸ‘  
properties (23)
authordrsensor
permlinkre-lemouth-managing-particle-physics-model-information-in-python-20181017t031629818z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["http://jupyter.org","https://jupyterlab.readthedocs.io/en/stable/getting_started/overview.html"],"app":"steemit/0.1"}
created2018-10-17 03:16:33
last_update2018-10-17 03:16:33
depth1
children1
last_payout2018-10-24 03:16:33
cashout_time1969-12-31 23:59:59
total_payout_value0.021 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length380
author_reputation17,679,210,755,117
root_title"Managing particle physics model information in Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,451,600
net_rshares22,736,833,230
author_curate_reward""
vote details (1)
@lemouth ·
> I forgot to ask. Does particle physicists that work using Python also use JupyterNotebook/JupyterLab?

Not to my knowledge. 

> I'm wondering if Javascript communities can also take parts someday by providing custom widgets/extensions for visualization or mini-dashboard.

We need more tools for doing actual calculations than visualizing things. From there, I am not too sure about what could javascript brings. This being said, this cold be useful for outreach.
πŸ‘  
properties (23)
authorlemouth
permlinkre-drsensor-re-lemouth-managing-particle-physics-model-information-in-python-20181017t034023605z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-10-17 03:40:24
last_update2018-10-17 03:40:24
depth2
children0
last_payout2018-10-24 03:40:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length465
author_reputation338,011,164,701,274
root_title"Managing particle physics model information in Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,452,722
net_rshares11,294,413,265
author_curate_reward""
vote details (1)
@drsensor ·
@remind-me in next week
properties (22)
authordrsensor
permlinkre-lemouth-managing-particle-physics-model-information-in-python-20181105t233123070z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":["remind-me"],"links":["/@remind-me"],"image":[]}
created2018-11-05 23:31:24
last_update2018-11-05 23:31:24
depth1
children2
last_payout2018-11-12 23:31:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation17,679,210,755,117
root_title"Managing particle physics model information in Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id74,752,702
net_rshares0
@remind-me ·
Hey @drsensor, I will notify you on November 12th 2018, 12:00:00 pm (UTC)
Later! (_[ read more... ](/introduceyourself/@remind-me/hi-i-m-remind-me)_)
properties (22)
authorremind-me
permlink20181105t233127139z
categoryutopian-io
json_metadata{"app":"remind-me/0.2","type":"reminder-register","payload":"1fccdd94632b3a74651ce255a3b14cd6e117d3e19db3dc3c22e4542ec68a34619a0bc990c38d904989897864fb5798d0bd0ba7a31071b43dd8afa0a97e7cc626f60a7ecfe7e7d1b3a1edfdd1e6e00f1a90bcee84c4e7cd9adf8e9bab0bdb907fec5896fce1307aecb90ec12c8defb141f30d82112100cf28011b59c41cd019c26821823bbf4d872ce9d55cb16c77907543b1bd2632ae36b3bf3bdc81e540e8a8afd60fd44054512ee268cfe631d22edcded942c72c53b2fb465a43a43586033e85d0"}
created2018-11-05 23:31:27
last_update2018-11-05 23:31:27
depth2
children0
last_payout2018-11-12 23:31:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length149
author_reputation219,691,276,678
root_title"Managing particle physics model information in Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id74,752,703
net_rshares0
@remind-me ·
Hi @drsensor!
You asked me in [this comment](/@drsensor/re-lemouth-managing-particle-physics-model-information-in-python-20181105t233123070z) to create a reminder.
It seems the time has passed!
    
properties (22)
authorremind-me
permlink20181112t120014003z
categoryutopian-io
json_metadata{"app":"remind-me/0.2","type":"reminder-resolve","payload":"1fccdd94632b3a74651ce255a3b14cd6e117d3e19db3dc3c22e4542ec68a34619a0bc990c38d904989897864aa"}
created2018-11-12 12:00:15
last_update2018-11-12 12:00:15
depth2
children0
last_payout2018-11-19 12:00:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length198
author_reputation219,691,276,678
root_title"Managing particle physics model information in Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,146,787
net_rshares0
@greenrun ·
Well, it looks straightforward. Who am I kidding? I have no idea the difficulty or ease of the project. But I'm pretty excited to see the end product.
πŸ‘  
properties (23)
authorgreenrun
permlinkre-lemouth-managing-particle-physics-model-information-in-python-20181016t164336031z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-10-16 16:43:36
last_update2018-10-16 16:43:36
depth1
children4
last_payout2018-10-23 16:43:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length150
author_reputation38,837,562,295,457
root_title"Managing particle physics model information in Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,424,330
net_rshares8,869,340,705
author_curate_reward""
vote details (1)
@lemouth ·
Let's see whether it will work. I am pretty excited about it! :)
properties (22)
authorlemouth
permlinkre-greenrun-re-lemouth-managing-particle-physics-model-information-in-python-20181016t233919501z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-10-16 23:39:21
last_update2018-10-16 23:39:21
depth2
children3
last_payout2018-10-23 23:39:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation338,011,164,701,274
root_title"Managing particle physics model information in Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,443,004
net_rshares0
@greenrun ·
There's only one way to find out which is what is already in progress; that way is to try.
properties (22)
authorgreenrun
permlinkre-lemouth-re-greenrun-re-lemouth-managing-particle-physics-model-information-in-python-20181017t181058255z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-10-17 18:11:06
last_update2018-10-17 18:11:06
depth3
children2
last_payout2018-10-24 18:11:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length90
author_reputation38,837,562,295,457
root_title"Managing particle physics model information in Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,498,015
net_rshares0
@gustavelebon · (edited)
New to Steem, but interested in this project. I think this project needs a design of the datastructure. So some sort of Object Oriented (OO) design. Also an example function on instances of those classes will probabely clear things up. I now a bit about design patterns f.i. to generate instances of the classes. I think a preliminary (dummy) implementation can speed up the discussion. Also some unittests will help clear up the input and output for which the implementation will follow later. Can I help in this?
properties (22)
authorgustavelebon
permlinkre-lemouth-managing-particle-physics-model-information-in-python-20181031t200314164z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-10-31 20:03:15
last_update2018-10-31 20:04:27
depth1
children1
last_payout2018-11-07 20:03:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length514
author_reputation312,299,874
root_title"Managing particle physics model information in Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id74,430,458
net_rshares0
@lemouth ·
We have a discord group. Please add me as a friend on discord (lemouth#8260 ) and I will add you in.
properties (22)
authorlemouth
permlinkre-gustavelebon-re-lemouth-managing-particle-physics-model-information-in-python-20181101t151937269z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-11-01 15:19:39
last_update2018-11-01 15:19:39
depth2
children0
last_payout2018-11-08 15:19:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation338,011,164,701,274
root_title"Managing particle physics model information in Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id74,484,414
net_rshares0
@irelandscape ·
$0.03
OK, this seems interesting. Not sure how much time I'll have but I can give it my best shot.

As always it seems like most of the complexity is going to be about figuring out the concepts to be implemented.

Are all participants to develop their own implementation of the same thing or is it a collaborative project?
πŸ‘  
properties (23)
authorirelandscape
permlinkre-lemouth-managing-particle-physics-model-information-in-python-20181017t115925735z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"steempeak","app":"steempeak"}
created2018-10-17 11:59:27
last_update2018-10-17 11:59:27
depth1
children2
last_payout2018-10-24 11:59:27
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length316
author_reputation15,380,678,988,494
root_title"Managing particle physics model information in Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,475,401
net_rshares24,279,469,026
author_curate_reward""
vote details (1)
@lemouth ·
I was more thinking about a collaborative thing. Let me see how we can organize ourself better and I come back to you asap.

In any case, thanks for your interest!
properties (22)
authorlemouth
permlinkre-irelandscape-re-lemouth-managing-particle-physics-model-information-in-python-20181017t123019653z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-10-17 12:30:21
last_update2018-10-17 12:30:21
depth2
children1
last_payout2018-10-24 12:30:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length163
author_reputation338,011,164,701,274
root_title"Managing particle physics model information in Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,477,109
net_rshares0
@irelandscape ·
Cool!
properties (22)
authorirelandscape
permlinkre-lemouth-re-irelandscape-re-lemouth-managing-particle-physics-model-information-in-python-20181017t125408823z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"steempeak","app":"steempeak"}
created2018-10-17 12:54:09
last_update2018-10-17 12:54:09
depth3
children0
last_payout2018-10-24 12:54:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation15,380,678,988,494
root_title"Managing particle physics model information in Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,478,561
net_rshares0
@steem-ua ·
#### Hi @lemouth!

Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation!
Your post is eligible for our upvote, thanks to our collaboration with @utopian-io!
**Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
properties (22)
authorsteem-ua
permlinkre-managing-particle-physics-model-information-in-python-20181016t143434z
categoryutopian-io
json_metadata"{"app": "beem/0.20.7"}"
created2018-10-16 14:34:36
last_update2018-10-16 14:34:36
depth1
children0
last_payout2018-10-23 14:34:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length286
author_reputation23,214,230,978,060
root_title"Managing particle physics model information in Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,416,273
net_rshares0
@steemitboard ·
Congratulations @lemouth! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/votes.png)](http://steemitboard.com/@lemouth) Award for the number of upvotes
[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/commented.png)](http://steemitboard.com/@lemouth) Award for the number of comments received

<sub>_Click on the badge to view your Board of Honor._</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



> Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-lemouth-20181019t040804000z
categoryutopian-io
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2018-10-19 04:08:03
last_update2018-10-19 04:08:03
depth1
children0
last_payout2018-10-26 04:08:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length839
author_reputation38,975,615,169,260
root_title"Managing particle physics model information in Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,595,178
net_rshares0
@tsoldovieri ·
Excellent @lemouth. Regards.
properties (22)
authortsoldovieri
permlinkre-lemouth-managing-particle-physics-model-information-in-python-20181025t224403358z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["lemouth"],"app":"steemit/0.1"}
created2018-10-25 22:44:06
last_update2018-10-25 22:44:06
depth1
children1
last_payout2018-11-01 22:44:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation13,553,154,839,000
root_title"Managing particle physics model information in Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id74,054,497
net_rshares0
@lemouth ·
Thanks for passing by ^^
properties (22)
authorlemouth
permlinkre-tsoldovieri-re-lemouth-managing-particle-physics-model-information-in-python-20181026t012334145z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-10-26 01:23:33
last_update2018-10-26 01:23:33
depth2
children0
last_payout2018-11-02 01:23:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation338,011,164,701,274
root_title"Managing particle physics model information in Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id74,060,922
net_rshares0
@utopian-io ·
Hey, @lemouth!

**Thanks for contributing on Utopian**.
We’re already looking forward to your next task request!

**Get higher incentives and support Utopian.io!**
 Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)).

**Want to chat? Join us on Discord https://discord.gg/h52nFrV.**

<a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
properties (22)
authorutopian-io
permlinkre-managing-particle-physics-model-information-in-python-20181023t010514z
categoryutopian-io
json_metadata"{"app": "beem/0.20.1"}"
created2018-10-23 01:05:15
last_update2018-10-23 01:05:15
depth1
children1
last_payout2018-10-30 01:05:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length589
author_reputation152,955,367,999,756
root_title"Managing particle physics model information in Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,854,273
net_rshares0
@lemouth ·
Thanks! But we will first finalize this TR before moving on with the next one ;)
properties (22)
authorlemouth
permlinkre-utopian-io-re-managing-particle-physics-model-information-in-python-20181023t010514z-20181026t023516277z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-10-26 02:35:15
last_update2018-10-26 02:35:15
depth2
children0
last_payout2018-11-02 02:35:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation338,011,164,701,274
root_title"Managing particle physics model information in Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id74,064,014
net_rshares0