Foam::autoPtr<Foam::engineMesh> Foam::engineMesh::New ( const Foam::IOobject& io ) { // get model name, but do not register the dictionary // otherwise it is registered in the database twice const word modelType ( IOdictionary ( IOobject ( "engineGeometry", io.time().constant(), io.db(), IOobject::MUST_READ_IF_MODIFIED, IOobject::NO_WRITE, false ) ).lookup("engineMesh") ); Info<< "Selecting engineMesh " << modelType << endl; IOobjectConstructorTable::iterator cstrIter = IOobjectConstructorTablePtr_->find(modelType); if (cstrIter == IOobjectConstructorTablePtr_->end()) { FatalErrorInFunction << "Unknown engineMesh type " << modelType << nl << nl << "Valid engineMesh types are :" << endl << IOobjectConstructorTablePtr_->sortedToc() << exit(FatalError); } return autoPtr<engineMesh>(cstrIter()(io)); }
void ensightCloudField ( const Foam::IOobject& fieldObject, const Foam::fileName& postProcPath, const Foam::word& prepend, const Foam::label timeIndex, const Foam::word& cloudName, Foam::Ostream& ensightCaseFile, const bool dataExists ) { if (dataExists) { Info<< "Converting cloud " << cloudName << " field " << fieldObject.name() << endl; } else { Info<< "Creating empty cloud " << cloudName << " field " << fieldObject.name() << endl; } word timeFile = prepend + itoa(timeIndex); const Time& runTime = fieldObject.time(); if (timeIndex == 0 && Pstream::master()) { ensightCaseFile << pTraits<Type>::typeName << " per measured node: 1 "; ensightCaseFile.width(15); ensightCaseFile.setf(ios_base::left); ensightCaseFile << ("c" + fieldObject.name()).c_str() << (' ' + prepend + "***." + cloudName + "." + fieldObject.name()).c_str() << nl; } fileName ensightFileName ( timeFile + "." + cloudName +"." + fieldObject.name() ); OFstream ensightFile ( postProcPath/ensightFileName, runTime.writeFormat(), runTime.writeVersion(), runTime.writeCompression() ); ensightFile<< pTraits<Type>::typeName << " values" << nl; if (dataExists) { IOField<Type> vf(fieldObject); ensightFile.setf(ios_base::scientific, ios_base::floatfield); ensightFile.precision(5); label count = 0; forAll(vf, i) { Type v = vf[i]; if (mag(v) < 1.0e-90) { v = pTraits<Type>::zero; } for (direction cmpt=0; cmpt<pTraits<Type>::nComponents; cmpt++) { ensightFile << setw(12) << component(v, cmpt); if (++count % 6 == 0) { ensightFile << nl; } } } if ((count % 6 != 0) || (count==0)) { ensightFile << nl; } }