To install the app using pip:
pip install Physicscore
To install the app from github:
- Clone the source code using git:
git clone AsrtoMichi/Physicscore - Navigate to the directory:
cd Physicscore - Install the package using:
pip install .
Physicscore is an application designed to simulate physics team competitions. This tool is particularly useful for organizing and managing competitions in the style of the Physics Championships. You can find more information about the Physics Championships by visiting their official website.
- Modify the JSON configuration file according to your needs.
- Launch the Physicscore application with the command
physicscoreand select the .json file. - Submit answers and joker actions using the Receiver window.
- Save data in a .json file.
- Generate graphs to visualize the competition data and team performance.
- Enter: To submit an answer.
- Shift + Enter: To use a joker.
ReportGenerator is a script useful for generating a detailed report about the competition.
- Modify the JSON configuration file according to your needs.
- Launch the application with the command
reportgen. - Select the .json file and save the report in a .html file.
- Open the .html file using a browser or another tool.
Physicscore uses a JSON file to configure the competitions, teams, parameters, and generate graphs. Below is an example of a configuration JSON file:
{
"Name": "Test",
"Teams": [["Charlie", 100], "David", "Eric"],
"Teams_ghost": ["Ada"],
"Teams_format": ["Name", ["Name", "Handicap as int value"]],
"Timers": {
"time": 1,
"time_for_jolly": 10,
"time_format": "use min"
},
"Parameters": {
"Bp": 20,
"Dp": 80,
"E": 10,
"A": 20,
"h": 3
},
"Solutions": [
[1.0, 1.0],
[2.0, 1.0],
[3.0, 1.0],
[4.0, 1.0]
],
"Solution_format": ["answer", "relative error"],
"Actions": {
"teams": ["Ada", "Bob"],
"jokers": [
["Ada", 1, 10],
["Bob", 2, 30]
],
"jolly_format": ["team", "question", "time in seconds"],
"answers": [
["Ada", 1, 1.0, 20],
["Bob", 3, 3.0, 15],
["Ada", 2, 2.0, 40]
],
"answer_format": ["team", "question", "answer", "time in seconds"]
}
}- Name: Specifies the name of the competition.
- Teams: List of participating teams with their handicap (can be omitted if equal to 0, e.g., [name_team, handicap]).
- Teams_ghost: Ghost teams participating in the competition.
- Timers: Configure the competition time and the time for jokers.
- Parameters: Competition parameters using Python notation.
- Solutions: Expected solutions for the questions.
- Actions:
- teams: List of teams that take actions.
- jokers: Details of joker actions (team, question number, time in seconds).
- answers: Answers provided by teams (team, question number, answer, time in seconds).
I would like to thank the following people for their contributions:
- Alessandro Chiozza: for help with data structures.
- Federico Micelli: for their specific contribution.
- Giorgio Sorgente: for help with tkinter library.
- Gabriele Trisolino: for all the ideas on how to improve the program.
This project is licensed under the GPL3 License.
