1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  | Quintiq file version 2.0 
 |  #parent: #root 
 |  Method Use 
 |  { 
 |    TextBody: 
 |    [* 
 |      // Akari Aug-26-2024 (created) 
 |      this.IsUsed( true ); 
 |       
 |      copy_routing := this.Routing().Copy( this.Suffix() + [String]this.Percentage()+"%_" + this.StartDate().Format( "Y-M2-D2") ); 
 |       
 |      copy_routing.Start( this.StartDate() ); 
 |       
 |      copy_routing.End( this.EndDate() ); 
 |       
 |      traverse( copy_routing,OperationForPlanningMatrix,op){ 
 |        op.Throughput( op.Throughput() * ( this.Percentage() / 100) ); 
 |      } 
 |       
 |      copy_routing.CopyUphillRouting( relset, this ); 
 |    *] 
 |  } 
 |  
  |