diff --git a/README.md b/README.md
index f7f13a9e..b713f343 100644
--- a/README.md
+++ b/README.md
@@ -1,42 +1,667 @@
# PASEOS
-PASEOS - PAseos Simulates the Environment for Operating multiple Spacecraft
-This project is currently under development. Use at your own risk. :)
+PASEOS - PAseos Simulates the Environment for Operating multiple Spacecraft
-## How PASEOS works
+
+
+Disclaimer: This project is currently under development. Use at your own risk.
+
+
+Table of Contents
+
+
+
+
+
+
+
+
+
PASEOS is designed to be:
+
+* **open-source**: the source code of PASEOS is available under a GPL license.
+* **fully decentralised**: one instance of PASEOS shall be executed in every node, i.e. individual spacecraft (actor), of the emulated spacecraft. Each instance of PASEOS is responsible for handling the user [activities](#activity) executed on that node (the local actor) while keeping track of the status of the other nodes. In this way, the design of PASEOS is completely decentralised and independent of the number of nodes of the constellation. Because of that, both single-node and multi-node scenarios are possible.
+* **application-agnostic**: each user operation that has to be executed on a node is modelled as an [activity](#activity). The user is only required to provide the code to run and some parameters (e.g., power consumption) for each [activity](#activity). Thus, activities can be any code the user wants to simulate running on a spacecraft and thereby PASEOS is completely application-agnostic. Conceivable applications range from modelling constellations to training machine learning methods.
+
+
The project is being developed by $\Phi$[-lab@Sweden](https://www.ai.se/en/data-factory/f-lab-sweden) in the frame of a collaboration between [AI Sweden](https://www.ai.se/en/) and the [European Space Agency](https://www.esa.int/) to explore distributed edge learning for space applications. For more information on PASEOS and $\Phi$-lab@Sweden, please take a look at the recording of the $\Phi$-lab@Sweden [kick-off event](https://www.youtube.com/watch?v=KuFRCcNxLgo&t=2365s).
+
+## PASEOS space environment simulation
+
+PASEOS allows simulating the effect of onboard and operational constraints on user-registered [activities](#activity). The image above showcases the different phenomena considered (or to be implemented) in PASEOS.
+
+## Installation
+`pip` and `conda` support will follow in the near future.
+
+For now, first of all clone the [GitHub](https://github.com/aidotse/PASEOS.git) repository as follows ([Git](https://git-scm.com/) required):
+
+```
+git clone https://github.com/aidotse/PASEOS.git
+```
+
+To install PASEOS you can use [conda](https://docs.conda.io/en/latest/) as follows:
+
+```
+cd PASEOS
+conda env create -f environment.yml
+```
+This will create a new conda environment called ``PASEOS`` and install the required software packages.
+To activate the new environment, you can use:
+
+```
+conda activate paseos
+```
+
+Alternatively, you can install PASEOS by using [pip](https://www.pypy.org/) as follows:
+
+```
+cd PASEOS
+pip install -e .
+```
+
+## Examples
+The next examples will introduce you to the use of PASEOS.
+
+### Actors
+#### Create a PASEOS actor
+The code snippet below shows how to create a PASEOS [actor](#actor) named **mySat** of type [SpacecraftActor](#spacecraftactor). [pykep](https://esa.github.io/pykep/) is used to define the satellite [epoch](https://en.wikipedia.org/wiki/Epoch_(astronomy)) in format [mjd2000](https://en.wikipedia.org/wiki/Julian_day) format.
+[actors](#actor) are created by using an `ActorBuilder`. The latter is used to define the [actor](#actor) `scaffold` that includes the [actor](#actor) minimal properties. In this way, [actors](#actor) are built in a modular fashion that enables their use also for non-space applications.
+
+```py
+import pykep as pk
+from paseos import ActorBuilder, SpacecraftActor
+# Define an actor of type SpacecraftActor of name mySat
+sat_actor = ActorBuilder.get_actor_scaffold(name="mySat",
+ actor_type=SpacecraftActor,
+ epoch=pk.epoch(0))
+
+
+```
+#### Local and Known Actors
+Once you have instantiated a [PASEOS simulation](#initializing-paseos) to know how to create an instance of PASEOS)), you can add other PASEOS [actors](#actor) ([Known actors](#known-actors)) to the simulation. You can use this, e.g., to facilitate communications between actors and to automatically monitor communication windows.
+The next code snippet will add both a [SpacecraftActor](#spacecraftactor) and a [GroundstationActor](#ground-stationactor) (`other_sat`). An orbit is set for `other_sat`, which is placed around Earth at position `(x,y,z)=(-10000,0,0)` and velocity `(vx,vy,vz)=(0,-8000,0)` at epoch `epoch=pk.epoch(0)`.
+ The latter (`grndStation`) will be placed at coordinates `(lat,lon)=(79.002723, 14.642972)` and elevation of 0 m.
You cannot add a power device and an orbit to a `GroundstationActor`.
+
+```py
+import pykep as pk
+import paseos
+from paseos import ActorBuilder, SpacecraftActor, GroundstationActor
+# Define an actor of type SpacecraftActor of name mySat
+# (that will be the local actor)
+local_actor = ActorBuilder.get_actor_scaffold(name="mySat",
+ actor_type=SpacecraftActor,
+ epoch=pk.epoch(0))
+
+# Let's set the orbit of local_actor.
+ActorBuilder.set_orbit(actor=local_actor,
+ position=[10000000, 0, 0],
+ velocity=[0, 8000.0, 0],
+ epoch=pk.epoch(0),
+ central_body=pk.epoch(0))
+
+# Initialize PASEOS simulation
+sim = paseos.init_sim(local_actor)
+
+# Create another SpacecraftActor
+other_spacraft_actor = ActorBuilder.get_actor_scaffold(name="other_sat",
+ actor_type=SpacecraftActor,
+ epoch=pk.epoch(0))
+
+# Let's set the orbit of other_spacraft_actor.
+ActorBuilder.set_orbit(actor=other_spacraft_actor,
+ position=[-10000000, 0, 0],
+ velocity=[0, -8000.0, 0],
+ epoch=pk.epoch(0), central_body=pk.epoch(0))
+
+#Create GroundstationActor
+grndStation = GroundstationActor(name="grndStation", epoch=pk.epoch(0))
+
+#Set the ground station at lat lon 79.002723 / 14.642972
+# and its elevation 0m
+ActorBuilder.set_ground_station_location(grndStation,
+ latitude=79.002723,
+ longitude=14.642972,
+ elevation=0)
+
+# Adding other_spacraft_actor to PASEOS.
+sim.add_known_actor(other_spacraft_actor)
+
+# Adding grndStation to PASEOS.
+sim.add_known_actor(grndStation)
+```
+
+### Physical Models
+#### Set an orbit for a PASEOS SpacecraftActor
+Once you have defined a [SpacecraftActor](#spacecraftactor), you can assign a [Keplerian orbit](https://en.wikipedia.org/wiki/Kepler_orbit) to it. To this aim, you need to define the central body the [SpacecraftActor](#spacecraftactor) is orbiting around and specify its position and velocity (in the central body's [inertial frame](https://en.wikipedia.org/wiki/Inertial_frame_of_reference)) and an epoch. In this case, we will use `Earth` as a central body.
+
+```py
+import pykep as pk
+from paseos import ActorBuilder, SpacecraftActor
+# Define an actor of type SpacecraftActor of name mySat
+sat_actor = ActorBuilder.get_actor_scaffold(name="mySat",
+ actor_type=SpacecraftActor,
+ epoch=pk.epoch(0))
+
+# Define the central body as Earth by using pykep APIs.
+earth = pk.planet.jpl_lp("earth")
+
+# Let's set the orbit of sat_actor.
+ActorBuilder.set_orbit(actor=sat_actor,
+ position=[10000000, 0, 0],
+ velocity=[0, 8000.0, 0],
+ epoch=pk.epoch(0), central_body=earth)
+```
+#### How to add a communication device
+The following code snippet shows how to add a communication device to a [SpacecraftActors] (#spacecraftactor). A communication device is needed to model the communication between [SpacecraftActors] (#spacecraftactor) or a [SpacecraftActor](#spacecraftactor) and [GroundstationActor](#ground-stationactor). Currently, given the maximum transmission data rate of a communication device, PASEOS calculates the maximum data that can be transmitted by multiplying the transmission data rate by the length of the communication window. The latter is calculated by taking the period for which two actors are in line-of-sight into account.
+
+```py
+import pykep as pk
+from paseos import ActorBuilder, SpacecraftActor
+# Define an actor of type SpacecraftActor of name mySat
+sat_actor = ActorBuilder.get_actor_scaffold(name="mySat",
+ actor_type=SpacecraftActor,
+ epoch=pk.epoch(0))
+# Add a communication device
+ActorBuilder.add_comm_device(actor=sat_actor,
+ # Communication device name
+ device_name="my_communication_device",
+ # Bandwidth in kbps.
+ bandwidth_in_kbps=100000)
+```
+
+#### How to add a power device
+The following code snippet shows how to add a power device to a [SpacecraftActor](#spacecraftactor). At the moment, only one battery device is supported.
+Moreover, PASEOS assumes that the battery will be charged by solar panels, which will provide energy thanks to the incoming solar radiation when the spacecraft is not eclipsed. Charging and discharging happens automatically during [activities](#activity).
+
+```py
+import pykep as pk
+from paseos import ActorBuilder, SpacecraftActor
+# Define an actor of type SpacecraftActor of name mySat
+sat_actor = ActorBuilder.get_actor_scaffold(name="mySat",
+ actor_type=SpacecraftActor,
+ epoch=pk.epoch(0))
+# Add a power device
+ActorBuilder.set_power_devices(actor=sat_actor,
+ # Battery level at the start of the simulation in Ws
+ battery_level_in_Ws=100,
+ # Max battery level in Ws
+ max_battery_level_in_Ws=2000,
+ # Charging rate in W
+ charging_rate_in_W=10)
+```
+### Simulation Settings
+#### Initializing PASEOS
+We will now show how to create an instance of PASEOS. An instance of PASEOS shall be bounded to one PASEOS [actor](#actor) that we call [local actor](#local-actor). Please, notice that an orbit shall be placed for a [SpacecraftActor](#spacecraftactor) before being added to a PASEOS instance.
+
+
+```py
+import pykep as pk
+import paseos
+from paseos import ActorBuilder, SpacecraftActor
+# Define an actor of type SpacecraftActor of name mySat
+# (that will be the local actor)
+local_actor = ActorBuilder.get_actor_scaffold(name="mySat",
+ actor_type=SpacecraftActor,
+ epoch=pk.epoch(0))
+# Define the central body as Earth by using pykep APIs.
+earth = pk.planet.jpl_lp("earth")
+
+# Let's set the orbit of local_actor.
+ActorBuilder.set_orbit(actor=local_actor,
+ position=[10000000, 0, 0],
+ velocity=[0, 8000.0, 0],
+ epoch=pk.epoch(0),
+ central_body=earth)
+
+# initialize PASEOS simulation
+sim = paseos.init_sim(local_actor)
+```
+#### How to use the cfg
+When you instantiate PASEOS as shown in [Initializing PASEOS](#initializing-paseos), PASEOS instance is created by using the default configuration. However, sometimes it is useful to use a custom configuration.
The next code snippet will show how to start the PASEOS simulation with a time different from `pk.epoch(0)` by loading a custom configuration.
+
+```py
+import pykep as pk
+import paseos
+from paseos import ActorBuilder, SpacecraftActor
+
+#Define today as pykep epoch (16-06-22)
+#please, refer to https://esa.github.io/pykep/documentation/core.html#pykep.epoch
+today = pk.epoch_from_string('2022-06-16 00:00:00.000')
+
+# Define an actor of type SpacecraftActor of name mySat
+# (that will be the local actor)
+# pk.epoch is set to today
+local_actor = ActorBuilder.get_actor_scaffold(name="mySat",
+ actor_type=SpacecraftActor,
+ epoch=today)
+
+# Define the central body as Earth by using pykep APIs.
+earth = pk.planet.jpl_lp("earth")
+
+# Let's set the orbit of local_actor.
+# pk.epoch is set to today
+ActorBuilder.set_orbit(actor=local_actor,
+ position=[10000000, 0, 0],
+ velocity=[0, 8000.0, 0],
+ epoch=today,
+ central_body=earth)
+
+# Loading cfg to modify defaults
+cfg=load_default_cfg()
+# Set simulation starting time by converting epoch to seconds
+cfg.sim.start_time=today.mjd2000 * pk.DAY2SEC
+# initialize PASEOS simulation
+sim = paseos.init_sim(local_actor)
+```
+
+
+
+### Activities
+#### Simple activity
+PASEOS enables the user to register their [activities](#activity) that will be executed on the `local actor`.
+To register an activity, it is first necessary to define an asynchronous [activity function](#activity-function). The following code snippet shows how to create a simple [activity function](#activity-function) `activity_function_A` that prints "Hello Universe!". Then, it waits for 0.1 s before concluding the activity.
When you register an [activity](#activity), you need to specify the power consumption associated to the activity.
+
+```py
+#Activity function
+async def activity_function_A(args):
+ print("Hello Universe!")
+ await asyncio.sleep(0.1) #Await is needed inside an async function.
+```
+
+Once an activity is registered, the user shall call `perform_activity(...)` to run the registered activity.
+The next snippet will showcase how to register and perform the activity `activity_A`.
+
+```py
+import pykep as pk
+import paseos
+from paseos import ActorBuilder, SpacecraftActor
+import asyncio
+# Define an actor of type SpacecraftActor of name mySat
+# (that will be the local actor)
+local_actor = ActorBuilder.get_actor_scaffold(name="mySat",
+ actor_type=SpacecraftActor,
+ epoch=pk.epoch(0))
+
+# Define the central body as Earth by using pykep APIs.
+earth = pk.planet.jpl_lp("earth")
+
+# Let's set the orbit of sat_actor.
+ActorBuilder.set_orbit(actor=local_actor,
+ position=[10000000, 0, 0],
+ velocity=[0, 8000.0, 0],
+ epoch=pk.epoch(0),
+ central_body=earth)
+
+# Add a power device
+ActorBuilder.set_power_devices(actor=local_actor,
+ # Battery level at the start of the simulation in Ws
+ battery_level_in_Ws=100,
+ # Max battery level in Ws
+ max_battery_level_in_Ws=2000,
+ # Charging rate in W
+ charging_rate_in_W=10)
+
+# initialize PASEOS simulation
+sim = paseos.init_sim(local_actor)
+
+#Activity function
+async def activity_function_A(args):
+ print("Hello Universe!")
+ await asyncio.sleep(0.1) #Await is needed inside an async function.
+
+# Register an activity that emulate event detection
+sim.register_activity(
+ "activity_A",
+ activity_function=activity_function_A,
+ power_consumption_in_watt=10
+)
+
+#Run the activity
+sim.perform_activity("activity_A")
+```
+
+#### Activities with Inputs and Outputs
+The next code snippet will show how to register and perform activities with inputs and outputs. In particular, we will register an [activity function](#activity-function) `activity_function_with_in_and_outs` that takes an input argument and returns its value multiplied by two. Then, it waits for 0.1 s before concluding the activity.
+Please, notice that the output value is placed in `args[1][0]`, which is returned as reference.
+
+```py
+import pykep as pk
+import paseos
+from paseos import ActorBuilder, SpacecraftActor
+import asyncio
+# Define an actor of type SpacecraftActor of name mySat
+# (that will be the local actor)
+local_actor = ActorBuilder.get_actor_scaffold(name="mySat",
+ actor_type=SpacecraftActor,
+ epoch=pk.epoch(0))
+
+# Define the central body as Earth by using pykep APIs.
+earth = pk.planet.jpl_lp("earth")
+
+# Let's set the orbit of sat_actor.
+ActorBuilder.set_orbit(actor=local_actor,
+ position=[10000000, 0, 0],
+ velocity=[0, 8000.0, 0],
+ epoch=pk.epoch(0),
+ entral_body=earth)
+
+# Add a power device
+ActorBuilder.set_power_devices(actor=local_actor,
+ # Battery level at the start of the simulation in Ws
+ battery_level_in_Ws=100,
+ # Max battery level in Ws
+ max_battery_level_in_Ws=2000,
+ # Charging rate in W
+ charging_rate_in_W=10)
+
+# initialize PASEOS simulation
+sim = paseos.init_sim(local_actor)
+
+#Activity function
+async def activity_function_with_in_and_outs(args):
+ activity_in=args[0]
+ activity_out=activity_in * 2
+ args[1][0]=activity_out
+ await asyncio.sleep(0.1) #Await is needed inside an async function.
+
+# Register an activity that emulate event detection
+sim.register_activity(
+ "my_activity",
+ activity_function=activity_function_with_in_and_outs,
+ power_consumption_in_watt=10,
+)
+
+#Creatie an input variable for activity
+activity_in=1
+
+#Create a placeholder variable to contain the output of the activity function.
+#It is created as a list so its first value is edited
+# as reference by the activity function.
+activity_out=[None]
+
+#Run the activity
+sim.perform_activity("my_activity",
+ activity_func_args=[activity_in, activity_out],
+ )
+#Print return value
+print("The output of the activity function is: ", activity_out[0])
+```
+
+
+#### Constraint Function
+
+It is possible to associate a [constraint function](#constraint-function) with each [activity](#activity) to ensure that some particular constraints are met during the [activity](#activity) execution. When constraints are not met, the activity is interrupted. Constraints can be used, e.g., to impose power requirements, communication windows or maximum operational temperatures.
+The next code snippet shows how to:
+* create a [constraint function](#constraint-function) (`constraint_function_A`) which returns `True` when the local actor's temperature is below ~86°C and `False` otherwise (this requires a thermal model on the actor)
+* how use `constraint_function_A` to constraint our [Simple Activity](#simple-activity).
+
+
+
+```py
+import pykep as pk
+import paseos
+from paseos import ActorBuilder, SpacecraftActor
+import asyncio
+# Define an actor of type SpacecraftActor of name mySat
+# (that will be the local actor)
+local_actor = ActorBuilder.get_actor_scaffold(name="mySat",
+ actor_type=SpacecraftActor,
+ epoch=pk.epoch(0))
+
+# Define the central body as Earth by using pykep APIs.
+earth = pk.planet.jpl_lp("earth")
+
+# Let's set the orbit of sat_actor.
+ActorBuilder.set_orbit(actor=local_actor,
+ position=[10000000, 0, 0],
+ velocity=[0, 8000.0, 0],
+ epoch=pk.epoch(0),
+ central_body=earth)
+
+# Add a power device
+ActorBuilder.set_power_devices(actor=local_actor,
+ # Battery level at the start of the simulation in Ws
+ battery_level_in_Ws=100,
+ # Max battery level in Ws
+ max_battery_level_in_Ws=2000,
+ # Charging rate in W
+ charging_rate_in_W=10)
+
+# initialize PASEOS simulation
+sim = paseos.init_sim(local_actor)
+
+#Activity function
+async def activity_function_A(args):
+ print("Hello Universe!")
+ await asyncio.sleep(0.1) #Await is needed inside an async function.
+
+#Constraint function
+async def constraint_function_A(args):
+ local_actor_temperature=args[0]
+ return (local_actor_temperature < 350)
+
+# Register an activity that emulate event detection
+sim.register_activity(
+ "activity_A_with_constraint",
+ activity_function=activity_function_A,
+ power_consumption_in_watt=10,
+ constraint_function=constraint_function_A
+)
+
+#The constraint function is related to the operational temperature of the local actor.
+operational_temperature_in_K=local_actor.temperature_in_K
+
+#Run the activity
+sim.perform_activity("activity_A_with_constraint",
+ constraint_func_args=[operational_temperature_in_K],
+ )
+```
+
+#### On-termination Function
+It is also possible to define an [on-termination function](#on-termination-function) to perform some specific operations when on termination of the [activity](#activity). The next code snippet shows:
+ * how to create an [on-termination function](#on-termination-function) that prints "activity (activity_A_with_termination_function) ended.".
+ * How to associate our [on-termination function](#on-termination-function) to our [Simple Activity](#simple-activity).
+
+The name of the [activity](#activity) is passed as input to the [on-termination function](#on-termination-function) to showcase to handle [on-termination function](#on-termination-function) inputs.
+
+```py
+import pykep as pk
+import paseos
+from paseos import ActorBuilder, SpacecraftActor
+import asyncio
+# Define an actor of type SpacecraftActor of name mySat
+# (that will be the local actor)
+local_actor = ActorBuilder.get_actor_scaffold(name="mySat",
+ actor_type=SpacecraftActor,
+ epoch=pk.epoch(0))
+
+# Define the central body as Earth by using pykep APIs.
+earth = pk.planet.jpl_lp("earth")
+
+# Let's set the orbit of sat_actor.
+ActorBuilder.set_orbit(actor=local_actor,
+ position=[10000000, 0, 0],
+ velocity=[0, 8000.0, 0],
+ epoch=pk.epoch(0),
+ central_body=earth)
+
+# Add a power device
+ActorBuilder.set_power_devices(actor=local_actor,
+ # Battery level at the start of the simulation in Ws
+ battery_level_in_Ws=100,
+ # Max battery level in Ws
+ max_battery_level_in_Ws=2000,
+ # Charging rate in W
+ charging_rate_in_W=10)
+
+# initialize PASEOS simulation
+sim = paseos.init_sim(local_actor)
+
+#Activity function
+async def activity_function_A(args):
+ print("Hello Universe!")
+ await asyncio.sleep(0.1) #Await is needed inside an async function.
+
+#On-termination function
+async def on_termination_function_A(args):
+ #Fetching input
+ activity_name=args[0]
+ print("Activity ("+str(activity_name)+") ended.")
+
+# Register an activity that emulate event detection
+sim.register_activity(
+ "activity_A_with_termination_function",
+ activity_function=activity_function_A,
+ power_consumption_in_watt=10,
+ on_termination_function=on_termination_function_A
+)
+
+#The termination function input is the activity name
+activity_name="activity_A_with_termination_function"
+
+#Run the activity
+sim.perform_activity("activity_A_with_termination_function",
+ termination_func_args=[activity_name],
+ )
+```
+### Utilities
+#### Visualization
+Navigate to paseos/visualization to find a jupyter notebook containing examples of how to visualize PASEOS.
+Visualization can be done in interactive mode or as an animation that is saved to your disc.
+In the figure below, Earth is visualized in the centre as a blue sphere with different spacecraft in orbit.
+Each spacecraft has a name and if provided, a battery level and a communications device.
+The local device is illustrated with white text.
+In the upper-right corner, the status of the communication link between each spacecraft is shown.
+Finally, the time in the lower left and lower right corners corresponds to the epoch and the PASEOS local simulation time.
- Description of PASEOS data structure + Snapshot of PASEOS visualization
+#### Writing Simulation Results to a File + +To evaluate your results, you will likely want to track the operational parameters, such as actor battery status, currently running activitiy etc. of actors over the course of your simulation. By default, PASEOS will log the current actor status every 10 seconds, however you can change that rate by editing the default configuration, as explained in [How to use the cfg](#how-to-use-the-cfg). You can save the current log to a \*.csv file at any point. + +```py +cfg = load_default_cfg() # loading cfg to modify defaults +cfg.io.logging_interval = 0.25 # log every 0.25 seconds +paseos_instance = paseos.init_sim(my_local_actor, cfg) # initialize paseos instance + +# Performing activities, running the simulation (...) + +paseos_instance.save_status_log_csv("output.csv") +``` + +## System Design of PASEOS +- Description of PASEOS workflow on an individual device + Description of PASEOS data structure
-## Visualising PASEOS -Navigate to paseos/visualization to find a jupyter notebook containing examples of how to visualize PASEOS. -Visualization can be done in interactive mode or as an animation that is saved to disc. -In the figure below, Earth is visualized in the center as a blue sphere with different spacecraft in orbit. -Each spacecraft has a name and if provided, a battery level and a communications device. -The local device is illustrated with white text. -In the upper-right corner, the status of the communication link between each spacecraft is shown. -Finally, the time in the lower left and lower right corners correspond to the epoch and the PASEOS local simulation time. -- Snapshot of PASEOS visualization + Description of PASEOS workflow on an individual device
- \ No newline at end of file + + + + +## Glossary +* ### Activity + Activity is the abstraction that PASEOS uses to keep track of specific actions performed by an [actor](#actor) upon a request from the user. >PASEOS is responsible for the execution of the activity and for updating the system status depending on the effects of the activity (e.g., by discharging the satellite battery).