@@ -429,14 +429,22 @@ SUBROUTINE CreateNewIDFUsingRules(EndOfFile,DiffOnly,InLfn,AskForInput,InputFile
429
429
nodiff= .false.
430
430
431
431
! read in 8 reference value for the effectiveness at 75% and 100%
432
- HxEffectAt75Airflow(1 ) = TRIM (InArgs(6 )) ! Sensible Effectiveness at 75% Heating Air Flow
433
- HxEffectAt75Airflow(2 ) = TRIM (InArgs(7 )) ! Latent Effectiveness at 75% Heating Air Flow
434
- HxEffectAt75Airflow(3 ) = TRIM (InArgs(10 )) ! Sensible Effectiveness at 75% Cooling Air Flow
435
- HxEffectAt75Airflow(4 ) = TRIM (InArgs(11 )) ! Latent Effectiveness at 75% Cooling Air Flow
436
- HxEffectAt100Airflow(1 ) = TRIM (InArgs(4 )) ! Sensible Effectiveness at 100% Heating Air Flow
437
- HxEffectAt100Airflow(2 ) = TRIM (InArgs(5 )) ! Latent Effectiveness at 100% Heating Air Flow
438
- HxEffectAt100Airflow(3 ) = TRIM (InArgs(8 )) ! Sensible Effectiveness at 100% Cooling Air Flow
439
- HxEffectAt100Airflow(4 ) = TRIM (InArgs(9 )) ! Latent Effectiveness at 100% Cooling Air Flow
432
+ ! Sensible Effectiveness at 75% Heating Air Flow
433
+ HxEffectAt75Airflow(1 ) = GetFieldOrIDDDefault(InArgs(6 ), FldDefaults(6 ))
434
+ ! Latent Effectiveness at 75% Heating Air Flow
435
+ HxEffectAt75Airflow(2 ) = GetFieldOrIDDDefault(InArgs(7 ), FldDefaults(7 ))
436
+ ! Sensible Effectiveness at 75% Cooling Air Flow
437
+ HxEffectAt75Airflow(3 ) = GetFieldOrIDDDefault(InArgs(10 ), FldDefaults(10 ))
438
+ ! Latent Effectiveness at 75% Cooling Air Flow
439
+ HxEffectAt75Airflow(4 ) = GetFieldOrIDDDefault(InArgs(11 ), FldDefaults(11 ))
440
+ ! Sensible Effectiveness at 100% Heating Air Flow
441
+ HxEffectAt100Airflow(1 ) = GetFieldOrIDDDefault(InArgs(4 ), FldDefaults(4 ))
442
+ ! Latent Effectiveness at 100% Heating Air Flow
443
+ HxEffectAt100Airflow(2 ) = GetFieldOrIDDDefault(InArgs(5 ), FldDefaults(5 ))
444
+ ! Sensible Effectiveness at 100% Cooling Air Flow
445
+ HxEffectAt100Airflow(3 ) = GetFieldOrIDDDefault(InArgs(8 ), FldDefaults(8 ))
446
+ ! Latent Effectiveness at 100% Cooling Air Flow
447
+ HxEffectAt100Airflow(4 ) = GetFieldOrIDDDefault(InArgs(9 ), FldDefaults(9 ))
440
448
441
449
! Remove the 4 fields for 75% airflow and adjust the index of the fields
442
450
OutArgs(1 :5 ) = InArgs(1 :5 )
0 commit comments