Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ENH: Add Bildungs- und Teilhabepaket #783

Open
MImmesberger opened this issue Jul 24, 2024 · 0 comments
Open

ENH: Add Bildungs- und Teilhabepaket #783

MImmesberger opened this issue Jul 24, 2024 · 0 comments
Labels
enhancement New feature or request good first issue Good for newcomers

Comments

@MImmesberger
Copy link
Collaborator

Is your feature request related to a problem?

Currently, we do not model the Bildungs- und Teilhabepaket. The transfer is supposed to cover expenses for school and extracurricular activity. While school expenses are paid upon application, there is a lump sum transfer for extracurricular activity (Teilhabe).

Describe the solution you would like to see

In the policy project, we used the following function:

def bildung_und_teilhabe_only_teilhabe_pauschale_m(
    arbeitsl_geld_2_m_bg: float,
    wohngeld_m_wthh: float,
    kinderzuschl_m_bg: float,
    kindergeld_anspruch: bool,
    alter: float,
    in_ausbildung: bool,
) -> float:
    """Calculate monthly allowance for education and participation.

    This is a fixed amount of money that is paid to all children recieving any
    means-tested transfer.

    Returns only the Teilhabepaket, not the Schulbedarf.

    Returns
    -------

    """
    any_transfer = (
        (arbeitsl_geld_2_m_bg > 0) or (wohngeld_m_wthh > 0) or (kinderzuschl_m_bg > 0)
    )

    # Teilhabepaket
    if any_transfer and kindergeld_anspruch and (alter < 18):
        out = 15.0
    else:
        out = 0.0

    return out
@MImmesberger MImmesberger added enhancement New feature or request good first issue Good for newcomers labels Jul 24, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

1 participant