Class: Basis

Inherits:
Object
  • Object
show all
Defined in:
lib/basis.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(bruttojahresgehalt) ⇒ Basis

Returns a new instance of Basis.



10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/basis.rb', line 10

def initialize(bruttojahresgehalt)
 @debug	      = false
 @brutto_pa 	  = bruttojahresgehalt
 @basis_pa 	  = 20000
 @steuerklasse = 1
 @plusdings 	  = 50   # damit das ergebis besser stimmt
 @verzinsung   = 2
 @aufschubzeit = 1
 @gesamt_eigenbeitrag = 0
 @rentengarantiefaktor = 36.51
 @versicherungskosten  = 10000

end

Instance Attribute Details

#ablaufleistungObject (readonly)

Returns the value of attribute ablaufleistung.



6
7
8
# File 'lib/basis.rb', line 6

def ablaufleistung
  @ablaufleistung
end

#anlageObject (readonly)

Returns the value of attribute anlage.



6
7
8
# File 'lib/basis.rb', line 6

def anlage
  @anlage
end

#aufschubzeit=(value) ⇒ Object (writeonly)

Sets the attribute aufschubzeit

Parameters:

  • value

    the value to set the attribute aufschubzeit to.



7
8
9
# File 'lib/basis.rb', line 7

def aufschubzeit=(value)
  @aufschubzeit = value
end

#basis_pa=(value) ⇒ Object (writeonly)

Sets the attribute basis_pa

Parameters:

  • value

    the value to set the attribute basis_pa to.



7
8
9
# File 'lib/basis.rb', line 7

def basis_pa=(value)
  @basis_pa = value
end

#debug=(value) ⇒ Object (writeonly)

Sets the attribute debug

Parameters:

  • value

    the value to set the attribute debug to.



7
8
9
# File 'lib/basis.rb', line 7

def debug=(value)
  @debug = value
end

#eigenbeitragObject (readonly)

Returns the value of attribute eigenbeitrag.



6
7
8
# File 'lib/basis.rb', line 6

def eigenbeitrag
  @eigenbeitrag
end

#gesamt_eigenbeitragObject (readonly)

Returns the value of attribute gesamt_eigenbeitrag.



6
7
8
# File 'lib/basis.rb', line 6

def gesamt_eigenbeitrag
  @gesamt_eigenbeitrag
end

#renditeObject (readonly)

Returns the value of attribute rendite.



6
7
8
# File 'lib/basis.rb', line 6

def rendite
  @rendite
end

#renteObject (readonly)

Returns the value of attribute rente.



6
7
8
# File 'lib/basis.rb', line 6

def rente
  @rente
end

#rentengarantiefaktor=(value) ⇒ Object (writeonly)

Sets the attribute rentengarantiefaktor

Parameters:

  • value

    the value to set the attribute rentengarantiefaktor to.



7
8
9
# File 'lib/basis.rb', line 7

def rentengarantiefaktor=(value)
  @rentengarantiefaktor = value
end

#steuerklasse=(value) ⇒ Object (writeonly)

Sets the attribute steuerklasse

Parameters:

  • value

    the value to set the attribute steuerklasse to.



7
8
9
# File 'lib/basis.rb', line 7

def steuerklasse=(value)
  @steuerklasse = value
end

#verzinsung=(value) ⇒ Object (writeonly)

Sets the attribute verzinsung

Parameters:

  • value

    the value to set the attribute verzinsung to.



7
8
9
# File 'lib/basis.rb', line 7

def verzinsung=(value)
  @verzinsung = value
end

#zulageObject (readonly)

Returns the value of attribute zulage.



6
7
8
# File 'lib/basis.rb', line 6

def zulage
  @zulage
end

Instance Method Details

#runObject



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# File 'lib/basis.rb', line 28

def run

@lzzfreib	 = (@basis_pa/100)*72


p1 = {
 :lzz 	    => 1,
 :re4 	    => @brutto_pa*100,
 :stkl	    => @steuerklasse,
 :r 		    => 0,
 :lzzfreib 	=> @lzzfreib*100,
 :krv 	    => 0
}
p1e = BMF::Abgabenrechner.new(p1).ausgaben


p2 = {
 :lzz  	    => 1,
 :re4  	    => @brutto_pa*100,
 :stkl 	    => @steuerklasse,
 :r	 	      => 0,
 :lzzfreib 	=> 0,
 :krv 	    => 0
}
p2e = BMF::Abgabenrechner.new(p2).ausgaben


 @zulage 	= ((p2e[:lstlzz]-p1e[:lstlzz])/100)+@plusdings
 @anlage 	= @basis_pa
 @rendite	= (@zulage*100)/@basis_pa
 @eigenbeitrag= @anlage-@zulage

 invest = Investment.new
 invest.p = @verzinsung.to_f
 invest.r = @anlage
 invest.n = @aufschubzeit   
 @ablaufleistung =     invest.rn.to_i-@versicherungskosten
 @gesamt_eigenbeitrag = @anlage*@aufschubzeit

 prozehntausend = @ablaufleistung/10000
 @rente = (prozehntausend*@rentengarantiefaktor)*12

 if @debug
    puts "#{((p2e[:lstlzz]-p1e[:lstlzz])/100)+@plusdings} euro forderung"
    puts "#{@basis_pa} euro gehen in die anlage"
    puts "#{(p2e[:lstlzz]-p1e[:lstlzz])/@basis_pa}% Rendite"
 end

end