Formule de calcul
Allocations familiales - Majoration pour âge applicable à l'enfant
Ce dispositif est peut-être obsolète !
La dernière date de relecture du dispositif est jeudi 1 mai 2008.
Formule de calcul OpenFisca à compter du 2008-05-01 :
def formula_2008_05_01(individu, period, parameters): pfam_enfant_a_charge = individu('prestations_familiales_enfant_a_charge', period) age = individu('age', period) garde_alternee = individu('garde_alternee', period) af_nbenf = individu.famille('af_nbenf', period) af_base = individu.famille('af_base', period) age_aine = individu.famille('af_age_aine', period) af = parameters(period).prestations_sociales.prestations_familiales.prestations_generales.af bmaf = parameters(period).prestations_sociales.prestations_familiales.bmaf.bmaf montant_enfant_seul = bmaf * ( (af.af_maj_dom.tranches_age.age_debut_premiere_tranche <= age) * (age < af.af_maj_dom.tranches_age.age_debut_deuxieme_tranche) * af.af_maj_dom.majoration_premier_enfant.taux_tranche_1 + (af.af_maj_dom.tranches_age.age_debut_deuxieme_tranche <= age) * af.af_maj_dom.majoration_premier_enfant.taux_tranche_2 ) montant_plusieurs_enfants = bmaf * ( (af.af_maj.maj_age_deux_enfants.age1 <= age) * af.af_maj.maj_age_deux_enfants.taux1 ) montant = (af_nbenf == 1) * montant_enfant_seul + (af_nbenf > 1) * montant_plusieurs_enfants # Attention ! Ne fonctionne pas pour les enfants du même âge (typiquement les jumeaux...) pas_aine = or_(af_nbenf != 2, (af_nbenf == 2) * not_(age == age_aine)) coeff_garde_alternee = where(garde_alternee, af.af_cm.facteur_garde_alternee, 1) return ( pfam_enfant_a_charge * (af_base > 0) * pas_aine * montant * coeff_garde_alternee )
Formule OpenFisca sur GithubVariables et paramètres inscrits dans la formule :
Paramètres :
- prestations_sociales.prestations_familiales.bmaf.bmaf
- prestations_sociales.prestations_familiales.prestations_generales.af.af_cm.facteur_garde_alternee
- prestations_sociales.prestations_familiales.prestations_generales.af.af_maj.maj_age_deux_enfants.age1
- prestations_sociales.prestations_familiales.prestations_generales.af.af_maj.maj_age_deux_enfants.taux1
- prestations_sociales.prestations_familiales.prestations_generales.af.af_maj_dom.majoration_premier_enfant.taux_tranche_1
- prestations_sociales.prestations_familiales.prestations_generales.af.af_maj_dom.majoration_premier_enfant.taux_tranche_2
- prestations_sociales.prestations_familiales.prestations_generales.af.af_maj_dom.tranches_age.age_debut_deuxieme_tranche
- prestations_sociales.prestations_familiales.prestations_generales.af.af_maj_dom.tranches_age.age_debut_premiere_tranche
Variables utilisées par le cas type :
Formule initiale de calcul OpenFisca :
def formula(individu, period, parameters): pfam_enfant_a_charge = individu('prestations_familiales_enfant_a_charge', period) age = individu('age', period) garde_alternee = individu('garde_alternee', period) af_nbenf = individu.famille('af_nbenf', period) af_base = individu.famille('af_base', period) age_aine = individu.famille('af_age_aine', period) af = parameters(period).prestations_sociales.prestations_familiales.prestations_generales.af bmaf = parameters(period).prestations_sociales.prestations_familiales.bmaf.bmaf montant_enfant_seul = bmaf * ( (af.af_maj_dom.tranches_age.age_debut_premiere_tranche <= age) * (age < af.af_maj_dom.tranches_age.age_debut_deuxieme_tranche) * af.af_maj_dom.majoration_premier_enfant.taux_tranche_1 + (af.af_maj_dom.tranches_age.age_debut_deuxieme_tranche <= age) * af.af_maj_dom.majoration_premier_enfant.taux_tranche_2 ) montant_plusieurs_enfants = bmaf * ( (af.af_maj.maj_age_deux_enfants.age1 <= age) * (age < af.af_maj.maj_age_deux_enfants.age2) * af.af_maj.maj_age_deux_enfants.taux1 + (af.af_maj.maj_age_deux_enfants.age2 <= age) * af.af_maj.maj_age_deux_enfants.taux2 ) montant = (af_nbenf == 1) * montant_enfant_seul + (af_nbenf > 1) * montant_plusieurs_enfants # Attention ! Ne fonctionne pas pour les enfants du même âge (typiquement les jumeaux...) pas_aine = or_(af_nbenf != 2, (af_nbenf == 2) * not_(age == age_aine)) coeff_garde_alternee = where(garde_alternee, af.af_cm.facteur_garde_alternee, 1) return ( pfam_enfant_a_charge * (af_base > 0) * pas_aine * montant * coeff_garde_alternee )
Formule OpenFisca sur GithubVariables et paramètres inscrits dans la formule :
Paramètres :
- prestations_sociales.prestations_familiales.bmaf.bmaf
- prestations_sociales.prestations_familiales.prestations_generales.af.af_cm.facteur_garde_alternee
- prestations_sociales.prestations_familiales.prestations_generales.af.af_maj.maj_age_deux_enfants.age1
- prestations_sociales.prestations_familiales.prestations_generales.af.af_maj.maj_age_deux_enfants.age2
- prestations_sociales.prestations_familiales.prestations_generales.af.af_maj.maj_age_deux_enfants.taux1
- prestations_sociales.prestations_familiales.prestations_generales.af.af_maj.maj_age_deux_enfants.taux2
- prestations_sociales.prestations_familiales.prestations_generales.af.af_maj_dom.majoration_premier_enfant.taux_tranche_1
- prestations_sociales.prestations_familiales.prestations_generales.af.af_maj_dom.majoration_premier_enfant.taux_tranche_2
- prestations_sociales.prestations_familiales.prestations_generales.af.af_maj_dom.tranches_age.age_debut_deuxieme_tranche
- prestations_sociales.prestations_familiales.prestations_generales.af.af_maj_dom.tranches_age.age_debut_premiere_tranche
Variables utilisées par le cas type :
Variables et dispositifs influencés par la formule :
La formule du dispositif "Allocations familiales - Majoration pour âge applicable à l'enfant" peut avoir une influence sur d'autres dispositifs et variables :