Skip to content
Snippets Groups Projects
Commit 747ca8e0 authored by rhenry2's avatar rhenry2
Browse files

New trade barriers file based on Anderson et al. and adjustment for strength of barrier

parent 6d15c16c
No related branches found
No related tags found
No related merge requests found
...@@ -22,7 +22,7 @@ public class GlobalPrice { ...@@ -22,7 +22,7 @@ public class GlobalPrice {
} }
public double getCountryImportPrice(double countryTradeBarrier) { public double getCountryImportPrice(double countryTradeBarrier) {
double importPrice = exportPrice * (1.0 + countryTradeBarrier) / (1.0 - ModelConfig.TRANSPORT_LOSSES); double importPrice = exportPrice * (1.0 + countryTradeBarrier*ModelConfig.TRADE_BARRIER_ADJ) / (1.0 - ModelConfig.TRANSPORT_LOSSES);
return importPrice; return importPrice;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment