use of org.vcell.vis.io.MovingBoundarySimFiles in project vcell by virtualcell.
the class SimulationData method getMovingBoundarySimFiles.
@Override
public MovingBoundarySimFiles getMovingBoundarySimFiles() throws FileNotFoundException, DataAccessException {
// retrieveExistingFile(SimFileTypeStandard.MovingBoundaryOutputFile);
File movingBoundaryOutputFile = amplistorHelper.getMovingBoundaryOutputFile();
VCSimulationDataIdentifier vcSimDataID = (VCSimulationDataIdentifier) vcDataId;
MovingBoundarySimFiles movingBoundarySimFiles = new MovingBoundarySimFiles(vcSimDataID.getSimulationKey(), vcSimDataID.getJobIndex(), movingBoundaryOutputFile);
return movingBoundarySimFiles;
}
Aggregations