Skip to content
Snippets Groups Projects
Select Git revision
  • 60ff8280c2faa781775bc2f3b06a7f4142cf12f0
  • master default protected
  • development
  • marco/aquacrop-fix-api-use
  • precompile-statements
  • precompile-tools
  • tmp-faster-loading
  • skylark
  • testsuite
  • code-review
  • v0.7.0
  • v0.6.1
  • v0.6.0
  • v0.5.5
  • v0.5.4
  • v0.5.3
  • v0.5.2
  • v0.2
  • v0.3.0
  • v0.4.1
  • v0.5
21 results

index.html

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    parameters_SE_DRIVE.R 677 B
    
    
    
    
    designpath<- "SE_DRIVE/Designs/"
    
    resps =120  # number of respondents
    nosim= 500 # number of simulations to run (about 500 is minimum)
    
    
    
    
    
    
    # bpreis = -0.036
    # blade  = -0.034
    # bwarte = -0.049
    
    
    # wrong parameters
    
    # 
    bpreis = -0.01
    blade = -0.07
    bwarte = 0.02
    
    manipulations = list(alt1.x2=     expr(alt1.x2/10), 
                         alt1.x3=     expr(alt1.x3/10),
                         alt2.x2=     expr(alt2.x2/10), 
                         alt2.x3=     expr(alt2.x3/10)
                        )
    
    
    #place your utility functions here
    u<-list(
      v1 =V.1~  bpreis * alt1.x1 + blade*alt1.x2 + bwarte*alt1.x3   ,
      v2 =V.2~  bpreis * alt2.x1 + blade*alt2.x2 + bwarte*alt2.x3  
    )