code
stringlengths 3
10M
| language
stringclasses 31
values |
|---|---|
/*******************************************************************************
Definitions for client request handlers.
Request handler functions are the functions which define the client-side
logic to handle each request type. The "context" of such functions is:
1. A means of accessing one or more `RequestOnConn`s. (The exact means
varies by type of request.)
2. The serialized request context (stored in `Request`). The request
handler may modify this data, as necessary.
3. The serialized per-`RequestOnConn` working data (stored in the
`RequestOnConn`). The request handler may modify this data, as
necessary.
Copyright: Copyright (c) 2016-2017 sociomantic labs GmbH. All rights reserved
License:
Boost Software License Version 1.0. See LICENSE_BOOST.txt for details.
*******************************************************************************/
module swarm.neo.client.RequestHandlers;
/*******************************************************************************
Imports
*******************************************************************************/
import swarm.neo.AddrPort;
import swarm.neo.client.RequestOnConn;
import ocean.core.SmartUnion;
/*******************************************************************************
Handler function type for a single-node-at-a-time request. The handler
should use `use_node(node_address)` to operate via an `EventDispatcher`
instance to exchange request messages with a node and `io_fiber` for
customised event handling.
*******************************************************************************/
public alias void function ( UseNodeDg use_node,
void[] context_blob, void[] working ) SingleNodeHandler;
/*******************************************************************************
Handler function type for an all-nodes request. The handler should use `ed`
to exchange request messages with the node and `io_fiber` for customised
event handling.
*******************************************************************************/
public alias void function ( RequestOnConn.EventDispatcherAllNodes ed,
void[] context_blob, void[] working ) AllNodesHandler;
/*******************************************************************************
Handler function type for a node-round-robin request. The handler should use
`rr` to get access to an event dispatcher to exchange request messages with
one or more nodes, in series, as required and `io_fiber` for customised
event handling.
*******************************************************************************/
public alias void function ( IRoundRobinConnIterator rr,
void[] context_blob, void[] working ) RoundRobinHandler;
/*******************************************************************************
Delegate type passed to a single-node-at-a-time request handler. Calls `dg`
with an event dispatcher connected to the node specified by `node_address`.
Params:
node_address = the address of the node to communicate with
dg = a delegate to call back with an event dispatcher
to communicate with the node
Returns:
true on success or false if currently not connected to the node,
`dg` is not called in that case.
*******************************************************************************/
public alias bool delegate ( AddrPort node_address,
void delegate ( RequestOnConn.EventDispatcher ed ) dg ) UseNodeDg;
/*******************************************************************************
Interface passed to a node-round-robin request. Provides an iterator which
allows the handler to get an EventDispatcher set up for each connection in
turn.
*******************************************************************************/
public interface IRoundRobinConnIterator
{
/***************************************************************************
`foreach` iteration over all nodes in round-robin fashion. `ed` is
connected to the node of the current iteration cycle. Each iteration
as a whole starts with a random node.
***************************************************************************/
public int opApply (
int delegate ( ref RequestOnConn.EventDispatcher ed ) dg );
}
/*******************************************************************************
Union of the different types of client request handler to start in a fiber.
*******************************************************************************/
public union Handler
{
/***************************************************************************
One all-nodes request callback with one of the nodes.
This field is active if the outer request is part of an all-nodes
request.
***************************************************************************/
struct AllNodesWithConnection
{
import swarm.neo.client.Connection;
/***********************************************************************
The connection that was assigned to this request handler when
the request was started.
***********************************************************************/
Connection connection;
/***********************************************************************
The request handler.
***********************************************************************/
AllNodesHandler dg;
}
AllNodesWithConnection all_nodes;
/***************************************************************************
A single-node-at-a-time request callback.
This field is active only if the outer request is a single-node
request.
***************************************************************************/
SingleNodeHandler single_node;
/***************************************************************************
A node-round-robin request callback.
This field is active only if the outer request is a single-node
request.
***************************************************************************/
RoundRobinHandler round_robin;
}
/*******************************************************************************
Alias for a smart union of the types of request handlers.
*******************************************************************************/
public alias SmartUnion!(Handler) HandlerUnion;
|
D
|
import std.stdio;
import kanity.core;
import std.json;
void main(){
auto configFileName = "kanityconfig.json";
auto logFileName = "kanitylog.log";
JSONValue root = parseJSON(import("kanitybuild.json"));
if("configFileName" in root.object){
auto obj = root.object["configFileName"];
configFileName = obj.str;
}
if("logFileName" in root.object){
auto obj = root.object["logFileName"];
logFileName = obj.str;
}
auto engine = new Engine(configFileName, logFileName);
engine.run();
return;
}
|
D
|
# DO NOT DELETE
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TString.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/Riosfwd.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TMathBase.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/Rtypes.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/RConfig.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/RVersion.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/DllImport.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/Rtypeinfo.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/snprintf.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/strlcpy.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TGenericClassInfo.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TSchemaHelper.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TH1F.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TH1.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TAxis.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TNamed.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TObject.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TStorage.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TVersionCheck.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TBuffer.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TAttAxis.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TArrayD.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TArray.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TAttLine.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TAttFill.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TAttMarker.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TArrayC.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TArrayS.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TArrayI.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TArrayF.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/Foption.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TVectorFfwd.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TVectorDfwd.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TFitResultPtr.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TSystem.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TInetAddress.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TTimer.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TSysEvtHandler.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TQObject.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TTime.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TInterpreter.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TDictionary.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/Property.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TFile.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TDirectoryFile.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TDirectory.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TList.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TSeqCollection.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TCollection.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TIterator.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TDatime.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TUUID.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TMap.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/THashTable.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/TUrl.h
./Plot-AM-MTR2j-07Sep_Susy-5-auto_C.so: /home/andrea/root/include/cintdictversion.h /home/andrea/root/include/RVersion.h
Plot-AM-MTR2j-07Sep_Susy-5-auto_C__ROOTBUILDVERSION= 5.99/01
|
D
|
module sb.events.events;
public import sb.events.window_events;
public import sb.events.input_events;
public import sb.events.internal_events;
public import std.variant: Algebraic, visit;
alias SbEvent = Algebraic!(
SbWindowResizeEvent, SbWindowRescaleEvent, SbWindowFocusChangeEvent,
SbWindowMouseoverEvent, SbWindowNeedsRefreshEvent,
SbMouseMoveEvent, SbScrollEvent, SbMouseButtonEvent, SbKeyEvent,
SbRawCharEvent,
SbGamepadButtonEvent, SbGamepadAxisEvent, SbGamepadConnectionEvent,
SbAppLoadedEvent, SbAppKilledEvent, SbNextFrameEvent,
);
// List of event classifications as a bitmask
//enum SbEventMask {
// FRAME_EVENTS = 0x1,
// APP_EVENTS = 0x2,
// MODULE_EVENTS = 0x4,
// MODULE_LOAD_EVENTS = 0x8,
// WINDOW_EVENTS = 0x10,
// INPUT_EVENTS = 0x20,
// ALL = 0x2f,
//}
// Event producer interface; wraps an internal event list in a concurrent-ish manner.
// (note: you should not share the same IEventProducer across multiple threads, but
// you should never have to worry about doing this, as sb will implicitely use multiple
// instances, or use locks or whatever when/if code on multiple threads are producing
// events concurrently).
interface IEventProducer {
// Add event
IEventProducer pushEv (SbEvent);
}
public IEventProducer pushEvent (IEventProducer events, SbEvent event) {
return events.pushEv(event);
}
public IEventProducer pushEvent (T)(IEventProducer events, lazy T event) if (__traits(compiles, SbEvent(event))) {
return events.pushEv(SbEvent(event));
}
// Test event handler list (Cases), ensuring that it can match SbEvent.visit() / tryVisit()
//private void testHandler (Cases...)() {
// SbEvent[] events;
// events[0].visit!(Cases, (){});
//}
// Event consumer interface.
interface IEventList {
// Try handling events; same semantics as Variant.tryVisit() w/ default case
//void handle (Cases...)() if (__traits(compiles, testHandler!Cases));
}
public void onEvent (Cases...)(const(SbEventList) list)
//if (__traits(compiles, list.m_events[0].tryVisit!(Cases, (){})))
{
import std.variant;
foreach (event; list.m_events)
event.tryVisit!(Cases, (){});
}
class SbEventList : IEventProducer, IEventList {
SbEvent[] m_events;
IEventProducer pushEv (SbEvent event) {
return m_events ~= event, this;
}
void clear () { m_events.length = 0; }
//void onEvent (Cases...)() const {
// foreach (event; m_events)
// event.tryVisit!(Cases);
//}
// Write events to stdout
void dumpEvents () {
import std.stdio;
foreach (event; m_events)
writefln("%s", event);
}
}
// Client interface for app events + current state
interface IEventState {
IEventList events ();
ref SbFrameState frameState ();
ref SbKBMState kbmState ();
ref SbGamepadState[] gamepadStates ();
}
|
D
|
the ability to think and act independently
the quality of being new and original (not derived from something else)
|
D
|
/*
TEST_OUTPUT:
---
fail_compilation/diag12640.d(14): Error: undefined identifier asdf
fail_compilation/diag12640.d(23): Error: undefined identifier asdf
---
*/
void main()
{
switch (1)
{
case 0:
asdf;
break;
default:
}
switch (1)
{
default:
asdf;
break;
case 0:
}
}
|
D
|
/Users/timothelaude/Documents/palindromenew/target/rls/debug/build/native-tls-2ceca32b211b02b9/build_script_build-2ceca32b211b02b9: /Users/timothelaude/.cargo/registry/src/github.com-1ecc6299db9ec823/native-tls-0.2.4/build.rs
/Users/timothelaude/Documents/palindromenew/target/rls/debug/build/native-tls-2ceca32b211b02b9/build_script_build-2ceca32b211b02b9.d: /Users/timothelaude/.cargo/registry/src/github.com-1ecc6299db9ec823/native-tls-0.2.4/build.rs
/Users/timothelaude/.cargo/registry/src/github.com-1ecc6299db9ec823/native-tls-0.2.4/build.rs:
|
D
|
/Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Leaf.build/Tag/Models/Embed.swift.o : /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Embed.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Node+Rendered.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Uppercased.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Extend.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Variable.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/HTMLEscape.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Else.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/TagTemplate.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/If.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Byte+Leaf.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Buffer/Buffer+Leaf.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Leaf.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Tag.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/BasicTag.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Link.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Equal.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Buffer/BufferProtocol.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Stem.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Stem+Spawn.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Loop.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Stem+Render.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Buffer/Buffer.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Parameter.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/LeafError.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Constants.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Argument.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/LeafComponent.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Import.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Export.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/List.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Context.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Raw.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Index.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/libc.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Node.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/PathIndexable.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Bits.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/cmysql.git-3946220544950307782/module.modulemap /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/CHTTP.build/module.modulemap /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/CSQLite.build/module.modulemap
/Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Leaf.build/Embed~partial.swiftmodule : /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Embed.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Node+Rendered.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Uppercased.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Extend.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Variable.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/HTMLEscape.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Else.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/TagTemplate.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/If.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Byte+Leaf.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Buffer/Buffer+Leaf.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Leaf.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Tag.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/BasicTag.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Link.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Equal.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Buffer/BufferProtocol.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Stem.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Stem+Spawn.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Loop.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Stem+Render.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Buffer/Buffer.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Parameter.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/LeafError.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Constants.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Argument.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/LeafComponent.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Import.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Export.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/List.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Context.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Raw.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Index.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/libc.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Node.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/PathIndexable.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Bits.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/cmysql.git-3946220544950307782/module.modulemap /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/CHTTP.build/module.modulemap /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/CSQLite.build/module.modulemap
/Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Leaf.build/Embed~partial.swiftdoc : /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Embed.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Node+Rendered.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Uppercased.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Extend.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Variable.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/HTMLEscape.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Else.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/TagTemplate.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/If.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Byte+Leaf.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Buffer/Buffer+Leaf.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Leaf.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Tag.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/BasicTag.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Link.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Equal.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Buffer/BufferProtocol.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Stem.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Stem+Spawn.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Loop.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Stem+Render.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Buffer/Buffer.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Parameter.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/LeafError.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Constants.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Argument.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/LeafComponent.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Import.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Export.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/List.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Context.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Raw.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/leaf.git-9164445114487378533/Sources/Leaf/Tag/Models/Index.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/libc.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Node.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/PathIndexable.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Bits.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/cmysql.git-3946220544950307782/module.modulemap /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/CHTTP.build/module.modulemap /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/CSQLite.build/module.modulemap
|
D
|
a roadside cafe especially for lorry drivers
an arm exercise performed by pulling yourself up on a horizontal bar until your chin is level with the bar
come to a halt after driving somewhere
straighten oneself
cause (a vehicle) to stop
remove, usually with some force or effort
|
D
|
/***********************************************************************\
* winperf.d *
* *
* Windows API header module *
* *
* Translated from MinGW Windows headers *
* *
* Placed into public domain *
\***********************************************************************/
module win32.winperf;
version(Windows):
import win32.windef;
import win32.winbase; // for SYSTEMTIME
const PERF_DATA_VERSION=1;
const PERF_DATA_REVISION=1;
const PERF_NO_INSTANCES=-1;
const PERF_SIZE_DWORD=0;
const PERF_SIZE_LARGE=256;
const PERF_SIZE_ZERO=512;
const PERF_SIZE_VARIABLE_LEN=768;
const PERF_TYPE_NUMBER=0;
const PERF_TYPE_COUNTER=1024;
const PERF_TYPE_TEXT=2048;
const PERF_TYPE_ZERO=0xC00;
const PERF_NUMBER_HEX=0;
const PERF_NUMBER_DECIMAL=0x10000;
const PERF_NUMBER_DEC_1000=0x20000;
const PERF_COUNTER_VALUE=0;
const PERF_COUNTER_RATE=0x10000;
const PERF_COUNTER_FRACTION=0x20000;
const PERF_COUNTER_BASE=0x30000;
const PERF_COUNTER_ELAPSED=0x40000;
const PERF_COUNTER_QUEUELEN=0x50000;
const PERF_COUNTER_HISTOGRAM=0x60000;
const PERF_TEXT_UNICODE=0;
const PERF_TEXT_ASCII=0x10000;
const PERF_TIMER_TICK=0;
const PERF_TIMER_100NS=0x100000;
const PERF_OBJECT_TIMER=0x200000;
const PERF_DELTA_COUNTER=0x400000;
const PERF_DELTA_BASE=0x800000;
const PERF_INVERSE_COUNTER=0x1000000;
const PERF_MULTI_COUNTER=0x2000000;
const PERF_DISPLAY_NO_SUFFIX=0;
const PERF_DISPLAY_PER_SEC=0x10000000;
const PERF_DISPLAY_PERCENT=0x20000000;
const PERF_DISPLAY_SECONDS=0x30000000;
const PERF_DISPLAY_NOSHOW=0x40000000;
const PERF_COUNTER_HISTOGRAM_TYPE=0x80000000;
const PERF_NO_UNIQUE_ID=(-1);
const PERF_DETAIL_NOVICE=100;
const PERF_DETAIL_ADVANCED=200;
const PERF_DETAIL_EXPERT=300;
const PERF_DETAIL_WIZARD=400;
const PERF_COUNTER_COUNTER=(PERF_SIZE_DWORD|PERF_TYPE_COUNTER|PERF_COUNTER_RATE|PERF_TIMER_TICK|PERF_DELTA_COUNTER|PERF_DISPLAY_PER_SEC);
const PERF_COUNTER_TIMER=(PERF_SIZE_LARGE|PERF_TYPE_COUNTER|PERF_COUNTER_RATE|PERF_TIMER_TICK|PERF_DELTA_COUNTER|PERF_DISPLAY_PERCENT);
const PERF_COUNTER_QUEUELEN_TYPE=(PERF_SIZE_DWORD|PERF_TYPE_COUNTER|PERF_COUNTER_QUEUELEN|PERF_TIMER_TICK|PERF_DELTA_COUNTER|PERF_DISPLAY_NO_SUFFIX);
const PERF_COUNTER_BULK_COUNT=(PERF_SIZE_LARGE|PERF_TYPE_COUNTER|PERF_COUNTER_RATE|PERF_TIMER_TICK|PERF_DELTA_COUNTER|PERF_DISPLAY_PER_SEC);
const PERF_COUNTER_TEXT=(PERF_SIZE_VARIABLE_LEN|PERF_TYPE_TEXT|PERF_TEXT_UNICODE|PERF_DISPLAY_NO_SUFFIX);
const PERF_COUNTER_RAWCOUNT=(PERF_SIZE_DWORD|PERF_TYPE_NUMBER|PERF_NUMBER_DECIMAL|PERF_DISPLAY_NO_SUFFIX);
const PERF_COUNTER_LARGE_RAWCOUNT=(PERF_SIZE_LARGE|PERF_TYPE_NUMBER|PERF_NUMBER_DECIMAL|PERF_DISPLAY_NO_SUFFIX);
const PERF_COUNTER_RAWCOUNT_HEX=(PERF_SIZE_DWORD|PERF_TYPE_NUMBER|PERF_NUMBER_HEX|PERF_DISPLAY_NO_SUFFIX);
const PERF_COUNTER_LARGE_RAWCOUNT_HEX=(PERF_SIZE_LARGE|PERF_TYPE_NUMBER|PERF_NUMBER_HEX|PERF_DISPLAY_NO_SUFFIX);
const PERF_SAMPLE_FRACTION=(PERF_SIZE_DWORD|PERF_TYPE_COUNTER|PERF_COUNTER_FRACTION|PERF_DELTA_COUNTER|PERF_DELTA_BASE|PERF_DISPLAY_PERCENT);
const PERF_SAMPLE_COUNTER=(PERF_SIZE_DWORD|PERF_TYPE_COUNTER|PERF_COUNTER_RATE|PERF_TIMER_TICK|PERF_DELTA_COUNTER|PERF_DISPLAY_NO_SUFFIX);
const PERF_COUNTER_NODATA=(PERF_SIZE_ZERO|PERF_DISPLAY_NOSHOW);
const PERF_COUNTER_TIMER_INV=(PERF_SIZE_LARGE|PERF_TYPE_COUNTER|PERF_COUNTER_RATE|PERF_TIMER_TICK|PERF_DELTA_COUNTER|PERF_INVERSE_COUNTER|PERF_DISPLAY_PERCENT);
const PERF_SAMPLE_BASE=(PERF_SIZE_DWORD|PERF_TYPE_COUNTER|PERF_COUNTER_BASE|PERF_DISPLAY_NOSHOW|1);
const PERF_AVERAGE_TIMER=(PERF_SIZE_DWORD|PERF_TYPE_COUNTER|PERF_COUNTER_FRACTION|PERF_DISPLAY_SECONDS);
const PERF_AVERAGE_BASE=(PERF_SIZE_DWORD|PERF_TYPE_COUNTER|PERF_COUNTER_BASE|PERF_DISPLAY_NOSHOW|2);
const PERF_AVERAGE_BULK=(PERF_SIZE_LARGE|PERF_TYPE_COUNTER|PERF_COUNTER_FRACTION|PERF_DISPLAY_NOSHOW);
const PERF_100NSEC_TIMER=(PERF_SIZE_LARGE|PERF_TYPE_COUNTER|PERF_COUNTER_RATE|PERF_TIMER_100NS|PERF_DELTA_COUNTER|PERF_DISPLAY_PERCENT);
const PERF_100NSEC_TIMER_INV=(PERF_SIZE_LARGE|PERF_TYPE_COUNTER|PERF_COUNTER_RATE|PERF_TIMER_100NS|PERF_DELTA_COUNTER|PERF_INVERSE_COUNTER|PERF_DISPLAY_PERCENT);
const PERF_COUNTER_MULTI_TIMER=(PERF_SIZE_LARGE|PERF_TYPE_COUNTER|PERF_COUNTER_RATE|PERF_DELTA_COUNTER|PERF_TIMER_TICK|PERF_MULTI_COUNTER|PERF_DISPLAY_PERCENT);
const PERF_COUNTER_MULTI_TIMER_INV=(PERF_SIZE_LARGE|PERF_TYPE_COUNTER|PERF_COUNTER_RATE|PERF_DELTA_COUNTER|PERF_MULTI_COUNTER|PERF_TIMER_TICK|PERF_INVERSE_COUNTER|PERF_DISPLAY_PERCENT);
const PERF_COUNTER_MULTI_BASE=(PERF_SIZE_LARGE|PERF_TYPE_COUNTER|PERF_COUNTER_BASE|PERF_MULTI_COUNTER|PERF_DISPLAY_NOSHOW);
const PERF_100NSEC_MULTI_TIMER=(PERF_SIZE_LARGE|PERF_TYPE_COUNTER|PERF_DELTA_COUNTER|PERF_COUNTER_RATE|PERF_TIMER_100NS|PERF_MULTI_COUNTER|PERF_DISPLAY_PERCENT);
const PERF_100NSEC_MULTI_TIMER_INV=(PERF_SIZE_LARGE|PERF_TYPE_COUNTER|PERF_DELTA_COUNTER|PERF_COUNTER_RATE|PERF_TIMER_100NS|PERF_MULTI_COUNTER|PERF_INVERSE_COUNTER|PERF_DISPLAY_PERCENT);
const PERF_RAW_FRACTION=(PERF_SIZE_DWORD|PERF_TYPE_COUNTER|PERF_COUNTER_FRACTION|PERF_DISPLAY_PERCENT);
const PERF_RAW_BASE=(PERF_SIZE_DWORD|PERF_TYPE_COUNTER|PERF_COUNTER_BASE|PERF_DISPLAY_NOSHOW|3);
const PERF_ELAPSED_TIME=(PERF_SIZE_LARGE|PERF_TYPE_COUNTER|PERF_COUNTER_ELAPSED|PERF_OBJECT_TIMER|PERF_DISPLAY_SECONDS);
struct PERF_DATA_BLOCK {
WCHAR[4] Signature;
DWORD LittleEndian;
DWORD Version;
DWORD Revision;
DWORD TotalByteLength;
DWORD HeaderLength;
DWORD NumObjectTypes;
LONG DefaultObject;
SYSTEMTIME SystemTime;
LARGE_INTEGER PerfTime;
LARGE_INTEGER PerfFreq;
LARGE_INTEGER PerfTime100nSec;
DWORD SystemNameLength;
DWORD SystemNameOffset;
}
alias PERF_DATA_BLOCK * PPERF_DATA_BLOCK;
struct PERF_OBJECT_TYPE {
DWORD TotalByteLength;
DWORD DefinitionLength;
DWORD HeaderLength;
DWORD ObjectNameTitleIndex;
LPWSTR ObjectNameTitle;
DWORD ObjectHelpTitleIndex;
LPWSTR ObjectHelpTitle;
DWORD DetailLevel;
DWORD NumCounters;
LONG DefaultCounter;
LONG NumInstances;
DWORD CodePage;
LARGE_INTEGER PerfTime;
LARGE_INTEGER PerfFreq;
}
alias PERF_OBJECT_TYPE * PPERF_OBJECT_TYPE;
struct PERF_COUNTER_DEFINITION {
DWORD ByteLength;
DWORD CounterNameTitleIndex;
LPWSTR CounterNameTitle;
DWORD CounterHelpTitleIndex;
LPWSTR CounterHelpTitle;
LONG DefaultScale;
DWORD DetailLevel;
DWORD CounterType;
DWORD CounterSize;
DWORD CounterOffset;
}
alias PERF_COUNTER_DEFINITION * PPERF_COUNTER_DEFINITION;
struct PERF_INSTANCE_DEFINITION {
DWORD ByteLength;
DWORD ParentObjectTitleIndex;
DWORD ParentObjectInstance;
LONG UniqueID;
DWORD NameOffset;
DWORD NameLength;
}
alias PERF_INSTANCE_DEFINITION * PPERF_INSTANCE_DEFINITION;
struct PERF_COUNTER_BLOCK {
DWORD ByteLength;
}
alias PERF_COUNTER_BLOCK * PPERF_COUNTER_BLOCK;
extern (Windows):
alias DWORD function (LPWSTR) PM_OPEN_PROC;
alias DWORD function (LPWSTR,PVOID*,PDWORD,PDWORD) PM_COLLECT_PROC;
alias DWORD function () PM_CLOSE_PROC;
|
D
|
module gtkD.gda.Command;
public import gtkD.gdac.gdatypes;
private import gtkD.gdac.gda;
private import gtkD.glib.ConstructionException;
private import gtkD.glib.Str;
private import gtkD.gda.Transaction;
/**
* Description
* The GdaCommand structure holds data needed to issue a command to the
* providers.
* Applications usually create a GdaCommand (via gda_command_new), set its
* properties (via the gda_command_set_* functions) and pass it over to the
* database using the GdaConnection functions.
* One interesting thing about GdaCommand's is that they can be reused over
* and over. That is, applications don't need to create a command every time
* they want to run something on the connected database. Moreover, the ability
* to create command strings with placeholders allows the use of parameters to
* specify the values for those placeholders. Thus, an application can create a
* command of the form:
* INSERT INTO employees VALUES (id, name, address, salary)
* and reuse the same command over and over, just using different values for the
* placeholders.
* The value for the placeholders is specified when sending the GdaCommand to a
* database connection, which is done via the gda_connection_execute function.
*/
public class Command
{
/** the main Gtk struct */
protected GdaCommand* gdaCommand;
public GdaCommand* getCommandStruct();
/** the main Gtk struct as a void* */
protected void* getStruct();
/**
* Sets our main struct and passes it to the parent class
*/
public this (GdaCommand* gdaCommand);
/**
*/
/**
* Returns:
*/
public static GType getType();
/**
* Creates a new GdaCommand from the parameters that should be freed by
* calling gda_command_free.
* If there are conflicting options, this will set options to
* GDA_COMMAND_OPTION_DEFAULT.
* Params:
* text = the text of the command.
* type = a GdaCommandType value.
* options = a GdaCommandOptions value.
* Throws: ConstructionException GTK+ fails to create the object.
*/
public this (string text, GdaCommandType type, GdaCommandOptions options);
/**
* Frees the resources allocated by gda_command_new.
*/
public void free();
/**
* Creates a new GdaCommand from an existing one.
* Returns: a newly allocated GdaCommand with a copy of the data in cmd.
*/
public Command copy();
/**
* Gets the command text held by cmd.
* Returns: the command string of cmd.
*/
public string getText();
/**
* Sets the command text of cmd.
* Params:
* text = the command text.
*/
public void setText(string text);
/**
* Gets the command type of cmd.
* Returns: the command type of cmd.
*/
public GdaCommandType getCommandType();
/**
* Sets the command type of cmd.
* Params:
* type = the command type.
*/
public void setCommandType(GdaCommandType type);
/**
* Gets the command options of cmd.
* Returns: the command options of cmd.
*/
public GdaCommandOptions getOptions();
/**
* Sets the command options of cmd. If there conflicting options, it will just
* leave the value as before.
* Params:
* options = the command options.
*/
public void setOptions(GdaCommandOptions options);
/**
* Gets the GdaTransaction associated with the given GdaCommand.
* Returns: the transaction for the command.
*/
public Transaction getTransaction();
/**
* Sets the GdaTransaction associated with the given GdaCommand.
* Params:
* xaction = a GdaTransaction object.
*/
public void setTransaction(Transaction xaction);
}
|
D
|
module evael.physics.physics_2d.physics_world;
// import chipmunk;
/*
* PhysicsWorld2D.
* Chipmunk 2d based.
*/
class PhysicsWorld2D
{
}
|
D
|
module android.java.dalvik.annotation.TestTargetClass;
public import android.java.dalvik.annotation.TestTargetClass_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!TestTargetClass;
import import0 = android.java.java.lang.Class;
|
D
|
/Users/smartex/Desktop/SMVideoCall/derived_data/Build/Intermediates.noindex/SMVideoCall.build/Debug-iphonesimulator/SMVideoCall.build/Objects-normal/x86_64/VideoCallResultDelegate.o : /Users/smartex/Desktop/SMVideoCall/SMVideoCall/VideoCallResultDelegate.swift /Users/smartex/Desktop/SMVideoCall/SMVideoCall/VideoCallViewController.swift /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/WebKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/WebKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/mach-o/dyld.modulemap /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/objc/ObjectiveC.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/Darwin.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/WebKit.framework/Headers/WebKit.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/smartex/Desktop/SMVideoCall/derived_data/Build/Intermediates.noindex/SMVideoCall.build/Debug-iphonesimulator/SMVideoCall.build/Objects-normal/x86_64/VideoCallResultDelegate~partial.swiftmodule : /Users/smartex/Desktop/SMVideoCall/SMVideoCall/VideoCallResultDelegate.swift /Users/smartex/Desktop/SMVideoCall/SMVideoCall/VideoCallViewController.swift /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/WebKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/WebKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/mach-o/dyld.modulemap /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/objc/ObjectiveC.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/Darwin.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/WebKit.framework/Headers/WebKit.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/smartex/Desktop/SMVideoCall/derived_data/Build/Intermediates.noindex/SMVideoCall.build/Debug-iphonesimulator/SMVideoCall.build/Objects-normal/x86_64/VideoCallResultDelegate~partial.swiftdoc : /Users/smartex/Desktop/SMVideoCall/SMVideoCall/VideoCallResultDelegate.swift /Users/smartex/Desktop/SMVideoCall/SMVideoCall/VideoCallViewController.swift /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/WebKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/WebKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/mach-o/dyld.modulemap /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/objc/ObjectiveC.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/Darwin.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/WebKit.framework/Headers/WebKit.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/smartex/Desktop/SMVideoCall/derived_data/Build/Intermediates.noindex/SMVideoCall.build/Debug-iphonesimulator/SMVideoCall.build/Objects-normal/x86_64/VideoCallResultDelegate~partial.swiftsourceinfo : /Users/smartex/Desktop/SMVideoCall/SMVideoCall/VideoCallResultDelegate.swift /Users/smartex/Desktop/SMVideoCall/SMVideoCall/VideoCallViewController.swift /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/WebKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/WebKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/mach-o/dyld.modulemap /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/objc/ObjectiveC.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/Darwin.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/WebKit.framework/Headers/WebKit.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Users/smartex/Desktop/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
|
D
|
module number;
import std.algorithm : min;
import std.string : munch;
enum DefaultBitSize = 128;
enum NumberType : ubyte {
bin = 2, dec = 10, hex = 16
}
alias Number = NumberImpl!(DefaultBitSize);
struct NumberImpl(int BitSize) {
enum DecSize = BitSize / 2;
alias num_t = ubyte[BitSize];
num_t value;
this(in num_t value) {
this.value = value;
assert(valid);
}
this(in long value) {
num_t generated;
for(long i = min(BitSize - 1, 63); i >= 0; i--) {
generated[i] = value >> i & 1;
}
this.value = generated;
assert(valid);
}
this(in int value) {
num_t generated;
for(int i = min(BitSize - 1, 31); i >= 0; i--) {
generated[i] = value >> i & 1;
}
this.value = generated;
assert(valid);
}
this(int Bits)(in NumberImpl!Bits value) {
static if(Bits == BitSize)
this.value = value.value;
else static if(Bits > BitSize) {
this.value[0 .. $ - 1] = value.value[0 .. BitSize - 1];
} else {
if(value.isNegative)
this.value[] = 1;
this.value[0 .. Bits - 1] = value.value[0 .. $ - 1];
}
assert(valid);
}
this(string value) {
NumberType numberType = NumberType.dec;
assert(value.length > 0);
bool negative = false;
if(value[0] == '+') value = value[1 .. $];
if(value[0] == '-') {
negative = true;
value = value[1 .. $];
}
if(value.length > 2) {
if(value[0 .. 2] == "0x") {
numberType = NumberType.hex;
value = value[2 .. $];
} else if(value[0 .. 2] == "0b") {
numberType = NumberType.bin;
value = value[2 .. $];
}
}
char[] reversed = new char[value.length];
for(int i = 0; i < reversed.length; i++)
reversed[i] = value[$ - i - 1];
value = reversed.idup;
int pos = 0;
while(value.length > 0) {
ubyte ch = value[0];
ubyte realValue;
switch(ch) {
case '0': .. case '9':
realValue = cast(ubyte)(ch - cast(ubyte)'0');
if(realValue > 1)
assert(numberType >= NumberType.dec, "Unexpected numeric literal (remove 0b, or");
break;
case 'a': .. case 'f':
ch = cast(ubyte)(ch - cast(ubyte)'a' + cast(ubyte)'A');
goto case;
case 'A': .. case 'F':
assert(numberType >= NumberType.hex, "Unexpected numeric literal (prepend 0x)");
realValue = cast(ubyte)(10 + ch - cast(ubyte)'A');
break;
default:
assert(0, "Unexpected numeric literal");
}
NumberImpl!BitSize num = NumberImpl!BitSize(cast(int)numberType);
num = num.pow(NumberImpl!BitSize(cast(int)pos));
num *= NumberImpl!BitSize(cast(int)realValue);
this += num;
pos++;
value = value[1 .. $];
}
}
NumberImpl!BitSize add(NumberImpl!BitSize other) const {
num_t raw = value[];
bool overflow = false;
for(int i = 0; i < BitSize; i++) {
if(raw[i] != 0 && other[i] && overflow != 0) {
raw[i] = true; // 1+1+1 = 11
overflow = true;
} else if((raw[i] != 0 && other[i]) || (raw[i] != 0 && overflow != 0) || (other[i] && overflow != 0)) {
raw[i] = false; // 1+1 = 10
overflow = true;
} else if(raw[i] != 0 || other[i] || overflow != 0) {
raw[i] = true; // 1 = 1
overflow = false;
}
}
return NumberImpl!BitSize(raw);
}
NumberImpl!BitSize sub(NumberImpl!BitSize other) const {
return add(-other);
}
NumberImpl!BitSize udivide(NumberImpl!BitSize other) const {
assert(other != 0, "Division by Zero");
if(other > this)
return NumberImpl!BitSize(0);
NumberImpl!BitSize quotient = 0;
NumberImpl!BitSize remainder = 0;
for(int i = BitSize - 1; i >= 0; i--) {
remainder <<= 1;
remainder[0] = this[i];
if(remainder >= other) {
remainder -= other;
quotient[i] = 1;
}
}
return quotient;
}
private NumberImpl!BitSize moddiv(NumberImpl!BitSize other) {
assert(other != 0, "Division by Zero");
if(other > this) {
auto oldVal = this.value;
this.value[] = 0;
return Number(oldVal);
}
NumberImpl!BitSize quotient = 0;
NumberImpl!BitSize remainder = 0;
for(int i = BitSize - 1; i >= 0; i--) {
remainder <<= 1;
remainder[0] = this[i];
if(remainder >= other) {
remainder -= other;
quotient[i] = 1;
}
}
this.value = quotient.value;
return remainder;
}
NumberImpl!BitSize divide(NumberImpl!BitSize other) const {
if(other.isNegative && isNegative) {
return negate.udivide(other.negate);
} else if(other.isNegative) {
return udivide(other.negate).negate;
} else if(isNegative) {
return negate.udivide(other).negate;
} else {
return udivide(other);
}
}
NumberImpl!BitSize mul(NumberImpl!BitSize other) const {
NumberImpl!BitSize result = 0;
NumberImpl!BitSize base = this;
while(other) {
if(other & 1)
result += base;
base <<= 1;
other >>>= 1;
}
return result;
}
NumberImpl!BitSize pow(NumberImpl!BitSize other) const {
NumberImpl!BitSize result = 1;
NumberImpl!BitSize base = this;
while(other) {
if(other & 1)
result *= base;
other >>>= 1;
base *= base;
}
return result;
}
NumberImpl!BitSize modulo(NumberImpl!BitSize other) const {
NumberImpl!BitSize clone = NumberImpl!BitSize(value);
while(clone >= other)
clone -= other;
return clone;
}
NumberImpl!BitSize bsl(NumberImpl!BitSize other) const {
if(other > BitSize)
return NumberImpl!BitSize(0);
NumberImpl!BitSize clone = value;
while(other > 0) {
for(int i = BitSize - 2; i >= 1; i--) { // Start after sign, stop one before
*(clone.value.ptr + i) = *(clone.value.ptr + i - 1);
}
clone.value[0] = 0; // Fill last
other--;
}
return clone;
}
NumberImpl!BitSize bsr(NumberImpl!BitSize other) const {
if(other > BitSize)
return NumberImpl!BitSize(0);
NumberImpl!BitSize clone = value;
while(other > 0) {
for(int i = 0; i < BitSize - 2; i++) { // End 2 after sign
*(clone.value.ptr + i) = *(clone.value.ptr + i + 1);
}
clone.value[BitSize - 2] = 0; // Fill first after sign
other--;
}
return clone;
}
NumberImpl!BitSize ubsr(NumberImpl!BitSize other) const {
if(other > BitSize)
return NumberImpl!BitSize(0);
NumberImpl!BitSize clone = value;
while(other > 0) {
for(int i = 0; i < BitSize - 1; i++) { // End 1 after sign
*(clone.value.ptr + i) = *(clone.value.ptr + i + 1);
}
clone.value[BitSize - 1] = 0; // Set sign to 0
other--;
}
return clone;
}
NumberImpl!BitSize and(NumberImpl!BitSize other) const {
NumberImpl!BitSize clone = value;
for(int i = 0; i < BitSize; i++)
clone[i] &= other[i];
return clone;
}
NumberImpl!BitSize or(NumberImpl!BitSize other) const {
NumberImpl!BitSize clone = value;
for(int i = 0; i < BitSize; i++)
clone[i] |= other[i];
return clone;
}
NumberImpl!BitSize xor(NumberImpl!BitSize other) const {
NumberImpl!BitSize clone = value;
for(int i = 0; i < BitSize; i++)
clone[i] ^= other[i];
return clone;
}
bool valid() @property const {
for(int i = 0; i < BitSize; i++)
if(value[i] != 0 && value[i] != 1)
return false;
return true;
}
T opCast(T)() const {
static if(is(T == bool))
return this != 0;
else static if(is(T == int))
return this.toSmallNumber;
}
bool opIndex(size_t i) const {
assert(value[i] == 0 || value[i] == 1, "Malformed binary representation");
return value[i] != 0;
}
void opIndexAssign(int val, size_t i) {
value[i] = cast(ubyte)(val != 0 ? 1 : 0);
}
auto opIndexOpAssign(string op)(int b, size_t i) {
return mixin("value[i] " ~ op ~ "= b");
}
char toDecChar() @property const {
assert(this < 10 && this >= 0);
for(int i = 0; i < 10; i++) {
if(this == i)
return cast(char)(i + '0');
}
assert(0);
}
static if(BitSize < 64)
long toSmallNumber() @property const nothrow @safe {
long num;
for(long i = 0; i < BitSize - 1; i++) {
num |= cast(long)value[i] << i;
}
if(value[BitSize - 1] != 0)
num = -((2L << (BitSize - 2)) - num); // Create correct negative value
return num;
}
string toString() @property const {
string sign = "";
Number value = this;
if(isNegative) {
sign = "-";
value = -value;
}
string num = "";
Number remainder;
while(value) {
num = (value.moddiv(Number(10)).toDecChar) ~ num;
}
num = sign ~ num;
return num;
}
bool isPositive() @property const {
return value[BitSize - 1] != 0;
}
bool isNegative() @property const {
return value[BitSize - 1] == 1;
}
int opCmp(T)(T b) const {
NumberImpl!BitSize num = NumberImpl!BitSize(b);
if(value == num.value)
return 0;
return (this - num).isPositive ? -1 : 1;
}
bool opEquals(int b) const {
return value == NumberImpl!BitSize(b).value;
}
bool opEquals(NumberImpl!BitSize b) const {
return value == b.value;
}
NumberImpl!BitSize invert() const {
num_t bits = value[];
for(int i = 1; i < BitSize; i++)
bits[i] = bits[i] == 0 ? 1 : 0;
return NumberImpl!BitSize(bits);
}
NumberImpl!BitSize uinvert() const {
num_t bits = value[];
for(int i = 0; i < BitSize; i++)
bits[i] = bits[i] == 0 ? 1 : 0;
return NumberImpl!BitSize(bits);
}
NumberImpl!BitSize negate() const {
return uinvert().add(NumberImpl!BitSize(1));
}
NumberImpl!BitSize opUnary(string op)() {
static if(op == "+") return NumberImpl!BitSize(value);
else static if(op == "-") return negate();
else static if(op == "~") return invert();
else static if(op == "++") return this = add(NumberImpl!BitSize(1));
else static if(op == "--") return this = sub(NumberImpl!BitSize(1));
else static assert(0, "Unsupported unary operator " ~ op);
}
NumberImpl!BitSize opBinary(string op)(int other) const {
return opBinary!(op)(NumberImpl!BitSize(other));
}
NumberImpl!BitSize opBinary(string op)(NumberImpl!BitSize other) const {
static if(op == "+") return add(other);
else static if(op == "-") return sub(other);
else static if(op == "*") return mul(other);
else static if(op == "/") return divide(other);
else static if(op == "%") return modulo(other);
else static if(op == "&") return and(other);
else static if(op == "|") return or(other);
else static if(op == "^") return xor(other);
else static if(op == "^^") return pow(other);
else static if(op == ">>") return bsr(other);
else static if(op == ">>>") return ubsr(other);
else static if(op == "<<") return bsl(other);
else static assert(0, "Unsupported binary operator " ~ op);
}
NumberImpl!BitSize opOpAssign(string op)(int other) {
value = opBinary!(op)(other).value;
return this;
}
NumberImpl!BitSize opOpAssign(string op)(NumberImpl!BitSize other) {
value = opBinary!(op)(other).value;
return this;
}
}
unittest {
const Number num1 = 42;
const Number num2 = 18;
assert(num1 > num2);
assert((num1 + num2).toString == "60");
}
unittest {
const Number num1 = 48;
const Number num2 = 28;
assert(num1 > num2);
assert((num1 - num2).toString == "20");
}
unittest {
const Number num1 = 5;
const Number num2 = 10;
assert(num1 < num2);
assert((num1 - num2).toString == "-5");
}
unittest {
const Number num1 = 13;
const Number num2 = 3;
assert((num1 / num2).toString == "4");
assert((num1 % num2).toString == "1");
}
unittest {
const Number num1 = 4;
const Number num2 = 5;
assert((num1 * num2).toString == "20");
}
unittest {
const Number num1 = 0b1101;
const Number num2 = 2;
assert((num1 >> num2).toString == "3");
assert((num1 << num2).toString == "52");
}
unittest {
const Number num1 = 0b1101;
const Number num2 = 0b0111;
assert((num1 & num2).toString == "5");
assert((num1 | num2).toString == "15");
assert((num1 ^ num2).toString == "10");
}
|
D
|
module vanillamock.command;
interface ExampleCommand
{
void doSomething(bool foo, int bar);
}
class ActualCommand : ExampleCommand
{
void doSomething(bool foo, int bar)
{
// Do something.
}
}
|
D
|
/*
TEST_OUTPUT:
---
fail_compilation/fail7178.d(10): Error: undefined identifier `contents` in module `fail7178`
fail_compilation/fail7178.d(12): Error: mixin `fail7178.populate!int` error instantiating
---
*/
template populate(overloads...)
{
mixin populate!(.contents);
}
public mixin populate!int;
|
D
|
instance Mod_7549_OUT_Wache_DT (Npc_Default)
{
// ------ NSC ------
name = "Wache";
guild = GIL_STRF;
id = 7549;
voice = 0;
flags = 0;
npctype = NPCTYPE_AMBIENT;
// ------ Attribute ------
B_SetAttributesToChapter (self, 5);
// ------ Kampf-Taktik ------
fight_tactic = FAI_HUMAN_MASTER;
// ------ Equippte Waffen ------
EquipItem (self, ItMw_Spicker);
// ------ Inventory ------
B_CreateAmbientInv (self);
// ------ visuals ------
B_SetNpcVisual (self, MALE, "Hum_Head_Bald", Face_N_Lefty, BodyTex_N, GRD_ARMOR_M);
Mdl_SetModelFatness (self,0);
Mdl_ApplyOverlayMds (self, "Humans_Tired.mds");
// ------ NSC-relevante Talente vergeben ------
B_GiveNpcTalents (self);
// ------ Kampf-Talente ------
B_SetFightSkills (self, 80);
// ------ TA anmelden ------
daily_routine = Rtn_Start_7549;
};
FUNC VOID Rtn_Start_7549()
{
TA_Sit_Campfire (08,00,20,00,"DT_017");
TA_Sit_Campfire (20,00,08,00,"DT_017");
};
FUNC VOID Rtn_Kampf_7549()
{
TA_Stand_ArmsCrossed (08,00,20,00,"DT_022");
TA_Stand_ArmsCrossed (20,00,08,00,"DT_022");
};
|
D
|
import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop;
void main() {
auto N = readln.chomp.to!int;
auto edges = new bool[][](26, 26);
foreach (i; 0..N) {
auto s = readln.split;
auto A = s[0];
auto B = s[1];
bool found = false;
foreach (j; 0..min(A.length, B.length)) {
if (A[j] != B[j]) {
edges[B[j]-'a'][A[j]-'a'] = true;
found = true;
break;
}
}
if (!found && B.length < A.length) {
writeln(-1);
return;
}
}
auto q = new BinaryHeap!(Array!int, "a > b")();
int[] toposo;
foreach (i; 0..26) if (edges[i].sum == 0) q.insert(i);
while (!q.empty) {
int n = q.front;
q.removeFront;
toposo ~= n;
foreach (m; 0..26) {
if (edges[m][n]) {
edges[m][n] = false;
if (edges[m].sum == 0) q.insert(m);
}
}
}
if (26.iota.map!(i => edges[i].any).any) {
writeln(-1);
} else {
char[] ans;
foreach (c; toposo) ans ~= c.to!char + 'a';
foreach (i; 0..26.to!char) if (ans.map!(a => a != i + 'a').all) ans ~= i + 'a';
ans.writeln;
}
}
|
D
|
import vibe.core.core;
import vibe.db.mongo.mongo;
import vibe.http.router;
import vibe.http.server;
import vibe.web.web;
import mir.random : unpredictableSeedOf;
import mir.random.variable : UniformVariable;
import mir.random.engine.xorshift : Xorshift;
import std.conv : ConvException, to;
import std.array;
enum worldSize = 10000;
void main()
{
runWorkerTaskDist(&runServer);
runApplication();
}
void runServer()
{
auto router = new URLRouter;
router.registerWebInterface(new WebInterface);
router.rebuild();
auto settings = new HTTPServerSettings;
settings.options |= HTTPServerOption.reusePort;
settings.port = 8080;
listenHTTP(settings, router);
}
class WebInterface {
private {
MongoCollection _worldCollection;
MongoCollection _fortuneCollection;
UniformVariable!uint _uniformVariable;
Xorshift _gen;
}
this()
{
import std.process : environment;
auto db = connectMongoDB(environment.get("DBHOST", "127.0.0.1"));
_worldCollection = db.getCollection("hello_world.world");
_fortuneCollection = db.getCollection("hello_world.fortune");
_gen = Xorshift(unpredictableSeedOf!uint);
_uniformVariable = UniformVariable!uint(1, worldSize);
}
// GET /
void get()
{
render!"index.dt";
}
// GET /json
void getJson(HTTPServerResponse res)
{
// NOTE: the status and content type parameters are optional, but we need
// to specify them, because the default content type is "application/json; charset=UTF8"
res.writeJsonBody(Message("Hello, World!"), HTTPStatus.ok, "application/json");
}
// GET /db
void getDB(HTTPServerResponse res)
{
struct Q { int _id; }
auto query = Q(_uniformVariable(_gen));
auto w = WorldResponse(_worldCollection.findOne!World(query));
res.writeJsonBody(w, HTTPStatus.ok, "application/json");
}
// GET /queries?queries=...
void getQueries(HTTPServerResponse res, string queries)
{
import std.algorithm : min, max;
// Convert the "queries" parameter to int and ignore any conversion errors
// Note that you'd usually declare queries as int instead. However, the
// test required to gracefully handle errors here.
int count = 1;
try count = min(max(queries.to!int, 1), 500);
catch (ConvException) {}
// assemble the response array
scope data = new WorldResponse[count];
foreach (ref w; data) {
static struct Q { int _id; }
auto query = Q(_uniformVariable(_gen));
w = WorldResponse(_worldCollection.findOne!World(query));
}
// write response as JSON
res.writeJsonBody(data, HTTPStatus.ok, "application/json");
}
// GET /fortunes
void getFortunes()
{
import std.algorithm : map, sort;
FortuneResponse[] data;
data = _fortuneCollection.find!Fortune().map!(f => FortuneResponse(f)).array;
data ~= FortuneResponse(Fortune(0, "Additional fortune added at request time."));
data.sort!((a, b) => a.message < b.message);
render!("fortunes.dt", data);
}
// GET /updates?queries=...
void getUpdates(HTTPServerResponse res, string queries)
{
import std.algorithm : min, max;
int count = 1;
try count = min(max(queries.to!int, 1), 500);
catch (ConvException e) {}
scope data = new WorldResponse[count];
foreach (ref w; data) {
static struct Q { int _id; }
auto query = Q(_uniformVariable(_gen));
w = WorldResponse(_worldCollection.findOne!World(query));
// update random number
w.randomNumber = _uniformVariable(_gen);
// persist to DB
static struct US {
double randomNumber;
}
static struct U {
@name("$set") US set;
}
_worldCollection.update(query, U(US(w.randomNumber)));
}
// write response as JSON
res.writeJsonBody(data, HTTPStatus.ok, "application/json");
}
// GET /plaintext
void getPlaintext(HTTPServerResponse res)
{
res.writeBody("Hello, World!", HTTPStatus.ok, "text/plain");
}
}
struct Message {
string message;
}
struct World {
double _id;
double randomNumber;
}
struct Fortune {
double _id;
string message;
}
struct WorldResponse {
this(World w) { this.id = cast(int)w._id; this.randomNumber = cast(int)w.randomNumber; }
int id;
int randomNumber;
}
struct FortuneResponse {
this(Fortune f) { this.id = cast(int)f._id; this.message = f.message; }
int id;
string message;
}
|
D
|
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM WT ROCKTYPE
303.5 77.1999969 2.79999995 89.6999969 10 14 -38.7000008 143.100006 139 4.19999981 4.19999981 0.741364334 sediments, limestone
289.600006 75.1999969 1.79999995 73.1999969 11 19 -31.6000004 145.600006 9338 2.5 2.5 0.558912929 sediments, saprolite
244.5 81.6999969 9.80000019 0 2 10 -9.60000038 119.300003 1209 5.80000019 10.6999998 0.653907491 extrusives
249.300003 82.3000031 8.60000038 0 2 10 -9.69999981 120.099998 1208 5.0999999 9.39999962 0.674220144 sediments, tuffs
264.399994 75 15.6000004 0 2 65 -8.80000019 126.699997 1206 10.3999996 18 0.33876016 extrusives, intrusives
349.5 78.1999969 4.69999981 999.900024 5 35 -36.0999985 149.100006 1153 6.0999999 7.5999999 0.576048249 sediments, weathered volcanics
294.399994 82.9000015 1.89999998 472.299988 8 23 -33.5999985 150.600006 1154 2.0999999 2.79999995 0.629338268 sediments
236.600006 78.5 18.0739223 7.5 0 35 -17.2000008 131.5 1894 0 0 0.32765245 sediments, red mudstones
270.5 80.4000015 8.39999962 125 5 23 -32.5 138.5 1976 8.39999962 8.39999962 0.594104181 sediments, red clays
256.899994 86.9000015 8.39999962 88 5 23 -36 137 1974 8.39999962 8.39999962 0.594104181 sediments, weathered
|
D
|
// This file is part of Visual D
//
// Visual D integrates the D programming language into Visual Studio
// Copyright (c) 2010 by Rainer Schuetze, All Rights Reserved
//
// Distributed under the Boost Software License, Version 1.0.
// See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt
module visuald.config;
import std.string;
import std.conv;
import std.file;
import std.path;
import std.utf;
import std.array;
import std.exception;
import stdext.path;
import stdext.array;
import stdext.file;
import stdext.string;
import stdext.util;
import xml = visuald.xmlwrap;
import visuald.windows;
import sdk.port.vsi;
import sdk.win32.objbase;
import sdk.win32.oleauto;
import sdk.vsi.vsshell;
import sdk.vsi.vsshell80;
import sdk.vsi.vsshell110; // for IVsProfilableProjectCfg, etc
import visuald.comutil;
import visuald.logutil;
import visuald.hierutil;
import visuald.hierarchy;
import visuald.chiernode;
import visuald.dproject;
import visuald.dpackage;
import visuald.build;
import visuald.propertypage;
import visuald.stringutil;
import visuald.fileutil;
import visuald.lexutil;
import visuald.pkgutil;
import visuald.vdextensions;
import visuald.register;
version = hasOutputGroup;
// implementation of IVsProfilableProjectCfg is incomplete (profiler doesn't stop)
// but just providing proper output and debug information works for profiling as an executable
// version = hasProfilableConfig;
///////////////////////////////////////////////////////////////
const string[] kPlatforms = [ "Win32", "x64" ];
enum string kToolResourceCompiler = "Resource Compiler";
enum string kToolCpp = "C/C++";
const string kCmdLogFileExtension = "build";
version(hasProfilableConfig)
const GUID g_unmarshalTargetInfoCLSID = uuid("002a2de9-8bb6-484d-980f-7e4ad4084715");
///////////////////////////////////////////////////////////////
T clone(T)(T object)
{
auto size = typeid(object).initializer.length;
object = cast(T) ((cast(void*)object) [0..size].dup.ptr );
// object.__monitor = null;
return object;
}
///////////////////////////////////////////////////////////////
ubyte toUbyte(string s) { return to!(ubyte)(s); }
float toFloat(string s) { return to!(float)(s); }
string uintToString(uint x) { return to!(string)(x); }
string toElem(bool b) { return b ? "1" : "0"; }
string toElem(float f) { return to!(string)(f); }
string toElem(string s) { return s; }
string toElem(uint x) { return uintToString(x); }
void _fromElem(xml.Element e, ref string x) { x = e.text(); }
void _fromElem(xml.Element e, ref bool x) { x = e.text() == "1"; }
void _fromElem(xml.Element e, ref ubyte x) { x = toUbyte(e.text()); }
void _fromElem(xml.Element e, ref uint x) { x = toUbyte(e.text()); }
void _fromElem(xml.Element e, ref float x) { x = toFloat(e.text()); }
void fromElem(T)(xml.Element e, string s, ref T x)
{
if(xml.Element el = xml.getElement(e, s))
_fromElem(el, x);
}
enum Compiler
{
DMD,
GDC,
LDC
}
enum OutputType
{
Executable,
StaticLib,
DLL
};
enum Subsystem
{
NotSet,
Console,
Windows,
Native,
Posix
};
enum CRuntime
{
None,
StaticRelease,
StaticDebug,
DynamicRelease,
DynamicDebug,
}
class ProjectOptions
{
bool obj; // write object file
bool link; // perform link
ubyte lib; // write library file instead of object file(s) (1: static, 2:dynamic)
ubyte subsystem;
bool multiobj; // break one object file into multiple ones
bool oneobj; // write one object file instead of multiple ones
bool mscoff; // use mscoff object files for Win32
bool trace; // insert profiling hooks
bool quiet; // suppress non-error messages
bool verbose; // verbose compile
bool vtls; // identify thread local variables
bool vgc; // List all gc allocations including hidden ones (DMD 2.066+)
ubyte symdebug; // insert debug symbolic information (0: none, 1: mago, 2: VS, 3: as debugging)
bool optimize; // run optimizer
ubyte cpu; // target CPU
bool isX86_64; // generate X86_64 bit code
bool isLinux; // generate code for linux
bool isOSX; // generate code for Mac OSX
bool isWindows; // generate code for Windows
bool isFreeBSD; // generate code for FreeBSD
bool isSolaris; // generate code for Solaris
bool scheduler; // which scheduler to use
bool useDeprecated; // allow use of deprecated features
bool errDeprecated; // error when using deprecated features (2.061+)
bool useAssert; // generate runtime code for assert()'s
bool useInvariants; // generate class invariant checks
bool useIn; // generate precondition checks
bool useOut; // generate postcondition checks
ubyte useArrayBounds; // 0: no array bounds checks
// 1: array bounds checks for safe functions only
// 2: array bounds checks for all functions
bool noboundscheck; // no array bounds checking at all
bool useSwitchError; // check for switches without a default
bool useUnitTests; // generate unittest code
bool useInline; // inline expand functions
ubyte release; // build release version (0: -debug, 1: -release, 2: default)
bool preservePaths; // !=0 means don't strip path from source file
bool warnings; // enable warnings
bool infowarnings; // enable informational warnings
bool checkProperty; // enforce property syntax
bool genStackFrame; // always generate stack frame
bool pic; // generate position-independent-code for shared libs
bool cov; // generate code coverage data
bool nofloat; // code should not pull in floating point support
bool ignoreUnsupportedPragmas; // rather than error on them
bool allinst; // generate code for all template instantiations
bool stackStomp; // add stack stomp code
float Dversion; // D version number
ubyte compiler; // 0: DMD, 1: GDC, 2:LDC
bool otherDMD; // use explicit program path
bool ccTransOpt; // translate D options to C where applicable
string cccmd; // C/C++ compiler command prefix
string program; // program name
string imppath; // array of char*'s of where to look for import modules
string fileImppath; // array of char*'s of where to look for file import modules
string outdir; // target output directory
string objdir; // .obj/.lib file output directory
string objname; // .obj file output name
string libname; // .lib file output name
bool doDocComments; // process embedded documentation comments
string docdir; // write documentation file to docdir directory
string docname; // write documentation file to docname
string ddocfiles; // macro include files for Ddoc
string modules_ddoc; // generate modules.ddoc for candydoc
bool doHdrGeneration; // process embedded documentation comments
string hdrdir; // write 'header' file to docdir directory
string hdrname; // write 'header' file to docname
bool doXGeneration; // write JSON file
string xfilename; // write JSON file to xfilename
uint debuglevel; // debug level
string debugids; // debug identifiers
uint versionlevel; // version level
string versionids; // version identifiers
bool dump_source;
uint mapverbosity;
bool createImplib;
string defaultlibname; // default library for non-debug builds
string debuglibname; // default library for debug builds
string moduleDepsFile; // filename for deps output
bool run; // run resulting executable
string runargs; // arguments for executable
ubyte runCv2pdb; // run cv2pdb on executable (0: no, 1: suitable for debug engine, 2: yes)
bool cv2pdbPre2043; // pass version before 2.043 for older aa implementation
bool cv2pdbNoDemangle; // do not demangle symbols
bool cv2pdbEnumType; // use enumerator type
string pathCv2pdb; // exe path for cv2pdb
string cv2pdbOptions; // more options for cv2pdb
enum
{
kCombinedCompileAndLink,
kSingleFileCompilation,
kSeparateCompileAndLink,
kSeparateCompileOnly,
}
uint compilationModel = kCombinedCompileAndLink;
// Linker stuff
string objfiles;
string linkswitches;
string libfiles;
string libpaths;
string deffile;
string resfile;
string exefile;
bool useStdLibPath;
uint cRuntime;
bool privatePhobos;
string additionalOptions;
string preBuildCommand;
string postBuildCommand;
// debug options
string debugtarget;
string debugarguments;
string debugworkingdir;
bool debugattach;
string debugremote;
ubyte debugEngine; // 0: mixed, 1: mago, 2: native
bool debugStdOutToOutputWindow;
bool pauseAfterRunning;
string filesToClean;
this(bool dbg, bool x64)
{
Dversion = 2;
exefile = "$(OutDir)\\$(ProjectName).exe";
outdir = "$(PlatformName)\\$(ConfigurationName)";
objdir = "$(OutDir)";
debugtarget = "$(TARGETPATH)";
pathCv2pdb = "$(VisualDInstallDir)cv2pdb\\cv2pdb.exe";
program = "$(DMDInstallDir)windows\\bin\\dmd.exe";
xfilename = "$(IntDir)\\$(TargetName).json";
cccmd = "$(CC) -c";
ccTransOpt = true;
doXGeneration = true;
useStdLibPath = true;
cRuntime = CRuntime.StaticRelease;
debugEngine = 1;
filesToClean = "*.obj;*.cmd;*.build;*.json;*.dep";
setX64(x64);
setDebug(dbg);
}
void setDebug(bool dbg)
{
runCv2pdb = dbg && !isX86_64 ? 1 : 0;
symdebug = dbg ? 3 : 0;
release = dbg ? 0 : 1;
optimize = release == 1;
useInline = release == 1;
}
void setX64(bool x64)
{
isX86_64 = x64;
if(release != 1 && cRuntime == CRuntime.StaticRelease)
cRuntime = CRuntime.StaticDebug;
}
override bool opEquals(Object obj) const
{
auto other = cast(ProjectOptions) obj;
if (!other)
return false;
foreach (i, f; this.tupleof)
if (this.tupleof[i] != other.tupleof[i])
return false;
return true;
}
string objectFileExtension() { return compiler != Compiler.GDC ? "obj" : "o"; }
string otherCompilerPath() { return otherDMD ? program : null; }
bool useMSVCRT()
{
return (compiler == Compiler.DMD && (isX86_64 || mscoff)) ||
(compiler == Compiler.LDC);
}
@property ref CompilerDirectories compilerDirectories()
{
switch(compiler)
{
default:
case Compiler.DMD: return Package.GetGlobalOptions().DMD;
case Compiler.GDC: return Package.GetGlobalOptions().GDC;
case Compiler.LDC: return Package.GetGlobalOptions().LDC;
}
}
bool isLDCforMinGW()
{
if (compiler != Compiler.LDC)
return false;
string installdir = Package.GetGlobalOptions().LDC.InstallDir;
if (installdir.empty)
return false;
return std.file.exists(normalizeDir(installdir) ~ "lib/libphobos2-ldc.a");
}
// common options with building phobos.lib
string dmdCommonCompileOptions()
{
string cmd;
if(isX86_64)
cmd ~= " -m64";
else if(mscoff)
cmd ~= " -m32mscoff";
if(verbose)
cmd ~= " -v";
if(Dversion >= 2 && vtls)
cmd ~= " -vtls";
if(Dversion >= 2 && vgc)
cmd ~= " -vgc";
int symdbg = symdebug;
if(symdebug == 3)
symdbg = debugEngine == 1 ? 1 : 2;
if(symdbg == 1)
cmd ~= " -g";
if(symdbg == 2)
cmd ~= " -gc";
if(optimize)
cmd ~= " -O";
if(useDeprecated)
cmd ~= " -d";
if(useInline)
cmd ~= " -inline";
if(release == 1)
cmd ~= " -release";
else if(release == 0)
cmd ~= " -debug";
if(warnings)
cmd ~= " -w";
if(infowarnings)
cmd ~= " -wi";
if(checkProperty)
cmd ~= " -property";
if(genStackFrame)
cmd ~= " -gs";
if(stackStomp)
cmd ~= " -gx";
return cmd;
}
string buildDMDCommandLine(bool compile = true, bool performLink = true, bool deps = true, bool syntaxOnly = false)
{
string cmd;
if(otherDMD && program.length)
cmd = quoteNormalizeFilename(program);
else
cmd = "dmd";
if(performLink && Package.GetGlobalOptions().demangleError)
cmd = "\"$(VisualDInstallDir)pipedmd.exe\" " ~ cmd;
cmd ~= dmdCommonCompileOptions();
if(lib == OutputType.StaticLib && performLink)
cmd ~= " -lib";
if(multiobj)
cmd ~= " -multiobj";
if(trace)
cmd ~= " -profile";
if(quiet)
cmd ~= " -quiet";
else if(errDeprecated)
cmd ~= " -de";
if(Dversion >= 2 && noboundscheck)
cmd ~= " -noboundscheck";
if(useUnitTests)
cmd ~= " -unittest";
if(preservePaths)
cmd ~= " -op";
if(cov)
cmd ~= " -cov";
if(nofloat)
cmd ~= " -nofloat";
if(ignoreUnsupportedPragmas)
cmd ~= " -ignore";
if(allinst)
cmd ~= " -allinst";
if(privatePhobos)
cmd ~= " -defaultlib=" ~ quoteFilename(normalizeDir(outdir) ~ "privatephobos.lib");
if(doDocComments && compile && !syntaxOnly)
{
cmd ~= " -D";
if(docdir.length)
cmd ~= " -Dd" ~ quoteNormalizeFilename(docdir);
if(docname.length)
cmd ~= " -Df" ~ quoteNormalizeFilename(docname);
}
if(doHdrGeneration && compile && !syntaxOnly)
{
cmd ~= " -H";
if(hdrdir.length)
cmd ~= " -Hd" ~ quoteNormalizeFilename(hdrdir);
if(hdrname.length)
cmd ~= " -Hf" ~ quoteNormalizeFilename(hdrname);
}
if(doXGeneration && compile && !syntaxOnly)
{
cmd ~= " -X";
if(xfilename.length)
cmd ~= " -Xf" ~ quoteNormalizeFilename(xfilename);
}
string[] imports = tokenizeArgs(imppath);
foreach(imp; imports)
if(strip(imp).length)
cmd ~= " -I" ~ quoteNormalizeFilename(strip(imp));
string[] globalimports = tokenizeArgs(compilerDirectories.ImpSearchPath);
foreach(gimp; globalimports)
if(strip(gimp).length)
cmd ~= " -I" ~ quoteNormalizeFilename(strip(gimp));
string[] fileImports = tokenizeArgs(fileImppath);
foreach(imp; fileImports)
if(strip(imp).length)
cmd ~= " -J" ~ quoteNormalizeFilename(strip(imp));
string[] versions = tokenizeArgs(versionids);
foreach(ver; versions)
if(strip(ver).length)
cmd ~= " -version=" ~ strip(ver);
string[] ids = tokenizeArgs(debugids);
foreach(id; ids)
if(strip(id).length)
cmd ~= " -debug=" ~ strip(id);
if(deps && !syntaxOnly)
cmd ~= " -deps=" ~ quoteNormalizeFilename(getDependenciesPath());
if(performLink)
cmd ~= linkCommandLine();
return cmd;
}
string buildGDCCommandLine(bool compile = true, bool performLink = true, bool deps = true, bool syntaxOnly = false)
{
string cmd;
if(otherDMD && program.length)
cmd = quoteNormalizeFilename(program);
else
cmd = "gdc";
if(performLink && Package.GetGlobalOptions().demangleError)
cmd = "\"$(VisualDInstallDir)pipedmd.exe\" -gdcmode " ~ cmd;
// if(lib && performLink)
// cmd ~= " -lib";
// if(multiobj)
// cmd ~= " -multiobj";
if(lib == OutputType.DLL)
cmd ~= " -mdll";
if(subsystem == Subsystem.Windows)
cmd ~= " -mwindows";
else if(subsystem == Subsystem.Console)
cmd ~= " -mconsole";
if(isX86_64)
cmd ~= " -m64";
else
cmd ~= " -m32";
if(trace)
cmd ~= " -pg";
// if(quiet)
// cmd ~= " -quiet";
if(verbose)
cmd ~= " -fd-verbose";
if(Dversion < 2)
cmd ~= " -fd-version=1";
if(Dversion >= 2 && vtls)
cmd ~= " -fd-vtls";
if(Dversion >= 2 && vgc)
cmd ~= " -fd-vgc";
if(symdebug > 0)
cmd ~= " -g";
//if(symdebug == 2)
// cmd ~= " -fdebug-c";
if(optimize)
cmd ~= " -O3";
if(useDeprecated)
cmd ~= " -fdeprecated";
if(Dversion >= 2 && noboundscheck)
cmd ~= " -fno-bounds-check";
if(useUnitTests)
cmd ~= " -funittest";
if(!useInline)
cmd ~= " -fno-inline-functions";
if(release == 1)
cmd ~= " -frelease";
else if (release == 0)
cmd ~= " -fdebug";
// if(preservePaths)
// cmd ~= " -op";
if(warnings)
cmd ~= " -Werror";
if(infowarnings)
cmd ~= " -Wall";
if(checkProperty)
cmd ~= " -fproperty";
if(genStackFrame)
cmd ~= " -fno-omit-frame-pointer";
if(cov)
cmd ~= " -fprofile-arcs -ftest-coverage";
// if(nofloat)
// cmd ~= " -nofloat";
if(ignoreUnsupportedPragmas)
cmd ~= " -fignore-unknown-pragmas";
if(doDocComments && compile && !syntaxOnly)
{
cmd ~= " -fdoc";
if(docdir.length)
cmd ~= " -fdoc-dir=" ~ quoteNormalizeFilename(docdir);
if(docname.length)
cmd ~= " -fdoc-file=" ~ quoteNormalizeFilename(docname);
}
if(doHdrGeneration && compile && !syntaxOnly)
{
cmd ~= " -fintfc";
if(hdrdir.length)
cmd ~= " -fintfc-dir=" ~ quoteNormalizeFilename(hdrdir);
if(hdrname.length)
cmd ~= " -fintfc-file=" ~ quoteNormalizeFilename(hdrname);
}
if(doXGeneration && compile && !syntaxOnly)
{
string xfile = xfilename.length ? xfilename : "$(OUTDIR)\\$(SAFEPROJECTNAME).json";
cmd ~= " -fXf=" ~ quoteNormalizeFilename(xfile);
}
string[] imports = tokenizeArgs(imppath);
foreach(imp; imports)
if(strip(imp).length)
cmd ~= " -I" ~ quoteNormalizeFilename(strip(imp));
string[] globalimports = tokenizeArgs(compilerDirectories.ImpSearchPath);
foreach(gimp; globalimports)
if(strip(gimp).length)
cmd ~= " -I" ~ quoteNormalizeFilename(strip(gimp));
string[] fileImports = tokenizeArgs(fileImppath);
foreach(imp; fileImports)
if(strip(imp).length)
cmd ~= " -J" ~ quoteNormalizeFilename(strip(imp));
string[] versions = tokenizeArgs(versionids);
foreach(ver; versions)
if(strip(ver).length)
cmd ~= " -fversion=" ~ strip(ver);
string[] ids = tokenizeArgs(debugids);
foreach(id; ids)
if(strip(id).length)
cmd ~= " -fdebug=" ~ strip(id);
if(deps && !syntaxOnly)
cmd ~= " -fdeps=" ~ quoteNormalizeFilename(getDependenciesPath());
if(performLink)
cmd ~= linkCommandLine();
return cmd;
}
string buildLDCCommandLine(bool compile = true, bool performLink = true, bool deps = true, bool syntaxOnly = false)
{
string cmd;
if(otherDMD && program.length)
cmd = quoteNormalizeFilename(program);
else
cmd = "ldc2";
if(performLink && Package.GetGlobalOptions().demangleError)
cmd = "\"$(VisualDInstallDir)pipedmd.exe\" " ~ cmd;
if(lib == OutputType.StaticLib && performLink)
cmd ~= " -lib -oq -od=\"$(IntDir)\"";
if(isX86_64)
cmd ~= " -m64";
else
cmd ~= " -m32";
if(verbose)
cmd ~= " -v";
int symdbg = symdebug;
if(symdebug == 3)
symdbg = debugEngine == 1 ? 1 : 2;
if(symdbg == 1)
cmd ~= " -g";
if(symdbg == 2)
cmd ~= " -gc";
if(optimize)
cmd ~= " -O";
if(useDeprecated)
cmd ~= " -d";
else if(errDeprecated)
cmd ~= " -de";
if(useUnitTests)
cmd ~= " -unittest";
if(release == 1)
cmd ~= " -release";
else if (release == 0)
cmd ~= " -d-debug";
if(preservePaths)
cmd ~= " -op";
if(warnings)
cmd ~= " -w";
if(infowarnings)
cmd ~= " -wi";
if(checkProperty)
cmd ~= " -property";
if(ignoreUnsupportedPragmas)
cmd ~= " -ignore";
if(doDocComments && compile && !syntaxOnly)
{
cmd ~= " -D";
if(docdir.length)
cmd ~= " -Dd=" ~ quoteNormalizeFilename(docdir);
if(docname.length)
cmd ~= " -Df=" ~ quoteNormalizeFilename(docname);
}
if(doHdrGeneration && compile && !syntaxOnly)
{
cmd ~= " -H";
if(hdrdir.length)
cmd ~= " -Hd=" ~ quoteNormalizeFilename(hdrdir);
if(hdrname.length)
cmd ~= " -Hf=" ~ quoteNormalizeFilename(hdrname);
}
if(doXGeneration && compile && !syntaxOnly)
{
cmd ~= " -X";
if(xfilename.length)
cmd ~= " -Xf=" ~ quoteNormalizeFilename(xfilename);
}
string[] imports = tokenizeArgs(imppath);
foreach(imp; imports)
if(strip(imp).length)
cmd ~= " -I=" ~ quoteNormalizeFilename(strip(imp));
string[] globalimports = tokenizeArgs(compilerDirectories.ImpSearchPath);
foreach(gimp; globalimports)
if(strip(gimp).length)
cmd ~= " -I=" ~ quoteNormalizeFilename(strip(gimp));
string[] fileImports = tokenizeArgs(fileImppath);
foreach(imp; fileImports)
if(strip(imp).length)
cmd ~= " -J=" ~ quoteNormalizeFilename(strip(imp));
string[] versions = tokenizeArgs(versionids);
foreach(ver; versions)
if(strip(ver).length)
cmd ~= " -d-version=" ~ strip(ver);
string[] ids = tokenizeArgs(debugids);
foreach(id; ids)
if(strip(id).length)
cmd ~= " -d-debug=" ~ strip(id);
if(deps && !syntaxOnly)
cmd ~= " -deps=" ~ quoteNormalizeFilename(getDependenciesPath());
if(performLink)
cmd ~= linkCommandLine();
return cmd;
}
string buildCommandLine(bool compile = true, bool performLink = true, bool deps = true, bool syntaxOnly = false)
{
if(compiler == Compiler.DMD)
return buildDMDCommandLine(compile, performLink, deps, syntaxOnly);
if(compiler == Compiler.LDC)
return buildLDCCommandLine(compile, performLink, deps, syntaxOnly);
if(!compile && performLink && lib == OutputType.StaticLib)
return buildARCommandLine();
return buildGDCCommandLine(compile, performLink, deps, syntaxOnly);
}
string buildARCommandLine()
{
string cmd = "ar cru " ~ quoteNormalizeFilename(getTargetPath());
return cmd;
}
string linkDMDCommandLine(bool mslink)
{
string cmd;
string dmdoutfile = getTargetPath();
if(usesCv2pdb())
dmdoutfile ~= "_cv";
cmd ~= getOutputFileOption(dmdoutfile);
if(mslink && compiler != Compiler.DMD)
cmd ~= " -L/MAP:\"$(INTDIR)\\$(SAFEPROJECTNAME).map\"";
else
cmd ~= " -map \"$(INTDIR)\\$(SAFEPROJECTNAME).map\"";
switch(mapverbosity)
{
case 0: cmd ~= mslink ? "" : " -L/NOMAP"; break; // actually still creates map file
case 1: cmd ~= mslink ? " -L/MAPINFO:EXPORTS" : " -L/MAP:ADDRESS"; break;
case 2: break;
case 3: cmd ~= mslink ? " -L/MAPINFO:EXPORTS,LINES" : " -L/MAP:FULL"; break;
case 4: cmd ~= mslink ? " -L/MAPINFO:EXPORTS,LINES,FIXUPS" : " -L/MAP:FULL -L/XREF"; break;
default: break;
}
if(lib != OutputType.StaticLib)
{
if(createImplib)
cmd ~= " -L/IMPLIB:$(OUTDIR)\\$(PROJECTNAME).lib";
if(objfiles.length)
cmd ~= " " ~ objfiles;
if(deffile.length)
cmd ~= " " ~ deffile;
if(libfiles.length)
cmd ~= " " ~ libfiles;
if(resfile.length)
cmd ~= " " ~ resfile;
switch(subsystem)
{
default:
case Subsystem.NotSet: break;
case Subsystem.Console: cmd ~= " -L/SUBSYSTEM:CONSOLE"; break;
case Subsystem.Windows: cmd ~= " -L/SUBSYSTEM:WINDOWS"; break;
case Subsystem.Native: cmd ~= " -L/SUBSYSTEM:NATIVE"; break;
case Subsystem.Posix: cmd ~= " -L/SUBSYSTEM:POSIX"; break;
}
if (mslink && lib == OutputType.DLL)
cmd ~= " -L/DLL";
}
return cmd;
}
string linkGDCCommandLine()
{
string cmd;
string linkeropt = " -Wl,";
string dmdoutfile = getTargetPath();
if(usesCv2pdb())
dmdoutfile ~= "_cv";
cmd ~= " -o " ~ quoteNormalizeFilename(dmdoutfile);
switch(mapverbosity)
{
case 0: // no map
break;
default:
cmd ~= linkeropt ~ "-Map=\"$(INTDIR)\\$(SAFEPROJECTNAME).map\"";
break;
}
string[] lpaths = tokenizeArgs(libpaths);
if(useStdLibPath)
lpaths ~= tokenizeArgs(isX86_64 ? compilerDirectories.LibSearchPath64 : compilerDirectories.LibSearchPath);
else
cmd ~= linkeropt ~ "-nostdlib";
foreach(lp; lpaths)
cmd ~= linkeropt ~ "-L," ~ quoteFilename(lp);
if(lib != OutputType.StaticLib)
{
// if(createImplib)
// cmd ~= " -L/IMPLIB:$(OUTDIR)\\$(PROJECTNAME).lib";
if(objfiles.length)
cmd ~= " " ~ objfiles;
if(deffile.length)
cmd ~= " " ~ deffile;
// added later in getCommandFileList
// if(libfiles.length)
// cmd ~= " " ~ libfiles;
if(resfile.length)
cmd ~= " " ~ resfile;
}
return cmd;
}
string linkLDCCommandLine()
{
string cmd;
string linkeropt = " -L=";
string dmdoutfile = getTargetPath();
if(usesCv2pdb())
dmdoutfile ~= "_cv";
cmd ~= " -of=" ~ quoteNormalizeFilename(dmdoutfile);
switch(mapverbosity)
{
case 0: // no map
break;
default:
cmd ~= linkeropt ~ "-Map=\"$(INTDIR)\\$(SAFEPROJECTNAME).map\"";
break;
}
string[] lpaths = tokenizeArgs(libpaths);
if(useStdLibPath)
lpaths ~= tokenizeArgs(isX86_64 ? compilerDirectories.LibSearchPath64 : compilerDirectories.LibSearchPath);
else
cmd ~= linkeropt ~ "-nostdlib";
foreach(lp; lpaths)
cmd ~= linkeropt ~ "-L," ~ quoteFilename(lp);
if(lib != OutputType.StaticLib)
{
// if(createImplib)
// cmd ~= " -L/IMPLIB:$(OUTDIR)\\$(PROJECTNAME).lib";
if(objfiles.length)
cmd ~= " " ~ objfiles;
if(deffile.length)
cmd ~= " " ~ deffile;
// added later in getCommandFileList
// if(libfiles.length)
// cmd ~= " " ~ libfiles;
if(resfile.length)
cmd ~= " " ~ resfile;
}
return cmd;
}
string optlinkCommandLine(string[] lnkfiles, string inioptions, string workdir, bool mslink, string plus)
{
string cmd;
string dmdoutfile = getTargetPath();
if(usesCv2pdb())
dmdoutfile ~= "_cv";
string mapfile = "\"$(INTDIR)\\$(SAFEPROJECTNAME).map\"";
static string plusList(string[] lnkfiles, string ext, string sep)
{
if(ext.length == 0 || ext[0] != '.')
ext = "." ~ ext;
string s;
foreach(i, file; lnkfiles)
{
if(toLower(extension(file)) != ext)
continue;
if(s.length > 0)
s ~= sep;
s ~= quoteNormalizeFilename(file);
}
return s;
}
inioptions ~= " " ~ additionalOptions.replace("\n", " ");
string[] opts = tokenizeArgs(inioptions, false);
opts = expandResponseFiles(opts, workdir);
string addopts;
foreach(ref opt; opts)
{
opt = unquoteArgument(opt);
if(opt.startsWith("-L"))
addopts ~= " " ~ quoteFilename(opt[2..$]);
if(opt[0] != '-')
lnkfiles ~= opt;
}
cmd ~= plusList(lnkfiles, objectFileExtension(), plus);
cmd ~= mslink ? " /OUT:" : ",";
cmd ~= quoteNormalizeFilename(dmdoutfile);
cmd ~= mslink ? " /MAP:" : ",";
cmd ~= mapfile;
cmd ~= mslink ? " " : ",";
string[] libs = tokenizeArgs(libfiles);
libs ~= "user32.lib";
libs ~= "kernel32.lib";
if(useMSVCRT())
if(std.file.exists(Package.GetGlobalOptions().getVCDir("lib\\legacy_stdio_definitions.lib", isX86_64, true)))
libs ~= "legacy_stdio_definitions.lib";
cmd ~= plusList(lnkfiles ~ libs, ".lib", plus);
string[] lpaths = tokenizeArgs(libpaths);
if(useStdLibPath)
lpaths ~= tokenizeArgs(isX86_64 ? compilerDirectories.LibSearchPath64 :
mscoff ? compilerDirectories.LibSearchPath32coff : compilerDirectories.LibSearchPath);
foreach(lp; lpaths)
if(mslink)
cmd ~= " /LIBPATH:" ~ quoteFilename(normalizeDir(unquoteArgument(lp))[0..$-1]); // avoid trailing \ for quoted files
else
cmd ~= "+" ~ quoteFilename(normalizeDir(unquoteArgument(lp))); // optlink needs trailing \
string def = deffile.length ? quoteNormalizeFilename(deffile) : plusList(lnkfiles, ".def", mslink ? " /DEF:" : plus);
string res = resfile.length ? quoteNormalizeFilename(resfile) : plusList(lnkfiles, ".res", plus);
if(mslink)
{
if(def.length)
cmd ~= " /DEF:" ~ def;
if(res.length)
cmd ~= " " ~ res;
}
else
{
if(def.length || res.length)
cmd ~= "," ~ def;
if(res.length)
cmd ~= "," ~ res;
}
// options
// "/m" to geneate map?
if(!mslink)
switch(mapverbosity)
{
case 0: cmd ~= "/NOMAP"; break; // actually still creates map file
case 1: cmd ~= "/MAP:ADDRESS"; break;
case 2: break;
case 3: cmd ~= "/MAP:FULL"; break;
case 4: cmd ~= "/MAP:FULL/XREF"; break;
default: break;
}
if(symdebug)
cmd ~= mslink ? " /DEBUG" : "/CO";
cmd ~= mslink ? " /INCREMENTAL:NO /NOLOGO" : "/NOI/DELEXE";
if(mslink)
{
switch(cRuntime)
{
case CRuntime.None: cmd ~= " /NODEFAULTLIB:libcmt"; break;
case CRuntime.StaticRelease: break;
case CRuntime.StaticDebug: cmd ~= " /NODEFAULTLIB:libcmt libcmtd.lib"; break;
case CRuntime.DynamicRelease: cmd ~= " /NODEFAULTLIB:libcmt msvcrt.lib"; break;
case CRuntime.DynamicDebug: cmd ~= " /NODEFAULTLIB:libcmt msvcrtd.lib"; break;
default: break;
}
}
if(lib != OutputType.StaticLib)
{
if(createImplib)
cmd ~= " /IMPLIB:$(OUTDIR)\\$(PROJECTNAME).lib";
switch(subsystem)
{
default:
case Subsystem.NotSet: break;
case Subsystem.Console: cmd ~= " /SUBSYSTEM:CONSOLE"; break;
case Subsystem.Windows: cmd ~= " /SUBSYSTEM:WINDOWS"; break;
case Subsystem.Native: cmd ~= " /SUBSYSTEM:NATIVE"; break;
case Subsystem.Posix: cmd ~= " /SUBSYSTEM:POSIX"; break;
}
}
if (mslink && lib == OutputType.DLL)
cmd ~= " /DLL";
cmd ~= addopts;
return cmd;
}
string linkCommandLine()
{
if(compiler == Compiler.GDC)
return linkGDCCommandLine();
else if(isLDCforMinGW())
return linkLDCCommandLine();
else if(compiler == Compiler.LDC)
return linkDMDCommandLine(true); // MS link
else
return linkDMDCommandLine(isX86_64);
}
string getOutputDirOption()
{
switch(compiler)
{
default:
case Compiler.DMD: return " -od" ~ quoteFilename(objdir);
case Compiler.LDC: return " -od=" ~ quoteFilename(objdir);
case Compiler.GDC: return ""; // does not work with GDC
}
}
string getOutputFileOption(string file)
{
switch(compiler)
{
default:
case Compiler.DMD: return " -of" ~ quoteFilename(file);
case Compiler.LDC: return " -of=" ~ quoteFilename(file);
case Compiler.GDC: return " -o " ~ quoteFilename(file);
}
}
string getCppCommandLine(string file, bool setenv)
{
int cc; // 0-3 for dmc,cl,clang,gdc
switch(compiler)
{
default:
case Compiler.DMD: cc = (isX86_64 || mscoff ? 1 : 0); break;
case Compiler.LDC: cc = (isLDCforMinGW() ? 2 : 1); break;
case Compiler.GDC: cc = 3; break;
}
string cmd = cccmd;
if(cc == 1 && setenv)
{
if (std.file.exists(Package.GetGlobalOptions().VCInstallDir ~ "vcvarsall.bat"))
cmd = `call "%VCINSTALLDIR%\vcvarsall.bat" ` ~ (isX86_64 ? "x86_amd64" : "x86") ~ "\n" ~ cmd;
else if (std.file.exists(Package.GetGlobalOptions().VCInstallDir ~ r"Auxiliary\Build\vcvarsall.bat"))
cmd = `call "%VCINSTALLDIR%\Auxiliary\Build\vcvarsall.bat" ` ~ (isX86_64 ? "x86_amd64" : "x86") ~ "\n" ~ cmd;
}
static string[4] outObj = [ " -o", " -Fo", " -o", " -o " ];
if (file.length)
cmd ~= outObj[cc] ~ quoteFilename(file);
if (!ccTransOpt)
return cmd;
static string[4] dbg = [ " -g", " -Z7", " -g", " -g" ];
if(symdebug)
cmd ~= dbg[cc];
if (release == 1)
cmd ~= " -DNDEBUG";
static string[4] opt = [ " -O", " -Ox", " -O3", " -O3" ];
if(optimize)
cmd ~= opt[cc];
if (quiet && cc == 1)
cmd ~= " /NOLOGO";
return cmd;
}
string getDependenciesFileOption(string file)
{
if(compiler == Compiler.GDC)
return " -fdeps=" ~ quoteFilename(file);
else
return " -deps=" ~ quoteFilename(file);
}
string getAdditionalLinkOptions()
{
if(compiler != Compiler.DMD && lib == OutputType.StaticLib)
return ""; // no options to ar
return additionalOptions.replace("\n", " "); // always filtered through compiler
}
string getTargetPath()
{
if(exefile.length)
return normalizePath(exefile);
if(lib == OutputType.StaticLib)
return "$(OutDir)\\$(ProjectName).lib";
return "$(OutDir)\\$(ProjectName).exe";
}
string getDependenciesPath()
{
return normalizeDir(objdir) ~ "$(ProjectName).dep";
}
string getCommandLinePath()
{
return normalizeDir(objdir) ~ "$(ProjectName)." ~ kCmdLogFileExtension;
}
// "linking" includes building library (through ar with GDC, internal with DMD)
bool doSeparateLink()
{
if(compilationModel == ProjectOptions.kSeparateCompileOnly)
return false;
bool separateLink = compilationModel == ProjectOptions.kSeparateCompileAndLink;
if (compiler == Compiler.GDC && lib == OutputType.StaticLib)
separateLink = true;
if (compiler == Compiler.DMD && lib != OutputType.StaticLib)
{
if(Package.GetGlobalOptions().optlinkDeps)
separateLink = true;
else if(isX86_64 && Package.GetGlobalOptions().DMD.overrideIni64)
separateLink = true;
else if(!isX86_64 && mscoff && Package.GetGlobalOptions().DMD.overrideIni32coff)
separateLink = true;
}
return separateLink;
}
bool callLinkerDirectly()
{
bool dmdlink = compiler == Compiler.DMD && doSeparateLink() && lib != OutputType.StaticLib;
return dmdlink; // && !isX86_64;
}
bool usesCv2pdb()
{
if(compiler == Compiler.DMD && (isX86_64 || mscoff))
return false; // should generate correct debug info directly
if (!symdebug || lib == OutputType.StaticLib)
return false;
if (runCv2pdb == 2)
return true;
return (runCv2pdb == 1 && debugEngine != 1); // not for mago
}
string appendCv2pdb()
{
if(usesCv2pdb())
{
string target = getTargetPath();
string cmd = quoteFilename(pathCv2pdb);
if(Dversion < 2)
cmd ~= " -D" ~ to!(string)(Dversion) ~ " ";
else if(cv2pdbPre2043)
cmd ~= " -D2.001";
if(cv2pdbEnumType)
cmd ~= " -e";
if(cv2pdbNoDemangle)
cmd ~= " -n";
if(cv2pdbOptions.length)
cmd ~= " " ~ cv2pdbOptions;
cmd ~= " " ~ quoteFilename(target ~ "_cv") ~ " " ~ quoteFilename(target);
return cmd;
}
return "";
}
string replaceEnvironment(string cmd, Config config, string inputfile = "", string outputfile = "")
{
if(indexOf(cmd, '$') < 0)
return cmd;
string configname = config.mName;
string projectpath = config.GetProjectPath();
string safeprojectpath = projectpath.replace(" ", "_");
string[string] replacements;
string solutionpath = GetSolutionFilename();
if(solutionpath.length)
addFileMacros(solutionpath, "SOLUTION", replacements);
replacements["PLATFORMNAME"] = config.mPlatform;
replacements["PLATFORM"] = config.mPlatform;
addFileMacros(projectpath, "PROJECT", replacements);
replacements["PROJECTNAME"] = config.GetProjectName();
addFileMacros(safeprojectpath, "SAFEPROJECT", replacements);
replacements["SAFEPROJECTNAME"] = config.GetProjectName().replace(" ", "_");
addFileMacros(inputfile.length ? inputfile : projectpath, "INPUT", replacements);
replacements["CONFIGURATIONNAME"] = configname;
replacements["CONFIGURATION"] = configname;
replacements["OUTDIR"] = normalizePath(outdir);
replacements["INTDIR"] = normalizePath(objdir);
Package.GetGlobalOptions().addReplacements(replacements);
replacements["CC"] = config.GetCppCompiler();
string targetpath = outputfile.length ? outputfile : getTargetPath();
string target = replaceMacros(targetpath, replacements);
addFileMacros(target, "TARGET", replacements);
return replaceMacros(cmd, replacements);
}
void writeXML(xml.Element elem)
{
elem ~= new xml.Element("obj", toElem(obj));
elem ~= new xml.Element("link", toElem(link));
elem ~= new xml.Element("lib", toElem(lib));
elem ~= new xml.Element("subsystem", toElem(subsystem));
elem ~= new xml.Element("multiobj", toElem(multiobj));
elem ~= new xml.Element("singleFileCompilation", toElem(compilationModel));
elem ~= new xml.Element("oneobj", toElem(oneobj));
elem ~= new xml.Element("mscoff", toElem(mscoff));
elem ~= new xml.Element("trace", toElem(trace));
elem ~= new xml.Element("quiet", toElem(quiet));
elem ~= new xml.Element("verbose", toElem(verbose));
elem ~= new xml.Element("vtls", toElem(vtls));
elem ~= new xml.Element("vgc", toElem(vgc));
elem ~= new xml.Element("symdebug", toElem(symdebug));
elem ~= new xml.Element("optimize", toElem(optimize));
elem ~= new xml.Element("cpu", toElem(cpu));
elem ~= new xml.Element("isX86_64", toElem(isX86_64));
elem ~= new xml.Element("isLinux", toElem(isLinux));
elem ~= new xml.Element("isOSX", toElem(isOSX));
elem ~= new xml.Element("isWindows", toElem(isWindows));
elem ~= new xml.Element("isFreeBSD", toElem(isFreeBSD));
elem ~= new xml.Element("isSolaris", toElem(isSolaris));
elem ~= new xml.Element("scheduler", toElem(scheduler));
elem ~= new xml.Element("useDeprecated", toElem(useDeprecated));
elem ~= new xml.Element("errDeprecated", toElem(errDeprecated));
elem ~= new xml.Element("useAssert", toElem(useAssert));
elem ~= new xml.Element("useInvariants", toElem(useInvariants));
elem ~= new xml.Element("useIn", toElem(useIn));
elem ~= new xml.Element("useOut", toElem(useOut));
elem ~= new xml.Element("useArrayBounds", toElem(useArrayBounds));
elem ~= new xml.Element("noboundscheck", toElem(noboundscheck));
elem ~= new xml.Element("useSwitchError", toElem(useSwitchError));
elem ~= new xml.Element("useUnitTests", toElem(useUnitTests));
elem ~= new xml.Element("useInline", toElem(useInline));
elem ~= new xml.Element("release", toElem(release));
elem ~= new xml.Element("preservePaths", toElem(preservePaths));
elem ~= new xml.Element("warnings", toElem(warnings));
elem ~= new xml.Element("infowarnings", toElem(infowarnings));
elem ~= new xml.Element("checkProperty", toElem(checkProperty));
elem ~= new xml.Element("genStackFrame", toElem(genStackFrame));
elem ~= new xml.Element("pic", toElem(pic));
elem ~= new xml.Element("cov", toElem(cov));
elem ~= new xml.Element("nofloat", toElem(nofloat));
elem ~= new xml.Element("Dversion", toElem(Dversion));
elem ~= new xml.Element("ignoreUnsupportedPragmas", toElem(ignoreUnsupportedPragmas));
elem ~= new xml.Element("allinst", toElem(allinst));
elem ~= new xml.Element("stackStomp", toElem(stackStomp));
elem ~= new xml.Element("compiler", toElem(compiler));
elem ~= new xml.Element("otherDMD", toElem(otherDMD));
elem ~= new xml.Element("cccmd", toElem(cccmd));
elem ~= new xml.Element("ccTransOpt", toElem(ccTransOpt));
elem ~= new xml.Element("program", toElem(program));
elem ~= new xml.Element("imppath", toElem(imppath));
elem ~= new xml.Element("fileImppath", toElem(fileImppath));
elem ~= new xml.Element("outdir", toElem(outdir));
elem ~= new xml.Element("objdir", toElem(objdir));
elem ~= new xml.Element("objname", toElem(objname));
elem ~= new xml.Element("libname", toElem(libname));
elem ~= new xml.Element("doDocComments", toElem(doDocComments));
elem ~= new xml.Element("docdir", toElem(docdir));
elem ~= new xml.Element("docname", toElem(docname));
elem ~= new xml.Element("modules_ddoc", toElem(modules_ddoc));
elem ~= new xml.Element("ddocfiles", toElem(ddocfiles));
elem ~= new xml.Element("doHdrGeneration", toElem(doHdrGeneration));
elem ~= new xml.Element("hdrdir", toElem(hdrdir));
elem ~= new xml.Element("hdrname", toElem(hdrname));
elem ~= new xml.Element("doXGeneration", toElem(doXGeneration));
elem ~= new xml.Element("xfilename", toElem(xfilename));
elem ~= new xml.Element("debuglevel", toElem(debuglevel));
elem ~= new xml.Element("debugids", toElem(debugids));
elem ~= new xml.Element("versionlevel", toElem(versionlevel));
elem ~= new xml.Element("versionids", toElem(versionids));
elem ~= new xml.Element("dump_source", toElem(dump_source));
elem ~= new xml.Element("mapverbosity", toElem(mapverbosity));
elem ~= new xml.Element("createImplib", toElem(createImplib));
elem ~= new xml.Element("defaultlibname", toElem(defaultlibname));
elem ~= new xml.Element("debuglibname", toElem(debuglibname));
elem ~= new xml.Element("moduleDepsFile", toElem(moduleDepsFile));
elem ~= new xml.Element("run", toElem(run));
elem ~= new xml.Element("runargs", toElem(runargs));
elem ~= new xml.Element("runCv2pdb", toElem(runCv2pdb));
elem ~= new xml.Element("pathCv2pdb", toElem(pathCv2pdb));
elem ~= new xml.Element("cv2pdbPre2043", toElem(cv2pdbPre2043));
elem ~= new xml.Element("cv2pdbNoDemangle", toElem(cv2pdbNoDemangle));
elem ~= new xml.Element("cv2pdbEnumType", toElem(cv2pdbEnumType));
elem ~= new xml.Element("cv2pdbOptions", toElem(cv2pdbOptions));
// Linker stuff
elem ~= new xml.Element("objfiles", toElem(objfiles));
elem ~= new xml.Element("linkswitches", toElem(linkswitches));
elem ~= new xml.Element("libfiles", toElem(libfiles));
elem ~= new xml.Element("libpaths", toElem(libpaths));
elem ~= new xml.Element("deffile", toElem(deffile));
elem ~= new xml.Element("resfile", toElem(resfile));
elem ~= new xml.Element("exefile", toElem(exefile));
elem ~= new xml.Element("useStdLibPath", toElem(useStdLibPath));
elem ~= new xml.Element("cRuntime", toElem(cRuntime));
elem ~= new xml.Element("privatePhobos", toElem(privatePhobos));
elem ~= new xml.Element("additionalOptions", toElem(additionalOptions));
elem ~= new xml.Element("preBuildCommand", toElem(preBuildCommand));
elem ~= new xml.Element("postBuildCommand", toElem(postBuildCommand));
elem ~= new xml.Element("filesToClean", toElem(filesToClean));
}
void writeDebuggerXML(xml.Element elem)
{
elem ~= new xml.Element("debugtarget", toElem(debugtarget));
elem ~= new xml.Element("debugarguments", toElem(debugarguments));
elem ~= new xml.Element("debugworkingdir", toElem(debugworkingdir));
elem ~= new xml.Element("debugattach", toElem(debugattach));
elem ~= new xml.Element("debugremote", toElem(debugremote));
elem ~= new xml.Element("debugEngine", toElem(debugEngine));
elem ~= new xml.Element("debugStdOutToOutputWindow", toElem(debugStdOutToOutputWindow));
elem ~= new xml.Element("pauseAfterRunning", toElem(pauseAfterRunning));
}
void parseXML(xml.Element elem)
{
fromElem(elem, "obj", obj);
fromElem(elem, "link", link);
fromElem(elem, "lib", lib);
fromElem(elem, "subsystem", subsystem);
fromElem(elem, "multiobj", multiobj);
fromElem(elem, "singleFileCompilation", compilationModel);
fromElem(elem, "oneobj", oneobj);
fromElem(elem, "mscoff", mscoff);
fromElem(elem, "trace", trace);
fromElem(elem, "quiet", quiet);
fromElem(elem, "verbose", verbose);
fromElem(elem, "vtls", vtls);
fromElem(elem, "vgc", vgc);
fromElem(elem, "symdebug", symdebug);
fromElem(elem, "optimize", optimize);
fromElem(elem, "cpu", cpu);
fromElem(elem, "isX86_64", isX86_64);
fromElem(elem, "isLinux", isLinux);
fromElem(elem, "isOSX", isOSX);
fromElem(elem, "isWindows", isWindows);
fromElem(elem, "isFreeBSD", isFreeBSD);
fromElem(elem, "isSolaris", isSolaris);
fromElem(elem, "scheduler", scheduler);
fromElem(elem, "useDeprecated", useDeprecated);
fromElem(elem, "errDeprecated", errDeprecated);
fromElem(elem, "useAssert", useAssert);
fromElem(elem, "useInvariants", useInvariants);
fromElem(elem, "useIn", useIn);
fromElem(elem, "useOut", useOut);
fromElem(elem, "useArrayBounds", useArrayBounds);
fromElem(elem, "noboundscheck", noboundscheck);
fromElem(elem, "useSwitchError", useSwitchError);
fromElem(elem, "useUnitTests", useUnitTests);
fromElem(elem, "useInline", useInline);
fromElem(elem, "release", release);
fromElem(elem, "preservePaths", preservePaths);
fromElem(elem, "warnings", warnings);
fromElem(elem, "infowarnings", infowarnings);
fromElem(elem, "checkProperty", checkProperty);
fromElem(elem, "genStackFrame", genStackFrame);
fromElem(elem, "pic", pic);
fromElem(elem, "cov", cov);
fromElem(elem, "nofloat", nofloat);
fromElem(elem, "Dversion", Dversion);
fromElem(elem, "ignoreUnsupportedPragmas", ignoreUnsupportedPragmas);
fromElem(elem, "allinst", allinst);
fromElem(elem, "stackStomp", stackStomp);
fromElem(elem, "compiler", compiler);
fromElem(elem, "otherDMD", otherDMD);
fromElem(elem, "cccmd", cccmd);
fromElem(elem, "ccTransOpt", ccTransOpt);
fromElem(elem, "program", program);
fromElem(elem, "imppath", imppath);
fromElem(elem, "fileImppath", fileImppath);
fromElem(elem, "outdir", outdir);
fromElem(elem, "objdir", objdir);
fromElem(elem, "objname", objname);
fromElem(elem, "libname", libname);
fromElem(elem, "doDocComments", doDocComments);
fromElem(elem, "docdir", docdir);
fromElem(elem, "docname", docname);
fromElem(elem, "modules_ddoc", modules_ddoc);
fromElem(elem, "ddocfiles", ddocfiles);
fromElem(elem, "doHdrGeneration", doHdrGeneration);
fromElem(elem, "hdrdir", hdrdir);
fromElem(elem, "hdrname", hdrname);
fromElem(elem, "doXGeneration", doXGeneration);
fromElem(elem, "xfilename", xfilename);
fromElem(elem, "debuglevel", debuglevel);
fromElem(elem, "debugids", debugids);
fromElem(elem, "versionlevel", versionlevel);
fromElem(elem, "versionids", versionids);
fromElem(elem, "dump_source", dump_source);
fromElem(elem, "mapverbosity", mapverbosity);
fromElem(elem, "createImplib", createImplib);
fromElem(elem, "defaultlibname", defaultlibname);
fromElem(elem, "debuglibname", debuglibname);
fromElem(elem, "moduleDepsFile", moduleDepsFile);
fromElem(elem, "run", run);
fromElem(elem, "runargs", runargs);
fromElem(elem, "runCv2pdb", runCv2pdb);
fromElem(elem, "pathCv2pdb", pathCv2pdb);
fromElem(elem, "cv2pdbPre2043", cv2pdbPre2043);
fromElem(elem, "cv2pdbNoDemangle", cv2pdbNoDemangle);
fromElem(elem, "cv2pdbEnumType", cv2pdbEnumType);
fromElem(elem, "cv2pdbOptions", cv2pdbOptions);
// Linker stuff
fromElem(elem, "objfiles", objfiles);
fromElem(elem, "linkswitches", linkswitches);
fromElem(elem, "libfiles", libfiles);
fromElem(elem, "libpaths", libpaths);
fromElem(elem, "deffile", deffile);
fromElem(elem, "resfile", resfile);
fromElem(elem, "exefile", exefile);
fromElem(elem, "useStdLibPath", useStdLibPath);
fromElem(elem, "cRuntime", cRuntime);
fromElem(elem, "privatePhobos", privatePhobos);
fromElem(elem, "additionalOptions", additionalOptions);
fromElem(elem, "preBuildCommand", preBuildCommand);
fromElem(elem, "postBuildCommand", postBuildCommand);
fromElem(elem, "debugtarget", debugtarget);
fromElem(elem, "debugarguments", debugarguments);
fromElem(elem, "debugworkingdir", debugworkingdir);
fromElem(elem, "debugattach", debugattach);
fromElem(elem, "debugremote", debugremote);
fromElem(elem, "debugEngine", debugEngine);
fromElem(elem, "debugStdOutToOutputWindow", debugStdOutToOutputWindow);
fromElem(elem, "pauseAfterRunning", pauseAfterRunning);
fromElem(elem, "filesToClean", filesToClean);
}
};
class ConfigProvider : DisposingComObject,
// IVsExtensibleObject,
IVsCfgProvider2,
IVsProjectCfgProvider
{
this(Project prj)
{
mProject = prj;
// mConfigs ~= addref(new Config(this, "Debug"));
// mConfigs ~= addref(new Config(this, "Release"));
}
Config addConfig(string name, string platform)
{
Config cfg = newCom!Config(this, name, platform);
mConfigs ~= addref(cfg);
return cfg;
}
void addConfigsToXml(xml.Document doc)
{
foreach(Config cfg; mConfigs)
{
auto config = new xml.Element("Config");
xml.setAttribute(config, "name", cfg.mName);
xml.setAttribute(config, "platform", cfg.mPlatform);
ProjectOptions opt = cfg.GetProjectOptions();
opt.writeXML(config);
doc ~= config;
}
}
void addMSBuildConfigsToXml(xml.Document doc)
{
foreach(Config cfg; mConfigs)
{
auto config = new xml.Element("PropertyGroup");
string cond = "'$(Configuration)|$(Platform)'=='" ~ cfg.mName ~ "|" ~ cfg.mPlatform ~ "'";
xml.setAttribute(config, "Condition", cond);
ProjectOptions opt = cfg.GetProjectOptions();
opt.writeXML(config);
doc ~= config;
}
}
override void Dispose()
{
foreach(Config cfg; mConfigs)
release(cfg);
mConfigs = mConfigs.init;
}
override HRESULT QueryInterface(in IID* riid, void** pvObject)
{
//mixin(LogCallMix);
if(queryInterface!(IVsCfgProvider) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsCfgProvider2) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsProjectCfgProvider) (this, riid, pvObject))
return S_OK;
return super.QueryInterface(riid, pvObject);
}
// IVsCfgProvider
override int GetCfgs(
/* [in] */ in ULONG celt,
/* [size_is][out][in] */ IVsCfg *rgpcfg,
/* [optional][out] */ ULONG *pcActual,
/* [optional][out] */ VSCFGFLAGS *prgfFlags)
{
debug(FULL_DBG) mixin(LogCallMix);
for(int i = 0; i < celt && i < mConfigs.length; i++)
rgpcfg[i] = addref(mConfigs[i]);
if(pcActual)
*pcActual = mConfigs.length;
if(prgfFlags)
*prgfFlags = cast(VSCFGFLAGS) 0;
return S_OK;
}
// IVsProjectCfgProvider
override int OpenProjectCfg(
/* [in] */ in wchar* szProjectCfgCanonicalName,
/* [out] */ IVsProjectCfg *ppIVsProjectCfg)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
override int get_UsesIndependentConfigurations(
/* [out] */ BOOL *pfUsesIndependentConfigurations)
{
logCall("%s.get_UsesIndependentConfigurations(pfUsesIndependentConfigurations=%s)", this, _toLog(pfUsesIndependentConfigurations));
return returnError(E_NOTIMPL);
}
// IVsCfgProvider2
override int GetCfgNames(
/* [in] */ in ULONG celt,
/* [size_is][out][in] */ BSTR *rgbstr,
/* [optional][out] */ ULONG *pcActual)
{
mixin(LogCallMix);
int j, cnt = 0;
for(int i = 0; i < mConfigs.length; i++)
{
for(j = 0; j < i; j++)
if(mConfigs[i].mName == mConfigs[j].mName)
break;
if(j >= i)
{
if(cnt < celt && rgbstr)
rgbstr[cnt] = allocBSTR(mConfigs[i].mName);
cnt++;
}
}
if(pcActual)
*pcActual = cnt;
return S_OK;
}
override int GetPlatformNames(
/* [in] */ in ULONG celt,
/* [size_is][out][in] */ BSTR *rgbstr,
/* [optional][out] */ ULONG *pcActual)
{
mixin(LogCallMix);
int j, cnt = 0;
for(int i = 0; i < mConfigs.length; i++)
{
for(j = 0; j < i; j++)
if(mConfigs[i].mPlatform == mConfigs[j].mPlatform)
break;
if(j >= i)
{
if(cnt < celt)
rgbstr[cnt] = allocBSTR(mConfigs[i].mPlatform);
cnt++;
}
}
if(pcActual)
*pcActual = cnt;
return S_OK;
}
override int GetCfgOfName(
/* [in] */ in wchar* pszCfgName,
/* [in] */ in wchar* pszPlatformName,
/* [out] */ IVsCfg *ppCfg)
{
mixin(LogCallMix);
string cfg = to_string(pszCfgName);
string plat = to_string(pszPlatformName);
for(int i = 0; i < mConfigs.length; i++)
if((plat == "" || plat == mConfigs[i].mPlatform) &&
(cfg == "" || mConfigs[i].mName == cfg))
{
*ppCfg = addref(mConfigs[i]);
return S_OK;
}
return returnError(E_INVALIDARG);
}
extern(D) void NotifyConfigEvent(void delegate(IVsCfgProviderEvents) dg)
{
// make a copy of the callback list, because it might change during execution of the callback
IVsCfgProviderEvents[] cbs;
foreach(cb; mCfgProviderEvents)
cbs ~= cb;
foreach(cb; cbs)
dg(cb);
}
override int AddCfgsOfCfgName(
/* [in] */ in wchar* pszCfgName,
/* [in] */ in wchar* pszCloneCfgName,
/* [in] */ in BOOL fPrivate)
{
mixin(LogCallMix);
string strCfgName = to_string(pszCfgName);
string strCloneCfgName = to_string(pszCloneCfgName);
// Check if the CfgName already exists and that CloneCfgName exists
Config clonecfg;
foreach(c; mConfigs)
if(c.mName == strCfgName)
return returnError(E_FAIL);
else if(c.mName == strCloneCfgName)
clonecfg = c;
if(strCloneCfgName.length && !clonecfg)
return returnError(E_FAIL);
//if(!mProject.QueryEditProjectFile())
// return returnError(E_ABORT);
// copy configs for all platforms
int cnt = mConfigs.length;
for(int i = 0; i < cnt; i++)
if(mConfigs[i].mName == strCloneCfgName)
{
Config config = newCom!Config(this, strCfgName, mConfigs[i].mPlatform, mConfigs[i].mProjectOptions);
mConfigs ~= addref(config);
}
NotifyConfigEvent(delegate (IVsCfgProviderEvents cb) { cb.OnCfgNameAdded(pszCfgName); });
mProject.GetProjectNode().SetProjectFileDirty(true); // dirty the project file
return S_OK;
}
override int DeleteCfgsOfCfgName(
/* [in] */ in wchar* pszCfgName)
{
logCall("%s.DeleteCfgsOfCfgName(pszCfgName=%s)", this, _toLog(pszCfgName));
string strCfgName = to_string(pszCfgName);
int cnt = mConfigs.length;
for(int i = 0; i < mConfigs.length; )
if(mConfigs[i].mName == strCfgName)
mConfigs = mConfigs[0..i] ~ mConfigs[i+1..$];
else
i++;
if(cnt == mConfigs.length)
return returnError(E_FAIL);
NotifyConfigEvent(delegate (IVsCfgProviderEvents cb) { cb.OnCfgNameDeleted(pszCfgName); });
mProject.GetProjectNode().SetProjectFileDirty(true); // dirty the project file
return S_OK;
}
override int RenameCfgsOfCfgName(
/* [in] */ in wchar* pszOldName,
/* [in] */ in wchar* pszNewName)
{
mixin(LogCallMix2);
string strOldName = to_string(pszOldName);
string strNewName = to_string(pszNewName);
Config config;
foreach(c; mConfigs)
if(c.mName == strNewName)
return returnError(E_FAIL);
else if(c.mName == strOldName)
config = c;
if(!config)
return returnError(E_FAIL);
//if(!mProject.QueryEditProjectFile())
// return returnError(E_ABORT);
foreach(c; mConfigs)
if(c.mName == strOldName)
c.mName = strNewName;
NotifyConfigEvent(delegate (IVsCfgProviderEvents cb) { cb.OnCfgNameRenamed(pszOldName, pszNewName); });
mProject.GetProjectNode().SetProjectFileDirty(true); // dirty the project file
return S_OK;
}
override int AddCfgsOfPlatformName(
/* [in] */ in wchar* pszPlatformName,
/* [in] */ in wchar* pszClonePlatformName)
{
logCall("%s.AddCfgsOfPlatformName(pszPlatformName=%s,pszClonePlatformName=%s)", this, _toLog(pszPlatformName), _toLog(pszClonePlatformName));
string strPlatformName = to_string(pszPlatformName);
string strClonePlatformName = to_string(pszClonePlatformName);
// Check if the CfgName already exists and that CloneCfgName exists
Config clonecfg;
foreach(c; mConfigs)
if(c.mPlatform == strPlatformName)
return returnError(E_FAIL);
else if(c.mPlatform == strClonePlatformName)
clonecfg = c;
if(strClonePlatformName.length && !clonecfg)
return returnError(E_FAIL);
//if(!mProject.QueryEditProjectFile())
// return returnError(E_ABORT);
int cnt = mConfigs.length;
for(int i = 0; i < cnt; i++)
if(mConfigs[i].mPlatform == strClonePlatformName)
{
Config config = newCom!Config(this, mConfigs[i].mName, strPlatformName, mConfigs[i].mProjectOptions);
mConfigs ~= addref(config);
}
NotifyConfigEvent(delegate (IVsCfgProviderEvents cb) { cb.OnPlatformNameAdded(pszPlatformName); });
mProject.GetProjectNode().SetProjectFileDirty(true); // dirty the project file
return S_OK;
}
override int DeleteCfgsOfPlatformName(
/* [in] */ in wchar* pszPlatformName)
{
logCall("%s.DeleteCfgsOfPlatformName(pszPlatformName=%s)", this, _toLog(pszPlatformName));
string strPlatformName = to_string(pszPlatformName);
int cnt = mConfigs.length;
for(int i = 0; i < mConfigs.length; )
if(mConfigs[i].mPlatform == strPlatformName)
mConfigs = mConfigs[0..i] ~ mConfigs[i+1..$];
else
i++;
if(cnt == mConfigs.length)
return returnError(E_FAIL);
NotifyConfigEvent(delegate (IVsCfgProviderEvents cb) { cb.OnPlatformNameDeleted(pszPlatformName); });
mProject.GetProjectNode().SetProjectFileDirty(true); // dirty the project file
return S_OK;
}
override int GetSupportedPlatformNames(
/* [in] */ in ULONG celt,
/* [size_is][out][in] */ BSTR *rgbstr,
/* [optional][out] */ ULONG *pcActual)
{
mixin(LogCallMix);
for(int cnt = 0; cnt < kPlatforms.length && cnt < celt && rgbstr; cnt++)
rgbstr[cnt] = allocBSTR(kPlatforms[cnt]);
if(pcActual)
*pcActual = kPlatforms.length;
return S_OK;
}
override int GetCfgProviderProperty(
/* [in] */ in VSCFGPROPID propid,
/* [out] */ VARIANT *var)
{
mixin(LogCallMix);
switch(propid)
{
case VSCFGPROPID_SupportsCfgAdd:
case VSCFGPROPID_SupportsCfgDelete:
case VSCFGPROPID_SupportsCfgRename:
case VSCFGPROPID_SupportsPlatformAdd:
case VSCFGPROPID_SupportsPlatformDelete:
var.vt = VT_BOOL;
var.boolVal = true;
return S_OK;
default:
break;
}
return returnError(E_NOTIMPL);
}
override int AdviseCfgProviderEvents(
/* [in] */ IVsCfgProviderEvents pCPE,
/* [out] */ VSCOOKIE *pdwCookie)
{
mixin(LogCallMix);
*pdwCookie = ++mLastCfgProviderEventsCookie;
mCfgProviderEvents[mLastCfgProviderEventsCookie] = addref(pCPE);
return S_OK;
}
override int UnadviseCfgProviderEvents(
/* [in] */ in VSCOOKIE dwCookie)
{
logCall("%s.UnadviseCfgProviderEvents(dwCookie=%s)", this, _toLog(dwCookie));
if(dwCookie in mCfgProviderEvents)
{
release(mCfgProviderEvents[dwCookie]);
mCfgProviderEvents.remove(dwCookie);
return S_OK;
}
return returnError(E_FAIL);
}
private:
Project mProject;
Config[] mConfigs;
IVsCfgProviderEvents[VSCOOKIE] mCfgProviderEvents;
VSCOOKIE mLastCfgProviderEventsCookie;
}
interface ConfigModifiedListener : IUnknown
{
void OnConfigModified();
}
class Config : DisposingComObject,
IVsProjectCfg2,
IVsDebuggableProjectCfg,
IVsDebuggableProjectCfg2,
IVsBuildableProjectCfg,
IVsQueryDebuggableProjectCfg,
IVsProfilableProjectCfg,
ISpecifyPropertyPages
{
static const GUID iid = { 0x402744c1, 0xe382, 0x4877, [ 0x9e, 0x38, 0x26, 0x9c, 0xb7, 0xa3, 0xb8, 0x9d ] };
this(ConfigProvider provider, string name, string platform, ProjectOptions opts = null)
{
mProvider = provider;
if (opts)
{
mProjectOptions = clone(opts);
//mProjectOptions.setDebug(name == "Debug");
mProjectOptions.setX64(platform == "x64");
}
else
mProjectOptions = new ProjectOptions(name.startsWith("Debug"), platform == "x64");
mBuilder = new CBuilderThread(this);
version(hasOutputGroup)
mOutputGroup = newCom!VsOutputGroup(this);
mName = name;
mPlatform = platform;
}
override void Dispose()
{
mBuilder.Dispose();
}
override ULONG AddRef()
{
return super.AddRef();
}
override ULONG Release()
{
return super.Release();
}
override HRESULT QueryInterface(in IID* riid, void** pvObject)
{
//mixin(LogCallMix);
if(queryInterface!(Config) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsCfg) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsProjectCfg) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsProjectCfg2) (this, riid, pvObject))
return S_OK;
if(queryInterface!(ISpecifyPropertyPages) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsDebuggableProjectCfg) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsDebuggableProjectCfg2) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsBuildableProjectCfg) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsQueryDebuggableProjectCfg) (this, riid, pvObject))
return S_OK;
version(hasProfilableConfig)
if(queryInterface!(IVsProfilableProjectCfg) (this, riid, pvObject))
return S_OK;
return super.QueryInterface(riid, pvObject);
}
// ISpecifyPropertyPages
override int GetPages( /* [out] */ CAUUID *pPages)
{
mixin(LogCallMix);
CHierNode[] nodes;
CFileNode file;
CProjectNode proj;
if(GetProject().GetSelectedNodes(nodes) == S_OK)
{
foreach(n; nodes)
{
if(!file)
file = cast(CFileNode) n;
if(!proj)
proj = cast(CProjectNode) n;
}
}
if (!proj)
return PropertyPageFactory.GetFilePages(pPages);
return PropertyPageFactory.GetProjectPages(pPages, false);
}
// IVsCfg
override int get_DisplayName(BSTR *pbstrDisplayName)
{
logCall("%s.get_DisplayName(pbstrDisplayName=%s)", this, _toLog(pbstrDisplayName));
*pbstrDisplayName = allocBSTR(getCfgName());
return S_OK;
}
override int get_IsDebugOnly(BOOL *pfIsDebugOnly)
{
logCall("%s.get_IsDebugOnly(pfIsDebugOnly=%s)", this, _toLog(pfIsDebugOnly));
*pfIsDebugOnly = mProjectOptions.release != 1;
return S_OK;
}
override int get_IsReleaseOnly(BOOL *pfIsReleaseOnly)
{
logCall("%s.get_IsReleaseOnly(pfIsReleaseOnly=%s)", this, _toLog(pfIsReleaseOnly));
*pfIsReleaseOnly = mProjectOptions.release == 1;
return S_OK;
}
// IVsProjectCfg
override int EnumOutputs(IVsEnumOutputs *ppIVsEnumOutputs)
{
mixin(LogCallMix);
*ppIVsEnumOutputs = addref(newCom!DEnumOutputs(this, 0));
return S_OK;
}
override int OpenOutput(in wchar* szOutputCanonicalName, IVsOutput *ppIVsOutput)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
override int get_ProjectCfgProvider(/* [out] */ IVsProjectCfgProvider *ppIVsProjectCfgProvider)
{
mixin(LogCallMix);
*ppIVsProjectCfgProvider = addref(mProvider);
return S_OK;
}
override int get_BuildableProjectCfg( /* [out] */ IVsBuildableProjectCfg *ppIVsBuildableProjectCfg)
{
mixin(LogCallMix);
*ppIVsBuildableProjectCfg = addref(this);
return S_OK;
}
override int get_CanonicalName( /* [out] */ BSTR *pbstrCanonicalName)
{
logCall("get_CanonicalName(pbstrCanonicalName=%s)", _toLog(pbstrCanonicalName));
*pbstrCanonicalName = allocBSTR(getName());
return S_OK;
}
override int get_Platform( /* [out] */ GUID *pguidPlatform)
{
// The documentation says this is obsolete, so don't do anything.
mixin(LogCallMix);
*pguidPlatform = GUID(); //GUID_VS_PLATFORM_WIN32_X86;
return returnError(E_NOTIMPL);
}
override int get_IsPackaged( /* [out] */ BOOL *pfIsPackaged)
{
logCall("get_IsPackaged(pfIsPackaged=%s)", _toLog(pfIsPackaged));
return returnError(E_NOTIMPL);
}
override int get_IsSpecifyingOutputSupported( /* [out] */ BOOL *pfIsSpecifyingOutputSupported)
{
logCall("get_IsSpecifyingOutputSupported(pfIsSpecifyingOutputSupported=%s)", _toLog(pfIsSpecifyingOutputSupported));
return returnError(E_NOTIMPL);
}
override int get_TargetCodePage( /* [out] */ UINT *puiTargetCodePage)
{
logCall("get_TargetCodePage(puiTargetCodePage=%s)", _toLog(puiTargetCodePage));
return returnError(E_NOTIMPL);
}
override int get_UpdateSequenceNumber( /* [out] */ ULARGE_INTEGER *puliUSN)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
override int get_RootURL( /* [out] */ BSTR *pbstrRootURL)
{
logCall("get_RootURL(pbstrRootURL=%s)", _toLog(pbstrRootURL));
return returnError(E_NOTIMPL);
}
// IVsProjectCfg2
override int get_CfgType(
/* [in] */ in IID* iidCfg,
/* [iid_is][out] */ void **ppCfg)
{
debug(FULL_DBG) mixin(LogCallMix);
return QueryInterface(iidCfg, ppCfg);
}
override int get_OutputGroups(
/* [in] */ in ULONG celt,
/* [size_is][out][in] */ IVsOutputGroup *rgpcfg,
/* [optional][out] */ ULONG *pcActual)
{
mixin(LogCallMix);
version(hasOutputGroup)
{
if(celt >= 1)
*rgpcfg = addref(mOutputGroup);
if(pcActual)
*pcActual = 1;
return S_OK;
}
else
{
return returnError(E_NOTIMPL);
}
}
override int OpenOutputGroup(
/* [in] */ in wchar* szCanonicalName,
/* [out] */ IVsOutputGroup *ppIVsOutputGroup)
{
mixin(LogCallMix);
version(hasOutputGroup)
{
if(to_wstring(szCanonicalName) != to_wstring(VS_OUTPUTGROUP_CNAME_Built))
return returnError(E_INVALIDARG);
*ppIVsOutputGroup = addref(mOutputGroup);
return S_OK;
}
else
{
return returnError(E_NOTIMPL);
}
}
override int OutputsRequireAppRoot(
/* [out] */ BOOL *pfRequiresAppRoot)
{
logCall("%s.OutputsRequireAppRoot(pfRequiresAppRoot=%s)", this, _toLog(pfRequiresAppRoot));
return returnError(E_NOTIMPL);
}
override int get_VirtualRoot(
/* [out] */ BSTR *pbstrVRoot)
{
logCall("%s.get_VirtualRoot(pbstrVRoot=%s)", this, _toLog(pbstrVRoot));
return returnError(E_NOTIMPL);
}
override int get_IsPrivate(
/* [out] */ BOOL *pfPrivate)
{
logCall("%s.get_IsPrivate(pfPrivate=%s)", this, _toLog(pfPrivate));
return returnError(E_NOTIMPL);
}
// IVsDebuggableProjectCfg
override int DebugLaunch(
/* [in] */ in VSDBGLAUNCHFLAGS grfLaunch)
{
logCall("%s.DebugLaunch(grfLaunch=%s)", this, _toLog(grfLaunch));
string prg = mProjectOptions.replaceEnvironment(mProjectOptions.debugtarget, this);
if (prg.length == 0)
return S_OK;
if(!isAbsolute(prg))
prg = GetProjectDir() ~ "\\" ~ prg;
//prg = quoteFilename(prg);
string workdir = mProjectOptions.replaceEnvironment(mProjectOptions.debugworkingdir, this);
if(!isAbsolute(workdir))
workdir = GetProjectDir() ~ "\\" ~ workdir;
Package.GetGlobalOptions().addExecutionPath(workdir);
string args = mProjectOptions.replaceEnvironment(mProjectOptions.debugarguments, this);
if(DBGLAUNCH_NoDebug & grfLaunch)
{
if(mProjectOptions.pauseAfterRunning)
{
args = "/c " ~ quoteFilename(prg) ~ " " ~ args ~ " & pause";
prg = getCmdPath();
}
ShellExecuteW(null, null, toUTF16z(quoteFilename(prg)), toUTF16z(args), toUTF16z(workdir), SW_SHOWNORMAL);
return(S_OK);
}
return _DebugLaunch(prg, workdir, args, mProjectOptions.debugEngine);
}
GUID getDebugEngineUID(int engine)
{
switch(engine)
{
case 1:
return GUID_MaGoDebugger;
case 2:
return GUID_COMPlusNativeEng; // the mixed-mode debugger (works only on x86)
default:
return GUID_NativeOnlyEng; // works for x64
}
}
HRESULT _DebugLaunch(string prg, string workdir, string args, int engine)
{
HRESULT hr = E_NOTIMPL;
// When the debug target is the project build output, the project have to use
// IVsSolutionDebuggingAssistant2 to determine if the target was deployed.
// The interface allows the project to find out where the outputs were deployed to
// and direct the debugger to the deployed locations as appropriate.
// Projects start out their debugging sessions by calling MapOutputToDeployedURLs().
// Here we do not use IVsSolutionDebuggingAssistant2 because our debug target is
// explicitly set in the project options and it is not built by the project.
// For demo of how to use IVsSolutionDebuggingAssistant2 refer to MycPrj sample in the
// Environment SDK.
if(IVsDebugger srpVsDebugger = queryService!(IVsDebugger))
{
scope(exit) release(srpVsDebugger);
// if bstr-parameters not passed as BSTR parameters, VS2010 crashes on some systems
// not sure if they can be free'd afterwards...
VsDebugTargetInfo dbgi;
dbgi.cbSize = VsDebugTargetInfo.sizeof;
dbgi.bstrRemoteMachine = null;
string remote = mProjectOptions.replaceEnvironment(mProjectOptions.debugremote, this);
if(remote.length == 0)
{
if(!std.file.exists(prg))
{
UtilMessageBox("The program to launch does not exist:\n" ~ prg, MB_OK, "Launch Debugger");
return S_FALSE;
}
if(workdir.length && !isExistingDir(workdir))
{
UtilMessageBox("The working directory does not exist:\n" ~ workdir, MB_OK, "Launch Debugger");
return S_FALSE;
}
}
else
dbgi.bstrRemoteMachine = allocBSTR(remote); // _toUTF16z(remote);
dbgi.dlo = DLO_CreateProcess; // DLO_Custom; // specifies how this process should be launched
// clsidCustom is the clsid of the debug engine to use to launch the debugger
dbgi.clsidCustom = getDebugEngineUID(engine);
dbgi.bstrMdmRegisteredName = null; // used with DLO_AlreadyRunning. The name of the
// app as it is registered with the MDM.
dbgi.bstrExe = allocBSTR(prg); // _toUTF16z(prg);
dbgi.bstrCurDir = allocBSTR(workdir); // _toUTF16z(workdir);
dbgi.bstrArg = allocBSTR(args); // _toUTF16z(args);
dbgi.fSendStdoutToOutputWindow = mProjectOptions.debugStdOutToOutputWindow;
hr = srpVsDebugger.LaunchDebugTargets(1, &dbgi);
if (FAILED(hr))
{
string msg = format("cannot launch debugger on %s\nhr = %x", prg, hr);
mProvider.mProject.SetErrorInfo(E_FAIL, msg);
hr = E_FAIL;
}
}
return(hr);
}
override int QueryDebugLaunch(
/* [in] */ in VSDBGLAUNCHFLAGS grfLaunch,
/* [out] */ BOOL *pfCanLaunch)
{
// mixin(LogCallMix);
*pfCanLaunch = true;
return S_OK; // returnError(E_NOTIMPL);
}
// IVsDebuggableProjectCfg2
HRESULT OnBeforeDebugLaunch(in VSDBGLAUNCHFLAGS grfLaunch)
{
mixin(LogCallMix);
return S_OK; // returnError(E_NOTIMPL);
}
// IVsQueryDebuggableProjectCfg
HRESULT QueryDebugTargets(in VSDBGLAUNCHFLAGS grfLaunch, in ULONG cTargets,
VsDebugTargetInfo2 *dti, ULONG *pcActual)
{
if(cTargets > 0)
{
if(!dti)
return E_INVALIDARG;
string remote = mProjectOptions.replaceEnvironment(mProjectOptions.debugremote, this);
string prg = mProjectOptions.replaceEnvironment(mProjectOptions.debugtarget, this);
string args = mProjectOptions.replaceEnvironment(mProjectOptions.debugarguments, this);
string workdir = mProjectOptions.replaceEnvironment(mProjectOptions.debugworkingdir, this);
if(!isAbsolute(workdir))
workdir = GetProjectDir() ~ "\\" ~ workdir;
prg = makeFilenameAbsolute(prg, workdir);
dti.cbSize = VsDebugTargetInfo2.sizeof;
dti.dlo = DLO_CreateProcess; // specifies how this process should be launched or attached
dti.LaunchFlags = grfLaunch; // launch flags that were passed to IVsDebuggableProjectCfg::Launch
dti.bstrRemoteMachine = remote.length ? allocBSTR(remote) : null; // NULL for local machine, or remote machine name
dti.bstrExe = allocBSTR(prg);
dti.bstrArg = allocBSTR(args);
dti.bstrCurDir = allocBSTR(workdir);
dti.bstrEnv = null;
dti.guidLaunchDebugEngine = getDebugEngineUID(mProjectOptions.debugEngine);
dti.dwDebugEngineCount = 1;
dti.pDebugEngines = cast(GUID*)CoTaskMemAlloc(GUID.sizeof);
*(dti.pDebugEngines) = dti.guidLaunchDebugEngine;
/+
dti.guidPortSupplier; // port supplier guid
dti.bstrPortName; // name of port from above supplier (NULL is fine)
dti.bstrOptions; // custom options, specific to each guidLaunchDebugEngine (NULL is recommended)
dti.hStdInput; // for file redirection
dti.hStdOutput; // for file redirection
dti.hStdError; // for file redirection
dti.fSendToOutputWindow; // if TRUE, stdout and stderr will be routed to the output window
dti.dwProcessId; // process id (DLO_AlreadyRunning)
dti.pUnknown; // interface pointer - usage depends on DEBUG_LAUNCH_OPERATION
dti.guidProcessLanguage; // Language of the hosting process. Used to preload EE's
+/
}
if (pcActual)
*pcActual = 1;
return S_OK;
}
///////////////////////////////////////////////////////////////
// IVsProfilableProjectCfg
override HRESULT get_SuppressSignedAssemblyWarnings(/+[retval, out]+/VARIANT_BOOL* suppress)
{
mixin(LogCallMix);
*suppress = FALSE;
return S_OK;
}
override HRESULT get_LegacyWebSupportRequired(/+[retval, out]+/VARIANT_BOOL* required)
{
mixin(LogCallMix);
*required = FALSE;
return S_OK;
}
HRESULT GetSupportedProfilingTasks(/+[out]+/ SAFEARRAY *tasks)
{
mixin(LogCallMix);
BSTR task = allocBSTR("ClassicCPUSampling");
int index = 0;
SafeArrayPutElement(tasks, &index, &task);
return S_OK;
}
HRESULT BeforeLaunch(in BSTR profilingTask)
{
mixin(LogCallMix);
return S_OK;
}
HRESULT BeforeTargetsLaunched()
{
mixin(LogCallMix);
return S_OK;
}
HRESULT LaunchProfiler()
{
mixin(LogCallMix);
version(hasProfilableConfig)
{
IVsProfilerLauncher launcher;
GUID svcid = uuid_SVsProfilerLauncher;
GUID clsid = uuid_IVsProfilerLauncher;
if (IServiceProvider sp = visuald.dpackage.Package.s_instance.getServiceProvider())
sp.QueryService(&svcid, &clsid, cast(void**)&launcher);
if (!launcher)
return E_NOTIMPL;
auto infos = addref(newCom!EnumVsProfilerTargetInfos(this));
scope(exit) release(launcher);
scope(exit) release(infos);
HRESULT hr = launcher.LaunchProfiler(infos);
return hr;
}
else
return returnError(E_NOTIMPL);
}
HRESULT QueryProfilerTargetInfoEnum(/+[out]+/ IEnumVsProfilerTargetInfos *targetsEnum)
{
version(hasProfilableConfig)
{
mixin(LogCallMix);
*targetsEnum = addref(newCom!EnumVsProfilerTargetInfos(this));
return S_OK;
}
else
return returnError(E_NOTIMPL);
}
HRESULT AllBrowserTargetsFinished()
{
mixin(LogCallMix);
return S_OK;
}
HRESULT ProfilerAnalysisFinished()
{
mixin(LogCallMix);
return S_OK;
}
///////////////////////////////////////////////////////////////
// IVsBuildableProjectCfg
override int get_ProjectCfg(
/* [out] */ IVsProjectCfg *ppIVsProjectCfg)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
override int AdviseBuildStatusCallback(
/* [in] */ IVsBuildStatusCallback pIVsBuildStatusCallback,
/* [out] */ VSCOOKIE *pdwCookie)
{
mixin(LogCallMix);
*pdwCookie = ++mLastBuildStatusCookie;
mBuildStatusCallbacks[mLastBuildStatusCookie] = addref(pIVsBuildStatusCallback);
mTicking[mLastBuildStatusCookie] = false;
mStarted[mLastBuildStatusCookie] = false;
return S_OK;
}
override int UnadviseBuildStatusCallback(
/* [in] */ in VSCOOKIE dwCookie)
{
// mixin(LogCallMix);
if(dwCookie in mBuildStatusCallbacks)
{
release(mBuildStatusCallbacks[dwCookie]);
mBuildStatusCallbacks.remove(dwCookie);
mTicking.remove(dwCookie);
mStarted.remove(dwCookie);
return S_OK;
}
return returnError(E_FAIL);
}
override int StartBuild(
/* [in] */ IVsOutputWindowPane pIVsOutputWindowPane,
/* [in] */ in DWORD dwOptions)
{
mixin(LogCallMix);
if(dwOptions & VS_BUILDABLEPROJECTCFGOPTS_REBUILD)
return mBuilder.Start(CBuilderThread.Operation.eRebuild, pIVsOutputWindowPane);
return mBuilder.Start(CBuilderThread.Operation.eBuild, pIVsOutputWindowPane);
}
override int StartClean(
/* [in] */ IVsOutputWindowPane pIVsOutputWindowPane,
/* [in] */ in DWORD dwOptions)
{
mixin(LogCallMix);
return mBuilder.Start(CBuilderThread.Operation.eClean, pIVsOutputWindowPane);
}
override int StartUpToDateCheck(
/* [in] */ IVsOutputWindowPane pIVsOutputWindowPane,
/* [in] */ in DWORD dwOptions)
{
mixin(LogCallMix);
HRESULT rc = mBuilder.Start(CBuilderThread.Operation.eCheckUpToDate, pIVsOutputWindowPane);
return rc == S_OK ? S_OK : E_FAIL; // E_FAIL used to indicate "not uptodate"
//return returnError(E_NOTIMPL); //S_OK;
}
override int QueryStatus(
/* [out] */ BOOL *pfBuildDone)
{
logCall("%s.QueryStatus(pfBuildDone=%s)", this, _toLog(pfBuildDone));
mBuilder.QueryStatus(pfBuildDone);
return S_OK;
}
override int Stop(
/* [in] */ in BOOL fSync)
{
logCall("%s.Stop(fSync=%s)", this, _toLog(fSync));
mBuilder.Stop(fSync);
return S_OK;
}
override int Wait(
/* [in] */ in DWORD dwMilliseconds,
/* [in] */ in BOOL fTickWhenMessageQNotEmpty)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
override int QueryStartBuild(
/* [in] */ in DWORD dwOptions,
/* [optional][out] */ BOOL *pfSupported,
/* [optional][out] */ BOOL *pfReady)
{
debug(FULL_DBG) mixin(LogCallMix);
if(pfSupported)
*pfSupported = true;
if(pfReady)
{
mBuilder.QueryStatus(pfReady);
}
return S_OK; // returnError(E_NOTIMPL);
}
override int QueryStartClean(
/* [in] */ in DWORD dwOptions,
/* [optional][out] */ BOOL *pfSupported,
/* [optional][out] */ BOOL *pfReady)
{
mixin(LogCallMix);
if(pfSupported)
*pfSupported = true;
if(pfReady)
{
mBuilder.QueryStatus(pfReady);
}
return S_OK; // returnError(E_NOTIMPL);
}
override int QueryStartUpToDateCheck(
/* [in] */ in DWORD dwOptions,
/* [optional][out] */ BOOL *pfSupported,
/* [optional][out] */ BOOL *pfReady)
{
mixin(LogCallMix);
if(pfSupported)
*pfSupported = true;
if(pfReady)
{
mBuilder.QueryStatus(pfReady);
}
return S_OK; // returnError(E_NOTIMPL);
}
//////////////////////////////////////////////////////////////////////////////
void AddModifiedListener(ConfigModifiedListener listener)
{
mModifiedListener.addunique(listener);
}
void RemoveModifiedListener(ConfigModifiedListener listener)
{
mModifiedListener.remove(listener);
}
//////////////////////////////////////////////////////////////////////////////
void SetDirty()
{
mProvider.mProject.GetProjectNode().SetProjectFileDirty(true);
foreach(listener; mModifiedListener)
listener.OnConfigModified();
}
CProjectNode GetProjectNode() { return mProvider.mProject.GetProjectNode(); }
string GetProjectPath() { return mProvider.mProject.GetFilename(); }
string GetProjectDir() { return dirName(mProvider.mProject.GetFilename()); }
string GetProjectName() { return mProvider.mProject.GetProjectNode().GetName(); }
Project GetProject() { return mProvider.mProject; }
ProjectOptions GetProjectOptions() { return mProjectOptions; }
string GetTargetPath()
{
string exe = mProjectOptions.getTargetPath();
return mProjectOptions.replaceEnvironment(exe, this);
}
string GetDependenciesPath()
{
string exe = mProjectOptions.getDependenciesPath();
return mProjectOptions.replaceEnvironment(exe, this);
}
string GetLinkDependenciesPath()
{
string dep = GetDependenciesPath();
assert(dep[$-4..$] == ".dep");
return dep[0..$-4] ~ ".lnkdep";
}
string GetCppCompiler()
{
switch(mProjectOptions.compiler)
{
default:
case Compiler.DMD: return mProjectOptions.mscoff || mProjectOptions.isX86_64 ? "cl" : "dmc";
case Compiler.GDC: return "gcc";
case Compiler.LDC: return mProjectOptions.isLDCforMinGW() ? "clang" : "cl";
}
}
bool hasLinkDependencies()
{
return mProjectOptions.callLinkerDirectly() && Package.GetGlobalOptions().optlinkDeps;
}
string GetCommandLinePath()
{
string exe = mProjectOptions.getCommandLinePath();
return mProjectOptions.replaceEnvironment(exe, this);
}
string GetOutDir()
{
return mProjectOptions.replaceEnvironment(mProjectOptions.outdir, this);
}
string GetIntermediateDir()
{
return mProjectOptions.replaceEnvironment(mProjectOptions.objdir, this);
}
string[] GetDependencies(CFileNode file)
{
string tool = GetCompileTool(file);
if(tool == "Custom" || tool == kToolResourceCompiler || tool == kToolCpp)
{
string outfile = GetOutputFile(file);
string dep = file.GetDependencies(getCfgName());
dep = mProjectOptions.replaceEnvironment(dep, this, file.GetFilename(), outfile);
string[] deps = tokenizeArgs(dep);
deps ~= file.GetFilename();
string workdir = GetProjectDir();
foreach(ref string s; deps)
s = makeFilenameAbsolute(s, workdir);
return deps;
}
if(tool == "DMDsingle")
{
string outfile = GetOutputFile(file);
string depfile = outfile ~ ".dep";
depfile = mProjectOptions.replaceEnvironment(depfile, this, file.GetFilename(), outfile);
string workdir = GetProjectDir();
string deppath = makeFilenameAbsolute(depfile, workdir);
string[] files;
bool depok = false;
if(std.file.exists(deppath))
depok = getFilenamesFromDepFile(deppath, files);
if(!depok)
files ~= deppath; // force update without if dependency file does not exist or is invalid
files ~= file.GetFilename();
files ~= getDDocFileList();
makeFilenamesAbsolute(files, workdir);
return files;
}
return null;
}
bool isUptodate(CFileNode file, string* preason)
{
string fcmd = GetCompileCommand(file);
if(fcmd.length == 0)
return true;
string outfile = GetOutputFile(file);
outfile = mProjectOptions.replaceEnvironment(outfile, this, file.GetFilename(), outfile);
string workdir = GetProjectDir();
string cmdfile = makeFilenameAbsolute(outfile ~ "." ~ kCmdLogFileExtension, workdir);
if(!compareCommandFile(cmdfile, fcmd))
{
if(preason)
*preason = "command line has changed";
return false;
}
string[] deps = GetDependencies(file);
outfile = makeFilenameAbsolute(outfile, workdir);
string oldestFile, newestFile;
long targettm = getOldestFileTime( [ outfile ], oldestFile );
long sourcetm = getNewestFileTime(deps, newestFile);
if(targettm > sourcetm)
return true;
if(file.GetUptodateWithSameTime(getCfgName()) && targettm == sourcetm)
return true;
if(preason)
*preason = newestFile ~ " is newer";
return false;
}
static bool IsResource(CFileNode file)
{
string tool = file.GetTool(null);
if(tool == "")
if(toLower(extension(file.GetFilename())) == ".rc")
return true;
return tool == kToolResourceCompiler;
}
static string GetStaticCompileTool(CFileNode file, string cfgname)
{
string tool = file.GetTool(cfgname);
if(tool == "")
{
string fname = file.GetFilename();
string ext = toLower(extension(fname));
if(isIn(ext, ".d", ".ddoc", ".def", ".lib", ".obj", ".o", ".res"))
tool = "DMD";
else if(ext == "rc")
tool = kToolResourceCompiler;
else if(isIn(ext, ".c", ".cpp", ".cxx", ".cc"))
tool = kToolCpp;
}
return tool;
}
string GetCompileTool(CFileNode file)
{
string tool = file.GetTool(getCfgName());
if(tool == "")
{
string fname = file.GetFilename();
string ext = toLower(extension(fname));
if(ext == ".d" && mProjectOptions.compilationModel == ProjectOptions.kSingleFileCompilation)
tool = "DMDsingle";
else if(isIn(ext, ".d", ".ddoc", ".def", ".lib", ".obj", ".o", ".res"))
tool = "DMD";
else if(ext == "rc")
tool = kToolResourceCompiler;
else if(isIn(ext, ".c", ".cpp", ".cxx", ".cc"))
tool = kToolCpp;
}
return tool;
}
string GetOutputFile(CFileNode file, string tool = null)
{
if(tool.empty)
tool = GetCompileTool(file);
string fname;
if(tool == "DMD")
return file.GetFilename();
if(tool == "DMDsingle")
fname = mProjectOptions.objdir ~ "\\" ~ safeFilename(stripExtension(file.GetFilename())) ~ "." ~ mProjectOptions.objectFileExtension();
if(tool == "RDMD")
fname = mProjectOptions.outdir ~ "\\" ~ safeFilename(stripExtension(file.GetFilename())) ~ ".exe";
if(tool == kToolResourceCompiler)
fname = mProjectOptions.objdir ~ "\\" ~ safeFilename(stripExtension(file.GetFilename()), "_") ~ ".res";
if(tool == kToolCpp)
fname = mProjectOptions.objdir ~ "\\" ~ safeFilename(stripExtension(file.GetFilename()), "_") ~ ".obj";
if(tool == "Custom")
fname = file.GetOutFile(getCfgName());
if(fname.length)
fname = mProjectOptions.replaceEnvironment(fname, this, file.GetFilename());
return fname;
}
string expandedAbsoluteFilename(string name)
{
string workdir = GetProjectDir();
string expname = mProjectOptions.replaceEnvironment(name, this);
string absname = makeFilenameAbsolute(expname, workdir);
return absname;
}
string GetBuildLogFile()
{
return expandedAbsoluteFilename("$(INTDIR)\\$(SAFEPROJECTNAME).buildlog.html");
}
string[] GetBuildFiles()
{
string workdir = normalizeDir(GetProjectDir());
string outdir = normalizeDir(makeFilenameAbsolute(GetOutDir(), workdir));
string intermediatedir = normalizeDir(makeFilenameAbsolute(GetIntermediateDir(), workdir));
string target = makeFilenameAbsolute(GetTargetPath(), workdir);
string cmdfile = makeFilenameAbsolute(GetCommandLinePath(), workdir);
string[] files;
files ~= target;
files ~= cmdfile;
files ~= cmdfile ~ ".rsp";
files ~= makeFilenameAbsolute(GetDependenciesPath(), workdir);
files ~= makeFilenameAbsolute(GetLinkDependenciesPath(), workdir);
if(mProjectOptions.usesCv2pdb())
{
files ~= target ~ "_cv";
files ~= setExtension(target, "pdb");
}
string mapfile = expandedAbsoluteFilename("$(INTDIR)\\$(SAFEPROJECTNAME).map");
files ~= mapfile;
string buildlog = GetBuildLogFile();
files ~= buildlog;
if(mProjectOptions.createImplib)
files ~= setExtension(target, "lib");
if(mProjectOptions.doDocComments)
{
if(mProjectOptions.docdir.length)
files ~= expandedAbsoluteFilename(normalizeDir(mProjectOptions.docdir)) ~ "*.html";
if(mProjectOptions.docname.length)
files ~= expandedAbsoluteFilename(mProjectOptions.docname);
if(mProjectOptions.modules_ddoc.length)
files ~= expandedAbsoluteFilename(mProjectOptions.modules_ddoc);
}
if(mProjectOptions.doHdrGeneration)
{
if(mProjectOptions.hdrdir.length)
files ~= expandedAbsoluteFilename(normalizeDir(mProjectOptions.hdrdir)) ~ "*.di";
if(mProjectOptions.hdrname.length)
files ~= expandedAbsoluteFilename(mProjectOptions.hdrname);
}
if(mProjectOptions.doXGeneration)
{
if(mProjectOptions.xfilename.length)
files ~= expandedAbsoluteFilename(mProjectOptions.xfilename);
}
string[] toclean = tokenizeArgs(mProjectOptions.filesToClean);
foreach(s; toclean)
{
string uqs = unquoteArgument(s);
files ~= outdir ~ uqs;
if(outdir != intermediatedir)
files ~= intermediatedir ~ uqs;
}
searchNode(mProvider.mProject.GetRootNode(),
delegate (CHierNode n) {
if(CFileNode file = cast(CFileNode) n)
{
string outname = GetOutputFile(file);
if (outname.length && outname != file.GetFilename())
{
files ~= makeFilenameAbsolute(outname, workdir);
files ~= makeFilenameAbsolute(outname ~ "." ~ kCmdLogFileExtension, workdir);
}
}
return false;
});
return files;
}
string GetCompileCommand(CFileNode file, bool syntaxOnly = false, string tool = null, string addopt = null)
{
if(tool.empty)
tool = GetCompileTool(file);
string cmd;
string outfile = GetOutputFile(file, tool);
if(tool == kToolResourceCompiler)
{
cmd = "rc /fo" ~ quoteFilename(outfile);
string include = Package.GetGlobalOptions().IncSearchPath;
if(include.length)
{
string[] incs = tokenizeArgs(include);
foreach(string inc; incs)
cmd ~= " /I" ~ quoteFilename(inc);
cmd = mProjectOptions.replaceEnvironment(cmd, this, outfile);
}
string addOpts = file.GetAdditionalOptions(getCfgName());
if(addOpts.length)
cmd ~= " " ~ addOpts;
cmd ~= " " ~ quoteFilename(file.GetFilename());
}
if(tool == kToolCpp)
{
cmd = mProjectOptions.getCppCommandLine(outfile, true);
string addOpts = file.GetAdditionalOptions(getCfgName());
if(addOpts.length)
cmd ~= " " ~ addOpts;
cmd ~= " " ~ quoteFilename(file.GetFilename());
}
if(tool == "Custom")
{
cmd = file.GetCustomCmd(getCfgName());
}
if(tool == "DMDsingle")
{
string depfile = GetOutputFile(file, tool) ~ ".dep";
cmd = "echo Compiling " ~ file.GetFilename() ~ "...\n";
cmd ~= mProjectOptions.buildCommandLine(true, false, false, syntaxOnly);
if(syntaxOnly && mProjectOptions.compiler == Compiler.GDC)
cmd ~= " -c -fsyntax-only";
else if(syntaxOnly)
cmd ~= " -c -o-";
else
cmd ~= " -c " ~ mProjectOptions.getOutputFileOption(outfile)
~ mProjectOptions.getDependenciesFileOption(depfile);
cmd ~= " " ~ quoteFilename(file.GetFilename());
foreach(ddoc; getDDocFileList())
cmd ~= " " ~ ddoc;
}
if(tool == "RDMD")
{
// temporarily switch to "rdmd"
ProjectOptions opts = clone(mProjectOptions);
opts.compiler = Compiler.DMD;
opts.program = "rdmd";
opts.otherDMD = true;
opts.mapverbosity = 2; // no map option
opts.otherDMD = true;
opts.doXGeneration = false;
opts.doHdrGeneration = false;
opts.doDocComments = false;
opts.lib = OutputType.Executable;
//opts.runCv2pdb = false;
opts.exefile = "$(OutDir)\\" ~ baseName(stripExtension(outfile)) ~ ".exe";
cmd = "echo Compiling " ~ file.GetFilename() ~ "...\n";
cmd ~= opts.buildCommandLine(true, !syntaxOnly, false, syntaxOnly);
if(syntaxOnly)
cmd ~= " --build-only";
cmd ~= addopt ~ " " ~ quoteFilename(file.GetFilename());
addopt = ""; // must be before filename for rdmd
if (!syntaxOnly)
{
string cv2pdb = opts.appendCv2pdb();
if (cv2pdb.length)
cmd ~= "\nif errorlevel 1 goto reportError\n" ~ opts.appendCv2pdb();
}
}
if(cmd.length)
{
cmd = getEnvironmentChanges() ~ cmd ~ addopt ~ "\n:reportError\n";
if(syntaxOnly)
cmd ~= "if errorlevel 1 echo Compiling " ~ file.GetFilename() ~ " failed!\n";
else
cmd ~= "if errorlevel 1 echo Building " ~ outfile ~ " failed!\n";
cmd = mProjectOptions.replaceEnvironment(cmd, this, file.GetFilename(), outfile);
}
return cmd;
}
string GetDisasmCommand(string objfile, string outfile)
{
bool x64 = mProjectOptions.isX86_64;
bool mscoff = mProjectOptions.compiler == Compiler.DMD && mProjectOptions.mscoff;
GlobalOptions globOpt = Package.GetGlobalOptions();
string cmd = x64 ? mProjectOptions.compilerDirectories.DisasmCommand64 :
mscoff ? mProjectOptions.compilerDirectories.DisasmCommand32coff : mProjectOptions.compilerDirectories.DisasmCommand;
if(globOpt.demangleError)
{
string mangledfile = outfile ~ ".mangled";
cmd = mProjectOptions.replaceEnvironment(cmd, this, objfile, mangledfile);
cmd ~= "\nif errorlevel 0 \"" ~ Package.GetGlobalOptions().VisualDInstallDir ~ "dcxxfilt.exe\" < " ~ quoteFilename(mangledfile) ~ " > " ~ quoteFilename(outfile);
}
else
cmd = mProjectOptions.replaceEnvironment(cmd, this, objfile, outfile);
return cmd;
}
string getEnvironmentChanges()
{
string cmd;
bool x64 = mProjectOptions.isX86_64;
bool mscoff = mProjectOptions.compiler == Compiler.DMD && mProjectOptions.mscoff;
GlobalOptions globOpt = Package.GetGlobalOptions();
string exeSearchPath = x64 ? mProjectOptions.compilerDirectories.ExeSearchPath64 :
mscoff ? mProjectOptions.compilerDirectories.ExeSearchPath32coff : mProjectOptions.compilerDirectories.ExeSearchPath;
if(exeSearchPath.length)
cmd ~= "set PATH=" ~ replaceCrLfSemi(exeSearchPath) ~ ";%PATH%\n";
string libSearchPath = x64 ? mProjectOptions.compilerDirectories.LibSearchPath64 :
mscoff ? mProjectOptions.compilerDirectories.LibSearchPath32coff : mProjectOptions.compilerDirectories.LibSearchPath;
bool hasGlobalPath = mProjectOptions.useStdLibPath && libSearchPath.length;
if(hasGlobalPath || mProjectOptions.libpaths.length)
{
// obsolete?
string lpath;
if(hasGlobalPath)
lpath = replaceCrLfSemi(libSearchPath);
if(mProjectOptions.libpaths.length && !_endsWith(lpath, ";"))
lpath ~= ";";
lpath ~= mProjectOptions.libpaths;
if(mProjectOptions.compiler == Compiler.DMD)
cmd ~= "set DMD_LIB=" ~ lpath ~ "\n";
else if(mProjectOptions.compiler == Compiler.LDC)
cmd ~= "set LIB=" ~ lpath ~ "\n";
}
if(mProjectOptions.useMSVCRT())
{
if(globOpt.WindowsSdkDir.length)
cmd ~= "set WindowsSdkDir=" ~ globOpt.WindowsSdkDir ~ "\n";
if(globOpt.VCInstallDir.length)
cmd ~= "set VCINSTALLDIR=" ~ globOpt.VCInstallDir ~ "\n";
if(globOpt.VCToolsInstallDir.length)
cmd ~= "set VCTOOLSINSTALLDIR=" ~ globOpt.VCToolsInstallDir ~ "\n";
if(globOpt.VSInstallDir.length)
cmd ~= "set VSINSTALLDIR=" ~ globOpt.VSInstallDir ~ "\n";
}
return cmd;
}
string getModuleName(string fname)
{
string ext = toLower(extension(fname));
if(ext != ".d" && ext != ".di")
return "";
string modname = getModuleDeclarationName(fname);
if(modname.length > 0)
return modname;
return stripExtension(baseName(fname));
}
string getModulesDDocCommandLine(string[] files, ref string modules_ddoc)
{
if(!mProjectOptions.doDocComments)
return "";
string mod_cmd;
modules_ddoc = strip(mProjectOptions.modules_ddoc);
if(modules_ddoc.length > 0)
{
modules_ddoc = quoteFilename(modules_ddoc);
mod_cmd = "echo MODULES = >" ~ modules_ddoc ~ "\n";
string workdir = GetProjectDir();
for(int i = 0; i < files.length; i++)
{
string fname = makeFilenameAbsolute(files[i], workdir);
string mod = getModuleName(fname);
if(mod.length > 0)
{
if(indexOf(mod, '.') < 0)
mod = "." ~ mod;
mod_cmd ~= "echo $$(MODULE " ~ mod ~ ") >>" ~ modules_ddoc ~ "\n";
}
}
}
return mod_cmd;
}
string getCommandFileList(string[] files, string responsefile, ref string precmd)
{
if(mProjectOptions.compiler == Compiler.GDC)
foreach(ref f; files)
f = replace(f, "\\", "/");
files = files.dup;
quoteFilenames(files);
string fcmd = std.string.join(files, " ");
if(fcmd.length > 100)
{
precmd ~= "\n";
precmd ~= "echo " ~ files[0] ~ " >" ~ quoteFilename(responsefile) ~ "\n";
for(int i = 1; i < files.length; i++)
precmd ~= "echo " ~ files[i] ~ " >>" ~ quoteFilename(responsefile) ~ "\n";
precmd ~= "\n";
fcmd = " @" ~ quoteFilename(responsefile);
}
else if (fcmd.length)
fcmd = " " ~ fcmd;
if(mProjectOptions.compiler == Compiler.GDC && mProjectOptions.libfiles.length)
fcmd ~= " " ~ replace(mProjectOptions.libfiles, "\\", "/");
return fcmd;
}
string[] getObjectFileList(string[] dfiles)
{
string[] files = dfiles.dup;
string[] remove;
bool singleObj = (mProjectOptions.compilationModel == ProjectOptions.kCombinedCompileAndLink);
string targetObj;
foreach(ref f; files)
if(f.endsWith(".d") || f.endsWith(".D"))
{
if(singleObj)
{
if(targetObj.length)
remove ~= f;
else
{
targetObj = "$(OutDir)\\$(ProjectName)." ~ mProjectOptions.objectFileExtension();
f = targetObj;
}
}
else
{
string fname = stripExtension(f);
if(!mProjectOptions.preservePaths)
fname = baseName(fname);
fname ~= "." ~ mProjectOptions.objectFileExtension();
if(mProjectOptions.compiler.isIn(Compiler.DMD, Compiler.LDC) && !isAbsolute(fname))
f = mProjectOptions.objdir ~ "\\" ~ fname;
else
f = fname;
}
}
foreach(r; remove)
files.remove(r);
return files;
}
string getLinkFileList(string[] dfiles, ref string precmd)
{
string[] files = getObjectFileList(dfiles);
string responsefile = GetCommandLinePath() ~ ".lnkarg";
return getCommandFileList(files, responsefile, precmd);
}
string[] getSourceFileList()
{
string[] files;
searchNode(mProvider.mProject.GetRootNode(),
delegate (CHierNode n) {
if(CFileNode file = cast(CFileNode) n)
files ~= file.GetFilename();
return false;
});
return files;
}
string[] getDDocFileList()
{
string[] files;
searchNode(mProvider.mProject.GetRootNode(),
delegate (CHierNode n) {
if(CFileNode file = cast(CFileNode) n)
{
string fname = file.GetFilename();
if(extension(fname) == ".ddoc")
files ~= fname;
}
return false;
});
return files;
}
string[] getInputFileList()
{
string[] files;
searchNode(mProvider.mProject.GetRootNode(),
delegate (CHierNode n) {
if(CFileNode file = cast(CFileNode) n)
{
string fname = GetOutputFile(file);
if(fname.length)
if(file.GetTool(getCfgName()) != "Custom" || file.GetLinkOutput(getCfgName()))
files ~= fname;
}
return false;
});
string[] libs = getLibsFromDependentProjects();
foreach(lib; libs)
{
// dmd also understands ".json", ".map" and ".exe", but these are shortcuts for output files
string ext = toLower(extension(lib));
if(ext.isIn(".d", ".di", ".o", ".obj", ".lib", ".a", ".ddoc", ".res", ".def", ".dd", ".htm", ".html", ".xhtml"))
files ~= lib;
}
return files;
}
string GetPhobosPath()
{
string libpath = normalizeDir(GetIntermediateDir());
string libfile = "privatephobos.lib";
return libpath ~ libfile;
}
string GetPhobosCommandLine()
{
string libpath = normalizeDir(GetIntermediateDir());
bool x64 = mProjectOptions.isX86_64;
bool mscoff = mProjectOptions.compiler == Compiler.DMD && mProjectOptions.mscoff;
string model = "32";
if(x64)
model = "64";
else if (mscoff)
model = "32mscoff";
string libfile = "privatephobos.lib";
string lib = libpath ~ libfile;
string cmdfile = libpath ~ "buildphobos.bat";
string dmddir = Package.GetGlobalOptions().findDmdBinDir();
string dmdpath = dmddir ~ "dmd.exe";
string installDir = normalizeDir(Package.GetGlobalOptions().DMD.InstallDir);
if(!std.file.exists(dmdpath))
return "echo dmd.exe not found in DMDInstallDir=" ~ installDir ~ " or through PATH\nexit /B 1";
string druntimePath = "src\\druntime\\src\\";
if(!std.file.exists(installDir ~ druntimePath ~ "object_.d") &&
!std.file.exists(installDir ~ druntimePath ~ "object.d")) // dmd >=2.068 no longer has object_.d
druntimePath = "druntime\\src\\";
if(!std.file.exists(installDir ~ druntimePath ~ "object_.d") &&
!std.file.exists(installDir ~ druntimePath ~ "object.d"))
return "echo druntime source not found in DMDInstallDir=" ~ installDir ~ "\nexit /B 1";
string phobosPath = "src\\phobos\\";
if(!std.file.exists(installDir ~ phobosPath ~ "std"))
phobosPath = "phobos\\";
if(!std.file.exists(installDir ~ phobosPath ~ "std"))
return "echo phobos source not found in DMDInstallDir=" ~ installDir ~ "\nexit /B 1";
string cmdline = "@echo off\n";
cmdline ~= "echo Building " ~ lib ~ "\n";
cmdline ~= getEnvironmentChanges();
string opts = " -lib -d " ~ mProjectOptions.dmdCommonCompileOptions();
// collect C files
string[] cfiles;
cfiles ~= findDRuntimeFiles(installDir, druntimePath ~ "core", true, true, true);
cfiles ~= findDRuntimeFiles(installDir, phobosPath ~ "etc\\c", true, true, true);
if (cfiles.length)
{
foreach(i, ref file; cfiles)
{
file = installDir ~ file;
string outfile = libpath ~ "phobos-" ~ baseName(file) ~ ".obj";
string cccmd = mProjectOptions.getCppCommandLine(outfile, i == 0);
cmdline ~= cccmd ~ " -DNO_snprintf " ~ file ~ "\n";
cmdline ~= "if errorlevel 1 exit /B %ERRORLEVEL%\n\n";
file = outfile;
}
}
// collect druntime D files
string[] files;
if(std.file.exists(installDir ~ druntimePath ~ "object_.d"))
files ~= druntimePath ~ "object_.d";
else
files ~= druntimePath ~ "object.d"; // dmd >=2.068 no longer has object.di
files ~= findDRuntimeFiles(installDir, druntimePath ~ "rt", true, false, true);
files ~= findDRuntimeFiles(installDir, druntimePath ~ "core", true, false, true);
files ~= findDRuntimeFiles(installDir, druntimePath ~ "gc", true, false, true);
foreach(ref file; files)
file = installDir ~ file;
files ~= cfiles;
if(model == "32")
files ~= installDir ~ druntimePath ~ "rt\\minit.obj";
string dmd;
if(mProjectOptions.otherDMD && mProjectOptions.program.length)
dmd = quoteNormalizeFilename(mProjectOptions.program);
else
dmd = "dmd";
static string buildFiles(string dmd, string outlib, string[] files)
{
string rspfile = outlib ~ ".rsp";
string qrspfile = quoteFilename(rspfile);
string cmdline = "echo. >" ~ qrspfile ~ "\n";
foreach(file; files)
cmdline ~= "echo " ~ quoteFilename(file) ~ " >>" ~ qrspfile ~ "\n";
cmdline ~= dmd ~ " -of" ~ quoteFilename(outlib) ~ " @" ~ qrspfile ~ "\n\n";
return cmdline;
}
// because of inconsistent object.di and object_.d in dmd <2.067 we have to build
// druntime and phobos seperately
string druntimelib = libpath ~ "privatedruntime.lib";
cmdline ~= buildFiles(dmd ~ opts, druntimelib, files);
cmdline ~= "if errorlevel 1 exit /B %ERRORLEVEL%\n\n";
// collect phobos D files
files = null;
files ~= findDRuntimeFiles(installDir, phobosPath ~ "std", true, false, true);
files ~= findDRuntimeFiles(installDir, phobosPath ~ "etc\\c", true, false, true);
foreach(ref file; files)
file = installDir ~ file;
cmdline ~= buildFiles(dmd ~ opts ~ " " ~ quoteFilename(druntimelib), lib, files);
cmdline = mProjectOptions.replaceEnvironment(cmdline, this, null, lib);
return cmdline;
}
bool isPhobosUptodate(string* preason)
{
string workdir = GetProjectDir();
string outfile = GetPhobosPath();
string lib = makeFilenameAbsolute(outfile, workdir);
if (!std.file.exists(lib))
{
if(preason)
*preason = "does not exist";
return false;
}
string cmd = GetPhobosCommandLine();
if(cmd.length == 0)
return true;
string cmdfile = makeFilenameAbsolute(outfile ~ "." ~ kCmdLogFileExtension, workdir);
if(!compareCommandFile(cmdfile, cmd))
{
if(preason)
*preason = "command line has changed";
return false;
}
// no further dependency checks
return true;
}
string getCommandLine()
{
bool doLink = mProjectOptions.compilationModel != ProjectOptions.kSeparateCompileOnly;
bool separateLink = mProjectOptions.doSeparateLink();
string opt = mProjectOptions.buildCommandLine(true, !separateLink && doLink, true);
string workdir = normalizeDir(GetProjectDir());
bool x64 = mProjectOptions.isX86_64;
bool mscoff = mProjectOptions.compiler == Compiler.DMD && mProjectOptions.mscoff;
string precmd = getEnvironmentChanges();
string[] files = getInputFileList();
//quoteFilenames(files);
string responsefile = GetCommandLinePath() ~ ".rsp";
string fcmd = getCommandFileList(files, responsefile, precmd);
string[] srcfiles = getSourceFileList();
string modules_ddoc;
string mod_cmd = getModulesDDocCommandLine(srcfiles, modules_ddoc);
if(mod_cmd.length > 0)
{
precmd ~= mod_cmd ~ "\nif errorlevel 1 goto reportError\n";
fcmd ~= " " ~ modules_ddoc;
}
auto globOpts = Package.GetGlobalOptions();
if(separateLink || !doLink)
{
bool singleObj = (mProjectOptions.compilationModel == ProjectOptions.kCombinedCompileAndLink);
if(fcmd.length == 0)
opt = ""; // don't try to build zero files
else if(singleObj)
opt ~= " -c" ~ mProjectOptions.getOutputFileOption("$(OutDir)\\$(ProjectName)." ~ mProjectOptions.objectFileExtension());
else
opt ~= " -c" ~ mProjectOptions.getOutputDirOption();
}
string addopt;
if(mProjectOptions.additionalOptions.length && fcmd.length)
addopt = " " ~ mProjectOptions.additionalOptions.replace("\n", " ");
string cmd = precmd ~ opt ~ fcmd ~ addopt ~ "\n";
cmd = cmd ~ "if errorlevel 1 goto reportError\n";
if(separateLink && doLink)
{
string prelnk, lnkcmd;
if(mProjectOptions.callLinkerDirectly())
{
string libpaths, options;
string otherCompiler = mProjectOptions.replaceEnvironment(mProjectOptions.otherCompilerPath(), this);
string linkpath = globOpts.getLinkerPath(x64, mscoff, workdir, otherCompiler, &libpaths, &options);
lnkcmd = quoteFilename(linkpath) ~ " ";
if(globOpts.demangleError || globOpts.optlinkDeps)
lnkcmd = "\"$(VisualDInstallDir)pipedmd.exe\" "
~ (globOpts.demangleError ? null : "-nodemangle ")
~ (globOpts.optlinkDeps ? "-deps " ~ quoteFilename(GetLinkDependenciesPath()) ~ " " : null)
~ lnkcmd;
string[] lnkfiles = getObjectFileList(files); // convert D files to object files, but leaves anything else untouched
string plus = x64 || mscoff ? " " : "+";
string cmdfiles = mProjectOptions.optlinkCommandLine(lnkfiles, options, workdir, x64 || mscoff, plus);
if(cmdfiles.length > 100)
{
string lnkresponsefile = GetCommandLinePath() ~ ".lnkarg";
lnkresponsefile = makeFilenameAbsolute(lnkresponsefile, workdir);
if(lnkresponsefile != quoteFilename(lnkresponsefile))
{
// optlink does not support quoted response files
if(!std.file.exists(lnkresponsefile))
collectException(std.file.write(lnkresponsefile, ""));
string shortresponsefile = shortFilename(lnkresponsefile);
if (shortresponsefile.empty || shortresponsefile != quoteFilename(shortresponsefile))
lnkresponsefile = baseName(lnkresponsefile); // if short name generation fails, move it into the project folder
else
lnkresponsefile = shortresponsefile;
}
plus ~= " >> " ~ lnkresponsefile ~ "\necho ";
cmdfiles = mProjectOptions.optlinkCommandLine(lnkfiles, options, workdir, x64 || mscoff, plus);
prelnk ~= "echo. > " ~ lnkresponsefile ~ "\n";
prelnk ~= "echo " ~ cmdfiles;
prelnk ~= " >> " ~ lnkresponsefile ~ "\n\n";
lnkcmd ~= "@" ~ lnkresponsefile;
}
else
lnkcmd ~= cmdfiles;
if(!mProjectOptions.useStdLibPath)
prelnk = "set OPTLINKS=%OPTLINKS% /NOSCANLIB\n" ~ prelnk;
prelnk = "set LIB=" ~ libpaths ~ "\n" ~ prelnk;
}
else
{
lnkcmd = mProjectOptions.buildCommandLine(false, true, false);
lnkcmd ~= getLinkFileList(files, prelnk);
string addlnkopt = mProjectOptions.getAdditionalLinkOptions();
if(addlnkopt.length)
lnkcmd ~= " " ~ addlnkopt;
}
cmd = cmd ~ "\n" ~ prelnk ~ lnkcmd ~ "\n";
cmd = cmd ~ "if errorlevel 1 goto reportError\n";
}
string cv2pdb = mProjectOptions.appendCv2pdb();
if(cv2pdb.length && doLink)
{
string cvtarget = quoteFilename(mProjectOptions.getTargetPath() ~ "_cv");
cmd ~= "if not exist " ~ cvtarget ~ " (echo " ~ cvtarget ~ " not created! && goto reportError)\n";
cmd ~= "echo Converting debug information...\n";
cmd ~= cv2pdb;
cmd ~= "\nif errorlevel 1 goto reportError\n";
}
string pre = strip(mProjectOptions.preBuildCommand);
if(pre.length)
cmd = pre ~ "\nif errorlevel 1 goto reportError\n" ~ cmd;
string post = strip(mProjectOptions.postBuildCommand);
if(post.length)
cmd = cmd ~ "\nif errorlevel 1 goto reportError\n" ~ post ~ "\n\n";
string target = quoteFilename(mProjectOptions.getTargetPath());
cmd ~= "if not exist " ~ target ~ " (echo " ~ target ~ " not created! && goto reportError)\n";
cmd ~= "\ngoto noError\n";
cmd ~= "\n:reportError\n";
cmd ~= "echo Building " ~ GetTargetPath() ~ " failed!\n";
cmd ~= "\n:noError\n";
return mProjectOptions.replaceEnvironment(cmd, this);
}
bool writeLinkDependencyFile()
{
string workdir = normalizeDir(GetProjectDir());
string depfile = makeFilenameAbsolute(GetDependenciesPath(), workdir);
string[] files = getInputFileList();
files = getObjectFileList(files);
string prefix = "target (";
string postfix = ") : public : object \n";
string deps;
foreach(f; files)
{
deps ~= prefix ~ replace(f, "\\", "\\\\") ~ postfix;
}
bool fromMap = mProjectOptions.mapverbosity >= 3;
try
{
std.file.write(depfile, deps);
return true;
}
catch(Exception e)
{
}
return false;
}
string[] getLibsFromDependentProjects()
{
string[] libs;
auto solutionBuildManager = queryService!(IVsSolutionBuildManager)();
if(!solutionBuildManager)
return libs;
scope(exit) release(solutionBuildManager);
ULONG cActual;
if(HRESULT hr = solutionBuildManager.GetProjectDependencies(mProvider.mProject, 0, null, &cActual))
return libs;
IVsHierarchy[] pHier = new IVsHierarchy [cActual];
if(HRESULT hr = solutionBuildManager.GetProjectDependencies(mProvider.mProject, cActual, pHier.ptr, &cActual))
return libs;
for(int i = 0; i < cActual; i++)
{
IVsProjectCfg prjcfg;
if(pHier[i].QueryInterface(&IVsProjectCfg.iid, cast(void**)&prjcfg) != S_OK)
{
IVsCfg cfg;
IVsGetCfgProvider gcp;
IVsCfgProvider cp;
IVsCfgProvider2 cp2;
if(pHier[i].QueryInterface(&IVsGetCfgProvider.iid, cast(void**)&gcp) == S_OK)
gcp.GetCfgProvider(&cp);
else
pHier[i].QueryInterface(&IVsCfgProvider.iid, cast(void**)&cp);
if(cp)
{
cp.QueryInterface(&IVsCfgProvider2.iid, cast(void**)&cp2);
if(cp2)
{
cp2.GetCfgOfName(_toUTF16z(mName), _toUTF16z(mPlatform), &cfg);
if(!cfg)
cp2.GetCfgs(1, &cfg, null, null); // TODO: find a "similar" config?
if(cfg)
cfg.QueryInterface(&IVsProjectCfg.iid, cast(void**)&prjcfg);
}
}
release(cfg);
release(gcp);
release(cp);
release(cp2);
}
if(prjcfg)
{
scope(exit) release(prjcfg);
debug logOutputGroups(prjcfg);
version(none)
if(auto prjcfg2 = qi_cast!IVsProjectCfg2(prjcfg))
{
scope(exit) release(prjcfg2);
IVsOutputGroup outputGroup;
if(prjcfg2.OpenOutputGroup(VS_OUTPUTGROUP_CNAME_Built, &outputGroup) == S_OK)
{
scope(exit) release(outputGroup);
ULONG cnt;
if(outputGroup.get_Outputs(0, null, &cnt) == S_OK)
{
auto outs = new IVsOutput2[cnt];
if(outputGroup.get_Outputs(cnt, outs.ptr, null) == S_OK)
{
foreach(o; outs)
{
ScopedBSTR target;
if(o.get_CanonicalName(&target.bstr) == S_OK)
{
string targ = target.detach();
libs ~= targ;
}
release(o);
}
}
}
}
}
IVsEnumOutputs eo;
if(prjcfg.EnumOutputs(&eo) == S_OK)
{
scope(exit) release(eo);
ULONG fetched;
string lastTarg;
IVsOutput pIVsOutput;
while(eo.Next(1, &pIVsOutput, &fetched) == S_OK && fetched == 1)
{
ScopedBSTR target;
if(pIVsOutput.get_CanonicalName(&target.bstr) == S_OK)
//if(pIVsOutput.get_DeploySourceURL(&target.bstr) == S_OK)
//if(pIVsOutput.get_DisplayName(&target.bstr) == S_OK)
{
string targ = target.detach();
if (lastTarg.length && targ.indexOf('$') >= 0)
{
// VC projects report the import library without expanding macros
// (even if building static libraries), so assume it lies along side the DLL
if (targ.extension().toLower() == ".lib" && lastTarg.extension().toLower() != ".lib")
targ = lastTarg.stripExtension() ~ ".lib";
else
targ = null;
}
if (targ.length)
{
libs ~= targ;
lastTarg = targ;
}
}
release(pIVsOutput);
}
}
}
release(pHier[i]);
}
return libs;
}
void logOutputGroups(IVsProjectCfg prjcfg)
{
if(auto prjcfg2 = qi_cast!IVsProjectCfg2(prjcfg))
{
scope(exit) release(prjcfg2);
ULONG cntGroups;
if(SUCCEEDED(prjcfg2.get_OutputGroups(0, null, &cntGroups)))
{
auto groups = new IVsOutputGroup[cntGroups];
if(prjcfg2.get_OutputGroups(cntGroups, groups.ptr, &cntGroups) == S_OK)
{
foreach(outputGroup; groups)
{
scope(exit) release(outputGroup);
BSTR bstrCanName, bstrDispName, bstrKeyOut, bstrDesc;
outputGroup.get_CanonicalName(&bstrCanName);
outputGroup.get_DisplayName(&bstrDispName);
outputGroup.get_KeyOutput(&bstrKeyOut);
outputGroup.get_Description(&bstrDesc);
logCall("Group: %s Disp: %s KeyOut: %s Desc: %s", detachBSTR(bstrCanName), detachBSTR(bstrDispName), detachBSTR(bstrKeyOut), detachBSTR(bstrDesc));
ULONG cnt;
if(outputGroup.get_Outputs(0, null, &cnt) == S_OK)
{
auto outs = new IVsOutput2[cnt];
if(outputGroup.get_Outputs(cnt, outs.ptr, &cnt) == S_OK)
{
foreach(o; outs)
{
BSTR target, display, url;
o.get_CanonicalName(&target);
o.get_DisplayName(&display);
o.get_DeploySourceURL(&url);
logCall(" Out: %s Disp: %s URL: %s", detachBSTR(target), detachBSTR(display), detachBSTR(url));
release(o);
}
}
}
}
}
}
}
}
int addJSONFiles(ref string[] files)
{
int cnt = 0;
alias mProjectOptions opt;
if(opt.doXGeneration)
{
void addJSONFile(string xfile)
{
xfile = makeFilenameAbsolute(xfile, GetProjectDir());
if(xfile.length && std.file.exists(xfile))
{
addunique(files, xfile);
cnt++;
}
}
if(opt.compilationModel == ProjectOptions.kSingleFileCompilation)
{
searchNode(mProvider.mProject.GetRootNode(),
delegate (CHierNode n) {
if(CFileNode file = cast(CFileNode) n)
{
string tool = GetCompileTool(file);
if(tool == "DMDsingle")
{
string outfile = GetOutputFile(file);
string xfile = opt.replaceEnvironment(opt.xfilename, this, file.GetFilename(), outfile);
addJSONFile(xfile);
}
}
return false;
});
}
else
{
string xfile = opt.replaceEnvironment(opt.xfilename, this);
addJSONFile(xfile);
}
}
return cnt;
}
// tick the sink and check if build can continue or not.
BOOL FFireTick()
{
foreach(cb; mBuildStatusCallbacks)
{
//if (m_rgfTicking[i])
{
BOOL fContinue = TRUE;
HRESULT hr = cb.Tick(&fContinue);
assert(SUCCEEDED(hr));
if (!fContinue)
return FALSE;
}
}
return TRUE;
}
void FFireBuildBegin(ref BOOL fContinue)
{
fContinue = TRUE;
foreach(key, cb; mBuildStatusCallbacks)
{
HRESULT hr = cb.BuildBegin(&fContinue);
if(FAILED(hr) || !fContinue)
break;
mStarted[key] = true;
}
}
void FFireBuildEnd(BOOL fSuccess)
{
// make a copy in case BuildEnd calls Unadvise
IVsBuildStatusCallback[] cbs;
foreach(key, cb; mBuildStatusCallbacks)
if(mStarted[key])
{
cbs ~= cb;
mStarted[key] = false;
}
foreach(cb; cbs)
{
HRESULT hr = cb.BuildEnd(fSuccess);
assert(SUCCEEDED(hr));
}
Package.scheduleUpdateLibrary();
}
CBuilderThread getBuilder() { return mBuilder; }
string getName() { return mName; }
string getPlatform() { return mPlatform; }
string getCfgName() { return mName ~ "|" ~ mPlatform; }
private:
string mName;
string mPlatform;
ConfigProvider mProvider;
ProjectOptions mProjectOptions;
CBuilderThread mBuilder;
version(hasOutputGroup)
VsOutputGroup mOutputGroup;
ConfigModifiedListener[] mModifiedListener;
IVsBuildStatusCallback[VSCOOKIE] mBuildStatusCallbacks;
bool[VSCOOKIE] mTicking;
bool[VSCOOKIE] mStarted;
VSCOOKIE mLastBuildStatusCookie;
};
class DEnumOutFactory : DComObject, IClassFactory
{
override HRESULT QueryInterface(in IID* riid, void** pvObject)
{
if(queryInterface2!(IClassFactory) (this, IID_IClassFactory, riid, pvObject))
return S_OK;
return super.QueryInterface(riid, pvObject);
}
override HRESULT CreateInstance(IUnknown UnkOuter, in IID* riid, void** pvObject)
{
logCall("%s.CreateInstance(riid=%s)", this, _toLog(riid));
assert(!UnkOuter);
DEnumOutputs eo = newCom!DEnumOutputs(null, 0);
return eo.QueryInterface(riid, pvObject);
}
override HRESULT LockServer(in BOOL fLock)
{
return returnError(E_NOTIMPL);
}
}
class DEnumOutputs : DComObject, IVsEnumOutputs, ICallFactory, IExternalConnection, IMarshal
{
// {785486EE-2FB9-47f5-85A9-5790A60B5CEB}
static const GUID iid = { 0x785486ee, 0x2fb9, 0x47f5, [ 0x85, 0xa9, 0x57, 0x90, 0xa6, 0xb, 0x5c, 0xeb ] };
string[] mTargets;
int mPos;
this(Config cfg, int pos)
{
if(cfg)
mTargets ~= makeFilenameAbsolute(cfg.GetTargetPath(), cfg.GetProjectDir());
mPos = pos;
}
this(DEnumOutputs eo)
{
mTargets = eo.mTargets;
mPos = eo.mPos;
}
override HRESULT QueryInterface(in IID* riid, void** pvObject)
{
if(queryInterface!(IVsEnumOutputs) (this, riid, pvObject))
return S_OK;
if(queryInterface!(ICallFactory) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IExternalConnection) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IMarshal) (this, riid, pvObject))
return S_OK;
return super.QueryInterface(riid, pvObject);
}
override HRESULT Reset()
{
mixin(LogCallMix);
mPos = 0;
return S_OK;
}
override HRESULT Next(in ULONG cElements, IVsOutput *rgpIVsOutput, ULONG *pcElementsFetched)
{
mixin(LogCallMix);
if(mPos >= mTargets.length || cElements < 1)
{
if(pcElementsFetched)
*pcElementsFetched = 0;
return returnError(S_FALSE);
}
if(pcElementsFetched)
*pcElementsFetched = 1;
*rgpIVsOutput = addref(newCom!VsOutput(mTargets[mPos]));
mPos++;
return S_OK;
}
override HRESULT Skip(in ULONG cElements)
{
logCall("%s.Skip(cElements=%s)", this, _toLog(cElements));
mPos += cElements;
if(mPos > mTargets.length)
{
mPos = mTargets.length;
return S_FALSE;
}
return S_OK;
}
override HRESULT Clone(IVsEnumOutputs *ppIVsEnumOutputs)
{
mixin(LogCallMix);
*ppIVsEnumOutputs = addref(newCom!DEnumOutputs(this));
return S_OK;
}
// ICallFactory
override HRESULT CreateCall(
/+[in]+/ in IID* riid,
/+[in]+/ IUnknown pCtrlUnk,
/+[in]+/ in IID* riid2,
/+[out, iid_is(riid2)]+/ IUnknown *ppv )
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
// IExternalConnection
override DWORD AddConnection (
/+[in]+/ in DWORD extconn,
/+[in]+/ in DWORD reserved )
{
mixin(LogCallMix);
return ++mExternalReferences;
}
override DWORD ReleaseConnection(
/+[in]+/ in DWORD extconn,
/+[in]+/ in DWORD reserved,
/+[in]+/ in BOOL fLastReleaseCloses )
{
mixin(LogCallMix);
--mExternalReferences;
if(mExternalReferences == 0)
CoDisconnectObject(this, 0);
return mExternalReferences;
}
int mExternalReferences;
// IMarshall
override HRESULT GetUnmarshalClass
(
/+[in]+/ in IID* riid,
/+[in, unique]+/ in void *pv,
/+[in]+/ in DWORD dwDestContext,
/+[in, unique]+/ in void *pvDestContext,
/+[in]+/ in DWORD mshlflags,
/+[out]+/ CLSID *pCid
)
{
mixin(LogCallMixNoRet);
*cast(GUID*)pCid = g_unmarshalEnumOutCLSID;
return S_OK;
}
override HRESULT GetMarshalSizeMax
(
/+[in]+/ in IID* riid,
/+[in, unique]+/ in void *pv,
/+[in]+/ in DWORD dwDestContext,
/+[in, unique]+/ in void *pvDestContext,
/+[in]+/ in DWORD mshlflags,
/+[out]+/ DWORD *pSize
)
{
mixin(LogCallMixNoRet);
DWORD size = iid.sizeof + int.sizeof;
foreach(s; mTargets)
size += int.sizeof + s.length;
size += mPos.sizeof;
*pSize = size;
return S_OK;
//return returnError(E_NOTIMPL);
}
override HRESULT MarshalInterface
(
/+[in, unique]+/ IStream pStm,
/+[in]+/ in IID* riid,
/+[in, unique]+/ in void *pv,
/+[in]+/ in DWORD dwDestContext,
/+[in, unique]+/ in void *pvDestContext,
/+[in]+/ in DWORD mshlflags
)
{
mixin(LogCallMixNoRet);
if(HRESULT hr = pStm.Write(cast(void*)&iid, iid.sizeof, null))
return hr;
int length = mTargets.length;
if(HRESULT hr = pStm.Write(&length, length.sizeof, null))
return hr;
foreach(s; mTargets)
{
length = s.length;
if(HRESULT hr = pStm.Write(&length, length.sizeof, null))
return hr;
if(HRESULT hr = pStm.Write(cast(void*)s.ptr, length, null))
return hr;
}
if(HRESULT hr = pStm.Write(&mPos, mPos.sizeof, null))
return hr;
return S_OK;
}
override HRESULT UnmarshalInterface
(
/+[in, unique]+/ IStream pStm,
/+[in]+/ in IID* riid,
/+[out]+/ void **ppv
)
{
mixin(LogCallMix);
GUID miid;
if(HRESULT hr = pStm.Read(&miid, iid.sizeof, null))
return returnError(hr);
assert(miid == iid);
int cnt;
if(HRESULT hr = pStm.Read(&cnt, cnt.sizeof, null))
return hr;
DEnumOutputs eo = newCom!DEnumOutputs(null, 0);
for(int i = 0; i < cnt; i++)
{
int length;
if(HRESULT hr = pStm.Read(&length, length.sizeof, null))
return hr;
char[] s = new char[length];
if(HRESULT hr = pStm.Read(s.ptr, length, null))
return hr;
eo.mTargets ~= cast(string) s;
}
if(HRESULT hr = pStm.Read(&eo.mPos, eo.mPos.sizeof, null))
return hr;
return eo.QueryInterface(riid, ppv);
}
override HRESULT ReleaseMarshalData(/+[in, unique]+/ IStream pStm)
{
mixin(LogCallMix2);
return returnError(E_NOTIMPL);
}
override HRESULT DisconnectObject(/+[in]+/ in DWORD dwReserved)
{
logCall("%s.DisconnectObject(dwReserved=%s)", this, _toLog(dwReserved));
return returnError(E_NOTIMPL);
}
}
class VsOutput : DComObject, IVsOutput2
{
string mTarget;
this(string target)
{
mTarget = target;
}
override HRESULT QueryInterface(in IID* riid, void** pvObject)
{
version(hasOutputGroup)
if(queryInterface!(IVsOutput2) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsOutput) (this, riid, pvObject))
return S_OK;
return super.QueryInterface(riid, pvObject);
}
override HRESULT get_DisplayName(BSTR *pbstrDisplayName)
{
logCall("%s.get_DisplayName(pbstrDisplayName=%s)", this, _toLog(pbstrDisplayName));
*pbstrDisplayName = allocBSTR(mTarget);
return S_OK;
}
override HRESULT get_CanonicalName(BSTR *pbstrCanonicalName)
{
logCall("%s.get_CanonicalName(pbstrCanonicalName=%s)", this, _toLog(pbstrCanonicalName));
*pbstrCanonicalName = allocBSTR(mTarget);
return S_OK;
}
override HRESULT get_DeploySourceURL(BSTR *pbstrDeploySourceURL)
{
logCall("%s.get_DeploySourceURL(pbstrDeploySourceURL=%s)", this, _toLog(pbstrDeploySourceURL));
*pbstrDeploySourceURL = allocBSTR("file:///" ~ mTarget);
return S_OK;
}
// obsolete method
override HRESULT get_Type(/+[out]+/ GUID *pguidType)
{
logCall("%s.get_Type(pguidType=%s)", this, _toLog(pguidType));
*pguidType = GUID_NULL;
return S_OK;
}
// IVsOutput2
HRESULT get_RootRelativeURL(/+[out]+/ BSTR *pbstrRelativePath)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
HRESULT get_Property(in LPCOLESTR szProperty, /+[out]+/ VARIANT *pvar)
{
mixin(LogCallMix);
string prop = to_string(szProperty);
if (icmp(prop, "OUTPUTLOC") == 0)
{
pvar.vt = VT_BSTR;
pvar.bstrVal = allocBSTR(mTarget);
return S_OK;
}
return returnError(E_NOTIMPL);
}
}
class VsOutputGroup : DComObject, IVsOutputGroup
{
this(Config cfg)
{
mConfig = cfg;
}
override HRESULT QueryInterface(in IID* riid, void** pvObject)
{
if(queryInterface!(IVsOutputGroup) (this, riid, pvObject))
return S_OK;
return super.QueryInterface(riid, pvObject);
}
// These return identical information regardless of cfg setting:
HRESULT get_CanonicalName(/+[out]+/ BSTR *pbstrCanonicalName)
{
mixin(LogCallMix);
*pbstrCanonicalName = allocBSTR(to_string(VS_OUTPUTGROUP_CNAME_Built));
return S_OK;
}
HRESULT get_DisplayName(/+[out]+/ BSTR *pbstrDisplayName)
{
mixin(LogCallMix);
*pbstrDisplayName = allocBSTR("Project build target");
return S_OK;
}
// The results of these will vary based on the configuration:
HRESULT get_KeyOutput(/+[out]+/ BSTR *pbstrCanonicalName)
{
mixin(LogCallMix);
string target = makeFilenameAbsolute(mConfig.GetTargetPath(), mConfig.GetProjectDir());
*pbstrCanonicalName = allocBSTR(target);
return S_OK;
}
// Back pointer to project cfg:
HRESULT get_ProjectCfg(/+[out]+/ IVsProjectCfg2 *ppIVsProjectCfg2)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
// The list of outputs. There might be none! Not all files go out
// on every configuration, and a groups files might all be configuration
// dependent!
HRESULT get_Outputs(in ULONG celt,
/+[in, out, size_is(celt)]+/ IVsOutput2 *rgpcfg,
/+[out, optional]+/ ULONG *pcActual)
{
mixin(LogCallMix);
if(celt >= 1)
{
string target = makeFilenameAbsolute(mConfig.GetTargetPath(), mConfig.GetProjectDir());
*rgpcfg = addref(newCom!VsOutput(target));
}
if(pcActual)
*pcActual = 1;
return S_OK;
}
HRESULT get_DeployDependencies(in ULONG celt,
/+[in, out, size_is(celt)]+/ IVsDeployDependency *rgpdpd,
/+[out, optional]+/ ULONG *pcActual)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
HRESULT get_Description(/+[out]+/ BSTR *pbstrDescription)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
private:
Config mConfig;
};
///////////////////////////////////////////////////////////////////////
version(hasProfilableConfig)
{
class TargetInfoFactory : DComObject, IClassFactory
{
override HRESULT QueryInterface(in IID* riid, void** pvObject)
{
if(queryInterface2!(IClassFactory) (this, IID_IClassFactory, riid, pvObject))
return S_OK;
return super.QueryInterface(riid, pvObject);
}
override HRESULT CreateInstance(IUnknown UnkOuter, in IID* riid, void** pvObject)
{
logCall("%s.CreateInstance(riid=%s)", this, _toLog(riid));
assert(!UnkOuter);
ProfilerTargetInfo pti = newCom!ProfilerTargetInfo(null);
return pti.QueryInterface(riid, pvObject);
}
override HRESULT LockServer(in BOOL fLock)
{
return returnError(E_NOTIMPL);
}
}
class ProfilerTargetInfo : DComObject, IVsProfilerTargetInfo, IVsProfilerLaunchExeTargetInfo, IMarshal
{
string mPlatform;
string mWorkdir;
string mProgram;
string mArgs;
this(Config cfg)
{
if(cfg)
{
mPlatform = cfg.mPlatform;
mWorkdir = cfg.mProjectOptions.replaceEnvironment(cfg.mProjectOptions.debugworkingdir, cfg);
if(!isAbsolute(mWorkdir))
mWorkdir = cfg.GetProjectDir() ~ "\\" ~ mWorkdir;
mProgram = cfg.mProjectOptions.replaceEnvironment(cfg.mProjectOptions.debugtarget, cfg);
if(!isAbsolute(mProgram))
mProgram = makeFilenameAbsolute(mProgram, mWorkdir);
mArgs = cfg.mProjectOptions.replaceEnvironment(cfg.mProjectOptions.debugarguments, cfg);
}
}
override HRESULT QueryInterface(in IID* riid, void** pvObject)
{
if(queryInterface!(IVsProfilerTargetInfo) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsProfilerLaunchTargetInfo) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsProfilerLaunchExeTargetInfo) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IMarshal) (this, riid, pvObject))
return S_OK;
return super.QueryInterface(riid, pvObject);
}
// IVsProfilerTargetInfo
HRESULT ProcessArchitecture(VSPROFILERPROCESSARCHTYPE* arch)
{
mixin(LogCallMix2);
if(mPlatform == "x64")
*arch = ARCH_X64;
else
*arch = ARCH_X86;
return S_OK;
}
// IVsProfilerLaunchTargetInfo
HRESULT References(SAFEARRAY* rgbstr)
{
mixin(LogCallMix2);
return S_OK;
}
HRESULT EnvironmentSettings(SAFEARRAY* pbstr)
{
mixin(LogCallMix2);
return S_OK;
}
HRESULT LaunchProfilerFlags(VSPROFILERLAUNCHOPTS* opts)
{
mixin(LogCallMix2);
*opts = VSPLO_NOPROFILE; // to just launch the exe!?
return S_OK;
}
// IVsProfilerLaunchExeTargetInfo
HRESULT ExecutableArguments(BSTR* pbstr)
{
mixin(LogCallMix2);
*pbstr = allocBSTR(mArgs);
return S_OK;
}
HRESULT ExecutablePath (BSTR* pbstr)
{
mixin(LogCallMix2);
*pbstr = allocBSTR(mProgram);
return S_OK;
}
HRESULT WorkingDirectory (BSTR* pbstr)
{
mixin(LogCallMix2);
*pbstr = allocBSTR(mWorkdir[0..$-1]);
return S_OK;
}
// IMarshall
override HRESULT GetUnmarshalClass(
/+[in]+/ in IID* riid,
/+[in, unique]+/ in void *pv,
/+[in]+/ in DWORD dwDestContext,
/+[in, unique]+/ in void *pvDestContext,
/+[in]+/ in DWORD mshlflags,
/+[out]+/ CLSID *pCid)
{
mixin(LogCallMixNoRet);
*cast(GUID*)pCid = g_unmarshalTargetInfoCLSID;
return S_OK;
//return returnError(E_NOTIMPL);
}
override HRESULT GetMarshalSizeMax(
/+[in]+/ in IID* riid,
/+[in, unique]+/ in void *pv,
/+[in]+/ in DWORD dwDestContext,
/+[in, unique]+/ in void *pvDestContext,
/+[in]+/ in DWORD mshlflags,
/+[out]+/ DWORD *pSize)
{
mixin(LogCallMixNoRet);
DWORD size = iid.sizeof;
size += int.sizeof + mPlatform.length;
size += int.sizeof + mWorkdir.length;
size += int.sizeof + mProgram.length;
size += int.sizeof + mArgs.length;
*pSize = size;
return S_OK;
}
override HRESULT MarshalInterface(
/+[in, unique]+/ IStream pStm,
/+[in]+/ in IID* riid,
/+[in, unique]+/ in void *pv,
/+[in]+/ in DWORD dwDestContext,
/+[in, unique]+/ in void *pvDestContext,
/+[in]+/ in DWORD mshlflags)
{
mixin(LogCallMixNoRet);
HRESULT hr = pStm.Write(cast(void*)&iid, iid.sizeof, null);
void writeString(string s)
{
int length = s.length;
if(hr == S_OK)
hr = pStm.Write(&length, length.sizeof, null);
if(hr == S_OK && length > 0)
hr = pStm.Write(cast(void*)s.ptr, length, null);
}
writeString(mPlatform);
writeString(mWorkdir);
writeString(mProgram);
writeString(mArgs);
return hr;
}
override HRESULT UnmarshalInterface(
/+[in, unique]+/ IStream pStm,
/+[in]+/ in IID* riid,
/+[out]+/ void **ppv)
{
mixin(LogCallMix);
GUID miid;
HRESULT hr = pStm.Read(&miid, iid.sizeof, null);
if (hr == S_OK)
assert(miid == iid);
void readString(ref string str)
{
int length;
if(hr == S_OK)
hr = pStm.Read(&length, length.sizeof, null);
if(hr == S_OK)
{
char[] s = new char[length];
hr = pStm.Read(s.ptr, length, null);
if(hr == S_OK)
str = assumeUnique(s);
}
}
ProfilerTargetInfo pti = newCom!ProfilerTargetInfo(null);
readString(pti.mPlatform);
readString(pti.mWorkdir);
readString(pti.mProgram);
readString(pti.mArgs);
if(hr != S_OK)
return returnError(hr);
return pti.QueryInterface(riid, ppv);
}
override HRESULT ReleaseMarshalData(/+[in, unique]+/ IStream pStm)
{
mixin(LogCallMix2);
return returnError(E_NOTIMPL);
}
override HRESULT DisconnectObject(/+[in]+/ in DWORD dwReserved)
{
logCall("%s.DisconnectObject(dwReserved=%s)", this, _toLog(dwReserved));
return returnError(E_NOTIMPL);
}
int mExternalReferences;
}
class EnumVsProfilerTargetInfos : DComObject, IEnumVsProfilerTargetInfos
{
Config mConfig;
int mPos;
this(Config cfg)
{
mConfig = cfg;
mPos = 0;
}
override HRESULT QueryInterface(in IID* riid, void** pvObject)
{
if(queryInterface2!(IEnumVsProfilerTargetInfos) (this, uuid_IEnumVsProfilerTargetInfos, riid, pvObject))
return S_OK;
return super.QueryInterface(riid, pvObject);
}
HRESULT Next(in ULONG celt, IVsProfilerTargetInfo *rgelt, ULONG *pceltFetched)
{
ULONG fetched = 0;
if(mPos == 0 && celt > 0)
{
*rgelt = addref(newCom!ProfilerTargetInfo(mConfig));
fetched = 1;
mPos++;
}
if(pceltFetched)
*pceltFetched = fetched;
return fetched > 0 ? S_OK : S_FALSE;
}
HRESULT Skip(in ULONG celt)
{
mPos += celt;
return S_OK;
}
HRESULT Reset()
{
mPos = 0;
return S_OK;
}
HRESULT Clone(IEnumVsProfilerTargetInfos *ppenum)
{
*ppenum = addref(newCom!EnumVsProfilerTargetInfos(mConfig));
return S_OK;
}
}
} // version(hasProfilableConfig)
|
D
|
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
* D Port:
* Bill Baxter <wbaxter@gmail.com>
*******************************************************************************/
module tree.Snippet170;
/*
* Tree example snippet: Create a Tree with columns
*
* For a list of all SWT example snippets see
* http://www.eclipse.org/swt/snippets/
*
* @since 3.1
*/
import dwt.DWT;
import dwt.widgets.Display;
import dwt.widgets.Shell;
import dwt.widgets.Tree;
import dwt.widgets.TreeItem;
import dwt.widgets.TreeColumn;
import dwt.layout.FillLayout;
import tango.util.Convert;
import dwt.dwthelper.utils;
void main() {
Display display = new Display();
final Shell shell = new Shell(display);
shell.setLayout(new FillLayout());
Tree tree = new Tree(shell, DWT.BORDER | DWT.H_SCROLL | DWT.V_SCROLL);
tree.setHeaderVisible(true);
TreeColumn column1 = new TreeColumn(tree, DWT.LEFT);
column1.setText("Column 1");
column1.setWidth(200);
TreeColumn column2 = new TreeColumn(tree, DWT.CENTER);
column2.setText("Column 2");
column2.setWidth(200);
TreeColumn column3 = new TreeColumn(tree, DWT.RIGHT);
column3.setText("Column 3");
column3.setWidth(200);
for (int i = 0; i < 4; i++) {
TreeItem item = new TreeItem(tree, DWT.NONE);
item.setText([ "item " ~ to!(String)(i), "abc", "defghi" ]);
for (int j = 0; j < 4; j++) {
TreeItem subItem = new TreeItem(item, DWT.NONE);
subItem.setText([ "subitem " ~ to!(String)(j), "jklmnop", "qrs" ]);
for (int k = 0; k < 4; k++) {
TreeItem subsubItem = new TreeItem(subItem, DWT.NONE);
subsubItem.setText([ "subsubitem " ~ to!(String)(k), "tuv", "wxyz" ]);
}
}
}
shell.pack();
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
}
|
D
|
/Users/phungdu/Documents/code/vapor/TILApp/Build/Intermediates/TILApp.build/Debug/Validation.build/Objects-normal/x86_64/AndValidator.o : /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validatable.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/ValidatorType.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/ValidationError.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/URLValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/AndValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/RangeValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/NilIgnoringValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/NilValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/EmailValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/InValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/OrValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/CharacterSetValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/CountValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/NotValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/EmptyValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validations.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Exports.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/NIO.framework/Modules/NIO.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/Async.framework/Modules/Async.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/Core.framework/Modules/Core.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/Debugging.framework/Modules/Debugging.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/COperatingSystem.framework/Modules/COperatingSystem.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/NIOConcurrencyHelpers.framework/Modules/NIOConcurrencyHelpers.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/Bits.framework/Modules/Bits.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/NIOFoundationCompat.framework/Modules/NIOFoundationCompat.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOAtomics.framework/Headers/cpp_magic.h /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOLinux.framework/Headers/ifaddrs-android.h /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIODarwin.framework/Headers/CNIODarwin.h /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOAtomics.framework/Headers/CNIOAtomics.h /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOLinux.framework/Headers/CNIOLinux.h /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/swift-nio-zlib-support.git--5226887469817572071/module.modulemap /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIODarwin.framework/Modules/module.modulemap /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOAtomics.framework/Modules/module.modulemap /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOLinux.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/phungdu/Documents/code/vapor/TILApp/Build/Intermediates/TILApp.build/Debug/Validation.build/Objects-normal/x86_64/AndValidator~partial.swiftmodule : /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validatable.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/ValidatorType.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/ValidationError.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/URLValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/AndValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/RangeValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/NilIgnoringValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/NilValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/EmailValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/InValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/OrValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/CharacterSetValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/CountValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/NotValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/EmptyValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validations.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Exports.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/NIO.framework/Modules/NIO.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/Async.framework/Modules/Async.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/Core.framework/Modules/Core.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/Debugging.framework/Modules/Debugging.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/COperatingSystem.framework/Modules/COperatingSystem.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/NIOConcurrencyHelpers.framework/Modules/NIOConcurrencyHelpers.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/Bits.framework/Modules/Bits.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/NIOFoundationCompat.framework/Modules/NIOFoundationCompat.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOAtomics.framework/Headers/cpp_magic.h /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOLinux.framework/Headers/ifaddrs-android.h /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIODarwin.framework/Headers/CNIODarwin.h /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOAtomics.framework/Headers/CNIOAtomics.h /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOLinux.framework/Headers/CNIOLinux.h /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/swift-nio-zlib-support.git--5226887469817572071/module.modulemap /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIODarwin.framework/Modules/module.modulemap /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOAtomics.framework/Modules/module.modulemap /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOLinux.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/phungdu/Documents/code/vapor/TILApp/Build/Intermediates/TILApp.build/Debug/Validation.build/Objects-normal/x86_64/AndValidator~partial.swiftdoc : /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validatable.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/ValidatorType.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/ValidationError.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/URLValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/AndValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/RangeValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/NilIgnoringValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/NilValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/EmailValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/InValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/OrValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/CharacterSetValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/CountValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/NotValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validators/EmptyValidator.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validations.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Exports.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/NIO.framework/Modules/NIO.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/Async.framework/Modules/Async.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/Core.framework/Modules/Core.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/Debugging.framework/Modules/Debugging.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/COperatingSystem.framework/Modules/COperatingSystem.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/NIOConcurrencyHelpers.framework/Modules/NIOConcurrencyHelpers.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/Bits.framework/Modules/Bits.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/NIOFoundationCompat.framework/Modules/NIOFoundationCompat.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOAtomics.framework/Headers/cpp_magic.h /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOLinux.framework/Headers/ifaddrs-android.h /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIODarwin.framework/Headers/CNIODarwin.h /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOAtomics.framework/Headers/CNIOAtomics.h /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOLinux.framework/Headers/CNIOLinux.h /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/swift-nio-zlib-support.git--5226887469817572071/module.modulemap /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIODarwin.framework/Modules/module.modulemap /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOAtomics.framework/Modules/module.modulemap /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOLinux.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
|
D
|
/***********************************************************************\
* d3dx10math.d *
* *
* Windows API header module *
* *
* Placed into public domain *
\***********************************************************************/
module win32.directx.d3dx10math;
version(Windows):
version(Tango) {
import tango.math.Math;
alias sqrt sqrtf;
} else {
import std.c.math;
}
private import win32.windows;
private import win32.directx.d3dx10;
struct D3DVECTOR {
float x;
float y;
float z;
}
struct D3DMATRIX {
union {
struct {
float _11, _12, _13, _14;
float _21, _22, _23, _24;
float _31, _32, _33, _34;
float _41, _42, _43, _44;
}
float[4][4] m;
}
}
const D3DX_PI = 3.14159265358979323846;
const D3DX_1BYPI = 1.0 / D3DX_PI;
float D3DXToRadian(float degree) {
return degree * (D3DX_PI / 180.0);
}
float D3DXToDegree(float radian) {
return radian * (180.0 / D3DX_PI);
}
const D3DX_16F_DIG = 3;
const D3DX_16F_EPSILON = 4.8875809e-4f;
const D3DX_16F_MANT_DIG = 11;
const D3DX_16F_MAX = 6.550400e+004;
const D3DX_16F_MAX_10_EXP = 4;
const D3DX_16F_MAX_EXP = 15;
const D3DX_16F_MIN = 6.1035156e-5f;
const D3DX_16F_MIN_10_EXP = -4;
const D3DX_16F_MIN_EXP = -14;
const D3DX_16F_RADIX = 2;
const D3DX_16F_ROUNDS = 1;
const D3DX_16F_SIGN_MASK = 0x8000;
const D3DX_16F_EXP_MASK = 0x7C00;
const D3DX_16F_FRAC_MASK = 0x03FF;
struct D3DXFLOAT16 {
//TODO
protected:
WORD value;
}
struct D3DXVECTOR2 {
//TODO
float x, y;
}
struct D3DXVECTOR2_16F {
//TODO
D3DXFLOAT16 x, y;
}
struct D3DXVECTOR3 {
//TODO
float x, y, z;
}
struct D3DXVECTOR3_16F {
//TODO
D3DXFLOAT16 x, y, z;
}
struct D3DXVECTOR4 {
//TODO
float x, y, z, w;
}
struct D3DXVECTOR4_16F {
//TODO
D3DXFLOAT16 x, y, z, w;
}
struct D3DXMATRIX {
//TODO
union {
struct {
float _11, _12, _13, _14;
float _21, _22, _23, _24;
float _31, _32, _33, _34;
float _41, _42, _43, _44;
}
float[4][4] m;
}
}
//TODO struct _D3DXMATRIXA16 : D3DXMATRIX
struct D3DXQUATERNION {
//TODO
float x, y, z, w;
}
struct D3DXPLANE {
//TODO
float a, b, c, d;
}
struct D3DXCOLOR {
//TODO
float r, g, b, a;
}
extern(Windows) {
D3DXFLOAT16* D3DXFloat32To16Array(D3DXFLOAT16* pOut, float* pIn, UINT n);
float* D3DXFloat16To32Array(float* pOut, D3DXFLOAT16* pIn, UINT n);
}
float D3DXVec2Length(D3DXVECTOR2* pV) {
debug(D3DX10_DEBUG) {
if (pV is null) return 0.0;
}
return sqrtf((pV.x * pV.x) + (pV.y * pV.y));
}
float D3DXVec2LengthSq(D3DXVECTOR2* pV) {
debug(D3DX10_DEBUG) {
if (pV is null) return 0.0;
}
return (pV.x * pV.x) + (pV.y * pV.y);
}
float D3DXVec2Dot(D3DXVECTOR2* pV1, D3DXVECTOR2* pV2) {
debug(D3DX10_DEBUG) {
if ((pV1 is null) || (pV2 is null)) return 0.0;
}
return (pV1.x * pV2.x) + (pV1.y * pV2.y);
}
float D3DXVec2CCW(D3DXVECTOR2* pV1, D3DXVECTOR2* pV2) {
debug(D3DX10_DEBUG) {
if ((pV1 is null) || (pV2 is null)) return 0.0;
}
return (pV1.x * pV2.y) + (pV1.y * pV2.x);
}
D3DXVECTOR2* D3DXVec2Add(D3DXVECTOR2* pOut, D3DXVECTOR2* pV1, D3DXVECTOR2* pV2) {
debug(D3DX10_DEBUG) {
if ((pOut is null) || (pV1 is null) || (pV2 is null)) return null;
}
pOut.x = pV1.x + pV2.x;
pOut.y = pV1.y + pV2.y;
return pOut;
}
D3DXVECTOR2* D3DXVec2Subtract(D3DXVECTOR2* pOut, D3DXVECTOR2* pV1, D3DXVECTOR2* pV2) {
debug(D3DX10_DEBUG) {
if ((pOut is null) || (pV1 is null) || (pV2 is null)) return null;
}
pOut.x = pV1.x - pV2.x;
pOut.y = pV1.y - pV2.y;
return pOut;
}
D3DXVECTOR2* D3DXVec2Minimize(D3DXVECTOR2* pOut, D3DXVECTOR2* pV1, D3DXVECTOR2* pV2) {
debug(D3DX10_DEBUG) {
if ((pOut is null) || (pV1 is null) || (pV2 is null)) return null;
}
pOut.x = pV1.x < pV2.x ? pV1.x : pV2.x;
pOut.y = pV1.y < pV2.y ? pV1.y : pV2.y;
return pOut;
}
D3DXVECTOR2* D3DXVec2Maximize(D3DXVECTOR2* pOut, D3DXVECTOR2* pV1, D3DXVECTOR2* pV2) {
debug(D3DX10_DEBUG) {
if ((pOut is null) || (pV1 is null) || (pV2 is null)) return null;
}
pOut.x = pV1.x > pV2.x ? pV1.x : pV2.x;
pOut.y = pV1.y > pV2.y ? pV1.y : pV2.y;
return pOut;
}
D3DXVECTOR2* D3DXVec2Scale(D3DXVECTOR2* pOut, D3DXVECTOR2* pV, float s) {
debug(D3DX10_DEBUG) {
if ((pOut is null) || (pV is null)) return null;
}
pOut.x = pV.x * s;
pOut.y = pV.y * s;
return pOut;
}
D3DXVECTOR2* D3DXVec2Lerp(D3DXVECTOR2* pOut, D3DXVECTOR2* pV1, D3DXVECTOR2* pV2, float s) {
debug(D3DX10_DEBUG) {
if ((pOut is null) || (pV1 is null) || (pV2 is null)) return null;
}
pOut.x = pV1.x + s * (pV2.x - pV1.x);
pOut.y = pV1.y + s * (pV2.y - pV1.y);
return pOut;
}
extern(Windows) {
D3DXVECTOR2* D3DXVec2Normalize(D3DXVECTOR2* pOut, D3DXVECTOR2* pV);
D3DXVECTOR2* D3DXVec2Hermite(D3DXVECTOR2* pOut, D3DXVECTOR2* pV1, D3DXVECTOR2* pT1, D3DXVECTOR2* pV2, D3DXVECTOR2* pT2, float s);
D3DXVECTOR2* D3DXVec2CatmullRom(D3DXVECTOR2* pOut, D3DXVECTOR2* pV0, D3DXVECTOR2* pV1, D3DXVECTOR2* pV2, D3DXVECTOR2* pV3, float s);
D3DXVECTOR2* D3DXVec2BaryCentric(D3DXVECTOR2* pOut, D3DXVECTOR2* pV1, D3DXVECTOR2* pV2, D3DXVECTOR2* pV3, float f, float g);
D3DXVECTOR4* D3DXVec2Transform(D3DXVECTOR4* pOut, D3DXVECTOR2* pV, D3DXMATRIX* pM);
D3DXVECTOR2* D3DXVec2TransformCoord(D3DXVECTOR2* pOut, D3DXVECTOR2* pV, D3DXMATRIX* pM);
D3DXVECTOR2* D3DXVec2TransformNormal(D3DXVECTOR2* pOut, D3DXVECTOR2* pV, D3DXMATRIX* pM);
D3DXVECTOR4* D3DXVec2TransformArray(D3DXVECTOR4* pOut, UINT OutStride, D3DXVECTOR2* pV, UINT VStride, D3DXMATRIX* pM, UINT n);
D3DXVECTOR2* D3DXVec2TransformCoordArray(D3DXVECTOR2* pOut, UINT OutStride, D3DXVECTOR2* pV, UINT VStride, D3DXMATRIX* pM, UINT n);
D3DXVECTOR2* D3DXVec2TransformNormalArray(D3DXVECTOR2* pOut, UINT OutStride, D3DXVECTOR2* pV, UINT VStride, D3DXMATRIX* pM, UINT n);
}
float D3DXVec3Length(D3DXVECTOR3* pV) {
debug(D3DX10_DEBUG) {
if (pV is null) return 0.0;
}
return sqrtf((pV.x * pV.x) + (pV.y * pV.y) + (pV.z * pV.z));
}
float D3DXVec3LengthSq(D3DXVECTOR3* pV) {
debug(D3DX10_DEBUG) {
if (pV is null) return 0.0;
}
return (pV.x * pV.x) + (pV.y * pV.y) + (pV.z * pV.z);
}
float D3DXVec3Dot(D3DXVECTOR3* pV1, D3DXVECTOR3* pV2) {
debug(D3DX10_DEBUG) {
if ((pV1 is null) || (pV2 is null)) return 0.0;
}
return (pV1.x * pV2.x) + (pV1.y * pV2.y) + (pV1.z * pV2.z);
}
D3DXVECTOR3* D3DXVec3Cross(D3DXVECTOR3* pOut, D3DXVECTOR3* pV1, D3DXVECTOR3* pV2) {
debug(D3DX10_DEBUG) {
if ((pOut is null) || (pV1 is null) || (pV2 is null)) return 0.0;
}
D3DXVECTOR3 v;
v.x = (pV1.y * pV2.z) - (pV1.z * pV2.y);
v.y = (pV1.z * pV2.x) - (pV1.x * pV2.z);
v.z = (pV1.x * pV2.y) - (pV1.y * pV2.x);
*pOut = v;
return pOut;
}
D3DXVECTOR3* D3DXVec3Add(D3DXVECTOR3* pOut, D3DXVECTOR3* pV1, D3DXVECTOR3* pV2) {
debug(D3DX10_DEBUG) {
if ((pOut is null) || (pV1 is null) || (pV2 is null)) return null;
}
pOut.x = pV1.x + pV2.x;
pOut.y = pV1.y + pV2.y;
pOut.z = pV1.z + pV2.z;
return pOut;
}
D3DXVECTOR3* D3DXVec3Subtract(D3DXVECTOR3* pOut, D3DXVECTOR3* pV1, D3DXVECTOR3* pV2) {
debug(D3DX10_DEBUG) {
if ((pOut is null) || (pV1 is null) || (pV2 is null)) return null;
}
pOut.x = pV1.x - pV2.x;
pOut.y = pV1.y - pV2.y;
pOut.z = pV1.z - pV2.z;
return pOut;
}
D3DXVECTOR3* D3DXVec3Minimize(D3DXVECTOR3* pOut, D3DXVECTOR3* pV1, D3DXVECTOR3* pV2) {
debug(D3DX10_DEBUG) {
if ((pOut is null) || (pV1 is null) || (pV2 is null)) return null;
}
pOut.x = pV1.x < pV2.x ? pV1.x : pV2.x;
pOut.y = pV1.y < pV2.y ? pV1.y : pV2.y;
pOut.z = pV1.z < pV2.z ? pV1.z : pV2.z;
return pOut;
}
D3DXVECTOR3* D3DXVec3Maximize(D3DXVECTOR3* pOut, D3DXVECTOR3* pV1, D3DXVECTOR3* pV2) {
debug(D3DX10_DEBUG) {
if ((pOut is null) || (pV1 is null) || (pV2 is null)) return null;
}
pOut.x = pV1.x > pV2.x ? pV1.x : pV2.x;
pOut.y = pV1.y > pV2.y ? pV1.y : pV2.y;
pOut.z = pV1.z > pV2.z ? pV1.z : pV2.z;
return pOut;
}
D3DXVECTOR3* D3DXVec3Scale(D3DXVECTOR3* pOut, D3DXVECTOR3* pV, float s) {
debug(D3DX10_DEBUG) {
if ((pOut is null) || (pV is null)) return null;
}
pOut.x = pV.x * s;
pOut.y = pV.y * s;
pOut.z = pV.z * s;
return pOut;
}
D3DXVECTOR3* D3DXVec3Lerp(D3DXVECTOR3* pOut, D3DXVECTOR3* pV1, D3DXVECTOR3* pV2, float s) {
debug(D3DX10_DEBUG) {
if ((pOut is null) || (pV1 is null) || (pV2 is null)) return null;
}
pOut.x = pV1.x + s * (pV2.x - pV1.x);
pOut.y = pV1.y + s * (pV2.y - pV1.y);
pOut.z = pV1.z + s * (pV2.z - pV1.z);
return pOut;
}
extern(Windows) {
D3DXVECTOR3* D3DXVec3Normalize(D3DXVECTOR3* pOut, D3DXVECTOR3* pV);
D3DXVECTOR3* D3DXVec3Hermite(D3DXVECTOR3* pOut, D3DXVECTOR3* pV1, D3DXVECTOR3* pT1, D3DXVECTOR3* pV2, D3DXVECTOR3* pT2, FLOAT s);
D3DXVECTOR3* D3DXVec3CatmullRom(D3DXVECTOR3* pOut, D3DXVECTOR3* pV0, D3DXVECTOR3* pV1, D3DXVECTOR3* pV2, D3DXVECTOR3* pV3, FLOAT s);
D3DXVECTOR3* D3DXVec3BaryCentric(D3DXVECTOR3* pOut, D3DXVECTOR3* pV1, D3DXVECTOR3* pV2, D3DXVECTOR3* pV3, FLOAT f, FLOAT g);
D3DXVECTOR4* D3DXVec3Transform(D3DXVECTOR4* pOut, D3DXVECTOR3* pV, D3DXMATRIX* pM);
D3DXVECTOR3* D3DXVec3TransformCoord(D3DXVECTOR3* pOut, D3DXVECTOR3* pV, D3DXMATRIX* pM);
D3DXVECTOR3* D3DXVec3TransformNormal(D3DXVECTOR3* pOut, D3DXVECTOR3* pV, D3DXMATRIX* pM);
D3DXVECTOR4* D3DXVec3TransformArray(D3DXVECTOR4* pOut, UINT OutStride, D3DXVECTOR3* pV, UINT VStride, D3DXMATRIX* pM, UINT n);
D3DXVECTOR3* D3DXVec3TransformCoordArray(D3DXVECTOR3* pOut, UINT OutStride, D3DXVECTOR3* pV, UINT VStride, D3DXMATRIX* pM, UINT n);
D3DXVECTOR3* D3DXVec3TransformNormalArray(D3DXVECTOR3* pOut, UINT OutStride, D3DXVECTOR3* pV, UINT VStride, D3DXMATRIX* pM, UINT n);
D3DXVECTOR3* D3DXVec3Project(D3DXVECTOR3* pOut, D3DXVECTOR3* pV, D3D10_VIEWPORT* pViewport, D3DXMATRIX* pProjection, D3DXMATRIX* pView, D3DXMATRIX* pWorld);
D3DXVECTOR3* D3DXVec3Unproject(D3DXVECTOR3* pOut, D3DXVECTOR3* pV, D3D10_VIEWPORT* pViewport, D3DXMATRIX* pProjection, D3DXMATRIX* pView, D3DXMATRIX* pWorld);
D3DXVECTOR3* D3DXVec3ProjectArray(D3DXVECTOR3* pOut, UINT OutStride,D3DXVECTOR3* pV, UINT VStride,D3D10_VIEWPORT* pViewport, D3DXMATRIX* pProjection, D3DXMATRIX* pView, D3DXMATRIX* pWorld, UINT n);
D3DXVECTOR3* D3DXVec3UnprojectArray(D3DXVECTOR3* pOut, UINT OutStride, D3DXVECTOR3* pV, UINT VStride, D3D10_VIEWPORT* pViewport, D3DXMATRIX* pProjection, D3DXMATRIX* pView, D3DXMATRIX* pWorld, UINT n);
}
float D3DXVec4Length(D3DXVECTOR4* pV) {
debug(D3DX10_DEBUG) {
if (pV is null) return 0.0;
}
return sqrtf((pV.x * pV.x) + (pV.y * pV.y) + (pV.z * pV.z) + (pV.w * pV.w));
}
float D3DXVec4LengthSq(D3DXVECTOR4* pV) {
debug(D3DX10_DEBUG) {
if (pV is null) return 0.0;
}
return (pV.x * pV.x) + (pV.y * pV.y) + (pV.z * pV.z) + (pV.w * pV.w);
}
float D3DXVec4Dot(D3DXVECTOR4* pV1, D3DXVECTOR4* pV2) {
debug(D3DX10_DEBUG) {
if ((pV1 is null) || (pV2 is null)) return 0.0;
}
return (pV1.x * pV2.x) + (pV1.y * pV2.y) + (pV1.z * pV2.z) + (pV1.w * pV2.w);
}
D3DXVECTOR4* D3DXVec4Add(D3DXVECTOR4* pOut, D3DXVECTOR4* pV1, D3DXVECTOR4* pV2) {
debug(D3DX10_DEBUG) {
if ((pOut is null) || (pV1 is null) || (pV2 is null)) return null;
}
pOut.x = pV1.x + pV2.x;
pOut.y = pV1.y + pV2.y;
pOut.z = pV1.z + pV2.z;
pOut.w = pV1.w + pV2.w;
return pOut;
}
D3DXVECTOR4* D3DXVec4Subtract(D3DXVECTOR4* pOut, D3DXVECTOR4* pV1, D3DXVECTOR4* pV2) {
debug(D3DX10_DEBUG) {
if ((pOut is null) || (pV1 is null) || (pV2 is null)) return null;
}
pOut.x = pV1.x - pV2.x;
pOut.y = pV1.y - pV2.y;
pOut.z = pV1.z - pV2.z;
pOut.w = pV1.w - pV2.w;
return pOut;
}
D3DXVECTOR4* D3DXVec4Minimize(D3DXVECTOR4* pOut, D3DXVECTOR4* pV1, D3DXVECTOR4* pV2) {
debug(D3DX10_DEBUG) {
if ((pOut is null) || (pV1 is null) || (pV2 is null)) return null;
}
pOut.x = pV1.x < pV2.x ? pV1.x : pV2.x;
pOut.y = pV1.y < pV2.y ? pV1.y : pV2.y;
pOut.z = pV1.z < pV2.z ? pV1.z : pV2.z;
pOut.w = pV1.w < pV2.w ? pV1.w : pV2.w;
return pOut;
}
D3DXVECTOR4* D3DXVec4Maximize(D3DXVECTOR4* pOut, D3DXVECTOR4* pV1, D3DXVECTOR4* pV2) {
debug(D3DX10_DEBUG) {
if ((pOut is null) || (pV1 is null) || (pV2 is null)) return null;
}
pOut.x = pV1.x > pV2.x ? pV1.x : pV2.x;
pOut.y = pV1.y > pV2.y ? pV1.y : pV2.y;
pOut.z = pV1.z > pV2.z ? pV1.z : pV2.z;
pOut.w = pV1.w > pV2.w ? pV1.w : pV2.w;
return pOut;
}
D3DXVECTOR4* D3DXVec4Scale(D3DXVECTOR4* pOut, D3DXVECTOR4* pV, float s) {
debug(D3DX10_DEBUG) {
if ((pOut is null) || (pV is null)) return null;
}
pOut.x = pV.x * s;
pOut.y = pV.y * s;
pOut.z = pV.z * s;
pOut.w = pV.w * s;
return pOut;
}
D3DXVECTOR4* D3DXVec4Lerp(D3DXVECTOR4* pOut, D3DXVECTOR4* pV1, D3DXVECTOR4* pV2, float s) {
debug(D3DX10_DEBUG) {
if ((pOut is null) || (pV1 is null) || (pV2 is null)) return null;
}
pOut.x = pV1.x + s * (pV2.x - pV1.x);
pOut.y = pV1.y + s * (pV2.y - pV1.y);
pOut.z = pV1.z + s * (pV2.z - pV1.z);
pOut.w = pV1.w + s * (pV2.w - pV1.w);
return pOut;
}
extern(Windows) {
D3DXVECTOR4* D3DXVec4Cross(D3DXVECTOR4* pOut, D3DXVECTOR4* pV1, D3DXVECTOR4* pV2, D3DXVECTOR4* pV3);
D3DXVECTOR4* D3DXVec4Normalize(D3DXVECTOR4* pOut, D3DXVECTOR4* pV);
D3DXVECTOR4* D3DXVec4Hermite(D3DXVECTOR4* pOut, D3DXVECTOR4* pV1, D3DXVECTOR4* pT1, D3DXVECTOR4* pV2, D3DXVECTOR4* pT2, FLOAT s);
D3DXVECTOR4* D3DXVec4CatmullRom(D3DXVECTOR4* pOut, D3DXVECTOR4* pV0, D3DXVECTOR4* pV1, D3DXVECTOR4* pV2, D3DXVECTOR4* pV3, FLOAT s);
D3DXVECTOR4* D3DXVec4BaryCentric(D3DXVECTOR4* pOut, D3DXVECTOR4* pV1, D3DXVECTOR4* pV2, D3DXVECTOR4* pV3, FLOAT f, FLOAT g);
D3DXVECTOR4* D3DXVec4Transform(D3DXVECTOR4* pOut, D3DXVECTOR4* pV, D3DXMATRIX* pM);
D3DXVECTOR4* D3DXVec4TransformArray(D3DXVECTOR4* pOut, UINT OutStride, D3DXVECTOR4* pV, UINT VStride, D3DXMATRIX* pM, UINT n);
}
D3DXMATRIX* D3DXMatrixIdentity(D3DXMATRIX *pOut) {
debug(D3DX10_DEBUG) {
if (pOut is null) return NULL;
}
pOut.m[0][1] = pOut.m[0][2] = pOut.m[0][3] =
pOut.m[1][0] = pOut.m[1][2] = pOut.m[1][3] =
pOut.m[2][0] = pOut.m[2][1] = pOut.m[2][3] =
pOut.m[3][0] = pOut.m[3][1] = pOut.m[3][2] = 0.0;
pOut.m[0][0] = pOut.m[1][1] = pOut.m[2][2] = pOut.m[3][3] = 1.0;
return pOut;
}
BOOL D3DXMatrixIsIdentity(D3DXMATRIX *pM) {
debug(D3DX10_DEBUG) {
if(pM is null) return FALSE;
}
return (pM.m[0][0] == 1.0f) && (pM.m[0][1] == 0.0f) && (pM.m[0][2] == 0.0f) && (pM.m[0][3] == 0.0f) &&
(pM.m[1][0] == 0.0f) && (pM.m[1][1] == 1.0f) && (pM.m[1][2] == 0.0f) && (pM.m[1][3] == 0.0f) &&
(pM.m[2][0] == 0.0f) && (pM.m[2][1] == 0.0f) && (pM.m[2][2] == 1.0f) && (pM.m[2][3] == 0.0f) &&
(pM.m[3][0] == 0.0f) && (pM.m[3][1] == 0.0f) && (pM.m[3][2] == 0.0f) && (pM.m[3][3] == 1.0f);
}
extern(Windows) {
FLOAT D3DXMatrixDeterminant(D3DXMATRIX* pM);
HRESULT D3DXMatrixDecompose(D3DXVECTOR3* pOutScale, D3DXQUATERNION* pOutRotation, D3DXVECTOR3* pOutTranslation, D3DXMATRIX* pM);
D3DXMATRIX* D3DXMatrixTranspose(D3DXMATRIX* pOut, D3DXMATRIX* pM);
D3DXMATRIX* D3DXMatrixMultiply(D3DXMATRIX* pOut, D3DXMATRIX* pM1, D3DXMATRIX* pM2);
D3DXMATRIX* D3DXMatrixMultiplyTranspose(D3DXMATRIX* pOut, D3DXMATRIX* pM1, D3DXMATRIX* pM2);
D3DXMATRIX* D3DXMatrixInverse(D3DXMATRIX* pOut, FLOAT* pDeterminant, D3DXMATRIX* pM);
D3DXMATRIX* D3DXMatrixScaling(D3DXMATRIX* pOut, FLOAT sx, FLOAT sy, FLOAT sz);
D3DXMATRIX* D3DXMatrixTranslation(D3DXMATRIX* pOut, FLOAT x, FLOAT y, FLOAT z);
D3DXMATRIX* D3DXMatrixRotationX(D3DXMATRIX* pOut, FLOAT Angle);
D3DXMATRIX* D3DXMatrixRotationY(D3DXMATRIX* pOut, FLOAT Angle);
D3DXMATRIX* D3DXMatrixRotationZ(D3DXMATRIX* pOut, FLOAT Angle);
D3DXMATRIX* D3DXMatrixRotationAxis(D3DXMATRIX* pOut, D3DXVECTOR3* pV, FLOAT Angle);
D3DXMATRIX* D3DXMatrixRotationQuaternion(D3DXMATRIX* pOut, D3DXQUATERNION* pQ);
D3DXMATRIX* D3DXMatrixRotationYawPitchRoll(D3DXMATRIX* pOut, FLOAT Yaw, FLOAT Pitch, FLOAT Roll);
D3DXMATRIX* D3DXMatrixTransformation(D3DXMATRIX* pOut, D3DXVECTOR3* pScalingCenter, D3DXQUATERNION* pScalingRotation, D3DXVECTOR3* pScaling, D3DXVECTOR3* pRotationCenter, D3DXQUATERNION* pRotation, D3DXVECTOR3* pTranslation);
D3DXMATRIX* D3DXMatrixTransformation2D(D3DXMATRIX* pOut, D3DXVECTOR2* pScalingCenter, FLOAT ScalingRotation, D3DXVECTOR2* pScaling, D3DXVECTOR2* pRotationCenter, FLOAT Rotation, D3DXVECTOR2* pTranslation);
D3DXMATRIX* D3DXMatrixAffineTransformation(D3DXMATRIX* pOut, FLOAT Scaling, D3DXVECTOR3* pRotationCenter, D3DXQUATERNION* pRotation, D3DXVECTOR3* pTranslation);
D3DXMATRIX* D3DXMatrixAffineTransformation2D(D3DXMATRIX* pOut, FLOAT Scaling, D3DXVECTOR2* pRotationCenter, FLOAT Rotation, D3DXVECTOR2* pTranslation);
D3DXMATRIX* D3DXMatrixLookAtRH(D3DXMATRIX* pOut, D3DXVECTOR3* pEye, D3DXVECTOR3* pAt, D3DXVECTOR3* pUp);
D3DXMATRIX* D3DXMatrixLookAtLH(D3DXMATRIX* pOut, D3DXVECTOR3* pEye, D3DXVECTOR3* pAt, D3DXVECTOR3* pUp);
D3DXMATRIX* D3DXMatrixPerspectiveRH(D3DXMATRIX* pOut, FLOAT w, FLOAT h, FLOAT zn, FLOAT zf);
D3DXMATRIX* D3DXMatrixPerspectiveLH(D3DXMATRIX* pOut, FLOAT w, FLOAT h, FLOAT zn, FLOAT zf);
D3DXMATRIX* D3DXMatrixPerspectiveFovRH(D3DXMATRIX* pOut, FLOAT fovy, FLOAT Aspect, FLOAT zn, FLOAT zf);
D3DXMATRIX* D3DXMatrixPerspectiveFovLH(D3DXMATRIX* pOut, FLOAT fovy, FLOAT Aspect, FLOAT zn, FLOAT zf);
D3DXMATRIX* D3DXMatrixPerspectiveOffCenterRH(D3DXMATRIX* pOut, FLOAT l, FLOAT r, FLOAT b, FLOAT t, FLOAT zn, FLOAT zf);
D3DXMATRIX* D3DXMatrixPerspectiveOffCenterLH(D3DXMATRIX* pOut, FLOAT l, FLOAT r, FLOAT b, FLOAT t, FLOAT zn, FLOAT zf);
D3DXMATRIX* D3DXMatrixOrthoRH(D3DXMATRIX* pOut, FLOAT w, FLOAT h, FLOAT zn, FLOAT zf);
D3DXMATRIX* D3DXMatrixOrthoLH(D3DXMATRIX* pOut, FLOAT w, FLOAT h, FLOAT zn, FLOAT zf);
D3DXMATRIX* D3DXMatrixOrthoOffCenterRH(D3DXMATRIX* pOut, FLOAT l, FLOAT r, FLOAT b, FLOAT t, FLOAT zn, FLOAT zf);
D3DXMATRIX* D3DXMatrixOrthoOffCenterLH(D3DXMATRIX* pOut, FLOAT l, FLOAT r, FLOAT b, FLOAT t, FLOAT zn, FLOAT zf);
D3DXMATRIX* D3DXMatrixShadow(D3DXMATRIX* pOut, D3DXVECTOR4* pLight, D3DXPLANE* pPlane);
D3DXMATRIX* D3DXMatrixReflect(D3DXMATRIX* pOut, D3DXPLANE* pPlane);
}
float D3DXQuaternionLength(D3DXQUATERNION *pQ) {
debug(D3DX10_DEBUG) {
if (pQ is null) return 0.0f;
}
return sqrtf((pQ.x * pQ.x) + (pQ.y * pQ.y) + (pQ.z * pQ.z) + (pQ.w * pQ.w));
}
float D3DXQuaternionLengthSq(D3DXQUATERNION *pQ) {
debug(D3DX10_DEBUG) {
if(pQ is null) return 0.0f;
}
return (pQ.x * pQ.x) + (pQ.y * pQ.y) + (pQ.z * pQ.z) + (pQ.w * pQ.w);
}
float D3DXQuaternionDot(D3DXQUATERNION *pQ1, D3DXQUATERNION *pQ2) {
debug(D3DX10_DEBUG) {
if((pQ1 is null) || (pQ2 is null)) return 0.0f;
}
return (pQ1.x * pQ2.x) + (pQ1.y * pQ2.y) + (pQ1.z * pQ2.z) + (pQ1.w * pQ2.w);
}
D3DXQUATERNION* D3DXQuaternionIdentity(D3DXQUATERNION *pOut) {
debug(D3DX10_DEBUG) {
if(pOut is null) return null;
}
pOut.x = pOut.y = pOut.z = 0.0f;
pOut.w = 1.0f;
return pOut;
}
bool D3DXQuaternionIsIdentity(D3DXQUATERNION *pQ) {
debug(D3DX10_DEBUG) {
if(pQ is null) return false;
}
return (pQ.x == 0.0f) && (pQ.y == 0.0f) && (pQ.z == 0.0f) && (pQ.w == 1.0f);
}
D3DXQUATERNION* D3DXQuaternionConjugate(D3DXQUATERNION *pOut, D3DXQUATERNION *pQ) {
debug(D3DX10_DEBUG) {
if((pOut is null) || (pQis is null)) return null;
}
pOut.x = -pQ.x;
pOut.y = -pQ.y;
pOut.z = -pQ.z;
pOut.w = pQ.w;
return pOut;
}
extern(Windows) {
void D3DXQuaternionToAxisAngle(D3DXQUATERNION* pQ, D3DXVECTOR3* pAxis, FLOAT* pAngle);
D3DXQUATERNION* D3DXQuaternionRotationMatrix(D3DXQUATERNION* pOut, D3DXMATRIX* pM);
D3DXQUATERNION* D3DXQuaternionRotationAxis(D3DXQUATERNION* pOut, D3DXVECTOR3* pV, FLOAT Angle);
D3DXQUATERNION* D3DXQuaternionRotationYawPitchRoll(D3DXQUATERNION* pOut, FLOAT Yaw, FLOAT Pitch, FLOAT Roll);
D3DXQUATERNION* D3DXQuaternionMultiply(D3DXQUATERNION* pOut, D3DXQUATERNION* pQ1, D3DXQUATERNION* pQ2);
D3DXQUATERNION* D3DXQuaternionNormalize(D3DXQUATERNION* pOut, D3DXQUATERNION* pQ);
D3DXQUATERNION* D3DXQuaternionInverse(D3DXQUATERNION* pOut, D3DXQUATERNION* pQ);
D3DXQUATERNION* D3DXQuaternionLn(D3DXQUATERNION* pOut, D3DXQUATERNION* pQ);
D3DXQUATERNION* D3DXQuaternionExp(D3DXQUATERNION* pOut, D3DXQUATERNION* pQ);
D3DXQUATERNION* D3DXQuaternionSlerp(D3DXQUATERNION* pOut, D3DXQUATERNION* pQ1, D3DXQUATERNION* pQ2, FLOAT t);
D3DXQUATERNION* D3DXQuaternionSquad(D3DXQUATERNION* pOut, D3DXQUATERNION* pQ1, D3DXQUATERNION* pA, D3DXQUATERNION* pB, D3DXQUATERNION* pC, FLOAT t);
void D3DXQuaternionSquadSetup(D3DXQUATERNION* pAOut, D3DXQUATERNION* pBOut, D3DXQUATERNION* pCOut, D3DXQUATERNION* pQ0, D3DXQUATERNION* pQ1, D3DXQUATERNION* pQ2, D3DXQUATERNION* pQ3);
D3DXQUATERNION* D3DXQuaternionBaryCentric(D3DXQUATERNION* pOut, D3DXQUATERNION* pQ1, D3DXQUATERNION* pQ2, D3DXQUATERNION* pQ3, FLOAT f, FLOAT g);
}
float D3DXPlaneDot(D3DXPLANE *pP, D3DXVECTOR4 *pV) {
debug(D3DX10_DEBUG) {
if((pP is null) || (pV is null)) return 0.0f;
}
return (pP.a * pV.x) + (pP.b * pV.y) + (pP.c * pV.z) + (pP.d * pV.w);
}
float D3DXPlaneDotCoord(D3DXPLANE *pP, D3DXVECTOR3 *pV) {
debug(D3DX10_DEBUG) {
if((pP is null) || (pV is null)) return 0.0f;
}
return (pP.a * pV.x) + (pP.b * pV.y) + (pP.c * pV.z) + pP.d;
}
float D3DXPlaneDotNormal(D3DXPLANE *pP, D3DXVECTOR3 *pV) {
debug(D3DX10_DEBUG) {
if((pP is null) || (pV is null)) return 0.0f;
}
return (pP.a * pV.x) + (pP.b * pV.y) + (pP.c * pV.z);
}
D3DXPLANE* D3DXPlaneScale(D3DXPLANE *pOut, D3DXPLANE *pP, float s) {
debug(D3DX10_DEBUG) {
if((pOut is null) || (pP is null)) return null;
}
pOut.a = pP.a * s;
pOut.b = pP.b * s;
pOut.c = pP.c * s;
pOut.d = pP.d * s;
return pOut;
}
extern(Windows) {
D3DXPLANE* D3DXPlaneNormalize(D3DXPLANE* pOut, D3DXPLANE* pP);
D3DXVECTOR3* D3DXPlaneIntersectLine(D3DXVECTOR3* pOut, D3DXPLANE* pP, D3DXVECTOR3* pV1, D3DXVECTOR3* pV2);
D3DXPLANE* D3DXPlaneFromPointNormal(D3DXPLANE* pOut, D3DXVECTOR3* pPoint, D3DXVECTOR3* pNormal);
D3DXPLANE* D3DXPlaneFromPoints(D3DXPLANE* pOut, D3DXVECTOR3* pV1, D3DXVECTOR3* pV2, D3DXVECTOR3* pV3);
D3DXPLANE* D3DXPlaneTransform(D3DXPLANE* pOut, D3DXPLANE* pP, D3DXMATRIX* pM);
D3DXPLANE* D3DXPlaneTransformArray(D3DXPLANE* pOut, UINT OutStride, D3DXPLANE* pP, UINT PStride, D3DXMATRIX* pM, UINT n);
}
D3DXCOLOR* D3DXColorNegative(D3DXCOLOR* pOut, D3DXCOLOR* pC) {
debug(D3DX10_DEBUG) {
if((pOut is null) || (pC is null)) return null;
}
pOut.r = 1.0f - pC.r;
pOut.g = 1.0f - pC.g;
pOut.b = 1.0f - pC.b;
pOut.a = pC.a;
return pOut;
}
D3DXCOLOR* D3DXColorAdd(D3DXCOLOR* pOut, D3DXCOLOR* pC1, D3DXCOLOR* pC2) {
debug(D3DX10_DEBUG) {
if((pOut is null) || (pC1 is null) || (pC2 is null)) return null;
}
pOut.r = pC1.r + pC2.r;
pOut.g = pC1.g + pC2.g;
pOut.b = pC1.b + pC2.b;
pOut.a = pC1.a + pC2.a;
return pOut;
}
D3DXCOLOR* D3DXColorSubtract(D3DXCOLOR* pOut, D3DXCOLOR* pC1, D3DXCOLOR* pC2) {
debug(D3DX10_DEBUG) {
if((pOut is null) || (pC1 is null) || (pC2 is null)) return null;
}
pOut.r = pC1.r - pC2.r;
pOut.g = pC1.g - pC2.g;
pOut.b = pC1.b - pC2.b;
pOut.a = pC1.a - pC2.a;
return pOut;
}
D3DXCOLOR* D3DXColorScale(D3DXCOLOR* pOut, D3DXCOLOR* pC, float s) {
debug(D3DX10_DEBUG) {
if((pOut is null) || (pC is null)) return null;
}
pOut.r = pC.r * s;
pOut.g = pC.g * s;
pOut.b = pC.b * s;
pOut.a = pC.a * s;
return pOut;
}
D3DXCOLOR* D3DXColorModulate(D3DXCOLOR* pOut, D3DXCOLOR* pC1, D3DXCOLOR* pC2) {
debug(D3DX10_DEBUG) {
if((pOut is null) || (pC1 is null) || (pC2 is null)) return null;
}
pOut.r = pC1.r * pC2.r;
pOut.g = pC1.g * pC2.g;
pOut.b = pC1.b * pC2.b;
pOut.a = pC1.a * pC2.a;
return pOut;
}
D3DXCOLOR* D3DXColorLerp(D3DXCOLOR* pOut, D3DXCOLOR* pC1, D3DXCOLOR* pC2, float s) {
debug(D3DX10_DEBUG) {
if((pOut is null) || (pC1 is null) || (pC2 is null)) return null;
}
pOut.r = pC1.r + s * (pC2.r - pC1.r);
pOut.g = pC1.g + s * (pC2.g - pC1.g);
pOut.b = pC1.b + s * (pC2.b - pC1.b);
pOut.a = pC1.a + s * (pC2.a - pC1.a);
return pOut;
}
extern(Windows) {
D3DXCOLOR* D3DXColorAdjustSaturation(D3DXCOLOR* pOut, D3DXCOLOR* pC, float s);
D3DXCOLOR* D3DXColorAdjustContrast(D3DXCOLOR* pOut, D3DXCOLOR* pC, float c);
FLOAT D3DXFresnelTerm(float CosTheta, float RefractionIndex);
}
extern (C) const GUID IID_ID3DXMatrixStack = {0xc7885ba7, 0xf990, 0x4fe7, [0x92, 0x2d, 0x85, 0x15, 0xe4, 0x77, 0xdd, 0x85]};
interface ID3DXMatrixStack : IUnknown {
extern(Windows) :
HRESULT Pop();
HRESULT Push();
HRESULT LoadIdentity();
HRESULT LoadMatrix(D3DXMATRIX* pM );
HRESULT MultMatrix(D3DXMATRIX* pM );
HRESULT MultMatrixLocal(D3DXMATRIX* pM );
HRESULT RotateAxis(D3DXVECTOR3* pV, float Angle);
HRESULT RotateAxisLocal(D3DXVECTOR3* pV, float Angle);
HRESULT RotateYawPitchRoll(float Yaw, float Pitch, float Roll);
HRESULT RotateYawPitchRollLocal(float Yaw, float Pitch, float Roll);
HRESULT Scale(float x, float y, float z);
HRESULT ScaleLocal(float x, float y, float z);
HRESULT Translate(float x, float y, float z );
HRESULT TranslateLocal(float x, float y, float z);
D3DXMATRIX* GetTop();
}
//TODO extern(Windows) HRESULT D3DXCreateMatrixStack(UINT Flags, D3DXMATRIXSTACK* ppStack);
const D3DXSH_MINORDER = 2;
const D3DXSH_MAXORDER = 6;
extern(Windows) {
float* D3DXSHEvalDirection(float* pOut, UINT Order, D3DXVECTOR3* pDir);
float* D3DXSHRotate(float* pOut, UINT Order, D3DXMATRIX* pMatrix, float* pIn);
float* D3DXSHRotateZ(float* pOut, UINT Order, float Angle, float* pIn);
float* D3DXSHAdd(float* pOut, UINT Order, float* pA, float* pB);
float* D3DXSHScale(float* pOut, UINT Order, float* pIn, float Scale);
float D3DXSHDot(UINT Order, float* pA, float* pB);
float* D3DXSHMultiply2(float* pOut, float* pF, float* pG);
float* D3DXSHMultiply3(float* pOut, float* pF, float* pG);
float* D3DXSHMultiply4(float* pOut, float* pF, float* pG);
float* D3DXSHMultiply5(float* pOut, float* pF, float* pG);
float* D3DXSHMultiply6(float* pOut, float* pF, float* pG);
HRESULT D3DXSHEvalDirectionalLight(UINT Order, D3DXVECTOR3* pDir, float RIntensity, float GIntensity, float BIntensity, float* pROut, float* pGOut, float* pBOut);
HRESULT D3DXSHEvalSphericalLight(UINT Order, D3DXVECTOR3* pPos, float Radius, float RIntensity, float GIntensity, float BIntensity, float* pROut, float* pGOut, float* pBOut);
HRESULT D3DXSHEvalConeLight(UINT Order, D3DXVECTOR3* pDir, float Radius, float RIntensity, float GIntensity, float BIntensity, float* pROut, float* pGOut, float* pBOut);
HRESULT D3DXSHEvalHemisphereLight(UINT Order, D3DXVECTOR3* pDir, D3DXCOLOR Top, D3DXCOLOR Bottom, float* pROut, float* pGOut, float* pBOut);
BOOL D3DXIntersectTri(D3DXVECTOR3* p0, D3DXVECTOR3* p1, D3DXVECTOR3* p2, D3DXVECTOR3* pRayPos, D3DXVECTOR3* pRayDir, float* pU, float* pV, float* pDist);
BOOL D3DXSphereBoundProbe(D3DXVECTOR3* pCenter, float Radius, D3DXVECTOR3* pRayPosition, D3DXVECTOR3* pRayDirection);
BOOL D3DXBoxBoundProbe(D3DXVECTOR3* pMin, D3DXVECTOR3* pMax, D3DXVECTOR3* pRayPosition, D3DXVECTOR3* pRayDirection);
HRESULT D3DXComputeBoundingSphere(D3DXVECTOR3* pFirstPosition, DWORD NumVertices, DWORD dwStride, D3DXVECTOR3* pCenter, float* pRadius);
HRESULT D3DXComputeBoundingBox(D3DXVECTOR3* pFirstPosition, DWORD NumVertices, DWORD dwStride, D3DXVECTOR3* pMin, D3DXVECTOR3* pMax);
}
enum D3DX_CPU_OPTIMIZATION {
D3DX_NOT_OPTIMIZED = 0,
D3DX_3DNOW_OPTIMIZED,
D3DX_SSE2_OPTIMIZED,
D3DX_SSE_OPTIMIZED
}
extern(Windows) D3DX_CPU_OPTIMIZATION D3DXCpuOptimizations(bool Enable);
|
D
|
module Palaio.Config;
/// Width of the screen.
const int WIDTH = 800;
/// Height of the screen.
const int HEIGHT = 600;
/// Title of the main window.
const string WINDOWTITLE = "Palaio";
/// Filename of log file.
const string LOGFILE = "log.txt";
/// Font used throughout the game.
const string FONT = "gfx/OpenSans-Regular.ttf";
|
D
|
/****************************************************************************
**
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the QtPositioning module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL21$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia. For licensing terms and
** conditions see http://qt.digia.com/licensing. For further information
** use the contact form at http://qt.digia.com/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 or version 3 as published by the Free
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
** following information to ensure the GNU Lesser General Public License
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Digia gives you certain additional
** rights. These rights are described in the Digia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#ifndef QGEOADDRESS_H
#define QGEOADDRESS_H
public import qt.QtCore.QMetaType;
public import qt.QtCore.QSharedDataPointer;
public import qt.QtPositioning.qpositioningglobal;
QT_BEGIN_NAMESPACE
class QString;
class QGeoAddressPrivate;
class Q_POSITIONING_EXPORT QGeoAddress
{
public:
QGeoAddress();
QGeoAddress(ref const(QGeoAddress) other);
~QGeoAddress();
QGeoAddress &operator=(ref const(QGeoAddress) other);
bool operator==(ref const(QGeoAddress) other) const;
bool operator!=(ref const(QGeoAddress) other) const {
return !(other == *this);
}
QString text() const;
void setText(ref const(QString) text);
QString country() const;
void setCountry(ref const(QString) country);
QString countryCode() const;
void setCountryCode(ref const(QString) countryCode);
QString state() const;
void setState(ref const(QString) state);
QString county() const;
void setCounty(ref const(QString) county);
QString city() const;
void setCity(ref const(QString) city);
QString district() const;
void setDistrict(ref const(QString) district);
QString postalCode() const;
void setPostalCode(ref const(QString) postalCode);
QString street() const;
void setStreet(ref const(QString) street);
bool isEmpty() const;
void clear();
bool isTextGenerated() const;
private:
QSharedDataPointer<QGeoAddressPrivate> d;
};
Q_DECLARE_TYPEINFO(QGeoAddress, Q_MOVABLE_TYPE);
QT_END_NAMESPACE
Q_DECLARE_METATYPE(QGeoAddress)
#endif
|
D
|
/*
* Collie - An asynchronous event-driven network framework using Dlang development
*
* Copyright (C) 2015-2016 Shanghai Putao Technology Co., Ltd
*
* Developer: putao's Dlang team
*
* Licensed under the Apache-2.0 License.
*
*/
module collie.socket.common;
//import core.memory;
public import std.experimental.logger;
import std.experimental.allocator;
enum IO_MODE
{
epoll,
kqueue,
iocp,
select,
poll,
port,
none
}
enum CustomTimerTimeOut = 50; // 50ms 精确
enum CustomTimerWheelSize = 20; // 轮子数量
version (FreeBSD)
{
enum IO_MODE IOMode = IO_MODE.kqueue;
enum CustomTimer = false;
}
else version (OpenBSD)
{
enum IO_MODE IOMode = IO_MODE.kqueue;
enum CustomTimer = false;
}
else version (NetBSD)
{
enum IO_MODE IOMode = IO_MODE.kqueue;
enum CustomTimer = false;
}
else version (OSX)
{
enum IO_MODE IOMode = IO_MODE.kqueue;
enum CustomTimer = false;
}
else version (linux)
{
enum IO_MODE IOMode = IO_MODE.epoll;
enum CustomTimer = false;
}
else version (Windows)
{
enum IO_MODE IOMode = IO_MODE.iocp;
enum CustomTimer = true;
}
else
{
enum IO_MODE IOMode = IO_MODE.select;
enum CustomTimer = true;
}
alias CallBack = void delegate();
enum AsynType
{
ACCEPT,
TCP,
UDP,
EVENT,
TIMER
}
interface EventCallInterface
{
void onWrite() nothrow;
void onRead() nothrow;
void onClose() nothrow;
}
struct AsyncEvent
{
import std.socket;
this(AsynType type, EventCallInterface obj, socket_t fd = socket_t.init,
bool enread = true, bool enwrite = false, bool etMode = false, bool oneShot = false)
{
this._type = type;
this._obj = obj;
this.fd = fd;
this.enRead = enread;
this.enWrite = enwrite;
this.etMode = etMode;
this.oneShot = oneShot;
}
pragma(inline, true) @property obj()
{
return _obj;
}
pragma(inline, true) @property type()
{
return _type;
}
socket_t fd;
bool enRead = true;
bool enWrite = false;
bool etMode = false;
bool oneShot = false;
pragma(inline) static AsyncEvent* create(AsynType type,
EventCallInterface obj, socket_t fd = socket_t.init, bool enread = true,
bool enwrite = false, bool etMode = false, bool oneShot = false)
{
import core.memory;
AsyncEvent* pevent = new AsyncEvent(type, obj, fd, enread, enwrite, etMode,
oneShot);
// GC.setAttr(pevent, GC.BlkAttr.NO_MOVE);
return pevent;
}
pragma(inline) static void free(AsyncEvent* event)
{
import core.memory;
GC.free(event);
}
pragma(inline, true) @property isActive()
{
return _isActive;
}
// static Address createAddress(AddressFamily family) //pure nothrow
// {
// Address result;
// switch(family)
// {
// static if (is(sockaddr_un))
// {
// case AddressFamily.UNIX:
// result = new UnixAddress();
// break;
// }
//
// case AddressFamily.INET:
// result = new InternetAddress();
// break;
//
// case AddressFamily.INET6:
// result = new Internet6Address();
// break;
//
// default:
// result = new UnknownAddress();
// }
// return result;
// }
package:
pragma(inline) @property isActive(bool active)
{
_isActive = active;
}
static if (IOMode == IOMode.kqueue || CustomTimer)
{
long timeOut;
}
static if (IOMode == IOMode.iocp)
{
uint readLen;
uint writeLen;
}
static if (CustomTimer)
{
import collie.utils.timingwheel;
WheelTimer timer;
}
private:
EventCallInterface _obj;
AsynType _type;
bool _isActive = false;
}
static if (CustomTimer)
{
enum CustomTimer_Next_TimeOut = cast(long)(CustomTimerTimeOut * (2.0 / 3.0));
}
|
D
|
/Users/MohamedNawar/Desktop/appointment/build/Pods.build/Debug-iphonesimulator/Kingfisher.build/Objects-normal/x86_64/AuthenticationChallengeResponsable.o : /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Utility/String+MD5.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/General/Deprecated.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/General/ImageSource/Source.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/General/ImageSource/Resource.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/Image.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/GIFAnimatedImage.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Cache/Storage.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Cache/DiskStorage.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Cache/MemoryStorage.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Cache/ImageCache.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/AuthenticationChallengeResponsable.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Utility/Runtime.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Utility/Delegate.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/SessionDelegate.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/ImageDownloaderDelegate.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Utility/CallbackQueue.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/ImageProgressive.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/ImageDrawing.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/SessionDataTask.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/ImageTransition.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/General/KingfisherOptionsInfo.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/ImageDownloader.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/General/ImageSource/ImageDataProvider.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/Placeholder.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/General/KingfisherManager.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/ImagePrefetcher.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Extensions/WKInterfaceImage+Kingfisher.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Extensions/UIButton+Kingfisher.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Extensions/NSButton+Kingfisher.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Extensions/ImageView+Kingfisher.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/General/Kingfisher.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/ImageModifier.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/RequestModifier.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/RedirectHandler.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/Filter.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Cache/CacheSerializer.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Cache/FormatIndicatedCacheSerializer.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/General/KingfisherError.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/ImageDataProcessor.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/ImageProcessor.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Views/Indicator.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Utility/SizeExtensions.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Utility/ExtensionHelpers.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/ImageFormat.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Utility/Result.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Views/AnimatedImageView.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Utility/Box.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Accelerate.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Metal.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/os.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Accelerate.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/os.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/MohamedNawar/Desktop/appointment/Pods/Target\ Support\ Files/Kingfisher/Kingfisher-umbrella.h /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Kingfisher.h /Users/MohamedNawar/Desktop/appointment/build/Pods.build/Debug-iphonesimulator/Kingfisher.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Accelerate.framework/Headers/Accelerate.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/MohamedNawar/Desktop/appointment/build/Pods.build/Debug-iphonesimulator/Kingfisher.build/Objects-normal/x86_64/AuthenticationChallengeResponsable~partial.swiftmodule : /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Utility/String+MD5.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/General/Deprecated.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/General/ImageSource/Source.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/General/ImageSource/Resource.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/Image.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/GIFAnimatedImage.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Cache/Storage.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Cache/DiskStorage.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Cache/MemoryStorage.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Cache/ImageCache.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/AuthenticationChallengeResponsable.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Utility/Runtime.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Utility/Delegate.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/SessionDelegate.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/ImageDownloaderDelegate.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Utility/CallbackQueue.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/ImageProgressive.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/ImageDrawing.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/SessionDataTask.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/ImageTransition.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/General/KingfisherOptionsInfo.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/ImageDownloader.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/General/ImageSource/ImageDataProvider.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/Placeholder.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/General/KingfisherManager.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/ImagePrefetcher.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Extensions/WKInterfaceImage+Kingfisher.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Extensions/UIButton+Kingfisher.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Extensions/NSButton+Kingfisher.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Extensions/ImageView+Kingfisher.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/General/Kingfisher.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/ImageModifier.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/RequestModifier.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/RedirectHandler.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/Filter.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Cache/CacheSerializer.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Cache/FormatIndicatedCacheSerializer.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/General/KingfisherError.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/ImageDataProcessor.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/ImageProcessor.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Views/Indicator.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Utility/SizeExtensions.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Utility/ExtensionHelpers.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/ImageFormat.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Utility/Result.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Views/AnimatedImageView.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Utility/Box.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Accelerate.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Metal.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/os.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Accelerate.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/os.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/MohamedNawar/Desktop/appointment/Pods/Target\ Support\ Files/Kingfisher/Kingfisher-umbrella.h /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Kingfisher.h /Users/MohamedNawar/Desktop/appointment/build/Pods.build/Debug-iphonesimulator/Kingfisher.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Accelerate.framework/Headers/Accelerate.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/MohamedNawar/Desktop/appointment/build/Pods.build/Debug-iphonesimulator/Kingfisher.build/Objects-normal/x86_64/AuthenticationChallengeResponsable~partial.swiftdoc : /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Utility/String+MD5.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/General/Deprecated.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/General/ImageSource/Source.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/General/ImageSource/Resource.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/Image.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/GIFAnimatedImage.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Cache/Storage.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Cache/DiskStorage.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Cache/MemoryStorage.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Cache/ImageCache.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/AuthenticationChallengeResponsable.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Utility/Runtime.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Utility/Delegate.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/SessionDelegate.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/ImageDownloaderDelegate.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Utility/CallbackQueue.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/ImageProgressive.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/ImageDrawing.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/SessionDataTask.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/ImageTransition.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/General/KingfisherOptionsInfo.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/ImageDownloader.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/General/ImageSource/ImageDataProvider.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/Placeholder.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/General/KingfisherManager.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/ImagePrefetcher.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Extensions/WKInterfaceImage+Kingfisher.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Extensions/UIButton+Kingfisher.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Extensions/NSButton+Kingfisher.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Extensions/ImageView+Kingfisher.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/General/Kingfisher.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/ImageModifier.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/RequestModifier.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/RedirectHandler.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/Filter.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Cache/CacheSerializer.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Cache/FormatIndicatedCacheSerializer.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/General/KingfisherError.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Networking/ImageDataProcessor.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/ImageProcessor.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Views/Indicator.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Utility/SizeExtensions.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Utility/ExtensionHelpers.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Image/ImageFormat.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Utility/Result.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Views/AnimatedImageView.swift /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Utility/Box.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Accelerate.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Metal.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/os.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Accelerate.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/os.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/MohamedNawar/Desktop/appointment/Pods/Target\ Support\ Files/Kingfisher/Kingfisher-umbrella.h /Users/MohamedNawar/Desktop/appointment/Pods/Kingfisher/Sources/Kingfisher.h /Users/MohamedNawar/Desktop/appointment/build/Pods.build/Debug-iphonesimulator/Kingfisher.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Accelerate.framework/Headers/Accelerate.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
|
D
|
/*
* Client for IRBIS64 library system.
* Alexey Mironov, 2019.
* MIT License.
*/
module irbis.utils;
import std.algorithm: canFind, remove;
import std.array;
import std.bitmanip;
import std.conv;
import std.encoding: transcode, Windows1251String;
import std.random: uniform;
import std.socket;
import std.stdio;
import std.string;
import std.outbuffer;
import irbis.constants;
//==================================================================
//
// Utility functions
//
/// Read 32-bit integer using network byte order.
int readIrbisInt32(File file) {
ubyte[4] buffer;
file.rawRead(buffer);
return cast(int)
(((cast(uint)buffer[0]) << 24)
| ((cast(uint)buffer[1]) << 16)
| ((cast(uint)buffer[2]) << 8)
| ((cast(uint)buffer[3]) << 0));
} // readIrbisInt32
/// Read 64-bit integer using IRBIS-specific byte order.
ulong readIrbisInt64(File file) {
ubyte[8] buffer;
file.rawRead(buffer);
return
(((cast(ulong)buffer[0]) << 24)
| ((cast(ulong)buffer[1]) << 16)
| ((cast(ulong)buffer[2]) << 8)
| ((cast(ulong)buffer[3]) << 0)
| ((cast(ulong)buffer[4]) << 56)
| ((cast(ulong)buffer[5]) << 48)
| ((cast(ulong)buffer[6]) << 40)
| ((cast(ulong)buffer[7]) << 32));
} // readIrbisInt64
/// Converts the text to ANSI encoding.
pure ubyte[] toAnsi(string text) {
Windows1251String encoded;
transcode(text, encoded);
return cast(ubyte[])encoded;
}
/// Test for toAnsi
unittest {
const source = "\u041F\u0440\u0438\u0432\u0435\u0442";
const actual = toAnsi(source);
const expected = [207, 240, 232, 226, 229, 242];
assert(actual == expected);
}
/// Converts the slice of bytes from ANSI encoding to text.
pure string fromAnsi(const ubyte[] text) {
Windows1251String s = cast(Windows1251String)text;
string decoded;
transcode(s, decoded);
return decoded;
}
// Test for fromAnsi
unittest {
ubyte[] source = [207, 240, 232, 226, 229, 242];
const actual = fromAnsi(source);
const expected = "\u041F\u0440\u0438\u0432\u0435\u0442";
assert(actual == expected);
}
/// Converts the text to UTF-8 encoding.
pure ubyte[] toUtf(string text) {
return cast(ubyte[])text;
}
/// Test for toUtf
unittest {
const source = "\u041F\u0440\u0438\u0432\u0435\u0442";
const actual = toUtf(source);
const expected = [208, 159, 209, 128, 208, 184, 208, 178, 208, 181, 209, 130];
assert(actual == expected);
}
/// Converts the slice of bytes from UTF-8 encoding to text.
pure string fromUtf(const ubyte[] text) {
return cast(string)text;
}
// Test for fromUtf
unittest {
ubyte[] source = [208, 159, 209, 128, 208, 184, 208, 178, 208, 181, 209, 130];
const actual = fromUtf(source);
const expected = "\u041F\u0440\u0438\u0432\u0435\u0442";
assert(actual == expected);
}
/// Examines whether the characters are the same.
pure bool sameChar(char c1, char c2) nothrow {
return toUpper(c1) == toUpper(c2);
}
/// Tesf for sameChar
unittest {
assert(sameChar('a', 'A'));
assert(!sameChar('a', 'B'));
}
/// Examines whether the strings are the same.
pure bool sameString(string s1, string s2) {
return icmp(s1, s2) == 0;
}
/// Test for sameString
unittest {
assert(sameString("test", "TEST"));
assert(sameString("test", "Test"));
assert(!sameString("test", "tset"));
}
/// Convert text from IRBIS representation to UNIX.
string irbisToUnix(string text) {
return replace(text, IRBIS_DELIMITER, UNIX_DELIMITER);
}
/// Test for irbisToUnix
unittest {
assert(irbisToUnix("1\x1F\x1E2\x1F\x1E3") == "1\n2\n3");
}
/// Split text to lines by IRBIS delimiter
string[] irbisToLines(string text) {
return text.split(IRBIS_DELIMITER);
}
/// Test for irbisToLines
unittest {
const source = "1\x1F\x1E2\x1F\x1E3";
const expected = ["1", "2", "3"];
const actual = irbisToLines(source);
assert (expected == actual);
}
/// Fast parse integer number.
pure int parseInt(scope ubyte[] text) nothrow {
int result = 0;
foreach(c; text)
result = result * 10 + c - 48;
return result;
}
/// Test for parseInt(ubyte[])
unittest {
ubyte[] arr = null;
assert(parseInt(arr) == 0);
arr = [49, 50, 51];
assert(parseInt(arr) == 123);
}
/// Fast parse integer number.
pure int parseInt(scope string text) nothrow {
int result = 0;
foreach(c; text)
result = result * 10 + c - 48;
return result;
}
/// Test for parseInt(string)
unittest {
assert(parseInt("") == 0);
assert(parseInt("0") == 0);
assert(parseInt("1") == 1);
assert(parseInt("111") == 111);
}
/// Split the text by the delimiter to 2 parts.
pure string[] split2(string text, string delimiter) {
auto index = indexOf(text, delimiter);
if (index < 0)
return [text];
return [to!string(text[0..index]), to!string(text[index + 1..$])];
}
/// Test for split2
unittest {
const source = "1#2#3";
const expected = ["1", "2#3"];
const actual = split2(source, "#");
assert(expected == actual);
}
/// Split the text by the delimiter into N parts (no more!).
pure string[] splitN(string text, string delimiter, int limit) {
string[] result;
while (limit > 1) {
auto index = indexOf(text, delimiter);
if (index < 0)
break;
result ~= to!string(text[0..index]);
text = text[index + 1..$];
limit--;
}
if (!text.empty)
result ~= to!string(text);
return result;
}
/// Test for splitN
unittest {
const source = "1#2#3#4";
const expected = ["1", "2", "3#4"];
const actual = splitN(source, "#", 3);
assert(expected == actual);
}
/// Pick first non-empty string from the array.
pure string pickOne(string[] strings ...) {
foreach(s; strings)
if (!s.empty)
return s;
throw new Exception("No strings!");
} // method pickOne
unittest {
assert(pickOne("first", "second") == "first");
assert(pickOne("", "second") == "second");
assert(pickOne(null, "second") == "second");
}
/// Remove comments from the format.
string removeComments(string text) {
if (text.empty)
return text;
if (indexOf(text, "/*") < 0)
return text;
string result;
char state = '\0';
size_t index = 0;
const length = text.length;
reserve(result, length);
while (index < length) {
const c = text[index];
switch (state) {
case '\'', '"', '|':
if (c == state)
state = '\0';
result ~= c;
break;
default:
if (c == '/') {
if (((index + 1) < length) && (text[index + 1] == '*')) {
while (index < length) {
const c2 = text[index];
if ((c2 == '\r') || (c2 == '\n')) {
result ~= c2;
break;
}
index++;
}
}
else {
result ~= c;
}
}
else if ((c == '\'') || (c == '"') || (c == '|')) {
state = c;
result ~= c;
}
else {
result ~= c;
}
break;
}
index++;
}
return result;
} // method removeComments
/// Test for removeComments
unittest {
assert(removeComments("") == "");
assert(removeComments(" ") == " ");
assert(removeComments("v100,/,v200") == "v100,/,v200");
assert(removeComments("v100/*comment\r\nv200") == "v100\r\nv200");
assert(removeComments("v100, '/* not comment', v200") == "v100, '/* not comment', v200");
assert(removeComments("v100, \"/* not comment\", v200") == "v100, \"/* not comment\", v200");
assert(removeComments("v100, |/* not comment|, v200") == "v100, |/* not comment|, v200");
assert(removeComments("v100, '/* not comment', v200, /*comment\r\nv300") == "v100, '/* not comment', v200, \r\nv300");
assert(removeComments("v100, '/* not comment', v200, /, \r\nv300") == "v100, '/* not comment', v200, /, \r\nv300");
} // unittest
/// Prepare the format.
string prepareFormat(string text) {
text = removeComments(text);
const length = text.length;
if (length == 0)
return text;
auto flag = false;
for (auto i = 0; i < length; i++)
if (text[i] < ' ')
{
flag = true;
break;
}
if (!flag)
return text;
string result;
reserve(text, length);
for (auto i = 0; i < length; i++) {
const c = text[i];
if (c >= ' ')
result ~= c;
}
return result;
} // method prepareFormat
/// Test for prepareFormat
unittest {
assert(prepareFormat("") == "");
assert(prepareFormat(" ") == " ");
assert(prepareFormat("v100,/,v200") == "v100,/,v200");
assert(prepareFormat("\tv100\r\n") == "v100");
assert(prepareFormat("\r\n") == "");
assert(prepareFormat("/* Comment") == "");
assert(prepareFormat("v100 '\t'\r\nv200") == "v100 ''v200");
assert(prepareFormat("v100 \"\t\"\r\nv200") == "v100 \"\"v200");
assert(prepareFormat("v100 |\t|\r\nv200") == "v100 ||v200");
} // unittest
/// Insert value into the array
void arrayInsert(T)(ref T[] arr, size_t offset, T value) {
insertInPlace(arr, offset, value);
} // method arrayInsert
/// Test for arrayInsert
unittest {
int[] arr;
arrayInsert(arr, 0, 1);
assert(arr == [1]);
arrayInsert(arr, 1, 2);
assert(arr == [1, 2]);
} // unittest
/// Remove value from the array
void arrayRemove(T) (ref T[] arr, size_t offset) {
remove(arr, offset);
arr.length--;
} // method arrayRemove
/// Test for arrayRemove
unittest {
int[] arr = [1, 2, 3];
arrayRemove(arr, 1);
assert(arr == [1, 3]);
} // unittest
|
D
|
/**
URL-encoding implementation
Copyright: © 2012 RejectedSoftware e.K.
License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file.
Authors: Jan Krüger, Sönke Ludwig
*/
module vibe.textfilter.urlencode;
import vibe.utils.string;
import std.algorithm;
import std.array;
import std.conv;
import std.exception;
import std.format;
/** Returns the URL encoded version of a given string.
*/
string urlEncode(string str)
{
auto dst = appender!string();
dst.reserve(str.length);
filterURLEncode(dst, str);
return dst.data;
}
/** Returns the decoded version of a given URL encoded string.
*/
string urlDecode(string str)
{
if( !str.anyOf("%+") ) return str;
auto dst = appender!string();
dst.reserve(str.length);
filterURLDecode(dst, str);
return dst.data;
}
/** Writes the URL encoded version of the given string to an output range.
*/
void filterURLEncode(R)(ref R dst, string str, string allowed_chars = null)
{
while( str.length > 0 ) {
switch(str[0]) {
case ' ':
dst.put('+');
break;
case 'A': .. case 'Z'+1:
case 'a': .. case 'z'+1:
case '0': .. case '9'+1:
case '-': case '_': case '.': case '~':
dst.put(str[0]);
break;
default:
if (allowed_chars.canFind(str[0])) dst.put(str[0]);
else formattedWrite(dst, "%%%02X", str[0]);
}
str = str[1 .. $];
}
}
/// Deprecated compatibility alias
deprecated("Please use filterURLEncode instead.") alias filterUrlEncode = filterURLEncode;
/** Writes the decoded version of the given URL encoded string to an output range.
*/
void filterURLDecode(R)(ref R dst, string str)
{
while( str.length > 0 ) {
switch(str[0]) {
case '%':
enforce(str.length >= 3, "invalid percent encoding");
auto hex = str[1..3];
auto c = cast(char)parse!int(hex, 16);
enforce(hex.length == 0, "invalid percent encoding");
dst.put(c);
str = str[3 .. $];
break;
case '+':
dst.put(' ');
str = str[1 .. $];
break;
default:
dst.put(str[0]);
str = str[1 .. $];
}
}
}
/// Deprecated compatibility alias
deprecated("Please use filterURLDecode instead.") alias filterUrlDecode = filterURLDecode;
unittest
{
assert(urlEncode("\r\n") == "%0D%0A"); // github #65
assert(urlEncode("This-is~a_test") == "This-is~a_test");
assert(urlEncode("This is a test") == "This+is+a+test");
assert(urlEncode("%") == "%25");
assert(urlEncode("!") == "%21");
assert(urlDecode("%0D%0a") == "\r\n");
assert(urlDecode("%c2%aE") == "®");
assert(urlDecode("This+is%20a+test") == "This is a test");
string a = "This~is a-test!\r\nHello, Wörld.. ";
string aenc = urlEncode(a);
assert(aenc == "This~is+a-test%21%0D%0AHello%2C+W%C3%B6rld..+");
assert(urlDecode(urlEncode(a)) == a);
}
|
D
|
/Users/admin/Projects/CanidateProject/DerivedData/CanidateProject/Build/Intermediates/Pods.build/Debug-iphonesimulator/Kingfisher.build/Objects-normal/x86_64/ImageProcessor.o : /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/String+MD5.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/Resource.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/Image.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/ImageCache.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/ImageTransition.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/KingfisherOptionsInfo.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/ImageDownloader.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/KingfisherManager.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/ImagePrefetcher.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/UIButton+Kingfisher.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/ImageView+Kingfisher.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/Kingfisher.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/RequestModifier.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/ThreadHelper.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/Filter.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/CacheSerializer.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/FormatIndicatedCacheSerializer.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/ImageProcessor.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/Indicator.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/AnimatedImageView.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/Box.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreText.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/admin/Projects/CanidateProject/Pods/Target\ Support\ Files/Kingfisher/Kingfisher-umbrella.h /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/Kingfisher.h /Users/admin/Projects/CanidateProject/DerivedData/CanidateProject/Build/Intermediates/Pods.build/Debug-iphonesimulator/Kingfisher.build/unextended-module.modulemap
/Users/admin/Projects/CanidateProject/DerivedData/CanidateProject/Build/Intermediates/Pods.build/Debug-iphonesimulator/Kingfisher.build/Objects-normal/x86_64/ImageProcessor~partial.swiftmodule : /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/String+MD5.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/Resource.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/Image.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/ImageCache.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/ImageTransition.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/KingfisherOptionsInfo.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/ImageDownloader.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/KingfisherManager.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/ImagePrefetcher.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/UIButton+Kingfisher.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/ImageView+Kingfisher.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/Kingfisher.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/RequestModifier.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/ThreadHelper.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/Filter.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/CacheSerializer.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/FormatIndicatedCacheSerializer.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/ImageProcessor.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/Indicator.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/AnimatedImageView.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/Box.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreText.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/admin/Projects/CanidateProject/Pods/Target\ Support\ Files/Kingfisher/Kingfisher-umbrella.h /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/Kingfisher.h /Users/admin/Projects/CanidateProject/DerivedData/CanidateProject/Build/Intermediates/Pods.build/Debug-iphonesimulator/Kingfisher.build/unextended-module.modulemap
/Users/admin/Projects/CanidateProject/DerivedData/CanidateProject/Build/Intermediates/Pods.build/Debug-iphonesimulator/Kingfisher.build/Objects-normal/x86_64/ImageProcessor~partial.swiftdoc : /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/String+MD5.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/Resource.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/Image.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/ImageCache.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/ImageTransition.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/KingfisherOptionsInfo.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/ImageDownloader.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/KingfisherManager.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/ImagePrefetcher.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/UIButton+Kingfisher.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/ImageView+Kingfisher.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/Kingfisher.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/RequestModifier.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/ThreadHelper.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/Filter.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/CacheSerializer.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/FormatIndicatedCacheSerializer.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/ImageProcessor.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/Indicator.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/AnimatedImageView.swift /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/Box.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreText.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/admin/Projects/CanidateProject/Pods/Target\ Support\ Files/Kingfisher/Kingfisher-umbrella.h /Users/admin/Projects/CanidateProject/Pods/Kingfisher/Sources/Kingfisher.h /Users/admin/Projects/CanidateProject/DerivedData/CanidateProject/Build/Intermediates/Pods.build/Debug-iphonesimulator/Kingfisher.build/unextended-module.modulemap
|
D
|
module android.java.android.hardware.camera2.DngCreator_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import3 = android.java.android.graphics.Bitmap_d_interface;
import import0 = android.java.android.hardware.camera2.CameraCharacteristics_d_interface;
import import2 = android.java.android.hardware.camera2.DngCreator_d_interface;
import import4 = android.java.android.media.Image_d_interface;
import import5 = android.java.android.location.Location_d_interface;
import import1 = android.java.android.hardware.camera2.CaptureResult_d_interface;
import import10 = android.java.java.lang.Class_d_interface;
import import6 = android.java.java.io.OutputStream_d_interface;
import import8 = android.java.java.io.InputStream_d_interface;
import import7 = android.java.android.util.Size_d_interface;
import import9 = android.java.java.nio.ByteBuffer_d_interface;
final class DngCreator : IJavaObject {
static immutable string[] _d_canCastTo = [
"java/lang/AutoCloseable",
];
@Import this(import0.CameraCharacteristics, import1.CaptureResult);
@Import import2.DngCreator setOrientation(int);
@Import import2.DngCreator setThumbnail(import3.Bitmap);
@Import import2.DngCreator setThumbnail(import4.Image);
@Import import2.DngCreator setLocation(import5.Location);
@Import import2.DngCreator setDescription(string);
@Import void writeInputStream(import6.OutputStream, import7.Size, import8.InputStream, long);
@Import void writeByteBuffer(import6.OutputStream, import7.Size, import9.ByteBuffer, long);
@Import void writeImage(import6.OutputStream, import4.Image);
@Import void close();
@Import import10.Class getClass();
@Import int hashCode();
@Import bool equals(IJavaObject);
@Import @JavaName("toString") string toString_();
override string toString() { return arsd.jni.javaObjectToString(this); }
@Import void notify();
@Import void notifyAll();
@Import void wait(long);
@Import void wait(long, int);
@Import void wait();
mixin IJavaObjectImplementation!(false);
public static immutable string _javaParameterString = "Landroid/hardware/camera2/DngCreator;";
}
|
D
|
import std.stdio, std.algorithm, std.range, std.traits;
struct Fiblike(T) {
T[] tail;
int opApply(int delegate(immutable ref T) dg) {
int result, pos;
foreach (immutable x; tail) {
result = dg(x);
if (result)
return result;
}
foreach (immutable i; tail.length.iota.cycle) {
immutable x = tail.sum;
result = dg(x);
if (result)
break;
tail[i] = x;
}
return result;
}
}
// std.range.take doesn't work with opApply.
ForeachType!It[] takeApply(It)(It iterable, in size_t n) {
typeof(return) result;
foreach (immutable x; iterable) {
result ~= x;
if (result.length == n)
break;
}
return result;
}
void main() {
Fiblike!int([1, 1]).takeApply(10).writeln;
Fiblike!int([2, 1]).takeApply(10).writeln;
const prefixes = "fibo tribo tetra penta hexa hepta octo nona deca";
foreach (immutable n, const name; prefixes.split.enumerate(2)) {
auto fib = Fiblike!int(1 ~ iota(n - 1).map!q{2 ^^ a}.array);
writefln("n=%2d, %5snacci -> %s", n, name, fib.takeApply(15));
}
}
|
D
|
instance Mod_1364_PSINOV_Novize_MT (Npc_Default)
{
//-------- primary data --------
name = Name_Novize;
Npctype = Npctype_mt_sumpfnovize;
guild = GIL_out;
level = 9;
voice = 0;
id = 1364;
//-------- abilities --------
attribute[ATR_STRENGTH] = 15;
attribute[ATR_DEXTERITY] = 15;
attribute[ATR_MANA_MAX] = 0;
attribute[ATR_MANA] = 0;
attribute[ATR_HITPOINTS_MAX] = 148;
attribute[ATR_HITPOINTS] = 148;
//-------- visuals --------
// animations
Mdl_SetVisual (self,"HUMANS.MDS");
Mdl_ApplyOverlayMds (self,"Humans_Mage.mds");
// body mesh ,bdytex,skin,head mesh ,headtex,teethtex,ruestung
Mdl_SetVisualBody (self,"hum_body_Naked0", 1 , 1 ,"Hum_Head_Bald", 23, 1, NOV_ARMOR_M);
Mdl_SetModelFatness(self,0);
fight_tactic = FAI_HUMAN_COWARD;
//-------- Talente --------
//-------- inventory --------
//-------------Daily Routine-------------
daily_routine = Rtn_start_1364;
};
FUNC VOID Rtn_start_1364 ()
{
TA_Sit_Campfire (08,00,01,00,"PSI_PATH_1_3");
TA_Sleep (01,00,08,00,"PSI_1_HUT_IN");
};
FUNC VOID Rtn_Tot_1364 ()
{
TA_Stand_WP (08,00,20,00,"TOT");
TA_Stand_WP (20,00,08,00,"TOT");
};
|
D
|
instance BAU_912_Jeremiah(Npc_Default)
{
name[0] = "Jeremiáš";
npcType = npctype_main;
guild = GIL_BAU;
level = 7;
voice = 4;
id = 912;
attribute[ATR_STRENGTH] = 35;
attribute[ATR_DEXTERITY] = 13;
attribute[ATR_MANA_MAX] = 0;
attribute[ATR_MANA] = 0;
attribute[ATR_HITPOINTS_MAX] = 124;
attribute[ATR_HITPOINTS] = 124;
Mdl_SetVisual(self,"HUMANS.MDS");
Mdl_ApplyOverlayMds(self,"Humans_Tired.mds");
Mdl_SetVisualBody(self,"hum_body_Naked0",3,1,"Hum_Head_Bald",80,2,-1);
B_Scale(self);
Mdl_SetModelFatness(self,0);
fight_tactic = FAI_HUMAN_COWARD;
Npc_SetTalentSkill(self,NPC_TALENT_1H,1);
CreateInvItems(self,ItFoRice,7);
CreateInvItem(self,ItMi_Alchemy_Alcohol_01);
CreateInvItem(self,ItMi_Stuff_Cup_01);
EquipItem(self,ItMw_1H_Sword_Short_01);
CreateInvItems(self,ItMiNugget,15);
CreateInvItems(self,ItFoBooze,5);
daily_routine = Rtn_start_912;
};
func void Rtn_start_912()
{
TA_Sleep(22,0,8,0,"NC_TAVERN_BACKROOM05");
TA_PotionAlchemy(8,0,22,0,"NC_TAVERN_BACKROOM01");
};
|
D
|
/*
Written in the D programming language.
For git maintenance (ensure at least one congruent line with originating C header):
#define crypto_pwhash_H
*/
module deimos.sodium.crypto_pwhash;
import deimos.sodium.crypto_pwhash_argon2i : crypto_pwhash_argon2i_ALG_ARGON2I13;
import deimos.sodium.crypto_pwhash_argon2id: crypto_pwhash_argon2id_ALG_ARGON2ID13,
crypto_pwhash_argon2id_BYTES_MIN,
crypto_pwhash_argon2id_BYTES_MAX,
crypto_pwhash_argon2id_PASSWD_MIN,
crypto_pwhash_argon2id_PASSWD_MAX,
crypto_pwhash_argon2id_SALTBYTES,
crypto_pwhash_argon2id_STRBYTES,
crypto_pwhash_argon2id_STRPREFIX,
crypto_pwhash_argon2id_OPSLIMIT_MIN,
crypto_pwhash_argon2id_OPSLIMIT_MAX,
crypto_pwhash_argon2id_MEMLIMIT_MIN,
crypto_pwhash_argon2id_MEMLIMIT_MAX,
crypto_pwhash_argon2id_OPSLIMIT_INTERACTIVE,
crypto_pwhash_argon2id_MEMLIMIT_INTERACTIVE,
crypto_pwhash_argon2id_OPSLIMIT_MODERATE,
crypto_pwhash_argon2id_MEMLIMIT_MODERATE,
crypto_pwhash_argon2id_OPSLIMIT_SENSITIVE,
crypto_pwhash_argon2id_MEMLIMIT_SENSITIVE;
extern(C) pure @nogc :
alias crypto_pwhash_ALG_ARGON2I13 = crypto_pwhash_argon2i_ALG_ARGON2I13;
int crypto_pwhash_alg_argon2i13() @trusted;
alias crypto_pwhash_ALG_ARGON2ID13 = crypto_pwhash_argon2id_ALG_ARGON2ID13;
int crypto_pwhash_alg_argon2id13() @trusted;
alias crypto_pwhash_ALG_DEFAULT = crypto_pwhash_ALG_ARGON2ID13;
int crypto_pwhash_alg_default() @trusted;
alias crypto_pwhash_BYTES_MIN = crypto_pwhash_argon2id_BYTES_MIN;
size_t crypto_pwhash_bytes_min() @trusted;
alias crypto_pwhash_BYTES_MAX = crypto_pwhash_argon2id_BYTES_MAX;
size_t crypto_pwhash_bytes_max() @trusted;
alias crypto_pwhash_PASSWD_MIN = crypto_pwhash_argon2id_PASSWD_MIN;
size_t crypto_pwhash_passwd_min() @trusted;
alias crypto_pwhash_PASSWD_MAX = crypto_pwhash_argon2id_PASSWD_MAX;
size_t crypto_pwhash_passwd_max() @trusted;
alias crypto_pwhash_SALTBYTES = crypto_pwhash_argon2id_SALTBYTES;
size_t crypto_pwhash_saltbytes() @trusted;
alias crypto_pwhash_STRBYTES = crypto_pwhash_argon2id_STRBYTES;
size_t crypto_pwhash_strbytes() @trusted;
alias crypto_pwhash_STRPREFIX = crypto_pwhash_argon2id_STRPREFIX;
const(char)* crypto_pwhash_strprefix() @trusted;
alias crypto_pwhash_OPSLIMIT_MIN = crypto_pwhash_argon2id_OPSLIMIT_MIN;
size_t crypto_pwhash_opslimit_min() @trusted;
alias crypto_pwhash_OPSLIMIT_MAX = crypto_pwhash_argon2id_OPSLIMIT_MAX;
size_t crypto_pwhash_opslimit_max() @trusted;
alias crypto_pwhash_MEMLIMIT_MIN = crypto_pwhash_argon2id_MEMLIMIT_MIN;
size_t crypto_pwhash_memlimit_min() @trusted;
alias crypto_pwhash_MEMLIMIT_MAX = crypto_pwhash_argon2id_MEMLIMIT_MAX;
size_t crypto_pwhash_memlimit_max() @trusted;
alias crypto_pwhash_OPSLIMIT_INTERACTIVE = crypto_pwhash_argon2id_OPSLIMIT_INTERACTIVE;
size_t crypto_pwhash_opslimit_interactive() @trusted;
alias crypto_pwhash_MEMLIMIT_INTERACTIVE = crypto_pwhash_argon2id_MEMLIMIT_INTERACTIVE;
size_t crypto_pwhash_memlimit_interactive() @trusted;
alias crypto_pwhash_OPSLIMIT_MODERATE = crypto_pwhash_argon2id_OPSLIMIT_MODERATE;
size_t crypto_pwhash_opslimit_moderate() @trusted;
alias crypto_pwhash_MEMLIMIT_MODERATE = crypto_pwhash_argon2id_MEMLIMIT_MODERATE;
size_t crypto_pwhash_memlimit_moderate() @trusted;
alias crypto_pwhash_OPSLIMIT_SENSITIVE = crypto_pwhash_argon2id_OPSLIMIT_SENSITIVE;
size_t crypto_pwhash_opslimit_sensitive() @trusted;
alias crypto_pwhash_MEMLIMIT_SENSITIVE = crypto_pwhash_argon2id_MEMLIMIT_SENSITIVE;
size_t crypto_pwhash_memlimit_sensitive() @trusted;
/*
* With this function, do not forget to store all parameters, including the
* algorithm identifier in order to produce deterministic output.
* The crypto_pwhash_* definitions, including crypto_pwhash_ALG_DEFAULT,
* may change.
*/
int crypto_pwhash(ubyte* out_, ulong outlen,
const(char*) passwd, ulong passwdlen,
const(ubyte*) salt,
ulong opslimit, size_t memlimit, int alg) nothrow; // __attribute__ ((warn_unused_result)) __attribute__ ((nonnull));
/*
* The output string already includes all the required parameters, including
* the algorithm identifier. The string is all that has to be stored in
* order to verify a password.
*/
int crypto_pwhash_str(ref char[crypto_pwhash_STRBYTES] out_,
const(char*) passwd, ulong passwdlen,
ulong opslimit, size_t memlimit) nothrow; // __attribute__ ((warn_unused_result)) __attribute__ ((nonnull));
int crypto_pwhash_str_alg(ref char[crypto_pwhash_STRBYTES] out_,
const(char*) passwd, ulong passwdlen,
ulong opslimit, size_t memlimit, int alg) nothrow; // __attribute__ ((warn_unused_result)) __attribute__ ((nonnull));
int crypto_pwhash_str_verify(ref const(char[crypto_pwhash_STRBYTES]) str,
const(char*) passwd,
ulong passwdlen) nothrow; // __attribute__ ((warn_unused_result)) __attribute__ ((nonnull));
int crypto_pwhash_str_needs_rehash(ref const(char[crypto_pwhash_STRBYTES]) str,
ulong opslimit, size_t memlimit) nothrow; // __attribute__ ((warn_unused_result)) __attribute__ ((nonnull));
enum crypto_pwhash_PRIMITIVE = "argon2i";
const(char)* crypto_pwhash_primitive() nothrow @trusted; // __attribute__ ((warn_unused_result))
|
D
|
// Copyright © 2011, Jakob Bornecrantz. All rights reserved.
// See copyright notice in src/charge/charge.d (GPLv2 only).
/**
* Source file for Point3d.
*/
module charge.math.point3d;
import std.math : floor;
import std.string : string, format;
import charge.math.vector3d;
/**
* Point in 3D space.
*
* @ingroup Math
*/
struct Point3d
{
public:
double x, y, z;
public:
static Point3d opCall()
{
return Point3d(0.0, 0.0, 0.0);
}
static Point3d opCall(double x, double y, double z)
{
Point3d p = { x, y, z };
return p;
}
static Point3d opCall(ref Vector3d vec)
{
Point3d p = { vec.x, vec.y, vec.z };
return p;
}
static Point3d opCall(float[3] vec)
{
Point3d p = { vec[0], vec[1], vec[2] };
return p;
}
static Point3d opCall(float[4] vec)
{
Point3d p = { vec[0], vec[1], vec[2] };
return p;
}
double opIndex(uint index)
{
return (&x)[index];
}
Point3d opAdd(Vector3d vec)
{
return Point3d(x + vec.x, y + vec.y, z + vec.z);
}
Point3d opAddAssign(Vector3d v)
{
x += v.x;
y += v.y;
z += v.z;
return *this;
}
Vector3d opSub(Point3d p)
{
return Vector3d(x - p.x, y - p.y, z - p.z);
}
Point3d opSub(Vector3d v)
{
return Point3d(x - v.x, y - v.y, z - v.z);
}
Point3d opNeg()
{
return Point3d(-x, -y, -z);
}
Point3d opSubAssign(Vector3d v)
{
x -= v.x;
y -= v.y;
z -= v.z;
return *this;
}
void floor()
{
x = cast(double).floor(x);
y = cast(double).floor(y);
z = cast(double).floor(z);
}
Vector3d vec()
{
return Vector3d(*this);
}
string toString()
{
return format("(%s, %s, %s)", x, y, z);
}
}
|
D
|
// this module defines a message you can shoot over the socket to a detachable emulator
module arsd.detachableterminalemulatormessage;
string socketFileName(string sessionName) {
import std.algorithm;
if(endsWith(sessionName, ".socket"))
sessionName = sessionName[0 .. $ - ".socket".length];
return socketDirectoryName() ~ "/" ~ sessionName ~ ".socket";
}
string socketDirectoryName() {
import std.process;
auto dirName = environment["HOME"] ~ "/.detachable-terminals";
return dirName;
}
/*
OutputMessages, from the terminal process itself, come in this format:
ubyte: message type
ubyte: message length
bytes[] message
Messages longer than 255 bytes must be broken up into several messages.
*/
enum OutputMessageType : ubyte {
NULL,
dataFromTerminal,
remoteDetached,
}
struct InputMessage {
enum Type : int {
// key event
KeyPressed,
// character event
CharacterPressed,
// size event
SizeChanged,
// mouse event
MouseMoved,
MousePressed,
MouseReleased,
// paste event
DataPasted,
// special commands
RedrawNow, // send all state over (perhaps should be merged with "active" and maybe send size changed info too. term as well?)
// FIXME: implement these
Inactive, // the user moved another screen to the front, stop redrawing (but still send new titles, icons, or bells)
Active, // the user moved you to the front, resume redrawing normally
// Initial connection things
RequestStatus, // requests status about the backend - pid, etc.
Attach, // attaches it and updates the status info
Detach,
// We also want redraw and title and such so I can just ask
// for info about a socket and dump it to a terminal to like
// quasi attach without actually attaching.
}
// for modifiers
enum Shift = 1;
enum Ctrl = 2;
enum Alt = 4;
int eventLength;
Type type;
struct MouseEvent {
int button;
int x;
int y;
ubyte modifiers;
}
struct KeyEvent {
int key;
ubyte modifiers;
}
struct CharacterEvent {
dchar character;
}
struct SizeEvent {
int width;
int height;
}
struct PasteEvent {
int pastedTextLength;
char[1] pastedText;
}
struct AttachEvent {
int pid; // the pid of the attach instance
int sessionNameLength;
char[1] sessionName;
}
union {
MouseEvent mouseEvent;
KeyEvent keyEvent;
CharacterEvent characterEvent;
SizeEvent sizeEvent;
PasteEvent pasteEvent;
AttachEvent attachEvent;
}
}
/*
struct OutputMessage {
enum Type : ubyte {
DataOutput
}
Type type;
ushort length;
struct DataOutputEvent {
int dataLength;
ubyte[1] data;
}
union {
DataOutputEvent dataOutputEvent;
}
}
*/
|
D
|
/* $OpenBSD: srtp.h,v 1.6 2015/09/01 15:18:23 jsing Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
* This package is an SSL implementation written
* by Eric Young (eay@cryptsoft.com).
* The implementation was written so as to conform with Netscapes SSL.
*
* This library is free for commercial and non-commercial use as core.stdc.config.c_long as
* the following conditions are aheared to. The following conditions
* apply to all code found in this distribution, be it the RC4, RSA,
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
* included with this distribution is covered by the same copyright terms
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
*
* Copyright remains Eric Young's, and as such any Copyright notices in
* the code are not to be removed.
* If this package is used in a product, Eric Young should be given attribution
* as the author of the parts of the library used.
* This can be in the form of a textual message at program startup or
* in documentation (online or textual) provided with the package.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* "This product includes cryptographic software written by
* Eric Young (eay@cryptsoft.com)"
* The word 'cryptographic' can be left out if the rouines from the library
* being used are not cryptographic related :-).
* 4. If you include any Windows specific code (or a derivative thereof) from
* the apps directory (application code) you must include an acknowledgement:
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
*
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* The licence and distribution terms for any publically available version or
* derivative of this code cannot be changed. i.e. this code cannot simply be
* copied and put under another distribution licence
* [including the GNU Public Licence.]
*/
/* ====================================================================
* Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. All advertising materials mentioning features or use of this
* software must display the following acknowledgment:
* "This product includes software developed by the OpenSSL Project
* for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
*
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
* endorse or promote products derived from this software without
* prior written permission. For written permission, please contact
* openssl-core@openssl.org.
*
* 5. Products derived from this software may not be called "OpenSSL"
* nor may "OpenSSL" appear in their names without prior written
* permission of the OpenSSL Project.
*
* 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the OpenSSL Project
* for use in the OpenSSL Toolkit (http://www.openssl.org/)"
*
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
* ====================================================================
*
* This product includes cryptographic software written by Eric Young
* (eay@cryptsoft.com). This product includes software written by Tim
* Hudson (tjh@cryptsoft.com).
*
*/
/*
* DTLS code by Eric Rescorla <ekr@rtfm.com>
*
* Copyright (C) 2006, Network Resonance, Inc.
* Copyright (C) 2011, RTFM, Inc.
*/
module libressl_d.openssl.srtp;
private static import core.stdc.config;
private static import libressl_d.openssl.ossl_typ;
private static import libressl_d.openssl.ssl;
extern (C):
nothrow @nogc:
enum SRTP_AES128_CM_SHA1_80 = 0x0001;
enum SRTP_AES128_CM_SHA1_32 = 0x0002;
enum SRTP_AES128_F8_SHA1_80 = 0x0003;
enum SRTP_AES128_F8_SHA1_32 = 0x0004;
enum SRTP_NULL_SHA1_80 = 0x0005;
enum SRTP_NULL_SHA1_32 = 0x0006;
int SSL_CTX_set_tlsext_use_srtp(libressl_d.openssl.ossl_typ.SSL_CTX* ctx, const (char)* profiles);
int SSL_set_tlsext_use_srtp(libressl_d.openssl.ossl_typ.SSL* ctx, const (char)* profiles);
libressl_d.openssl.ssl.stack_st_SRTP_PROTECTION_PROFILE* SSL_get_srtp_profiles(libressl_d.openssl.ossl_typ.SSL* ssl);
libressl_d.openssl.ssl.SRTP_PROTECTION_PROFILE* SSL_get_selected_srtp_profile(libressl_d.openssl.ossl_typ.SSL* s);
|
D
|
/**
* Constants and data structures specific to the x86 platform.
*
* Copyright: Copyright (C) 1985-1998 by Symantec
* Copyright (C) 2000-2022 by The D Language Foundation, All Rights Reserved
* Authors: $(LINK2 https://www.digitalmars.com, Walter Bright)
* License: $(LINK2 https://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/dmd/backend/code_x86.d, backend/code_x86.d)
* Documentation: https://dlang.org/phobos/dmd_backend_code_x86.html
* Coverage: https://codecov.io/gh/dlang/dmd/src/master/src/dmd/backend/code_x86.d
*/
module dmd.backend.code_x86;
// Online documentation: https://dlang.org/phobos/dmd_backend_code_x86.html
import dmd.backend.cdef;
import dmd.backend.cc : config;
import dmd.backend.code;
import dmd.backend.codebuilder : CodeBuilder;
import dmd.backend.el : elem;
import dmd.backend.ty : I64;
import dmd.backend.barray;
nothrow:
@safe:
alias opcode_t = uint; // CPU opcode
enum opcode_t NoOpcode = 0xFFFF; // not a valid opcode_t
/* Register definitions */
enum
{
AX = 0,
CX = 1,
DX = 2,
BX = 3,
SP = 4,
BP = 5,
SI = 6,
DI = 7,
// #defining R12-R15 interfere with setjmps' _JUMP_BUFFER members
R8 = 8,
R9 = 9,
R10 = 10,
R11 = 11,
R12 = 12,
R13 = 13,
R14 = 14,
R15 = 15,
XMM0 = 16,
XMM1 = 17,
XMM2 = 18,
XMM3 = 19,
XMM4 = 20,
XMM5 = 21,
XMM6 = 22,
XMM7 = 23,
/* There are also XMM8..XMM14 */
XMM15 = 31,
}
bool isXMMreg(reg_t reg) pure { return reg >= XMM0 && reg <= XMM15; }
enum PICREG = BX;
enum ES = 24;
enum NUMGENREGS = 16;
// fishy naming as it covers XMM7 but not XMM15
// currently only used as a replacement for mES in cgcod.c
enum NUMREGS = 25;
enum PSW = 25;
enum STACK = 26; // top of stack
enum ST0 = 27; // 8087 top of stack register
enum ST01 = 28; // top two 8087 registers; for complex types
enum reg_t NOREG = 29; // no register
enum
{
AL = 0,
CL = 1,
DL = 2,
BL = 3,
AH = 4,
CH = 5,
DH = 6,
BH = 7,
}
enum
{
mAX = 1,
mCX = 2,
mDX = 4,
mBX = 8,
mSP = 0x10,
mBP = 0x20,
mSI = 0x40,
mDI = 0x80,
mR8 = (1 << R8),
mR9 = (1 << R9),
mR10 = (1 << R10),
mR11 = (1 << R11),
mR12 = (1 << R12),
mR13 = (1 << R13),
mR14 = (1 << R14),
mR15 = (1 << R15),
mXMM0 = (1 << XMM0),
mXMM1 = (1 << XMM1),
mXMM2 = (1 << XMM2),
mXMM3 = (1 << XMM3),
mXMM4 = (1 << XMM4),
mXMM5 = (1 << XMM5),
mXMM6 = (1 << XMM6),
mXMM7 = (1 << XMM7),
XMMREGS = (mXMM0 |mXMM1 |mXMM2 |mXMM3 |mXMM4 |mXMM5 |mXMM6 |mXMM7),
mES = (1 << ES), // 0x1000000
mPSW = (1 << PSW), // 0x2000000
mSTACK = (1 << STACK), // 0x4000000
mST0 = (1 << ST0), // 0x20000000
mST01 = (1 << ST01), // 0x40000000
}
// Flags for getlvalue (must fit in regm_t)
enum RMload = (1 << 30);
enum RMstore = (1 << 31);
extern (C++) extern __gshared regm_t ALLREGS;
extern (C++) extern __gshared regm_t BYTEREGS;
// To support positional independent code,
// must be able to remove BX from available registers
enum ALLREGS_INIT = (mAX|mBX|mCX|mDX|mSI|mDI);
enum ALLREGS_INIT_PIC = (mAX|mCX|mDX|mSI|mDI);
enum BYTEREGS_INIT = (mAX|mBX|mCX|mDX);
enum BYTEREGS_INIT_PIC = (mAX|mCX|mDX);
/* We use the same IDXREGS for the 386 as the 8088, because if
we used ALLREGS, it would interfere with mMSW
*/
enum IDXREGS = (mBX|mSI|mDI);
enum FLOATREGS_64 = mAX;
enum FLOATREGS2_64 = mDX;
enum DOUBLEREGS_64 = mAX;
enum DOUBLEREGS2_64 = mDX;
enum FLOATREGS_32 = mAX;
enum FLOATREGS2_32 = mDX;
enum DOUBLEREGS_32 = (mAX|mDX);
enum DOUBLEREGS2_32 = (mCX|mBX);
enum FLOATREGS_16 = (mDX|mAX);
enum FLOATREGS2_16 = (mCX|mBX);
enum DOUBLEREGS_16 = (mAX|mBX|mCX|mDX);
/*#define _8087REGS (mST0|mST1|mST2|mST3|mST4|mST5|mST6|mST7)*/
/* Segment registers */
enum
{
SEG_ES = 0,
SEG_CS = 1,
SEG_SS = 2,
SEG_DS = 3,
}
/*********************
* Masks for register pairs.
* Note that index registers are always LSWs. This is for the convenience
* of implementing far pointers.
*/
static if (0)
{
// Give us an extra one so we can enregister a long
enum mMSW = mCX|mDX|mDI|mES; // most significant regs
enum mLSW = mAX|mBX|mSI; // least significant regs
}
else
{
enum mMSW = mCX|mDX|mES; // most significant regs
enum mLSW = mAX|mBX|mSI|mDI; // least significant regs
}
/* Return !=0 if there is a SIB byte */
uint issib(uint rm) { return (rm & 7) == 4 && (rm & 0xC0) != 0xC0; }
static if (0)
{
// relocation field size is always 32bits
//enum is32bitaddr(x,Iflags) (1)
}
else
{
//
// is32bitaddr works correctly only when x is 0 or 1. This is
// true today for the current definition of I32, but if the definition
// of I32 changes, this macro will need to change as well
//
// Note: even for linux targets, CFaddrsize can be set by the inline
// assembler.
bool is32bitaddr(bool x,code_flags_t Iflags) { return I64 || (x ^ ((Iflags & CFaddrsize) !=0)); }
}
/**********************
* C library routines.
* See callclib().
*/
enum CLIB
{
lcmp,
lmul,
ldiv,
lmod,
uldiv,
ulmod,
dmul,ddiv,dtst0,dtst0exc,dcmp,dcmpexc,dneg,dadd,dsub,
fmul,fdiv,ftst0,ftst0exc,fcmp,fcmpexc,fneg,fadd,fsub,
dbllng,lngdbl,dblint,intdbl,
dbluns,unsdbl,
dblulng,
ulngdbl,
dblflt,fltdbl,
dblllng,
llngdbl,
dblullng,
ullngdbl,
dtst,
vptrfptr,cvptrfptr,
_87topsw,fltto87,dblto87,dblint87,dbllng87,
ftst,
fcompp,
ftest,
ftest0,
fdiv87,
// Complex numbers
cmul,
cdiv,
ccmp,
u64_ldbl,
ld_u64,
MAX
}
alias code_flags_t = uint;
enum
{
CFes = 1, // generate an ES: segment override for this instr
CFjmp16 = 2, // need 16 bit jump offset (long branch)
CFtarg = 4, // this code is the target of a jump
CFseg = 8, // get segment of immediate value
CFoff = 0x10, // get offset of immediate value
CFss = 0x20, // generate an SS: segment override (not with
// CFes at the same time, though!)
CFpsw = 0x40, // we need the flags result after this instruction
CFopsize = 0x80, // prefix with operand size
CFaddrsize = 0x100, // prefix with address size
CFds = 0x200, // need DS override (not with ES, SS, or CS )
CFcs = 0x400, // need CS override
CFfs = 0x800, // need FS override
CFgs = CFcs | CFfs, // need GS override
CFwait = 0x1000, // If I32 it indicates when to output a WAIT
CFselfrel = 0x2000, // if self-relative
CFunambig = 0x4000, // indicates cannot be accessed by other addressing
// modes
CFtarg2 = 0x8000, // like CFtarg, but we can't optimize this away
CFvolatile = 0x10000, // volatile reference, do not schedule
CFclassinit = 0x20000, // class init code
CFoffset64 = 0x40000, // offset is 64 bits
CFpc32 = 0x80000, // I64: PC relative 32 bit fixup
CFvex = 0x10_0000, // vex prefix
CFvex3 = 0x20_0000, // 3 byte vex prefix
CFjmp5 = 0x40_0000, // always a 5 byte jmp
CFswitch = 0x80_0000, // kludge for switch table fixups
CFindirect = 0x100_0000, // OSX32: indirect fixups
/* These are for CFpc32 fixups, they're the negative of the offset of the fixup
* from the program counter
*/
CFREL = 0x700_0000,
CFSEG = CFes | CFss | CFds | CFcs | CFfs | CFgs,
CFPREFIX = CFSEG | CFopsize | CFaddrsize,
}
@trusted
extern (C) void CF_print(uint cf);
struct code
{
code *next;
code_flags_t Iflags;
union
{
opcode_t Iop;
struct Svex
{
nothrow:
align(1):
ubyte op;
// [R X B m-mmmm] [W vvvv L pp]
ushort _pp;
@property ushort pp() const { return _pp & 3; }
@property void pp(ushort v) { _pp = (_pp & ~3) | (v & 3); }
@property ushort l() const { return (_pp >> 2) & 1; }
@property void l(ushort v) { _pp = cast(ushort)((_pp & ~4) | ((v & 1) << 2)); }
@property ushort vvvv() const { return (_pp >> 3) & 0x0F; }
@property void vvvv(ushort v) { _pp = cast(ushort)((_pp & ~0x78) | ((v & 0x0F) << 3)); }
@property ushort w() const { return (_pp >> 7) & 1; }
@property void w(ushort v) { _pp = cast(ushort)((_pp & ~0x80) | ((v & 1) << 7)); }
@property ushort mmmm() const { return (_pp >> 8) & 0x1F; }
@property void mmmm(ushort v) { _pp = cast(ushort)((_pp & ~0x1F00) | ((v & 0x1F) << 8)); }
@property ushort b() const { return (_pp >> 13) & 1; }
@property void b(ushort v) { _pp = cast(ushort)((_pp & ~0x2000) | ((v & 1) << 13)); }
@property ushort x() const { return (_pp >> 14) & 1; }
@property void x(ushort v) { _pp = cast(ushort)((_pp & ~0x4000) | ((v & 1) << 14)); }
@property ushort r() const { return (_pp >> 15) & 1; }
@property void r(ushort v) { _pp = cast(ushort)((_pp & ~0x8000) | (v << 15)); }
ubyte pfx; // always 0xC4
}
Svex Ivex;
}
/* The _EA is the "effective address" for the instruction, and consists of the modregrm byte,
* the sib byte, and the REX prefix byte. The 16 bit code generator just used the modregrm,
* the 32 bit x86 added the sib, and the 64 bit one added the rex.
*/
union
{
uint Iea;
struct
{
ubyte Irm; // reg/mode
ubyte Isib; // SIB byte
ubyte Irex; // REX prefix
}
}
/* IFL1 and IEV1 are the first operand, which usually winds up being the offset to the Effective
* Address. IFL1 is the tag saying which variant type is in IEV1. IFL2 and IEV2 is the second
* operand, usually for immediate instructions.
*/
ubyte IFL1,IFL2; // FLavors of 1st, 2nd operands
evc IEV1; // 1st operand, if any
evc IEV2; // 2nd operand, if any
nothrow:
void orReg(uint reg)
{ if (reg & 8)
Irex |= REX_R;
Irm |= modregrm(0, reg & 7, 0);
}
void setReg(uint reg)
{
Irex &= ~REX_R;
Irm &= cast(ubyte)~cast(uint)modregrm(0, 7, 0);
orReg(reg);
}
bool isJumpOP() { return Iop == JMP || Iop == JMPS; }
extern (C++) void print() // pretty-printer
{
code_print(&this);
}
}
extern (C) void code_print(code*);
/*******************
* Some instructions.
*/
enum
{
SEGES = 0x26,
SEGCS = 0x2E,
SEGSS = 0x36,
SEGDS = 0x3E,
SEGFS = 0x64,
SEGGS = 0x65,
CMP = 0x3B,
CALL = 0xE8,
JMP = 0xE9, // Intra-Segment Direct
JMPS = 0xEB, // JMP SHORT
JCXZ = 0xE3,
LOOP = 0xE2,
LES = 0xC4,
LEA = 0x8D,
LOCK = 0xF0,
INT3 = 0xCC,
HLT = 0xF4,
ENTER = 0xC8,
LEAVE = 0xC9,
MOVSXb = 0x0FBE,
MOVSXw = 0x0FBF,
MOVZXb = 0x0FB6,
MOVZXw = 0x0FB7,
STOSB = 0xAA,
STOS = 0xAB,
STO = 0x89,
LOD = 0x8B,
JO = 0x70,
JNO = 0x71,
JC = 0x72,
JB = 0x72,
JNC = 0x73,
JAE = 0x73,
JE = 0x74,
JNE = 0x75,
JBE = 0x76,
JA = 0x77,
JS = 0x78,
JNS = 0x79,
JP = 0x7A,
JNP = 0x7B,
JL = 0x7C,
JGE = 0x7D,
JLE = 0x7E,
JG = 0x7F,
UD2 = 0x0F0B,
PAUSE = 0xF390, // aka REP NOP
// NOP is used as a placeholder in the linked list of instructions, no
// actual code will be generated for it.
NOP = SEGCS, // don't use 0x90 because the
// Windows stuff wants to output 0x90's
ASM = SEGSS, // string of asm bytes
ESCAPE = SEGDS, // marker that special information is here
// (Iop2 is the type of special information)
}
enum ESCAPEmask = 0xFF; // code.Iop & ESCAPEmask ==> actual Iop
enum
{
ESClinnum = (1 << 8), // line number information
ESCctor = (2 << 8), // object is constructed
ESCdtor = (3 << 8), // object is destructed
ESCmark = (4 << 8), // mark eh stack
ESCrelease = (5 << 8), // release eh stack
ESCoffset = (6 << 8), // set code offset for eh
ESCadjesp = (7 << 8), // adjust ESP by IEV2.Vint
ESCmark2 = (8 << 8), // mark eh stack
ESCrelease2 = (9 << 8), // release eh stack
ESCframeptr = (10 << 8), // replace with load of frame pointer
ESCdctor = (11 << 8), // D object is constructed
ESCddtor = (12 << 8), // D object is destructed
ESCadjfpu = (13 << 8), // adjust fpustackused by IEV2.Vint
ESCfixesp = (14 << 8), // reset ESP to end of local frame
}
/*********************************
* Macros to ease generating code
* modregrm: generate mod reg r/m field
* modregxrm: reg could be R8..R15
* modregrmx: rm could be R8..R15
* modregxrmx: reg or rm could be R8..R15
* NEWREG: change reg field of x to r
* genorreg: OR t,f
*/
ubyte modregrm (uint m, uint r, uint rm) { return cast(ubyte)((m << 6) | (r << 3) | rm); }
uint modregxrm (uint m, uint r, uint rm) { return ((r&8)<<15)|modregrm(m,r&7,rm); }
uint modregrmx (uint m, uint r, uint rm) { return ((rm&8)<<13)|modregrm(m,r,rm&7); }
uint modregxrmx(uint m, uint r, uint rm) { return ((r&8)<<15)|((rm&8)<<13)|modregrm(m,r&7,rm&7); }
void NEWREXR(ref ubyte x, uint r) { x = (x&~REX_R)|((r&8)>>1); }
void NEWREG (ref ubyte x, uint r) { x = cast(ubyte)((x & ~(7 << 3)) | (r << 3)); }
void code_newreg(code* c, uint r) { NEWREG(c.Irm,r&7); NEWREXR(c.Irex,r); }
//#define genorreg(c,t,f) genregs((c),0x09,(f),(t))
enum
{
REX = 0x40, // REX prefix byte, OR'd with the following bits:
REX_W = 8, // 0 = default operand size, 1 = 64 bit operand size
REX_R = 4, // high bit of reg field of modregrm
REX_X = 2, // high bit of sib index reg
REX_B = 1, // high bit of rm field, sib base reg, or opcode reg
}
uint VEX2_B1(code.Svex ivex)
{
return
ivex.r << 7 |
ivex.vvvv << 3 |
ivex.l << 2 |
ivex.pp;
}
uint VEX3_B1(code.Svex ivex)
{
return
ivex.r << 7 |
ivex.x << 6 |
ivex.b << 5 |
ivex.mmmm;
}
uint VEX3_B2(code.Svex ivex)
{
return
ivex.w << 7 |
ivex.vvvv << 3 |
ivex.l << 2 |
ivex.pp;
}
@trusted
bool ADDFWAIT() { return config.target_cpu <= TARGET_80286; }
/************************************
*/
extern (C++):
struct NDP
{
elem *e; // which elem is stored here (NULL if none)
uint offset; // offset from e (used for complex numbers)
}
struct Globals87
{
NDP[8] stack; // 8087 stack
int stackused = 0; // number of items on the 8087 stack
Barray!NDP save; // 8087 values spilled to memory
}
extern (C++) extern __gshared Globals87 global87;
void getlvalue_msw(code *);
void getlvalue_lsw(code *);
void getlvalue(ref CodeBuilder cdb, code *pcs, elem *e, regm_t keepmsk);
void loadea(ref CodeBuilder cdb, elem *e, code *cs, uint op, uint reg, targ_size_t offset, regm_t keepmsk, regm_t desmsk);
|
D
|
/Users/ming/Desktop/PerfectTemplate/.build/x86_64-apple-macosx/debug/PerfectCRUD.build/Expression/Comparison.swift.o : /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/PerfectCRUD.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/Like.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Table.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Where.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Database.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Update.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Create.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Delete.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Coding/Coding.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Logging.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/Logical.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/In.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Join.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/Expression.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/Comparison.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Coding/CodingNames.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Coding/CodingBindings.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Coding/CodingKeyPaths.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Coding/CodingJoins.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/InInts.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/ComparisonInts.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/EqualityInts.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Coding/CodingRows.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Select.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Insert.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/Equality.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/ming/Desktop/PerfectTemplate/.build/x86_64-apple-macosx/debug/PerfectCRUD.build/Expression/Comparison~partial.swiftmodule : /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/PerfectCRUD.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/Like.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Table.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Where.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Database.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Update.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Create.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Delete.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Coding/Coding.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Logging.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/Logical.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/In.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Join.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/Expression.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/Comparison.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Coding/CodingNames.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Coding/CodingBindings.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Coding/CodingKeyPaths.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Coding/CodingJoins.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/InInts.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/ComparisonInts.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/EqualityInts.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Coding/CodingRows.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Select.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Insert.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/Equality.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/ming/Desktop/PerfectTemplate/.build/x86_64-apple-macosx/debug/PerfectCRUD.build/Expression/Comparison~partial.swiftdoc : /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/PerfectCRUD.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/Like.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Table.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Where.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Database.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Update.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Create.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Delete.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Coding/Coding.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Logging.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/Logical.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/In.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Join.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/Expression.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/Comparison.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Coding/CodingNames.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Coding/CodingBindings.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Coding/CodingKeyPaths.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Coding/CodingJoins.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/InInts.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/ComparisonInts.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/EqualityInts.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Coding/CodingRows.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Select.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Insert.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Expression/Equality.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
|
D
|
/Users/victornascimento/Documents/Projects/Rust/pong_with_rust/pong_with_rust/target/debug/deps/ordered_float-e2f1648dae46468f.rmeta: /Users/victornascimento/.cargo/registry/src/github.com-1ecc6299db9ec823/ordered-float-1.1.1/src/lib.rs
/Users/victornascimento/Documents/Projects/Rust/pong_with_rust/pong_with_rust/target/debug/deps/libordered_float-e2f1648dae46468f.rlib: /Users/victornascimento/.cargo/registry/src/github.com-1ecc6299db9ec823/ordered-float-1.1.1/src/lib.rs
/Users/victornascimento/Documents/Projects/Rust/pong_with_rust/pong_with_rust/target/debug/deps/ordered_float-e2f1648dae46468f.d: /Users/victornascimento/.cargo/registry/src/github.com-1ecc6299db9ec823/ordered-float-1.1.1/src/lib.rs
/Users/victornascimento/.cargo/registry/src/github.com-1ecc6299db9ec823/ordered-float-1.1.1/src/lib.rs:
|
D
|
/*
* Copyright (c) 2004-2009 Derelict Developers
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* * Neither the names 'Derelict', 'DerelictGL', nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
module derelict.opengl.extension.nv.register_combiners2;
private
{
import derelict.opengl.gltypes;
import derelict.opengl.gl;
import derelict.opengl.extension.loader;
import derelict.util.wrapper;
}
private bool enabled = false;
struct NVRegisterCombiners2
{
static bool load(char[] extString)
{
if(extString.findStr("GL_NV_register_combiners2") == -1)
return false;
if(!glBindExtFunc(cast(void**)&glCombinerStageParameterfvNV, "glCombinerStageParameterfvNV"))
return false;
if(!glBindExtFunc(cast(void**)&glGetCombinerStageParameterfvNV, "glGetCombinerStageParameterfvNV"))
return false;
enabled = true;
return true;
}
static bool isEnabled()
{
return enabled;
}
}
version(DerelictGL_NoExtensionLoaders)
{
}
else
{
static this()
{
DerelictGL.registerExtensionLoader(&NVRegisterCombiners2.load);
}
}
enum : GLenum
{
GL_PER_STAGE_CONSTANTS_NV = 0x8535
}
extern(System)
{
void function(GLenum, GLenum, GLfloat*) glCombinerStageParameterfvNV;
void function(GLenum, GLenum, GLfloat*) glGetCombinerStageParameterfvNV;
}
|
D
|
module iminilog;
import core.stdc.stdarg;
extern (C++)
{
////////////////////////////////////////////////////////////////////////////
interface IMiniLog
{
enum ELogType
{
eMessage,
eWarning,
eError,
eAlways,
eWarningAlways,
eErrorAlways,
eInput,
};
//! you only have to implement this function
void LogV(const ELogType nType, const char* szFormat, va_list args);
//! this is the simplest log function for messages
//! with the default implementation
void Log(const char* szFormat, ...);
//{
// va_list args;
// va_start(args, szFormat);
// LogV(eMessage, szFormat, args);
// va_end(args);
//}
//! this is the simplest log function for warnings
//! with the default implementation
void LogWarning(const char* szFormat, ...);
//{
// va_list args;
// va_start(args, szFormat);
// LogV(eWarning, szFormat, args);
// va_end(args);
//}
//! this is the simplest log function for errors
//! with the default implementation
void LogError(const char* szFormat, ...);
//{
// va_list args;
// va_start(args, szFormat);
// LogV(eError, szFormat, args);
// va_end(args);
//}
};
////////////////////////////////////////////////////////////////////////////
// By default, to make it possible not to implement the log at the beginning at all,
// empty implementations of the two functions are given
interface CNullMiniLog : IMiniLog
{
// the default implementation just won't do anything
void LogV(const char* szFormat, va_list args);
//{
//}
};
}
|
D
|
import std.stdio;
import std.string;
import std.algorithm;
import std.range;
import multi_index;
int[] array(Range)(Range r)
if(isImplicitlyConvertible!(ElementType!Range, int)){
int[] arr;
foreach(e; r) arr ~= e;
return arr;
}
class MyRecord{
static MyRecord Duh(int i) {
return new MyRecord(i);
}
int _i;
this(int _j){ _i = _j; }
@property int i()const{ return _i; }
@property void i(int i1){
_i = i1;
emit(); // MultiIndexContainer is notified that this record's
// position in indeces may need to be fixed
}
// signal impl - MultiIndexContainer will use these
// to connect. In this example, we actually only need
// a single slot. For a value type with M signals
// (differentiated with mixin aliases), there will be
// M slots connected.
void delegate()[] slots;
void connect(void delegate() slot){
slots ~= slot;
}
void disconnect(void delegate() slot){
size_t index = slots.length;
foreach(i, slot1; slots){
if(slot is slot1){
index = i;
moveAll(slots[i+1 .. $], slots[i .. $-1]);
slots.length-=1;
break;
}
}
}
void emit(){
foreach(slot; slots){
slot();
}
}
override string toString() const{
return format("Record(%s)", _i);
}
}
template Testies(Allocator) {
unittest{
// lone heap index
alias MultiIndexContainer!(int, IndexedBy!(Heap!()), Allocator) C1;
C1 c = new C1;
c.insert(1);
c.insert(2);
c.insert(3);
assert(c.front() == 3);
c.insert([5,6,7]);
assert(c.front() == 7);
c.modify(takeOne(PSR(c[])), (ref int i){ i = 77; });
assert(c.front() == 77);
assert(filter!"a==7"(c[]).empty);
c.modify(takeOne(PSR(c[])), (ref int i){ i = 0; });
assert(c.front() == 6);
auto r = c[];
r.popFront();
r.popFront();
auto tmp = r.front;
c.modify(takeOne(PSR(r)), (ref int i){ i = 80; });
assert(c.front() == 80);
c.removeFront();
assert(c.front() == 6);
c.insert(tmp); // was tmp 5? not sure, so put it back if it was
auto t = take(PSR(c[]),1);
c.remove(t);
assert(c.front() == 5);
assert(c.length == 5);
foreach(i; 0 .. 5){
c.removeBack();
}
assert(c.empty);
}
// again, but with immutable(int)
unittest{
// lone heap index
alias MultiIndexContainer!(immutable(int), IndexedBy!(Heap!()), Allocator) C1;
C1 c = new C1;
c.insert(1);
c.insert(2);
c.insert(3);
assert(c.front() == 3);
c.insert([5,6,7]);
assert(c.front() == 7);
writeln(c[]);
auto r = c[];
r.popFront();
c.removeFront();
auto tmp = r.front;
assert(c.front() == 6);
auto t = take(PSR(c[]),1);
c.remove(t);
assert(c.front() == 5);
assert(c.length == 4);
foreach(i; 0 .. 4){
c.removeBack();
}
assert(c.empty);
}
unittest{
// lone heap index helper
alias MultiIndexContainer!(int, IndexedBy!(Heap!()), Allocator) C1;
C1 d = new C1;
auto c = d.get_index!0;
c.insert(1);
c.insert(2);
c.insert(3);
assert(c.front() == 3);
c.insert([5,6,7]);
assert(c.front() == 7);
c.modify(takeOne(PSR(c[])), (ref int i){ i = 77; });
assert(c.front() == 77);
assert(filter!"a==7"(c[]).empty);
c.modify(takeOne(PSR(c[])), (ref int i){ i = 0; });
assert(c.front() == 6);
auto r = c[];
r.popFront();
r.popFront();
auto tmp = r.front;
c.modify(takeOne(PSR(r)), (ref int i){ i = 80; });
assert(c.front() == 80);
c.removeFront();
assert(c.front() == 6);
c.insert(tmp); // was tmp 5? not sure, so put it back if it was
auto t = take(PSR(c[]),1);
c.remove(t);
assert(c.front() == 5);
assert(c.length == 5);
foreach(i; 0 .. 5){
c.removeBack();
}
assert(c.empty);
}
unittest{
// min heap, max heap
alias MultiIndexContainer!(int, IndexedBy!(Heap!("a", "a>b"),
Heap!("a", "a<b")), Allocator) C1;
C1 c = new C1;
auto min = c.get_index!0;
auto max = c.get_index!1;
min.insert(1);
min.insert(2);
min.insert(3);
assert(max.front() == 3);
assert(min.front() == 1);
min.insert([5,6,7]);
assert(min.front() == 1);
assert(max.front() == 7);
max.modify(takeOne(PSR(max[])), (ref int i){ i = 77; });
assert(min.front() == 1);
assert(max.front() == 77);
assert(filter!"a==7"(min[]).empty);
assert(filter!"a==7"(max[]).empty);
max.modify(takeOne(PSR(max[])), (ref int i){ i = 0; });
assert(min.front() == 0);
assert(max.front() == 6);
auto r = min[];
r.popFront();
r.popFront();
auto tmp = r.front;
min.modify(takeOne(PSR(r)), (ref int i){ i = 80; });
assert(min.front() == 0);
assert(max.front() == 80);
max.removeFront();
assert(max.front() == 6);
min.insert(tmp); // was tmp 5? not sure, so put it back if it was
auto t = take(PSR(max[]),1);
max.remove(t);
assert(max.front() == 5);
assert(max.length == 5);
foreach(i; 0 .. 5){
max.removeBack();
}
assert(max.empty);
assert(min.empty);
}
unittest{
alias MultiIndexContainer!(MyRecord,
IndexedBy!(Heap!("a.i","a>b")),
// this tells MultiIndexContainer that you want
// it to use the signal defined in MyRecord.
// you just need to pass in the index number.
ValueChangedSlots!(ValueSignal!(0)),
MutableView,
Allocator,
) MyContainer;
MyContainer c = new MyContainer;
c.insert(map!(function(int i){return new MyRecord(i);})(iota(20)));
writeln(c[]);
MyRecord v = c.front();
writefln("changing %s to %s", v._i, 22);
v.i = 22; // v's position in c is automatically fixed
writeln(c[]);
}
}
mixin Testies!(GCAllocator) a1;
mixin Testies!(MallocAllocator) a2;
|
D
|
module python.conv.d_to_python;
import python.raw: PyObject;
import python.type: isUserAggregate, isTuple, isNonRangeUDT;
import std.traits: Unqual, isIntegral, isFloatingPoint, isAggregateType, isArray,
isStaticArray, isAssociativeArray, isPointer, PointerTarget, isSomeChar, isCallable;
import std.range: isInputRange;
import std.datetime: Date, DateTime;
PyObject* toPython(T)(T value) @trusted if(isIntegral!T) {
import python.raw: PyLong_FromLong;
return PyLong_FromLong(value);
}
PyObject* toPython(T)(T value) @trusted if(isFloatingPoint!T) {
import python.raw: PyFloat_FromDouble;
return PyFloat_FromDouble(value);
}
PyObject* toPython(T)(T value) if(isInputRange!T && !is(T == string) && !isStaticArray!T) {
import python.raw: PyList_New, PyList_SetItem, PyList_Append;
import std.range: isForwardRange, enumerate;
static if(__traits(hasMember, T, "length")) {
const length = value.length;
enum append = false;
} else static if(isForwardRange!T){
import std.range: walkLength;
import std.array: save;
static assert(isForwardRange!T);
const length = walkLength(value.save);
enum append = false;
} else {
enum length = 0;
enum append = true;
}
auto ret = PyList_New(length);
foreach(i, elt; value.enumerate) {
static if(append)
PyList_Append(ret, toPython(elt));
else
PyList_SetItem(ret, i, toPython(elt));
}
return ret;
}
PyObject* toPython(T)(T value) if(isNonRangeUDT!T) {
import python.type: pythonClass;
return pythonClass(value);
}
PyObject* toPython(T)(T value) if(isPointer!T && isNonRangeUDT!(PointerTarget!T)) {
return toPython(*value);
}
PyObject* toPython(T)(T value) if(is(Unqual!T == DateTime)) {
import python.raw: pyDateTimeFromDateAndTime;
return pyDateTimeFromDateAndTime(value.year, value.month, value.day,
value.hour, value.minute, value.second);
}
PyObject* toPython(T)(T value) if(is(Unqual!T == Date)) {
import python.raw: pyDateFromDate;
return pyDateFromDate(value.year, value.month, value.day);
}
PyObject* toPython(T)(T value) if(is(T == string)) {
import python.raw: pyUnicodeFromStringAndSize;
return pyUnicodeFromStringAndSize(value.ptr, value.length);
}
PyObject* toPython(T)(T value) if(is(Unqual!T == bool)) {
import python.raw: PyBool_FromLong;
return PyBool_FromLong(value);
}
PyObject* toPython(T)(T value) if(isStaticArray!T) {
return toPython(value[]);
}
PyObject* toPython(T)(T value) if(isAssociativeArray!T) {
import python.raw: PyDict_New, PyDict_SetItem;
auto ret = PyDict_New;
foreach(k, v; value) {
PyDict_SetItem(ret, k.toPython, v.toPython);
}
return ret;
}
PyObject* toPython(T)(T value) if(isTuple!T) {
import python.raw: PyTuple_New, PyTuple_SetItem;
auto ret = PyTuple_New(value.length);
static foreach(i; 0 .. T.length) {
PyTuple_SetItem(ret, i, value[i].toPython);
}
return ret;
}
PyObject* toPython(T)(T value) if(isSomeChar!T) {
return null; // FIXME
}
PyObject* toPython(T)(T value) if(isCallable!T && !isUserAggregate!T) {
import python.type: pythonCallable;
return pythonCallable(value);
}
|
D
|
/*
Copyright (c) 1996 Blake McBride
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
defclass SimpleWarning : Warning {
iOrigin; // Originator of warning
iMsg; // Message string
};
private imeth init(origin, msg)
{
iOrigin = origin;
iMsg = vNew(String, msg);
return self;
}
cvmeth vNew(object origin, msg)
{
return init(gNew(super), origin, msg);
}
imeth gDeepDispose, gDispose()
{
gDispose(iMsg);
return gDispose(super self);
}
// Return the default restart for conditions of this class (either an
// Abort or a SimpleRestart).
imeth gDefaultRestart()
{
gPrint(self, stderrStream);
return gDefaultRestart(super self);
}
|
D
|
/// D language bindings for libsodium
///
/// License: ISC (see LICENSE.txt)
module libsodium;
public import libsodium.core;
public import libsodium.crypto_aead_aes256gcm;
public import libsodium.crypto_aead_chacha20poly1305;
public import libsodium.crypto_aead_xchacha20poly1305;
public import libsodium.crypto_auth;
public import libsodium.crypto_auth_hmacsha256;
public import libsodium.crypto_auth_hmacsha512;
public import libsodium.crypto_auth_hmacsha512256;
public import libsodium.crypto_box;
public import libsodium.crypto_box_curve25519xchacha20poly1305;
public import libsodium.crypto_box_curve25519xsalsa20poly1305;
public import libsodium.crypto_core_ed25519;
public import libsodium.crypto_core_hchacha20;
public import libsodium.crypto_core_hsalsa20;
public import libsodium.crypto_core_ristretto255;
public import libsodium.crypto_core_salsa20;
public import libsodium.crypto_core_salsa2012;
public import libsodium.crypto_core_salsa208;
public import libsodium.crypto_generichash;
public import libsodium.crypto_generichash_blake2b;
public import libsodium.crypto_hash;
public import libsodium.crypto_hash_sha256;
public import libsodium.crypto_hash_sha512;
public import libsodium.crypto_kdf;
public import libsodium.crypto_kdf_blake2b;
public import libsodium.crypto_kx;
public import libsodium.crypto_onetimeauth;
public import libsodium.crypto_onetimeauth_poly1305;
public import libsodium.crypto_pwhash;
public import libsodium.crypto_pwhash_argon2i;
public import libsodium.crypto_pwhash_argon2id;
public import libsodium.crypto_pwhash_scryptsalsa208sha256;
public import libsodium.crypto_scalarmult;
public import libsodium.crypto_scalarmult_curve25519;
public import libsodium.crypto_scalarmult_ed25519;
public import libsodium.crypto_scalarmult_ristretto255;
public import libsodium.crypto_secretbox;
public import libsodium.crypto_secretbox_xchacha20poly1305;
public import libsodium.crypto_secretbox_xsalsa20poly1305;
public import libsodium.crypto_secretstream_xchacha20poly1305;
public import libsodium.crypto_shorthash;
public import libsodium.crypto_shorthash_siphash24;
public import libsodium.crypto_sign;
public import libsodium.crypto_sign_ed25519;
public import libsodium.crypto_sign_edwards25519sha512batch;
public import libsodium.crypto_stream;
public import libsodium.crypto_stream_chacha20;
public import libsodium.crypto_stream_salsa20;
public import libsodium.crypto_stream_salsa2012;
public import libsodium.crypto_stream_salsa208;
public import libsodium.crypto_stream_xchacha20;
public import libsodium.crypto_stream_xsalsa20;
public import libsodium.crypto_verify_16;
public import libsodium.crypto_verify_32;
public import libsodium.crypto_verify_64;
public import libsodium.export_;
public import libsodium.randombytes;
public import libsodium.randombytes_internal_random;
public import libsodium.randombytes_sysrandom;
public import libsodium.runtime;
public import libsodium.utils;
|
D
|
/Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/DerivedData/CryptoLive/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/LineChartRenderer.o : /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Filters/DataApproximator+N.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/CombinedChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Jobs/ViewPortJob.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Jobs/AnimatedViewPortJob.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Jobs/MoveViewJob.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Jobs/AnimatedMoveViewJob.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Jobs/ZoomViewJob.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Jobs/AnimatedZoomViewJob.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/Legend.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/MarkerImage.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/Range.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/ChartLimitLine.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/ChartDataRendererBase.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/AxisRendererBase.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/AxisBase.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/ComponentBase.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/ChartViewBase.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/BarLineChartViewBase.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/PieRadarChartViewBase.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntryBase.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Animation/ChartAnimationEasing.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Utils/Fill.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Utils/Platform.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/Description.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Interfaces/ChartDataProvider.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Interfaces/CombinedChartDataProvider.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Interfaces/BubbleChartDataProvider.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Interfaces/BarLineScatterCandleBubbleChartDataProvider.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Interfaces/CandleChartDataProvider.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Interfaces/LineChartDataProvider.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Interfaces/BarChartDataProvider.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Interfaces/ScatterChartDataProvider.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/IMarker.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Utils/ViewPortHandler.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Utils/Transformer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Renderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/LegendRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/BarLineScatterCandleBubbleRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Scatter/IShapeRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Scatter/XShapeRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Scatter/CircleShapeRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Scatter/TriangleShapeRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Scatter/SquareShapeRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Scatter/ChevronDownShapeRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Scatter/ChevronUpShapeRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Scatter/CrossShapeRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/LineScatterCandleRadarRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/LineRadarRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/XAxisRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/YAxisRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/CombinedChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/PieChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/BubbleChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/LineChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/CandleStickChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/BarChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/HorizontalBarChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/RadarChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/ScatterChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/IHighlighter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/CombinedHighlighter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/PieHighlighter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/BarHighlighter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/HorizontalBarHighlighter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/RadarHighlighter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/PieRadarHighlighter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/ChartHighlighter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Formatters/IValueFormatter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Formatters/IAxisValueFormatter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Formatters/DefaultAxisValueFormatter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Formatters/IndexAxisValueFormatter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Formatters/DefaultValueFormatter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Formatters/IFillFormatter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Formatters/DefaultFillFormatter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Animation/Animator.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Filters/DataApproximator.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Utils/ChartColorTemplates.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/XAxis.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/YAxis.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Utils/ChartUtils.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/ChartBaseDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/IChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/IPieChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/IBubbleChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/IBarLineScatterCandleBubbleChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/ICandleChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/ILineChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/IBarChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/IRadarChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineScatterCandleRadarChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/ILineScatterCandleRadarChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineRadarChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/ILineRadarChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/IScatterChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/Highlight.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Utils/TransformerHorizontalBarChart.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/XAxisRendererHorizontalBarChart.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/YAxisRendererHorizontalBarChart.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/XAxisRendererRadarChart.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/YAxisRendererRadarChart.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/MarkerView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/CombinedChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/PieChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/BubbleChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/LineChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/CandleStickChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/BarChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/HorizontalBarChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/RadarChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/ScatterChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntry.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataEntry.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataEntry.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataEntry.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataEntry.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataEntry.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/LegendEntry.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Target\ Support\ Files/Charts/Charts-umbrella.h /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/DerivedData/CryptoLive/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Charts.build/unextended-module.modulemap
/Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/DerivedData/CryptoLive/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/LineChartRenderer~partial.swiftmodule : /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Filters/DataApproximator+N.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/CombinedChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Jobs/ViewPortJob.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Jobs/AnimatedViewPortJob.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Jobs/MoveViewJob.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Jobs/AnimatedMoveViewJob.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Jobs/ZoomViewJob.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Jobs/AnimatedZoomViewJob.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/Legend.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/MarkerImage.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/Range.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/ChartLimitLine.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/ChartDataRendererBase.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/AxisRendererBase.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/AxisBase.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/ComponentBase.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/ChartViewBase.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/BarLineChartViewBase.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/PieRadarChartViewBase.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntryBase.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Animation/ChartAnimationEasing.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Utils/Fill.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Utils/Platform.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/Description.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Interfaces/ChartDataProvider.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Interfaces/CombinedChartDataProvider.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Interfaces/BubbleChartDataProvider.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Interfaces/BarLineScatterCandleBubbleChartDataProvider.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Interfaces/CandleChartDataProvider.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Interfaces/LineChartDataProvider.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Interfaces/BarChartDataProvider.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Interfaces/ScatterChartDataProvider.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/IMarker.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Utils/ViewPortHandler.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Utils/Transformer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Renderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/LegendRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/BarLineScatterCandleBubbleRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Scatter/IShapeRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Scatter/XShapeRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Scatter/CircleShapeRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Scatter/TriangleShapeRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Scatter/SquareShapeRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Scatter/ChevronDownShapeRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Scatter/ChevronUpShapeRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Scatter/CrossShapeRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/LineScatterCandleRadarRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/LineRadarRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/XAxisRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/YAxisRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/CombinedChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/PieChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/BubbleChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/LineChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/CandleStickChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/BarChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/HorizontalBarChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/RadarChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/ScatterChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/IHighlighter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/CombinedHighlighter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/PieHighlighter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/BarHighlighter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/HorizontalBarHighlighter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/RadarHighlighter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/PieRadarHighlighter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/ChartHighlighter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Formatters/IValueFormatter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Formatters/IAxisValueFormatter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Formatters/DefaultAxisValueFormatter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Formatters/IndexAxisValueFormatter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Formatters/DefaultValueFormatter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Formatters/IFillFormatter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Formatters/DefaultFillFormatter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Animation/Animator.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Filters/DataApproximator.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Utils/ChartColorTemplates.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/XAxis.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/YAxis.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Utils/ChartUtils.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/ChartBaseDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/IChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/IPieChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/IBubbleChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/IBarLineScatterCandleBubbleChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/ICandleChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/ILineChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/IBarChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/IRadarChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineScatterCandleRadarChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/ILineScatterCandleRadarChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineRadarChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/ILineRadarChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/IScatterChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/Highlight.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Utils/TransformerHorizontalBarChart.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/XAxisRendererHorizontalBarChart.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/YAxisRendererHorizontalBarChart.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/XAxisRendererRadarChart.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/YAxisRendererRadarChart.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/MarkerView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/CombinedChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/PieChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/BubbleChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/LineChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/CandleStickChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/BarChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/HorizontalBarChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/RadarChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/ScatterChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntry.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataEntry.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataEntry.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataEntry.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataEntry.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataEntry.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/LegendEntry.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Target\ Support\ Files/Charts/Charts-umbrella.h /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/DerivedData/CryptoLive/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Charts.build/unextended-module.modulemap
/Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/DerivedData/CryptoLive/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/LineChartRenderer~partial.swiftdoc : /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Filters/DataApproximator+N.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/CombinedChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartData.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Jobs/ViewPortJob.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Jobs/AnimatedViewPortJob.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Jobs/MoveViewJob.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Jobs/AnimatedMoveViewJob.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Jobs/ZoomViewJob.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Jobs/AnimatedZoomViewJob.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/Legend.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/MarkerImage.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/Range.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/ChartLimitLine.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/ChartDataRendererBase.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/AxisRendererBase.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/AxisBase.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/ComponentBase.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/ChartViewBase.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/BarLineChartViewBase.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/PieRadarChartViewBase.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntryBase.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Animation/ChartAnimationEasing.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Utils/Fill.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Utils/Platform.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/Description.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Interfaces/ChartDataProvider.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Interfaces/CombinedChartDataProvider.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Interfaces/BubbleChartDataProvider.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Interfaces/BarLineScatterCandleBubbleChartDataProvider.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Interfaces/CandleChartDataProvider.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Interfaces/LineChartDataProvider.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Interfaces/BarChartDataProvider.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Interfaces/ScatterChartDataProvider.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/IMarker.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Utils/ViewPortHandler.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Utils/Transformer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Renderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/LegendRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/BarLineScatterCandleBubbleRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Scatter/IShapeRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Scatter/XShapeRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Scatter/CircleShapeRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Scatter/TriangleShapeRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Scatter/SquareShapeRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Scatter/ChevronDownShapeRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Scatter/ChevronUpShapeRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/Scatter/CrossShapeRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/LineScatterCandleRadarRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/LineRadarRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/XAxisRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/YAxisRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/CombinedChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/PieChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/BubbleChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/LineChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/CandleStickChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/BarChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/HorizontalBarChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/RadarChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/ScatterChartRenderer.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/IHighlighter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/CombinedHighlighter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/PieHighlighter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/BarHighlighter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/HorizontalBarHighlighter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/RadarHighlighter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/PieRadarHighlighter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/ChartHighlighter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Formatters/IValueFormatter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Formatters/IAxisValueFormatter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Formatters/DefaultAxisValueFormatter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Formatters/IndexAxisValueFormatter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Formatters/DefaultValueFormatter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Formatters/IFillFormatter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Formatters/DefaultFillFormatter.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Animation/Animator.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Filters/DataApproximator.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Utils/ChartColorTemplates.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/XAxis.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/YAxis.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Utils/ChartUtils.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/ChartBaseDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/IChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/IPieChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/IBubbleChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/IBarLineScatterCandleBubbleChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/ICandleChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/ILineChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/IBarChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/IRadarChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineScatterCandleRadarChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/ILineScatterCandleRadarChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineRadarChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/ILineRadarChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Interfaces/IScatterChartDataSet.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Highlight/Highlight.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Utils/TransformerHorizontalBarChart.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/XAxisRendererHorizontalBarChart.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/YAxisRendererHorizontalBarChart.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/XAxisRendererRadarChart.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Renderers/YAxisRendererRadarChart.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/MarkerView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/CombinedChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/PieChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/BubbleChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/LineChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/CandleStickChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/BarChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/HorizontalBarChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/RadarChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Charts/ScatterChartView.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntry.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataEntry.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataEntry.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataEntry.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataEntry.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataEntry.swift /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Components/LegendEntry.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Target\ Support\ Files/Charts/Charts-umbrella.h /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/DerivedData/CryptoLive/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Charts.build/unextended-module.modulemap
|
D
|
INSTANCE Info_Mod_Granmar_Hi (C_INFO)
{
npc = Mod_1017_KGD_Granmar_MT;
nr = 1;
condition = Info_Mod_Granmar_Hi_Condition;
information = Info_Mod_Granmar_Hi_Info;
permanent = 0;
important = 1;
};
FUNC INT Info_Mod_Granmar_Hi_Condition()
{
if (Wld_IsTime(08,00,20,00))
{
return 1;
};
};
FUNC VOID Info_Mod_Granmar_Hi_Info()
{
AI_Output(self, hero, "Info_Mod_Granmar_Hi_08_00"); //Stop, was willst du hier?
AI_Output(hero, self, "Info_Mod_Granmar_Hi_15_01"); //Ich weiß noch nicht genau. Was gibt’s hier denn?
AI_Output(self, hero, "Info_Mod_Granmar_Hi_08_02"); //Na ja, wenn du für uns arbeiten willst, solltest du zu Ole gehen.
AI_Output(self, hero, "Info_Mod_Granmar_Hi_08_03"); //Ansonsten könntest du dir noch bei Bernd ein paar Sachen kaufen. Das Minental ist ein hartes Pflaster und unvorbereitet sollte man sich nicht zu tief hinein wagen.
AI_Output(hero, self, "Info_Mod_Granmar_Hi_15_04"); //Mhm, ok, danke für den Tipp.
};
INSTANCE Info_Mod_Granmar_Aufgabe (C_INFO)
{
npc = Mod_1017_KGD_Granmar_MT;
nr = 1;
condition = Info_Mod_Granmar_Aufgabe_Condition;
information = Info_Mod_Granmar_Aufgabe_Info;
permanent = 0;
important = 0;
description = "Ole schickt mich, ich soll dir bei der Sache mit der Mine helfen!";
};
FUNC INT Info_Mod_Granmar_Aufgabe_Condition()
{
if (Npc_KnowsInfo(hero, Info_Mod_Ole_Vorbereitungen))
{
return 1;
};
};
FUNC VOID Info_Mod_Granmar_Aufgabe_Info()
{
AI_Output(hero, self, "Info_Mod_Granmar_Aufgabe_15_00"); //Ole schickt mich, ich soll dir bei der Sache mit der Mine helfen!
AI_Output(self, hero, "Info_Mod_Granmar_Aufgabe_08_01"); //Ok, Hilfe kann ich brauchen!
AI_Output(self, hero, "Info_Mod_Granmar_Aufgabe_08_02"); //Ich soll mich um die komischen Steinmonster in der Mine kümmern, allerdings sind diese Viecher gegen normale Waffen resistent.
AI_Output(self, hero, "Info_Mod_Granmar_Aufgabe_08_03"); //Der einzige Hinweis steht in einem Buch, welches ich von den Wassermagiern erworben habe.
AI_Output(self, hero, "Info_Mod_Granmar_Aufgabe_08_04"); //Anscheinend sind diese Steinmonster nur mit Hilfe von erzüberzogenen Keulen besiegbar.
AI_Output(self, hero, "Info_Mod_Granmar_Aufgabe_08_05"); //Ich habe mit Heidrek auch schon darüber gesprochen und er meint, dass man dafür ein bestimmtes Holz braucht, das nur in der Nähe von Trollen zu finden ist.
AI_Output(hero, self, "Info_Mod_Granmar_Aufgabe_15_06"); //Und wo ist hier in der Nähe ein Troll?
AI_Output(self, hero, "Info_Mod_Granmar_Aufgabe_08_07"); //Soweit ich weiß gibt es hier sogar einen Trollkessel, in der Nähe des Banditenlagers.
AI_Output(self, hero, "Info_Mod_Granmar_Aufgabe_08_08"); //Allerdings ist mir mein gutes Schwert abhanden gekommen und Heidrek konnte mir noch kein neues anfertigen.
AI_Output(self, hero, "Info_Mod_Granmar_Aufgabe_08_09"); //Ohne mein Schwert werde ich ganz sicher nicht in die Nähe von Trollen gehen.
AI_Output(hero, self, "Info_Mod_Granmar_Aufgabe_15_10"); //Na gut, dann werde ich eben danach suchen, aber dafür will ich auch eine angemessene Belohnung.
AI_Output(self, hero, "Info_Mod_Granmar_Aufgabe_08_11"); //Glaub mir, wenn du das Holz findest, wirst du es nicht bereuen.
Log_CreateTopic (TOPIC_MOD_KG_TROLLHOLZ, LOG_MISSION);
B_SetTopicStatus (TOPIC_MOD_KG_TROLLHOLZ, LOG_RUNNING);
B_LogEntry (TOPIC_MOD_KG_TROLLHOLZ, "Granmar sollte die Steinmonster in der Mine töten, doch benötigt er dafür eine erzüberzogene Keule. Dafür ist jedoch ein Stück Trollholz nötig, welches ich nun besorgen darf. Vielleicht finde ich im Trollkessel beim Banditenlager ein Stück von diesem Holz ...");
Wld_InsertItem (ItMi_Trollholz, "FP_ITEM_TROLLHOLZ");
Wld_InsertNpc (Gobbo_Warrior, "FP_ITEM_TROLLHOLZ");
Wld_InsertNpc (Gobbo_Warrior, "FP_ITEM_TROLLHOLZ");
Wld_InsertNpc (Gobbo_Warrior, "FP_ITEM_TROLLHOLZ");
};
INSTANCE Info_Mod_Granmar_Trollholz (C_INFO)
{
npc = Mod_1017_KGD_Granmar_MT;
nr = 1;
condition = Info_Mod_Granmar_Trollholz_Condition;
information = Info_Mod_Granmar_Trollholz_Info;
permanent = 0;
important = 0;
description = "Ich habe das Holz gefunden.";
};
FUNC INT Info_Mod_Granmar_Trollholz_Condition()
{
if (Npc_KnowsInfo(hero, Info_Mod_Granmar_Aufgabe))
&& (Npc_HasItems(hero, ItMi_Trollholz) == 1)
{
return 1;
};
};
FUNC VOID Info_Mod_Granmar_Trollholz_Info()
{
AI_Output(hero, self, "Info_Mod_Granmar_Trollholz_15_00"); //Ich habe das Holz gefunden. Was machen wir jetzt damit?
AI_Output(self, hero, "Info_Mod_Granmar_Trollholz_08_01"); //Sehr gut, bring es gleich zu Heidrek, er wird daraus eine Keule machen.
B_LogEntry (TOPIC_MOD_KG_TROLLHOLZ, "Ich soll das Trollholz zu Heidrek bringen, damit er daraus die Keule herstellen kann.");
B_GivePlayerXP (100);
};
INSTANCE Info_Mod_Granmar_Trollholz2 (C_INFO)
{
npc = Mod_1017_KGD_Granmar_MT;
nr = 1;
condition = Info_Mod_Granmar_Trollholz2_Condition;
information = Info_Mod_Granmar_Trollholz2_Info;
permanent = 0;
important = 0;
description = "Die Keulen sind fertig!";
};
FUNC INT Info_Mod_Granmar_Trollholz2_Condition()
{
if (Npc_KnowsInfo(hero, Info_Mod_Heidrek_Trollholz3))
&& (Npc_HasItems(hero, ItMW_GranmarKeule) == 1)
{
return 1;
};
};
FUNC VOID Info_Mod_Granmar_Trollholz2_Info()
{
AI_Output(hero, self, "Info_Mod_Granmar_Trollholz2_15_00"); //Die Keulen sind fertig!
B_GiveInvItems (hero, self, ItMw_GranmarKeule, 1);
AI_Output(self, hero, "Info_Mod_Granmar_Trollholz2_08_01"); //Perfekt, dann können wir ja bald auf die Jagd gehen.
AI_Output(self, hero, "Info_Mod_Granmar_Trollholz2_08_02"); //Sag mir Bescheid, sobald Hymir das Ok gibt.
B_LogEntry_More (TOPIC_MOD_KG_VORBEREITUNGEN, TOPIC_MOD_KG_TROLLHOLZ, "Granmars Probleme sind gelöst.", "Granmar ist nun bereit die Mine zu stürmen. Ich soll ihm dann Bescheid geben, wenn Hymir das OK gibt.");
B_SetTopicStatus (TOPIC_mOD_KG_TROLLHOLZ, LOG_SUCCESS);
B_GivePlayerXP (150);
};
INSTANCE Info_Mod_Granmar_PreLehrer (C_INFO)
{
npc = Mod_1017_KGD_Granmar_MT;
nr = 1;
condition = Info_Mod_Granmar_PreLehrer_Condition;
information = Info_Mod_Granmar_PreLehrer_Info;
permanent = 0;
important = 0;
description = "Wie schaut es aus, kannst du mir zeigen wie ich ein besserer Kämpfer werde?";
};
FUNC INT Info_Mod_Granmar_PreLehrer_Condition()
{
if (KG_Dabei == 1)
&& (!Npc_KnowsInfo(hero, Info_Mod_Granmar_Trollholz2))
&& (Mod_Schwierigkeit != 4)
{
return 1;
};
};
FUNC VOID Info_Mod_Granmar_PreLehrer_Info()
{
AI_Output(hero, self, "Info_Mod_Granmar_PreLehrer_15_00"); //Wie schaut es aus, kannst du mir zeigen wie ich ein besserer Kämpfer werde?
AI_Output(self, hero, "Info_Mod_Granmar_PreLehrer_08_01"); //Ich könnte dir schon was beibringen, allerdings solang ich keine gescheite Waffe habe, werd ich mir die Mühe nicht machen.
AI_Output(self, hero, "Info_Mod_Granmar_PreLehrer_08_02"); //Frag mich noch mal wenn Heidrek mein neues Schwert fertig hat.
};
INSTANCE Info_Mod_Granmar_Lehrer (C_INFO)
{
npc = Mod_1017_KGD_Granmar_MT;
nr = 1;
condition = Info_Mod_Granmar_Lehrer_Condition;
information = Info_Mod_Granmar_Lehrer_Info;
permanent = 0;
important = 0;
description = "Wie sieht es aus, kannst du mir jetzt zeigen wie ich besser werde?";
};
FUNC INT Info_Mod_Granmar_Lehrer_Condition()
{
if (KG_Dabei == 1)
&& (Npc_KnowsInfo(hero, Info_Mod_Granmar_Trollholz2))
&& (Mod_Schwierigkeit != 4)
{
return 1;
};
};
FUNC VOID Info_Mod_Granmar_Lehrer_Info()
{
AI_Output(hero, self, "Info_Mod_Granmar_Lehrer_15_00"); //Wie sieht es aus, kannst du mir jetzt zeigen, wie ich besser werde?
AI_Output(self, hero, "Info_Mod_Granmar_Lehrer_08_01"); //Ok, versprochen ist versprochen. Wenn du willst kann ich dir den Umgang mit dem Zweihänder beibringen.
Log_CreateTopic (TOPIC_MOD_LEHRER_KG, LOG_NOTE);
B_LogEntry (TOPIC_MOD_LEHRER_KG, "Granmar kann mir den Umgang mit Zweihändern beibringen.");
};
INSTANCE Info_Mod_Granmar_Lernen (C_INFO)
{
npc = Mod_1017_KGD_Granmar_MT;
nr = 1;
condition = Info_Mod_Granmar_Lernen_Condition;
information = Info_Mod_Granmar_Lernen_Info;
permanent = 1;
important = 0;
description = "Ich will lernen.";
};
FUNC INT Info_Mod_Granmar_Lernen_Condition()
{
if (Npc_KnowsInfo(hero, Info_Mod_Granmar_Lehrer))
&& (Mod_Schwierigkeit != 4)
{
return 1;
};
};
FUNC VOID Info_Mod_Granmar_Lernen_Info()
{
AI_Output(hero, self, "Info_Mod_Granmar_Lernen_15_00"); //Ich will lernen.
Info_ClearChoices (Info_Mod_Granmar_Lernen);
Info_AddChoice (Info_Mod_Granmar_Lernen, DIALOG_BACK, Info_Mod_Granmar_Lernen_BACK);
Info_AddChoice (Info_Mod_Granmar_Lernen, B_BuildLearnString(PRINT_Learn2h5 , B_GetLearnCostTalent_New(hero, NPC_TALENT_2H)), Info_Mod_Granmar_Lernen_2H_5);
Info_AddChoice (Info_Mod_Granmar_Lernen, B_BuildLearnString(PRINT_Learn2h1 , B_GetLearnCostTalent(hero, NPC_TALENT_2H, 1)), Info_Mod_Granmar_Lernen_2H_1);
};
FUNC VOID Info_Mod_Granmar_Lernen_BACK()
{
Info_ClearChoices (Info_Mod_Granmar_Lernen);
};
FUNC VOID Info_Mod_Granmar_Lernen_2H_5()
{
if B_TeachFightTalentPercent_New (self, hero, NPC_TALENT_2H, 5, 100)
{
Info_ClearChoices (Info_Mod_Granmar_Lernen);
Info_AddChoice (Info_Mod_Granmar_Lernen, DIALOG_BACK, Info_Mod_Granmar_Lernen_BACK);
Info_AddChoice (Info_Mod_Granmar_Lernen, B_BuildLearnString(PRINT_Learn2h5 , B_GetLearnCostTalent_New(hero, NPC_TALENT_2H)), Info_Mod_Granmar_Lernen_2H_5);
Info_AddChoice (Info_Mod_Granmar_Lernen, B_BuildLearnString(PRINT_Learn2h1 , B_GetLearnCostTalent(hero, NPC_TALENT_2H, 1)), Info_Mod_Granmar_Lernen_2H_1);
};
};
FUNC VOID Info_Mod_Granmar_Lernen_2H_1()
{
if B_TeachFightTalentPercent (self, hero, NPC_TALENT_2H, 1, 100)
{
Info_ClearChoices (Info_Mod_Granmar_Lernen);
Info_AddChoice (Info_Mod_Granmar_Lernen, DIALOG_BACK, Info_Mod_Granmar_Lernen_BACK);
Info_AddChoice (Info_Mod_Granmar_Lernen, B_BuildLearnString(PRINT_Learn2h5 , B_GetLearnCostTalent_New(hero, NPC_TALENT_2H)), Info_Mod_Granmar_Lernen_2H_5);
Info_AddChoice (Info_Mod_Granmar_Lernen, B_BuildLearnString(PRINT_Learn2h1 , B_GetLearnCostTalent(hero, NPC_TALENT_2H, 1)), Info_Mod_Granmar_Lernen_2H_1);
};
};
INSTANCE Info_Mod_Granmar_Pickpocket (C_INFO)
{
npc = Mod_1017_KGD_Granmar_MT;
nr = 1;
condition = Info_Mod_Granmar_Pickpocket_Condition;
information = Info_Mod_Granmar_Pickpocket_Info;
permanent = 1;
important = 0;
description = Pickpocket_90;
};
FUNC INT Info_Mod_Granmar_Pickpocket_Condition()
{
C_Beklauen (77, ItMi_Gold, 200);
};
FUNC VOID Info_Mod_Granmar_Pickpocket_Info()
{
Info_ClearChoices (Info_Mod_Granmar_Pickpocket);
Info_AddChoice (Info_Mod_Granmar_Pickpocket, DIALOG_BACK, Info_Mod_Granmar_Pickpocket_BACK);
Info_AddChoice (Info_Mod_Granmar_Pickpocket, DIALOG_PICKPOCKET, Info_Mod_Granmar_Pickpocket_DoIt);
};
FUNC VOID Info_Mod_Granmar_Pickpocket_BACK()
{
Info_ClearChoices (Info_Mod_Granmar_Pickpocket);
};
FUNC VOID Info_Mod_Granmar_Pickpocket_DoIt()
{
if (B_Beklauen() == TRUE)
{
Info_ClearChoices (Info_Mod_Granmar_Pickpocket);
}
else
{
Info_ClearChoices (Info_Mod_Granmar_Pickpocket);
Info_AddChoice (Info_Mod_Granmar_Pickpocket, DIALOG_PP_BESCHIMPFEN, Info_Mod_Granmar_Pickpocket_Beschimpfen);
Info_AddChoice (Info_Mod_Granmar_Pickpocket, DIALOG_PP_BESTECHUNG, Info_Mod_Granmar_Pickpocket_Bestechung);
Info_AddChoice (Info_Mod_Granmar_Pickpocket, DIALOG_PP_HERAUSREDEN, Info_Mod_Granmar_Pickpocket_Herausreden);
};
};
FUNC VOID Info_Mod_Granmar_Pickpocket_Beschimpfen()
{
B_Say (hero, self, "$PICKPOCKET_BESCHIMPFEN");
B_Say (self, hero, "$DIRTYTHIEF");
Info_ClearChoices (Info_Mod_Granmar_Pickpocket);
AI_StopProcessInfos (self);
B_Attack (self, hero, AR_Theft, 1);
};
FUNC VOID Info_Mod_Granmar_Pickpocket_Bestechung()
{
B_Say (hero, self, "$PICKPOCKET_BESTECHUNG");
var int rnd; rnd = r_max(99);
if (rnd < 25)
|| ((rnd >= 25) && (rnd < 50) && (Npc_HasItems(hero, ItMi_Gold) < 50))
|| ((rnd >= 50) && (rnd < 75) && (Npc_HasItems(hero, ItMi_Gold) < 100))
|| ((rnd >= 75) && (rnd < 100) && (Npc_HasItems(hero, ItMi_Gold) < 200))
{
B_Say (self, hero, "$DIRTYTHIEF");
Info_ClearChoices (Info_Mod_Granmar_Pickpocket);
AI_StopProcessInfos (self);
B_Attack (self, hero, AR_Theft, 1);
}
else
{
if (rnd >= 75)
{
B_GiveInvItems (hero, self, ItMi_Gold, 200);
}
else if (rnd >= 50)
{
B_GiveInvItems (hero, self, ItMi_Gold, 100);
}
else if (rnd >= 25)
{
B_GiveInvItems (hero, self, ItMi_Gold, 50);
};
B_Say (self, hero, "$PICKPOCKET_BESTECHUNG_01");
Info_ClearChoices (Info_Mod_Granmar_Pickpocket);
AI_StopProcessInfos (self);
};
};
FUNC VOID Info_Mod_Granmar_Pickpocket_Herausreden()
{
B_Say (hero, self, "$PICKPOCKET_HERAUSREDEN");
if (r_max(99) < Mod_Verhandlungsgeschick)
{
B_Say (self, hero, "$PICKPOCKET_HERAUSREDEN_01");
Info_ClearChoices (Info_Mod_Granmar_Pickpocket);
}
else
{
B_Say (self, hero, "$PICKPOCKET_HERAUSREDEN_02");
};
};
INSTANCE Info_Mod_Granmar_EXIT (C_INFO)
{
npc = Mod_1017_KGD_Granmar_MT;
nr = 1;
condition = Info_Mod_Granmar_EXIT_Condition;
information = Info_Mod_Granmar_EXIT_Info;
permanent = 1;
important = 0;
description = DIALOG_ENDE;
};
FUNC INT Info_Mod_Granmar_EXIT_Condition()
{
return 1;
};
FUNC VOID Info_Mod_Granmar_EXIT_Info()
{
AI_StopProcessInfos (self);
};
|
D
|
module casing;
import std.traits : isSomeString;
version(unittest)
{
import std.algorithm : equal;
}
/** Convert string $(S s) to lower-case.
*
* String must contain ASCII characters only.
*/
auto toLowerASCII(S)(S s)
if (isSomeString!S)
{
import std.algorithm.iteration : map;
import std.ascii : toLower;
import std.traits : isNarrowString;
import std.utf : byUTF;
// TODO functionize
static if (isNarrowString!S) return s.byUTF!dchar.map!(ch => ch.toLower);
else return t.map!(ch => ch.toLower);
}
///
@safe pure /*TODO nothrow @nogc*/ unittest
{
assert("Lasse".toLowerASCII.equal("lasse"));
assert("Åberg".toLowerASCII.equal("Åberg")); // ignores unicode letters
}
/** Convert string $(S s) to lower-case.
*
* String may contain Unicode characters.
*/
auto toLowerUnicode(S)(S s)
if (isSomeString!S)
{
import std.algorithm.iteration : map;
import std.uni : toLower;
import std.traits : isNarrowString;
import std.utf : byUTF;
// TODO functionize
static if (isNarrowString!S) return s.byUTF!dchar.map!(ch => ch.toLower);
else return t.map!(ch => ch.toLower);
}
///
@safe pure /*TODO nothrow @nogc*/ unittest
{
assert("Lasse".toLowerUnicode.equal("lasse"));
assert("Åberg".toLowerUnicode.equal("åberg"));
}
/** Convert D-style camel-cased string $(S s) to lower-cased words.
*/
auto camelCasedToLower(S)(S s)
if (isSomeString!S)
{
import std.algorithm.iteration : map;
import std.ascii : isUpper; // D symbol names can only be in ASCII
// TODO Instead of this add std.ascii.as[Lower|Upper]Case and import std.ascii.asLowerCase
import std.uni : asLowerCase;
import slicing : preSlicer;
return s.preSlicer!isUpper.map!asLowerCase;
}
///
@safe pure unittest
{
auto x = "doThis".camelCasedToLower;
assert(x.front.equal("do"));
x.popFront();
assert(x.front.equal("this"));
}
/** Convert D-Style camel-cased string $(S s) to space-separated lower-cased words.
*/
auto camelCasedToLowerSpaced(S, Separator)(S s, const Separator separator = " ")
if (isSomeString!S)
{
import std.algorithm.iteration : joiner;
return camelCasedToLower(s).joiner(separator);
}
///
@safe pure unittest
{
assert(equal("doThis".camelCasedToLowerSpaced,
"do this"));
}
/** Convert enumeration value (enumerator) $(D t) to a range chars.
*/
auto toLowerSpacedChars(T, Separator)(const T t,
const Separator separator = " ")
if (is(T == enum))
{
import enum_ex : toStringFaster;
return t.toStringFaster
.camelCasedToLowerSpaced(separator);
}
///
@safe pure unittest
{
enum Things { isUri, isLink }
assert(Things.isUri.toLowerSpacedChars.equal("is uri"));
assert(Things.isLink.toLowerSpacedChars.equal("is link"));
}
///
@safe pure unittest
{
enum Things { isURI, isLink }
auto r = Things.isURI.toLowerSpacedChars;
alias R = typeof(r);
import std.range : ElementType;
alias E = ElementType!R;
static assert(is(E == dchar));
}
|
D
|
INSTANCE Info_Mod_Lehmar_Hi (C_INFO)
{
npc = Mod_537_NONE_Lehmar_NW;
nr = 1;
condition = Info_Mod_Lehmar_Hi_Condition;
information = Info_Mod_Lehmar_Hi_Info;
permanent = 0;
important = 0;
description = "Wer bist du?";
};
FUNC INT Info_Mod_Lehmar_Hi_Condition()
{
return 1;
};
FUNC VOID Info_Mod_Lehmar_Hi_Info()
{
B_Say (hero, self, "$WHOAREYOU");
AI_Output(self, hero, "Info_Mod_Lehmar_Hi_09_01"); //Ich bin Lehmar, der Geldverleiher.
};
INSTANCE Info_Mod_Lehmar_Kleinod (C_INFO)
{
npc = Mod_537_NONE_Lehmar_NW;
nr = 1;
condition = Info_Mod_Lehmar_Kleinod_Condition;
information = Info_Mod_Lehmar_Kleinod_Info;
permanent = 0;
important = 0;
description = "Ich hab hier ein Paket für dich.";
};
FUNC INT Info_Mod_Lehmar_Kleinod_Condition()
{
if (Npc_KnowsInfo(hero, Info_Mod_Skip_Francis))
&& (Npc_HasItems(hero, Mod_KleinodPaket) == 1)
{
return 1;
};
};
FUNC VOID Info_Mod_Lehmar_Kleinod_Info()
{
AI_Output(hero, self, "Info_Mod_Lehmar_Kleinod_15_00"); //Ich hab hier ein Paket für dich.
B_GiveInvItems (hero, self, Mod_KleinodPaket, 1);
AI_Output(self, hero, "Info_Mod_Lehmar_Kleinod_09_01"); //Wurde aber auch langsam Zeit.
AI_Output(self, hero, "Info_Mod_Lehmar_Kleinod_09_02"); //Hier ist dein Gold.
CreateInvItems (self, ItMi_Gold, 500);
B_GiveInvItems (self, hero, ItMi_Gold, 500);
};
INSTANCE Info_Mod_Lehmar_Statue (C_INFO)
{
npc = Mod_537_NONE_Lehmar_NW;
nr = 1;
condition = Info_Mod_Lehmar_Statue_Condition;
information = Info_Mod_Lehmar_Statue_Info;
permanent = 0;
important = 0;
description = "Thorben meinte du hättest seine Innos Statue.";
};
FUNC INT Info_Mod_Lehmar_Statue_Condition()
{
if (Npc_KnowsInfo(hero, Info_Mod_Thorben_Lehrling))
&& (Npc_KnowsInfo(hero, Info_Mod_Lehmar_Hi))
&& (Npc_HasItems(self, ItMi_LostInnosStatue_Daron) == 1)
{
return 1;
};
};
FUNC VOID Info_Mod_Lehmar_Statue_Info()
{
AI_Output(hero, self, "Info_Mod_Lehmar_Statue_15_00"); //Thorben meinte du hättest seine Innos Statue.
AI_Output(self, hero, "Info_Mod_Lehmar_Statue_09_01"); //Wenn du die Statue meinst, die in der Truhe war die ich von ihm bekommen habe, dann hab ich sie.
};
INSTANCE Info_Mod_Lehmar_Statue2 (C_INFO)
{
npc = Mod_537_NONE_Lehmar_NW;
nr = 1;
condition = Info_Mod_Lehmar_Statue2_Condition;
information = Info_Mod_Lehmar_Statue2_Info;
permanent = 0;
important = 0;
description = "Gibst du mir die Statue?";
};
FUNC INT Info_Mod_Lehmar_Statue2_Condition()
{
if (Npc_KnowsInfo(hero, Info_Mod_Lehmar_Statue))
&& (Npc_HasItems(self, ItMi_LostInnosStatue_Daron) == 1)
{
return 1;
};
};
FUNC VOID Info_Mod_Lehmar_Statue2_Info()
{
AI_Output(hero, self, "Info_Mod_Lehmar_Statue2_15_00"); //Gibst du mir die Statue?
AI_Output(self, hero, "Info_Mod_Lehmar_Statue2_09_01"); //Wenn du mir die 100 Goldmünzen bringst, die Thorben mir noch schuldet.
};
INSTANCE Info_Mod_Lehmar_Statue3 (C_INFO)
{
npc = Mod_537_NONE_Lehmar_NW;
nr = 1;
condition = Info_Mod_Lehmar_Statue3_Condition;
information = Info_Mod_Lehmar_Statue3_Info;
permanent = 0;
important = 0;
description = "Hier ist das Gold.";
};
FUNC INT Info_Mod_Lehmar_Statue3_Condition()
{
if (Npc_KnowsInfo(hero, Info_Mod_Lehmar_Statue2))
&& (Npc_HasItems(hero, ItMi_Gold) >= 100)
&& (Npc_HasItems(self, ItMi_LostInnosStatue_Daron) == 1)
{
return 1;
};
};
FUNC VOID Info_Mod_Lehmar_Statue3_Info()
{
AI_Output(hero, self, "Info_Mod_Lehmar_Statue3_15_00"); //Hier ist das Gold.
B_GiveInvItems (hero, self, ItMi_Gold, 100);
AI_Output(self, hero, "Info_Mod_Lehmar_Statue3_09_01"); //Hier ist die Statue.
B_GiveInvItems (self, hero, ItMi_LostInnosStatue_Daron, 1);
B_GivePlayerXP (50);
};
INSTANCE Info_Mod_Lehmar_Leihen (C_INFO)
{
npc = Mod_537_NONE_Lehmar_NW;
nr = 1;
condition = Info_Mod_Lehmar_Leihen_Condition;
information = Info_Mod_Lehmar_Leihen_Info;
permanent = 1;
important = 0;
description = "Kannst du mir Geld leihen?";
};
FUNC INT Info_Mod_Lehmar_Leihen_Condition()
{
if (Npc_KnowsInfo(hero, Info_Mod_Lehmar_Hi))
&& (Mod_Geliehen == FALSE)
{
return 1;
};
};
FUNC VOID Info_Mod_Lehmar_Leihen_Info()
{
AI_Output(hero, self, "Info_Mod_Lehmar_Leihen_15_00"); //Kannst du mir Geld leihen?
AI_Output(self, hero, "Info_Mod_Lehmar_Leihen_09_01"); //Wieviel willst du?
Info_ClearChoices (Info_Mod_Lehmar_Leihen);
Info_AddChoice (Info_Mod_Lehmar_Leihen, DIALOG_BACK, Info_Mod_Lehmar_Leihen_BACK);
Info_AddChoice (Info_Mod_Lehmar_Leihen, "1000 Gold", Info_Mod_Lehmar_Leihen_1000);
Info_AddChoice (Info_Mod_Lehmar_Leihen, "500 Gold", Info_Mod_Lehmar_Leihen_500);
Info_AddChoice (Info_Mod_Lehmar_Leihen, "200 Gold", Info_Mod_Lehmar_Leihen_200);
Info_AddChoice (Info_Mod_Lehmar_Leihen, "100 Gold", Info_Mod_Lehmar_Leihen_100);
};
FUNC VOID Info_Mod_Lehmar_Leihen_BACK()
{
Info_ClearChoices (Info_Mod_Lehmar_Leihen);
};
FUNC VOID Info_Mod_Lehmar_Leihen_1000()
{
if (Mod_HatGoldGeliehen < 3)
{
AI_Output(self, hero, "Info_Mod_Lehmar_Leihen_1000_09_00"); //TAUSEND GOLDMÜNZEN!!!
AI_Output(self, hero, "Info_Mod_Lehmar_Leihen_1000_09_01"); //Ich werde dir 200 Goldmünzen geben, mehr nicht. Und vergiss nicht es zurückzuzahlen.
B_GiveInvItems (self, hero, ItMi_Gold, 200);
Mod_LeihBetrag = 220;
}
else
{
AI_Output(self, hero, "Info_Mod_Lehmar_Leihen_1000_09_02"); //Das ist verdammt viel Gold. Aber du mir mein Gold bisher immer wieder zurückgebracht, deshalb werde ich dir das Gold geben.
AI_Output(self, hero, "Info_Mod_Lehmar_Leihen_1000_09_03"); //Hier hast du 1000 Goldmünzen. Und vergiss nicht es zurückzuzahlen.
B_GiveInvItems (self, hero, ItMi_Gold, 1000);
Mod_LeihBetrag = 1100;
};
Mod_Geliehen = TRUE;
Mod_HatGoldGeliehen += 1;
Info_ClearChoices (Info_Mod_Lehmar_Leihen);
};
FUNC VOID Info_Mod_Lehmar_Leihen_500()
{
AI_Output(self, hero, "Info_Mod_Lehmar_Leihen_500_09_00"); //500 Goldmünzen. Ich glaube kaum das du das jemals zurückzahlen kannst, aber ich gebe dir das Geld.
AI_Output(self, hero, "Info_Mod_Lehmar_Leihen_500_09_01"); //Und vergiss nicht es zurückzuzahlen.
B_GiveInvItems (self, hero, ItMi_Gold, 500);
Mod_LeihBetrag = 550;
Mod_Geliehen = TRUE;
Mod_HatGoldGeliehen += 1;
Info_ClearChoices (Info_Mod_Lehmar_Leihen);
};
FUNC VOID Info_Mod_Lehmar_Leihen_200()
{
AI_Output(self, hero, "Info_Mod_Lehmar_Leihen_200_09_00"); //200 Goldmünzen sind nicht viel. Und vergiss nicht es zurückzuzahlen.
B_GiveInvItems (self, hero, ItMi_Gold, 200);
Mod_LeihBetrag = 220;
Mod_Geliehen = TRUE;
Mod_HatGoldGeliehen += 1;
Info_ClearChoices (Info_Mod_Lehmar_Leihen);
};
FUNC VOID Info_Mod_Lehmar_Leihen_100()
{
AI_Output(self, hero, "Info_Mod_Lehmar_Leihen_100_09_00"); //100 Goldmünzen sind nicht grad viel. Vergiss nicht es zurückzuzahlen.
B_GiveInvItems (self, hero, ItMi_Gold, 100);
Mod_LeihBetrag = 110;
Mod_Geliehen = TRUE;
Mod_HatGoldGeliehen += 1;
Info_ClearChoices (Info_Mod_Lehmar_Leihen);
};
INSTANCE Info_Mod_Lehmar_Zurueckzahlen (C_INFO)
{
npc = Mod_537_NONE_Lehmar_NW;
nr = 1;
condition = Info_Mod_Lehmar_Zurueckzahlen_Condition;
information = Info_Mod_Lehmar_Zurueckzahlen_Info;
permanent = 1;
important = 0;
description = "Ich will dir dein Gold zurückzahlen.";
};
FUNC INT Info_Mod_Lehmar_Zurueckzahlen_Condition()
{
if (Mod_Geliehen == TRUE)
{
return 1;
};
};
FUNC VOID Info_Mod_Lehmar_Zurueckzahlen_Info()
{
AI_Output(hero, self, "Info_Mod_Lehmar_Zurueckzahlen_15_00"); //Ich will dir dein Gold zurückzahlen.
AI_Output(hero, self, "Info_Mod_Lehmar_Zurueckzahlen_15_01"); //Wieviel muss ich dir zahlen?.
if (Mod_Leihbetrag == 1100)
{
AI_Output(self, hero, "Info_Mod_Lehmar_Zurueckzahlen_09_02"); //1100 Goldmünzen.
}
else if (Mod_Leihbetrag == 550)
{
AI_Output(self, hero, "Info_Mod_Lehmar_Zurueckzahlen_09_03"); //550 Goldmünzen.
}
else if (Mod_Leihbetrag == 220)
{
AI_Output(self, hero, "Info_Mod_Lehmar_Zurueckzahlen_09_04"); //220 Goldmünzen.
}
else if (Mod_Leihbetrag == 110)
{
AI_Output(self, hero, "Info_Mod_Lehmar_Zurueckzahlen_09_05"); //110 Goldmünzen.
};
Info_ClearChoices (Info_Mod_Lehmar_Zurueckzahlen);
Info_AddChoice (Info_Mod_Lehmar_Zurueckzahlen, "Ich hab nicht genug Gold.", Info_Mod_Lehmar_Zurueckzahlen_Nein);
if (Npc_HasItems(hero, ItMi_Gold) >= Mod_Leihbetrag)
{
Info_AddChoice (Info_Mod_Lehmar_Zurueckzahlen, "Hier hast du dein Gold.", Info_Mod_Lehmar_Zurueckzahlen_Ja);
};
};
FUNC VOID Info_Mod_Lehmar_Zurueckzahlen_Nein()
{
AI_Output(hero, self, "Info_Mod_Lehmar_Zurueckzahlen_Nein_15_00"); //Ich hab nicht genug Gold.
AI_Output(self, hero, "Info_Mod_Lehmar_Zurueckzahlen_Nein_09_01"); //Dann besorg es und belästige mich nicht.
Info_ClearChoices (Info_Mod_Lehmar_Zurueckzahlen);
};
FUNC VOID Info_Mod_Lehmar_Zurueckzahlen_Ja()
{
AI_Output(hero, self, "Info_Mod_Lehmar_Zurueckzahlen_Ja_15_00"); //Hier hast du dein Gold.
B_GiveInvItems (hero, self, ItMi_Gold, Mod_Leihbetrag);
Npc_RemoveInvItems (self, ItMi_Gold, Mod_Leihbetrag);
AI_Output(self, hero, "Info_Mod_Lehmar_Zurueckzahlen_Ja_09_01"); //Gut, wenn du wieder Gold brauchst, dann komm zu mir.
Mod_Geliehen = FALSE;
Mod_Leihbetrag = 0;
Info_ClearChoices (Info_Mod_Lehmar_Zurueckzahlen);
};
INSTANCE Info_Mod_Lehmar_Pickpocket (C_INFO)
{
npc = Mod_537_NONE_Lehmar_NW;
nr = 1;
condition = Info_Mod_Lehmar_Pickpocket_Condition;
information = Info_Mod_Lehmar_Pickpocket_Info;
permanent = 1;
important = 0;
description = Pickpocket_210;
};
FUNC INT Info_Mod_Lehmar_Pickpocket_Condition()
{
C_Beklauen (200, ItMi_Gold, 166);
};
FUNC VOID Info_Mod_Lehmar_Pickpocket_Info()
{
Info_ClearChoices (Info_Mod_Lehmar_Pickpocket);
Info_AddChoice (Info_Mod_Lehmar_Pickpocket, DIALOG_BACK, Info_Mod_Lehmar_Pickpocket_BACK);
Info_AddChoice (Info_Mod_Lehmar_Pickpocket, DIALOG_PICKPOCKET, Info_Mod_Lehmar_Pickpocket_DoIt);
};
FUNC VOID Info_Mod_Lehmar_Pickpocket_BACK()
{
Info_ClearChoices (Info_Mod_Lehmar_Pickpocket);
};
FUNC VOID Info_Mod_Lehmar_Pickpocket_DoIt()
{
if (B_Beklauen() == TRUE)
{
Info_ClearChoices (Info_Mod_Lehmar_Pickpocket);
}
else
{
Info_ClearChoices (Info_Mod_Lehmar_Pickpocket);
Info_AddChoice (Info_Mod_Lehmar_Pickpocket, DIALOG_PP_BESCHIMPFEN, Info_Mod_Lehmar_Pickpocket_Beschimpfen);
Info_AddChoice (Info_Mod_Lehmar_Pickpocket, DIALOG_PP_BESTECHUNG, Info_Mod_Lehmar_Pickpocket_Bestechung);
Info_AddChoice (Info_Mod_Lehmar_Pickpocket, DIALOG_PP_HERAUSREDEN, Info_Mod_Lehmar_Pickpocket_Herausreden);
};
};
FUNC VOID Info_Mod_Lehmar_Pickpocket_Beschimpfen()
{
B_Say (hero, self, "$PICKPOCKET_BESCHIMPFEN");
B_Say (self, hero, "$DIRTYTHIEF");
Info_ClearChoices (Info_Mod_Lehmar_Pickpocket);
AI_StopProcessInfos (self);
B_Attack (self, hero, AR_Theft, 1);
};
FUNC VOID Info_Mod_Lehmar_Pickpocket_Bestechung()
{
B_Say (hero, self, "$PICKPOCKET_BESTECHUNG");
var int rnd; rnd = r_max(99);
if (rnd < 25)
|| ((rnd >= 25) && (rnd < 50) && (Npc_HasItems(hero, ItMi_Gold) < 50))
|| ((rnd >= 50) && (rnd < 75) && (Npc_HasItems(hero, ItMi_Gold) < 100))
|| ((rnd >= 75) && (rnd < 100) && (Npc_HasItems(hero, ItMi_Gold) < 200))
{
B_Say (self, hero, "$DIRTYTHIEF");
Info_ClearChoices (Info_Mod_Lehmar_Pickpocket);
AI_StopProcessInfos (self);
B_Attack (self, hero, AR_Theft, 1);
}
else
{
if (rnd >= 75)
{
B_GiveInvItems (hero, self, ItMi_Gold, 200);
}
else if (rnd >= 50)
{
B_GiveInvItems (hero, self, ItMi_Gold, 100);
}
else if (rnd >= 25)
{
B_GiveInvItems (hero, self, ItMi_Gold, 50);
};
B_Say (self, hero, "$PICKPOCKET_BESTECHUNG_01");
Info_ClearChoices (Info_Mod_Lehmar_Pickpocket);
AI_StopProcessInfos (self);
};
};
FUNC VOID Info_Mod_Lehmar_Pickpocket_Herausreden()
{
B_Say (hero, self, "$PICKPOCKET_HERAUSREDEN");
if (r_max(99) < Mod_Verhandlungsgeschick)
{
B_Say (self, hero, "$PICKPOCKET_HERAUSREDEN_01");
Info_ClearChoices (Info_Mod_Lehmar_Pickpocket);
}
else
{
B_Say (self, hero, "$PICKPOCKET_HERAUSREDEN_02");
};
};
INSTANCE Info_Mod_Lehmar_EXIT (C_INFO)
{
npc = Mod_537_NONE_Lehmar_NW;
nr = 1;
condition = Info_Mod_Lehmar_EXIT_Condition;
information = Info_Mod_Lehmar_EXIT_Info;
permanent = 1;
important = 0;
description = DIALOG_ENDE;
};
FUNC INT Info_Mod_Lehmar_EXIT_Condition()
{
return 1;
};
FUNC VOID Info_Mod_Lehmar_EXIT_Info()
{
AI_StopProcessInfos (self);
};
|
D
|
module android.java.android.view.InflateException_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import1 = android.java.java.io.PrintStream_d_interface;
import import4 = android.java.java.lang.Class_d_interface;
import import3 = android.java.java.lang.StackTraceElement_d_interface;
import import2 = android.java.java.io.PrintWriter_d_interface;
import import0 = android.java.java.lang.JavaThrowable_d_interface;
final class InflateException : IJavaObject {
static immutable string[] _d_canCastTo = [
];
@Import this(arsd.jni.Default);
@Import this(string, import0.JavaThrowable);
@Import this(string);
@Import this(import0.JavaThrowable);
@Import string getMessage();
@Import string getLocalizedMessage();
@Import import0.JavaThrowable getCause();
@Import import0.JavaThrowable initCause(import0.JavaThrowable);
@Import @JavaName("toString") string toString_();
override string toString() { return arsd.jni.javaObjectToString(this); }
@Import void printStackTrace();
@Import void printStackTrace(import1.PrintStream);
@Import void printStackTrace(import2.PrintWriter);
@Import import0.JavaThrowable fillInStackTrace();
@Import import3.StackTraceElement[] getStackTrace();
@Import void setStackTrace(import3.StackTraceElement[]);
@Import void addSuppressed(import0.JavaThrowable);
@Import import0.JavaThrowable[] getSuppressed();
@Import import4.Class getClass();
@Import int hashCode();
@Import bool equals(IJavaObject);
@Import void notify();
@Import void notifyAll();
@Import void wait(long);
@Import void wait(long, int);
@Import void wait();
mixin IJavaObjectImplementation!(false);
public static immutable string _javaParameterString = "Landroid/view/InflateException;";
}
|
D
|
module utils.DatabaseConnection;
import mysql;
import std.stdio;
import std.array;
import entities.BaseEntity;
import vibe.core.connectionpool;
import config.Config;
import std.stdio;
class EntityManager
{
LockedConnection!Connection connection;
this(LockedConnection!Connection connection)
{
this.connection = connection;
}
template save(T : BaseEntity)
{
T save(T entity)
{
string tableName = __traits(getAttributes, T)[0].name;
connection.exec(entity.getPersistString(), entity.getPersistValues());
if (entity.id == 0) {
Row[] results = connection.query("SELECT * FROM `" ~ tableName ~ "` WHERE id = LAST_INSERT_ID()").array;
return new T(results[0]);
}
Row[] results = connection.query("SELECT * FROM `" ~ tableName ~ "` WHERE id = ?", entity.id).array;
return new T(results[0]);
}
}
template findById(T : BaseEntity)
{
T findById(long id)
{
string tableName = __traits(getAttributes, T)[0].name;
Row[] results = connection.query("SELECT * FROM `" ~ tableName ~ "` WHERE id = ?", id).array;
if (results.length == 0)
{
return null;
}
return new T(results[0]);
}
}
}
class DatabaseConnection
{
private MySQLPool connectionPool;
this()
{
connectionPool = new MySQLPool(Config.DATABASE_URL, Config.DATABASE_USERNAME, Config.DATABASE_PASSWORD, Config.DATABASE_NAME, 3306);
connectionPool.lockConnection();
}
void runInTransaction(void delegate(EntityManager) fun)
{
LockedConnection!Connection connection = connectionPool.lockConnection();
connection.exec("START TRANSACTION;");
try
{
fun(new EntityManager(connection));
}
catch (Throwable e)
{
connection.exec("ROLLBACK;");
throw e;
}
connection.exec("COMMIT;");
}
template runInTransaction(T)
{
T runInTransaction(T delegate(EntityManager) fun)
{
LockedConnection!Connection connection = connectionPool.lockConnection();
connection.exec("START TRANSACTION;");
try
{
T val = fun(new EntityManager(connection));
connection.exec("COMMIT;");
return val;
}
catch (Throwable e)
{
connection.exec("ROLLBACK;");
throw e;
}
}
}
}
|
D
|
module xf.mem.OSHeap;
private {
import xf.mem.Common;
struct winapi {
import xf.platform.win32.winbase;
import xf.platform.win32.windef;
import xf.platform.win32.winnt;
}
static import tango.core.Exception;
//import tango.util.log.Trace;
}
struct OSHeap {
private template RefType(T) {
static if (is(T == class)) {
alias T RefType;
} else {
alias T* RefType;
}
}
template alloc(T) {
RefType!(T) alloc(Args ...)(Args args) {
size_t size = void;
static if (is(T == class)) {
size = T.classinfo.init.length;
} else {
size = T.sizeof;
}
auto buf = allocRaw(size)[0..size];
static if (is(T == class)) {
buf[] = T.classinfo.init[];
auto res = cast(T)cast(void*)buf.ptr;
res._ctor(args);
return res;
} else static if (is(T == struct)) {
T* res = cast(T*)buf.ptr;
*res = T(args);
return res;
} else {
T* res = cast(T*)buf.ptr;
static if (1 == args.length) {
*res = args[0];
} else {
static assert (0 == args.length);
*res = T.init;
}
return res;
}
}
}
T[] allocArray(T)(size_t len) {
auto res = allocArrayNoInit!(T)(len);
foreach (ref r; res) {
r = T.init;
}
return res;
}
T[] allocArrayNoInit(T)(size_t len) {
size_t size = len * T.sizeof;
return cast(T[])(allocRaw(size)[0..size]);
}
void* allocRaw(size_t size) {
if (!initialized) {
initialize();
}
return .winapi.HeapAlloc(_heapId, 0, size);
}
void* reallocRaw(void* ptr, size_t size) {
if (ptr !is null) {
assert (initialized);
return .winapi.HeapReAlloc(_heapId, 0, ptr, size);
} else {
return allocRaw(size);
}
}
void freeRaw(void* ptr) {
assert (_heapId !is null);
.winapi.HeapFree(_heapId, 0, ptr);
}
bool initialized() {
return _heapId !is null;
}
static size_t pageSize() {
return _pageSize;
}
private {
.winapi.HANDLE _heapId;
bool serialize = false;
void initialize() {
// 1 MB by default
_heapId = .winapi.HeapCreate(serialize ? 0 : .winapi.HEAP_NO_SERIALIZE, 1024 * 1024, 0);
assert (_heapId !is null);
}
static {
size_t _pageSize;
}
}
}
__thread OSHeap threadHeap;
OSHeap osHeap;
static this() {
osHeap.serialize = true;
.winapi.SYSTEM_INFO info;
.winapi.GetSystemInfo(&info);
OSHeap._pageSize = info.dwPageSize;
}
|
D
|
prototype Mst_Addon_Stoneguardian(C_Npc)
{
name[0] = "Каменный часовой";
guild = GIL_Stoneguardian;
aivar[AIV_MM_REAL_ID] = ID_Stoneguardian;
level = 18;
bodyStateInterruptableOverride = TRUE;
B_DS_SetMst_Attribute(cMst_Addon_Stoneguardian);
protection[PROT_BLUNT] = 60;
protection[PROT_EDGE] = 100;
protection[PROT_POINT] = 400;
protection[PROT_FIRE] = 100;
protection[PROT_FLY] = 100;
protection[PROT_MAGIC] = 100;
damagetype = DAM_EDGE;
fight_tactic = FAI_Stoneguardian;
senses = SENSE_HEAR | SENSE_SEE | SENSE_SMELL;
senses_range = PERC_DIST_MONSTER_ACTIVE_MAX;
aivar[AIV_MM_FollowTime] = FOLLOWTIME_MEDIUM;
aivar[AIV_MM_FollowInWater] = FALSE;
start_aistate = ZS_MM_AllScheduler;
aivar[AIV_MM_RestStart] = OnlyRoutine;
Npc_SetToFistMode(self);
};
func void B_SetVisuals_Stoneguardian()
{
Mdl_SetVisual(self,"StoneGuardian.mds");
Mdl_SetVisualBody(self,"StG_Body",DEFAULT,DEFAULT,"",DEFAULT,DEFAULT,-1);
};
instance Summoned_Guardian(Mst_Addon_Stoneguardian)
{
name[0] = NAME_Addon_Summoned_Guardian;
guild = GIL_SummonedGuardian;
aivar[AIV_MM_REAL_ID] = ID_SummonedGuardian;
level = 0;
attribute[ATR_STRENGTH] = 100;
attribute[ATR_DEXTERITY] = 150;
attribute[ATR_HITPOINTS_MAX] = 150;
attribute[ATR_HITPOINTS] = 150;
protection[PROT_BLUNT] = 75;
protection[PROT_EDGE] = 125;
protection[PROT_POINT] = 175;
protection[PROT_FIRE] = 125;
protection[PROT_FLY] = 125;
aivar[AIV_PARTYMEMBER] = TRUE;
B_SetAttitude(self,ATT_FRIENDLY);
start_aistate = ZS_MM_Rtn_Summoned;
B_SetVisuals_Stoneguardian();
};
instance Stoneguardian(Mst_Addon_Stoneguardian)
{
attribute[ATR_HITPOINTS_MAX] = 380;
attribute[ATR_HITPOINTS] = 380;
// start_aistate = ZS_MM_Rtn_Rest_Loop;
B_SetVisuals_Stoneguardian();
};
|
D
|
module g_action;
import std.file;
import std.path;
class Action {
private this() {}
private void delegate() d_run;
public void run() { d_run(); }
private void delegate() d_unrun;
public void unrun() { d_unrun(); }
private Action revert() {
void delegate() tmp = this.d_run;
this.d_run = this.d_unrun;
this.d_unrun = tmp;
return this;
}
public static Action rmDir(string dir) {
Action a = new Action();
a.d_run = () => rmdir(dir);
a.d_unrun = () => mkdir(dir);
return a;
}
public static Action mkDir(string dir) {
return Action.rmDir(dir).revert();
}
public static Action copy(string fileFrom, string fileTo) {
Action a = new Action();
a.d_run = () => std.file.copy(fileFrom, fileTo);
a.d_unrun = delegate() {
if(feq(fileFrom, fileTo)) {
remove(fileTo);
} else {
throw new Exception("fileFrom != fileTo");
}
};
return a;
}
public static Action drain(string fileTo, string fileFrom) {
return Action.copy(fileTo, fileFrom).revert();
}
private static bool feq(string file0, string file1) {
return file0.getSize == file1.getSize;
}
public static Action mv(string fileFrom, string fileTo) {
Action a = new Action();
a.d_run = () => std.file.rename(fileFrom, fileTo);
a.d_unrun = () => std.file.rename(fileTo, fileFrom);
return a;
}
// mkJunk(file0): creates file of random size with random data inside
public static Action mkJunk(string file) {
Action a = new Action();
a.d_run = delegate() {
//
};
a.d_unrun = delegate() {
//
};
return a;
}
}
|
D
|
/Users/KAB/Desktop/Development/ICE/Build/Intermediates/ICE.build/Debug-iphonesimulator/ICE.build/Objects-normal/x86_64/ICEAllergy.o : /Users/KAB/Desktop/Development/ICE/ICE/ICEFilesCollectionViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEFileCell.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEFoldersCollectionViewLayout.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEFamily.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEUserSettingsViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/AppDelegate.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEPhysician.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEFolder.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEFolderCustomCellBackground.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEDisease.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEUserProfileViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEFoldersCollectionViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEScan.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEScanViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEBloodType.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEAllergy.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEUser.swift /Users/KAB/Desktop/Development/ICE/ICEFilesCollectionViewLayout.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEScanEditViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEOneFileViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICESyncViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEMedicalTreatment.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEScanViewControllerDelegate.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEHomeViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEFolderCell.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEFileCustomCellBackground.swift /Users/KAB/Desktop/Development/ICE/ICE/CoreDataStack.swift /Users/KAB/Desktop/Development/ICE/ICE/ICETabBarController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEMedicine.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Security.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/CoreImage.swiftmodule
/Users/KAB/Desktop/Development/ICE/Build/Intermediates/ICE.build/Debug-iphonesimulator/ICE.build/Objects-normal/x86_64/ICEAllergy~partial.swiftmodule : /Users/KAB/Desktop/Development/ICE/ICE/ICEFilesCollectionViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEFileCell.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEFoldersCollectionViewLayout.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEFamily.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEUserSettingsViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/AppDelegate.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEPhysician.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEFolder.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEFolderCustomCellBackground.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEDisease.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEUserProfileViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEFoldersCollectionViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEScan.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEScanViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEBloodType.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEAllergy.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEUser.swift /Users/KAB/Desktop/Development/ICE/ICEFilesCollectionViewLayout.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEScanEditViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEOneFileViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICESyncViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEMedicalTreatment.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEScanViewControllerDelegate.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEHomeViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEFolderCell.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEFileCustomCellBackground.swift /Users/KAB/Desktop/Development/ICE/ICE/CoreDataStack.swift /Users/KAB/Desktop/Development/ICE/ICE/ICETabBarController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEMedicine.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Security.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/CoreImage.swiftmodule
/Users/KAB/Desktop/Development/ICE/Build/Intermediates/ICE.build/Debug-iphonesimulator/ICE.build/Objects-normal/x86_64/ICEAllergy~partial.swiftdoc : /Users/KAB/Desktop/Development/ICE/ICE/ICEFilesCollectionViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEFileCell.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEFoldersCollectionViewLayout.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEFamily.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEUserSettingsViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/AppDelegate.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEPhysician.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEFolder.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEFolderCustomCellBackground.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEDisease.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEUserProfileViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEFoldersCollectionViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEScan.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEScanViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEBloodType.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEAllergy.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEUser.swift /Users/KAB/Desktop/Development/ICE/ICEFilesCollectionViewLayout.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEScanEditViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEOneFileViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICESyncViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEMedicalTreatment.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEScanViewControllerDelegate.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEHomeViewController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEFolderCell.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEFileCustomCellBackground.swift /Users/KAB/Desktop/Development/ICE/ICE/CoreDataStack.swift /Users/KAB/Desktop/Development/ICE/ICE/ICETabBarController.swift /Users/KAB/Desktop/Development/ICE/ICE/ICEMedicine.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Security.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/CoreImage.swiftmodule
|
D
|
/Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/SubscribeOn.o : /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Deprecated.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Cancelable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ObservableType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ObserverType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Reactive.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/RecursiveLock.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DeprecationWarner.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Errors.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/AtomicInt.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Event.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/First.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Extensions/String+Rx.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Rx.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/Platform.Linux.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/Target\ Support\ Files/RxAtomic/RxAtomic-umbrella.h /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxAtomic/RxAtomic/include/RxAtomic.h /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/build/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/build/Pods.build/Debug-iphonesimulator/RxAtomic.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/SubscribeOn~partial.swiftmodule : /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Deprecated.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Cancelable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ObservableType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ObserverType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Reactive.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/RecursiveLock.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DeprecationWarner.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Errors.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/AtomicInt.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Event.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/First.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Extensions/String+Rx.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Rx.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/Platform.Linux.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/Target\ Support\ Files/RxAtomic/RxAtomic-umbrella.h /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxAtomic/RxAtomic/include/RxAtomic.h /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/build/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/build/Pods.build/Debug-iphonesimulator/RxAtomic.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/SubscribeOn~partial.swiftdoc : /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Deprecated.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Cancelable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ObservableType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ObserverType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Reactive.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/RecursiveLock.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DeprecationWarner.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Errors.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/AtomicInt.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Event.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/First.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Extensions/String+Rx.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Rx.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/Platform.Linux.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/Target\ Support\ Files/RxAtomic/RxAtomic-umbrella.h /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxAtomic/RxAtomic/include/RxAtomic.h /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/build/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/build/Pods.build/Debug-iphonesimulator/RxAtomic.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
|
D
|
(Judeo-Christian and Islamic religions) chief spirit of evil and adversary of God
a planet (usually Venus) seen just before sunrise in the eastern sky
lighter consisting of a thin piece of wood or cardboard tipped with combustible chemical
|
D
|
/Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/StartWith.o : /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Deprecated.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Cancelable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/ObservableType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/ObserverType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Reactive.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/RecursiveLock.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/DeprecationWarner.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Errors.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Event.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/First.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Extensions/String+Rx.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Rx.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/Platform.Linux.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/build/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap
/Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/StartWith~partial.swiftmodule : /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Deprecated.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Cancelable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/ObservableType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/ObserverType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Reactive.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/RecursiveLock.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/DeprecationWarner.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Errors.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Event.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/First.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Extensions/String+Rx.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Rx.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/Platform.Linux.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/build/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap
/Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/StartWith~partial.swiftdoc : /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Deprecated.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Cancelable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/ObservableType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/ObserverType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Reactive.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/RecursiveLock.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/DeprecationWarner.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Errors.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Event.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/First.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Extensions/String+Rx.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Rx.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/Platform/Platform.Linux.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Users/Polina/XcodeApp/CoreML_test_10.03/CoreML_test/build/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap
|
D
|
INSTANCE Info_Mod_Hexenqueen_Hi (C_INFO)
{
npc = Mod_1859_HEX_Hexenqueen_PAT;
nr = 1;
condition = Info_Mod_Hexenqueen_Hi_Condition;
information = Info_Mod_Hexenqueen_Hi_Info;
permanent = 0;
important = 1;
};
FUNC INT Info_Mod_Hexenqueen_Hi_Condition()
{
if (Npc_KnowsInfo(hero, Info_Mod_Aaron_Fake_DoorIn))
{
return 1;
};
};
FUNC VOID Info_Mod_Hexenqueen_Hi_Info()
{
AI_Output(self, hero, "Info_Mod_Hexenqueen_Hi_17_00"); //(lacht) Du lieferst mir meinen Gemahl doch tatsächlich noch frei Haus.
AI_Output(hero, self, "Info_Mod_Hexenqueen_Hi_15_01"); //Ich liefere dir nur den Tod frei Haus!
AI_Output(self, hero, "Info_Mod_Hexenqueen_Hi_17_02"); //Schweig, du Narr! Glaubst du wirklich, du kannst dich zwischen mich und meine Mutter stellen?
AI_Output(hero, self, "Info_Mod_Hexenqueen_Hi_15_03"); //Deine Mutter?
AI_Output(self, hero, "Info_Mod_Hexenqueen_Hi_17_04"); //(lacht) Oder sollte ich lieber UNSERE Mutter sagen?
AI_Output(hero, self, "Info_Mod_Hexenqueen_Hi_15_05"); //Was? Wie meinst du das?
AI_Output(self, hero, "Info_Mod_Hexenqueen_Hi_17_06"); //Ganz einfach. Ich bin die Tochter von Ragon und Garan ist der Sohn der früheren Hexenkönigin.
AI_Output(hero, self, "Info_Mod_Hexenqueen_Hi_15_07"); //Dann ist Garan ... dein Bruder?
AI_Output(self, hero, "Info_Mod_Hexenqueen_Hi_17_08"); //Du begreifst ja ganz schnell.
AI_Output(hero, self, "Info_Mod_Hexenqueen_Hi_15_09"); //Und Tojan ist ... IGITT!
AI_Output(self, hero, "Info_Mod_Hexenqueen_Hi_17_10"); //(lacht) Ja. Der Sohn von Bruder und Schwester. In ihm vereinte sich das Blut wieder.
AI_Output(self, hero, "Info_Mod_Hexenqueen_Hi_17_11"); //Schade, dass sein Vater ihn getötet hat. Doch Mutter wird ihn dafür bestrafen.
AI_Output(hero, self, "Info_Mod_Hexenqueen_Hi_15_12"); //Du meinst die vorherige Hexenkönigin?
AI_Output(self, hero, "Info_Mod_Hexenqueen_Hi_17_13"); //Ja. Ragon tötete sie, als sie in einem kurzen Moment der Unachtsamkeit ihren Zauber nicht eng genug um ihn gesponnen hatte und er ihre wahre Natur erkannte.
AI_Output(self, hero, "Info_Mod_Hexenqueen_Hi_17_14"); //Dafür bezahlte er aber auch mit seinem Leben.
AI_Output(hero, self, "Info_Mod_Hexenqueen_Hi_15_15"); //Dann hast du also Garans Erinnerungen gelöscht und ihn sich selbst Überlassen.
AI_Output(self, hero, "Info_Mod_Hexenqueen_Hi_17_16"); //Ja, ich ließ ihn mit nichts weiter zurück als dem Namen Aaron. Ein Anagramm für den Namen meiner Mutter ... Orana!
AI_Output(self, hero, "Info_Mod_Hexenqueen_Hi_17_17"); //Doch das ist jetzt nich weiter wichtig! Ich werde meine Mutter zurück ins Leben holen! Und der kleine Garan wird mir dabei helfen.
AI_Output(hero, self, "Info_Mod_Hexenqueen_Hi_15_18"); //Aber warum brauchst du dazu Garan?
AI_Output(self, hero, "Info_Mod_Hexenqueen_Hi_17_19"); //Es ist sein Blut, dass ich brauche! Mit ihm kann ich der Hexenkönigin wieder das Leben schenken!
AI_Output(hero, self, "Info_Mod_Hexenqueen_Hi_15_20"); //Genug, jetzt wirst du sterben!
AI_StopProcessInfos (self);
Mod_FM_AtHexe = 1;
};
INSTANCE Info_Mod_Hexenqueen_Blut (C_INFO)
{
npc = Mod_1859_HEX_Hexenqueen_PAT;
nr = 1;
condition = Info_Mod_Hexenqueen_Blut_Condition;
information = Info_Mod_Hexenqueen_Blut_Info;
permanent = 0;
important = 1;
};
FUNC INT Info_Mod_Hexenqueen_Blut_Condition()
{
if (Mod_FM_AtHexe == 3)
{
return 1;
};
};
FUNC VOID Info_Mod_Hexenqueen_Blut_Info()
{
AI_Output(self, hero, "Info_Mod_Hexenqueen_Blut_17_00"); //(lacht) Ihr schwachen Sterblichen! Erschaudert vor der Macht meiner Mutter!
AI_Output(self, hero, "Info_Mod_Hexenqueen_Blut_17_01"); //Sie ist ... was ist das ... NEIN! Warum bist du nicht aus Fleisch und Blut?
AI_StopProcessInfos (self);
B_StartOtherRoutine (Mod_1771_KDF_Aaron_PAT, "KILL");
AI_Teleport (Mod_1771_KDF_Aaron_PAT, "WP_PAT_TURM_17");
};
INSTANCE Info_Mod_Hexenqueen_Falsch (C_INFO)
{
npc = Mod_1859_HEX_Hexenqueen_PAT;
nr = 1;
condition = Info_Mod_Hexenqueen_Falsch_Condition;
information = Info_Mod_Hexenqueen_Falsch_Info;
permanent = 0;
important = 1;
};
FUNC INT Info_Mod_Hexenqueen_Falsch_Condition()
{
if (Npc_KnowsInfo(hero, Info_Mod_Aaron_Blut))
{
return 1;
};
};
FUNC VOID Info_Mod_Hexenqueen_Falsch_Info()
{
AI_Output(self, hero, "Info_Mod_Hexenqueen_Falsch_17_00"); //AHHHH! ES WAR EIN DOPPELGÄNGER! ICH WERDE EUCH VERNICHTEN!
AI_StopProcessInfos (self);
};
|
D
|
being the sex (of plant or animal) that produces gametes (spermatozoa) that perform the fertilizing function in generation
characteristic of a man
for or pertaining to or composed of men or boys
|
D
|
/**
Copyright: Copyright (c) 2016-2017 Andrey Penechko.
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
Authors: Andrey Penechko.
*/
module voxelman.world.blockentity.blockentityaccess;
import voxelman.log;
import std.string;
import voxelman.math;
import voxelman.geometry.box;
import voxelman.core.config;
import voxelman.world.block;
import voxelman.world.storage;
import voxelman.blockentity.plugin;
import voxelman.world.blockentity;
ushort boxEntityIndex(Box blockBox) {
return BlockChunkIndex(blockBox.position).index;
}
ulong payloadFromIdAndEntityData(ushort id, ulong entityData) {
ulong payload = cast(ulong)id << 46 | entityData & ENTITY_DATA_MASK;
return payload;
}
// get chunk local piece of world space box
Box chunkLocalBlockBox(ChunkWorldPos cwp, Box blockBox) {
Box chunkBlockBox = chunkToBlockBox(cwp);
auto intersection = boxIntersection(chunkBlockBox, blockBox);
assert(!intersection.empty);
auto chunkLocalBox = intersection;
chunkLocalBox.position -= chunkBlockBox.position;
return chunkLocalBox;
}
// Will not place entity if blockBox lies in non-loaded chunk.
void placeEntity(WorldBox blockBox, ulong payload,
WorldAccess worldAccess, BlockEntityAccess entityAccess)
{
ushort dimension = blockBox.dimension;
Box affectedChunks = blockBoxToChunkBox(blockBox);
foreach(chunkPos; affectedChunks.positions) {
auto cwp = ChunkWorldPos(chunkPos, dimension);
if (!worldAccess.isChunkLoaded(cwp)) return;
}
auto mainCwp = ChunkWorldPos(BlockWorldPos(blockBox.position, blockBox.dimension));
Box mainChunkBox = chunkLocalBlockBox(mainCwp, blockBox);
ushort mainBlockIndex = boxEntityIndex(mainChunkBox);
auto mainData = BlockEntityData(
BlockEntityType.localBlockEntity, payload);
foreach(chunkPos; affectedChunks.positions) {
auto cwp = ChunkWorldPos(chunkPos, dimension);
Box chunkLocalBox = chunkLocalBlockBox(cwp, blockBox);
ushort blockIndex = boxEntityIndex(chunkLocalBox);
BlockId blockId = blockIdFromBlockEntityIndex(blockIndex);
if (cwp == mainCwp)
{
entityAccess.setBlockEntity(cwp, mainBlockIndex, mainData);
}
else
{
ivec3 moff = cwp.xyz - mainCwp.xyz;
ubyte[3] mainOffset = [cast(ubyte)moff.x,
cast(ubyte)moff.y, cast(ubyte)moff.z];
auto data = BlockEntityData(BlockEntityType.foreignBlockEntity,
mainData.id, mainOffset, mainBlockIndex);
entityAccess.setBlockEntity(cwp, blockIndex, data);
}
worldAccess.fillChunkBox(cwp, chunkLocalBox, blockId);
}
}
void placeChunkEntity(WorldBox blockBox, ulong payload,
WorldAccess worldAccess, BlockEntityAccess entityAccess)
{
auto corner = BlockWorldPos(blockBox.position, blockBox.dimension);
auto cwp = ChunkWorldPos(corner);
// limit entity to a single chunk
Box chunkLocalBox = chunkLocalBlockBox(cwp, blockBox);
ushort blockIndex = boxEntityIndex(chunkLocalBox);
BlockId blockId = blockIdFromBlockEntityIndex(blockIndex);
worldAccess.fillChunkBox(cwp, chunkLocalBox, blockId);
auto beData = BlockEntityData(BlockEntityType.localBlockEntity, payload);
bool placed = entityAccess.setBlockEntity(cwp, blockIndex, beData);
}
WorldBox getBlockEntityBox(ChunkWorldPos cwp, ushort blockIndex,
BlockEntityInfoTable blockEntityInfos, BlockEntityAccess entityAccess)
{
BlockEntityData entity = entityAccess.getBlockEntity(cwp, blockIndex);
with(BlockEntityType) final switch(entity.type)
{
case localBlockEntity:
BlockEntityInfo eInfo = blockEntityInfos[entity.id];
auto entityBwp = BlockWorldPos(cwp, blockIndex);
WorldBox eVol = eInfo.boxHandler(entityBwp, entity);
return eVol;
case foreignBlockEntity:
auto mainPtr = entity.mainChunkPointer;
auto mainCwp = ChunkWorldPos(ivec3(cwp.xyz) - mainPtr.mainChunkOffset, cwp.w);
BlockEntityData mainEntity = entityAccess.getBlockEntity(mainCwp, mainPtr.blockIndex);
auto mainBwp = BlockWorldPos(mainCwp, mainPtr.blockIndex);
BlockEntityInfo eInfo = blockEntityInfos[mainPtr.entityId];
WorldBox eVol = eInfo.boxHandler(mainBwp, mainEntity);
return eVol;
}
}
/// Returns changed box
WorldBox removeEntity(BlockWorldPos bwp, BlockEntityInfoTable beInfos,
WorldAccess worldAccess, BlockEntityAccess entityAccess,
BlockId fillerBlock)
{
BlockId blockId = worldAccess.getBlock(bwp);
if (!isBlockEntity(blockId))
return WorldBox();
auto mainCwp = ChunkWorldPos(bwp);
ushort mainBlockIndex = blockEntityIndexFromBlockId(blockId);
WorldBox blockBox = getBlockEntityBox(mainCwp, mainBlockIndex, beInfos, entityAccess);
Box affectedChunks = blockBoxToChunkBox(blockBox);
ushort dimension = blockBox.dimension;
foreach(chunkPos; affectedChunks.positions) {
auto cwp = ChunkWorldPos(chunkPos, dimension);
Box chunkLocalBox = chunkLocalBlockBox(cwp, blockBox);
ushort blockIndex = boxEntityIndex(chunkLocalBox);
entityAccess.removeEntity(cwp, blockIndex);
worldAccess.fillChunkBox(cwp, chunkLocalBox, fillerBlock);
}
return blockBox;
}
final class BlockEntityAccess
{
private ChunkManager chunkManager;
this(ChunkManager chunkManager) {
this.chunkManager = chunkManager;
}
bool setBlockEntity(ChunkWorldPos cwp, ushort blockIndex, BlockEntityData beData)
{
assert((blockIndex & BLOCK_ENTITY_FLAG) == 0);
if (!chunkManager.isChunkLoaded(cwp)) return false;
WriteBuffer* writeBuffer = chunkManager.getOrCreateWriteBuffer(cwp,
ENTITY_LAYER, WriteBufferPolicy.copySnapshotArray);
assert(writeBuffer);
BlockEntityMap map = getHashMapFromLayer(writeBuffer.layer);
map[blockIndex] = beData.storage;
setLayerMap(writeBuffer.layer, map);
writeBuffer.removeSnapshot = false;
return true;
}
BlockEntityData getBlockEntity(ChunkWorldPos cwp, ushort blockIndex)
{
assert((blockIndex & BLOCK_ENTITY_FLAG) == 0);
auto entities = chunkManager.getChunkSnapshot(cwp, ENTITY_LAYER, Yes.Uncompress);
if (entities.isNull) return BlockEntityData.init;
if (entities.type == StorageType.uniform) return BlockEntityData.init;
BlockEntityMap map = getHashMapFromLayer(entities);
ulong* entity = blockIndex in map;
if (entity is null) return BlockEntityData.init;
return BlockEntityData(*entity);
}
bool removeEntity(ChunkWorldPos cwp, ushort blockIndex)
{
assert((blockIndex & BLOCK_ENTITY_FLAG) == 0);
if (!chunkManager.isChunkLoaded(cwp)) return false;
WriteBuffer* writeBuffer = chunkManager.getOrCreateWriteBuffer(cwp,
ENTITY_LAYER, WriteBufferPolicy.copySnapshotArray);
assert(writeBuffer);
BlockEntityMap map = getHashMapFromLayer(writeBuffer.layer);
map.remove(blockIndex);
if (map.length == 0)
writeBuffer.removeSnapshot = true;
setLayerMap(writeBuffer.layer, map);
return true;
}
}
void setLayerMap(Layer)(ref Layer layer, BlockEntityMap map) {
ubyte[] arr = map.getTable();
layer.dataPtr = arr.ptr;
layer.dataLength = cast(LayerDataLenType)arr.length;
layer.metadata = cast(ushort)map.length;
}
BlockEntityMap getHashMapFromLayer(Layer)(const ref Layer layer) {
if (layer.type == StorageType.uniform)
return BlockEntityMap();
return BlockEntityMap(layer.getArray!ubyte, layer.metadata);
}
|
D
|
module godot.omnilight;
import std.meta : AliasSeq, staticIndexOf;
import std.traits : Unqual;
import godot.d.meta;
import godot.core;
import godot.c;
import godot.d.bind;
import godot.object;
import godot.classdb;
import godot.light;
@GodotBaseClass struct OmniLight
{
static immutable string _GODOT_internal_name = "OmniLight";
public:
union { godot_object _godot_object; Light base; }
alias base this;
alias BaseClasses = AliasSeq!(typeof(base), typeof(base).BaseClasses);
bool opEquals(in OmniLight other) const { return _godot_object.ptr is other._godot_object.ptr; }
OmniLight opAssign(T : typeof(null))(T n) { _godot_object.ptr = null; }
bool opEquals(typeof(null) n) const { return _godot_object.ptr is null; }
mixin baseCasts;
static OmniLight _new()
{
static godot_class_constructor constructor;
if(constructor is null) constructor = godot_get_class_constructor("OmniLight");
if(constructor is null) return typeof(this).init;
return cast(OmniLight)(constructor());
}
enum ShadowMode : int
{
SHADOW_DUAL_PARABOLOID = 0,
SHADOW_CUBE = 1,
}
enum ShadowDetail : int
{
SHADOW_DETAIL_HORIZONTAL = 1,
SHADOW_DETAIL_VERTICAL = 0,
}
enum int SHADOW_DETAIL_HORIZONTAL = 1;
enum int SHADOW_DUAL_PARABOLOID = 0;
enum int SHADOW_CUBE = 1;
enum int SHADOW_DETAIL_VERTICAL = 0;
package(godot) static GodotMethod!(void, int) _GODOT_set_shadow_mode;
package(godot) alias _GODOT_methodBindInfo(string name : "set_shadow_mode") = _GODOT_set_shadow_mode;
void set_shadow_mode(in int mode)
{
_GODOT_set_shadow_mode.bind("OmniLight", "set_shadow_mode");
ptrcall!(void)(_GODOT_set_shadow_mode, _godot_object, mode);
}
package(godot) static GodotMethod!(OmniLight.ShadowMode) _GODOT_get_shadow_mode;
package(godot) alias _GODOT_methodBindInfo(string name : "get_shadow_mode") = _GODOT_get_shadow_mode;
OmniLight.ShadowMode get_shadow_mode() const
{
_GODOT_get_shadow_mode.bind("OmniLight", "get_shadow_mode");
return ptrcall!(OmniLight.ShadowMode)(_GODOT_get_shadow_mode, _godot_object);
}
package(godot) static GodotMethod!(void, int) _GODOT_set_shadow_detail;
package(godot) alias _GODOT_methodBindInfo(string name : "set_shadow_detail") = _GODOT_set_shadow_detail;
void set_shadow_detail(in int detail)
{
_GODOT_set_shadow_detail.bind("OmniLight", "set_shadow_detail");
ptrcall!(void)(_GODOT_set_shadow_detail, _godot_object, detail);
}
package(godot) static GodotMethod!(OmniLight.ShadowDetail) _GODOT_get_shadow_detail;
package(godot) alias _GODOT_methodBindInfo(string name : "get_shadow_detail") = _GODOT_get_shadow_detail;
OmniLight.ShadowDetail get_shadow_detail() const
{
_GODOT_get_shadow_detail.bind("OmniLight", "get_shadow_detail");
return ptrcall!(OmniLight.ShadowDetail)(_GODOT_get_shadow_detail, _godot_object);
}
}
|
D
|
///////////////////////////////////////////////////////////////////////
// Info EXIT
///////////////////////////////////////////////////////////////////////
INSTANCE MIL_100_Halvor_EXIT (C_INFO)
{
npc = MIL_100_Halvor;
nr = 999;
condition = MIL_100_Halvor_EXIT_Condition;
information = MIL_100_Halvor_EXIT_Info;
permanent = TRUE;
description = DIALOG_ENDE;
};
FUNC INT MIL_100_Halvor_EXIT_Condition()
{
return TRUE;
};
FUNC VOID MIL_100_Halvor_EXIT_Info()
{
AI_StopProcessInfos (self);
};
///////////////////////////////////////////////////////////////////////
// Info COOK
///////////////////////////////////////////////////////////////////////
instance MIL_100_Halvor_COOK (C_INFO)
{
npc = MIL_100_Halvor;
condition = MIL_100_Halvor_COOK_Condition;
information = MIL_100_Halvor_COOK_Info;
important = FALSE;
permanent = FALSE;
description = "Du musst der Koch sein!";
};
func int MIL_100_Halvor_COOK_Condition ()
{
return TRUE;
};
func void MIL_100_Halvor_COOK_Info ()
{
AI_Output (hero, self, "MIL_100_COOK_15_01"); //Du musst der Koch sein!
AI_Output (self, hero, "MIL_100_COOK_00_02"); //Bist ja ein ganz Schlauer! Hab dich hier noch nie gesehen!
};
///////////////////////////////////////////////////////////////////////
// Info WANTBUY
///////////////////////////////////////////////////////////////////////
instance MIL_100_Halvor_WANTBUY (C_INFO)
{
npc = MIL_100_Halvor;
condition = MIL_100_Halvor_WANTBUY_Condition;
information = MIL_100_Halvor_WANTBUY_Info;
important = FALSE;
permanent = FALSE;
description = "Hast du Essen für mich?";
};
func int MIL_100_Halvor_WANTBUY_Condition ()
{
if Npc_KnowsInfo(hero,MIL_100_Halvor_COOK)
{
return TRUE;
};
};
func void MIL_100_Halvor_WANTBUY_Info ()
{
AI_Output (hero, self, "MIL_100_WANTBUY_15_01"); //Hast du Essen für mich?
AI_Output (self, hero, "MIL_100_WANTBUY_00_02"); //Geschnorrt wird hier nicht. Wer was zu Essen haben will bezahlt dafür!
Log_CreateTopic (GE_TraderOC, LOG_NOTE);
B_LogEntry (GE_TraderOC,"Halvor betreibt die Burgküche. Er scheint sich auf FLEISCHEINTOPF 'spezialisiert' zu haben.");
};
///////////////////////////////////////////////////////////////////////
// Info TRADE
///////////////////////////////////////////////////////////////////////
instance MIL_100_Halvor_TRADE (C_INFO)
{
npc = MIL_100_Halvor;
nr = 20;
condition = MIL_100_Halvor_TRADE_Condition;
information = MIL_100_Halvor_TRADE_Info;
important = FALSE;
permanent = TRUE;
description = "Zeig mir deine Speisekarte!";
};
func int MIL_100_Halvor_TRADE_Condition ()
{
if Npc_KnowsInfo(hero,MIL_100_Halvor_WANTBUY)
{
return TRUE;
};
};
func void MIL_100_Halvor_TRADE_Info ()
{
AI_Output (hero, self, "MIL_100_TRADE_15_01"); //Zeig mir deine Speisekarte!
AI_Output (self, hero, "MIL_100_TRADE_00_02"); //Was willst du haben?
Info_ClearChoices (MIL_100_Halvor_TRADE);
Info_AddChoice (MIL_100_Halvor_TRADE, DIALOG_BACK, MIL_100_Halvor_TRADE_BACK);
Info_AddChoice (MIL_100_Halvor_TRADE, B_BuildBuyMealString(10, NAME_MeatStew, Value_MeatStew), MIL_100_Halvor_TRADE_MANYSTEW);
Info_AddChoice (MIL_100_Halvor_TRADE, B_BuildBuyMealString(5, NAME_MeatStew, Value_MeatStew), MIL_100_Halvor_TRADE_FEWSTEW);
Info_AddChoice (MIL_100_Halvor_TRADE, B_BuildBuyMealString(1, NAME_MeatStew, Value_MeatStew), MIL_100_Halvor_TRADE_1STEW);
};
func void MIL_100_Halvor_TRADE_MEAL (var int amount, var int itemInstance, var int price)
{
if (Npc_HasItems(hero, ItMi_Silver) >= (amount*price))
{
B_GiveInvItems (hero, self, ItMi_Silver, amount*price);
B_GiveInvItems (self, hero, itemInstance, amount);
AI_Output (self, hero, "MIL_100_TRADE_MEAL_00_01"); //Silber gegen Ware, so gefällt mir das!
Halvor_BoughtMeatStew = TRUE;
}
else
{
B_Say (self, hero, "$NotEnoughSilver");
};
};
func void MIL_100_Halvor_TRADE_1STEW ()
{
Info_ClearChoices (MIL_100_Halvor_TRADE);
MIL_100_Halvor_TRADE_MEAL (1,ItFo_MeatStew, Value_MeatStew);
};
func void MIL_100_Halvor_TRADE_FEWSTEW ()
{
Info_ClearChoices (MIL_100_Halvor_TRADE);
MIL_100_Halvor_TRADE_MEAL (5,ItFo_MeatStew, Value_MeatStew);
};
func void MIL_100_Halvor_TRADE_MANYSTEW ()
{
Info_ClearChoices (MIL_100_Halvor_TRADE);
MIL_100_Halvor_TRADE_MEAL (10,ItFo_MeatStew, Value_MeatStew);
};
func void MIL_100_Halvor_TRADE_BACK ()
{
Info_ClearChoices (MIL_100_Halvor_TRADE);
};
///////////////////////////////////////////////////////////////////////
// Info STEWGOOD
///////////////////////////////////////////////////////////////////////
instance MIL_100_Halvor_STEWGOOD (C_INFO)
{
npc = MIL_100_Halvor;
condition = MIL_100_Halvor_STEWGOOD_Condition;
information = MIL_100_Halvor_STEWGOOD_Info;
important = FALSE;
permanent = FALSE;
description = "Dein Fleischeintopf schmeckt sehr gut!";
};
func int MIL_100_Halvor_STEWGOOD_Condition ()
{
if Halvor_BoughtMeatStew
&& Npc_KnowsInfo(hero,WRK_227_Snaf_IGO)
&& !Npc_KnowsInfo(hero,MIL_100_Halvor_FEWCHOICES)
{
return TRUE;
};
};
func void MIL_100_Halvor_STEWGOOD_Info ()
{
AI_Output (hero, self, "MIL_100_STEWGOOD_15_01"); //Dein Fleischeintopf schmeckt sehr gut!
AI_Output (self, hero, "MIL_100_STEWGOOD_00_02"); //HA... Das kannst du laut sagen.
};
///////////////////////////////////////////////////////////////////////
// Info FEWCHOICES
///////////////////////////////////////////////////////////////////////
instance MIL_100_Halvor_FEWCHOICES (C_INFO)
{
npc = MIL_100_Halvor;
condition = MIL_100_Halvor_FEWCHOICES_Condition;
information = MIL_100_Halvor_FEWCHOICES_Info;
important = FALSE;
permanent = FALSE;
description = "Deine Auswahl ist ja nicht gerade berauschend!";
};
func int MIL_100_Halvor_FEWCHOICES_Condition ()
{
if Halvor_BoughtMeatStew
&& Npc_KnowsInfo(hero,WRK_227_Snaf_IGO)
&& !Npc_KnowsInfo(hero,MIL_100_Halvor_STEWGOOD)
{
return TRUE;
};
};
func void MIL_100_Halvor_FEWCHOICES_Info ()
{
AI_Output (hero, self, "MIL_100_FEWCHOICES_15_01"); //Deine Auswahl ist ja nicht gerade berauschend!
AI_Output (self, hero, "MIL_100_FEWCHOICES_00_02"); //Wenn es dir nicht passt, kannst du ja den Schweinefrass von diesem Versager Snaf essen!
};
///////////////////////////////////////////////////////////////////////
// Info SNAF
///////////////////////////////////////////////////////////////////////
instance MIL_100_Halvor_SNAF (C_INFO)
{
npc = MIL_100_Halvor;
condition = MIL_100_Halvor_SNAF_Condition;
information = MIL_100_Halvor_SNAF_Info;
important = FALSE;
permanent = FALSE;
description = "Den Leuten schmeckt es hier wohl besser als bei Snaf, was?";
};
func int MIL_100_Halvor_SNAF_Condition ()
{
if Npc_KnowsInfo(hero,MIL_100_Halvor_STEWGOOD)
|| Npc_KnowsInfo(hero,MIL_100_Halvor_FEWCHOICES)
{
return TRUE;
};
};
func void MIL_100_Halvor_SNAF_Info ()
{
AI_Output (hero, self, "MIL_100_SNAF_15_01"); //Den Leuten schmeckt es hier wohl besser als bei Snaf, was?
AI_Output (self, hero, "MIL_100_SNAF_00_02"); //Snaf's jämmerliche Suppe wäre nicht mal was für den Schweinetrog meines Vetters in Khorinis.
AI_Output (self, hero, "MIL_100_SNAF_00_03"); //HA... dieser armseelige Nichtsnutz sollte sich mal so langsam was überlegen, wenn er im Geschäft bleiben will.
AI_Output (self, hero, "MIL_100_SNAF_00_04"); //Meine neues Rezept kommt sehr gut an. Die Leute können garnicht genug davon bekommen.
B_LogEntry (CH1_LearnCooking, "Halvor scheint offensichtlich ein neues Rezept zu verwenden, dass bei den Lagerbewohnern sehr gut anzukommen scheint.");
};
///////////////////////////////////////////////////////////////////////
// Info RECIPE
///////////////////////////////////////////////////////////////////////
instance MIL_100_Halvor_RECIPE (C_INFO)
{
npc = MIL_100_Halvor;
condition = MIL_100_Halvor_RECIPE_Condition;
information = MIL_100_Halvor_RECIPE_Info;
important = FALSE;
permanent = FALSE;
description = "Das Rezept für den Fleisch-Eintopf?";
};
func int MIL_100_Halvor_RECIPE_Condition ()
{
if Npc_KnowsInfo(hero,MIL_100_Halvor_SNAF)
{
return TRUE;
};
};
func void MIL_100_Halvor_RECIPE_Info ()
{
AI_Output (hero, self, "MIL_100_RECIPE_15_01"); //Das Rezept für den Fleisch-Eintopf?
AI_Output (self, hero, "MIL_100_RECIPE_00_02"); //Richtig. Ich glaube fast, das mein Kochbuch das wertvollste Stück Papier in diesem Lager hier ist! (lacht laut)
};
///////////////////////////////////////////////////////////////////////
// Info WANTRECIPE
///////////////////////////////////////////////////////////////////////
instance MIL_100_Halvor_WANTRECIPE (C_INFO)
{
npc = MIL_100_Halvor;
condition = MIL_100_Halvor_WANTRECIPE_Condition;
information = MIL_100_Halvor_WANTRECIPE_Info;
important = FALSE;
permanent = FALSE;
description = "Verkaufst du mir das Rezept?";
};
func int MIL_100_Halvor_WANTRECIPE_Condition ()
{
if Npc_KnowsInfo(hero,MIL_100_Halvor_RECIPE)
{
return TRUE;
};
};
func void MIL_100_Halvor_WANTRECIPE_Info ()
{
AI_Output (hero, self, "MIL_100_WANTRECIPE_15_01"); //Verkaufst du mir das Rezept?
AI_Output (self, hero, "MIL_100_WANTRECIPE_00_02"); //HA... HA... du musst mich ja für völlig verblödet halten.
AI_Output (self, hero, "MIL_100_WANTRECIPE_00_03"); //Das Rezept bleibt schön da wo es ist. In meiner gut verschlossenen Truhe.
AI_Output (hero, self, "MIL_100_WANTRECIPE_15_04"); //Verstehe!
B_LogEntry (CH1_LearnCooking, "Halvor bewahrt sein neues Rezept in seiner gut verschlossenen Truhe auf.");
};
///////////////////////////////////////////////////////////////////////
// Info FROMSNAF
///////////////////////////////////////////////////////////////////////
instance MIL_100_Halvor_FROMSNAF (C_INFO)
{
npc = MIL_100_Halvor;
condition = MIL_100_Halvor_FROMSNAF_Condition;
information = MIL_100_Halvor_FROMSNAF_Info;
important = FALSE;
permanent = FALSE;
description = "Snaf hat mich beauftragt herauszufinden, warum seine Kunden...";
};
func int MIL_100_Halvor_FROMSNAF_Condition ()
{
if (Npc_KnowsInfo(hero,MIL_100_Halvor_STEWGOOD) || Npc_KnowsInfo(hero,MIL_100_Halvor_FEWCHOICES))
&& !Npc_KnowsInfo(hero,MIL_100_Halvor_WANTRECIPE)
{
return TRUE;
};
};
func void MIL_100_Halvor_FROMSNAF_Info ()
{
AI_Output (hero, self, "MIL_100_FROMSNAF_15_01"); //Snaf hat mich beauftrag herauszufinden, warum seine Kunden zu dir überlaufen!
AI_Output (self, hero, "MIL_100_FROMSNAF_00_02"); //HA..., dann solltest du Snaf zurückgehen und ihm sagen, das liegt daran, dass er ein mieserabler Koch ist.
AI_Output (self, hero, "MIL_100_FROMSNAF_00_03"); //Ausserdem hab ich nichts übrig für Spione von Snaf, also mach, dass du dich hier nicht mehr sehen lässt!
AI_StopProcessInfos (self);
};
///////////////////////////////////////////////////////////////////////
// Info SNAFSPY
///////////////////////////////////////////////////////////////////////
instance MIL_100_Halvor_SNAFSPY (C_INFO)
{
npc = MIL_100_Halvor;
nr = 2;
condition = MIL_100_Halvor_SNAFSPY_Condition;
information = MIL_100_Halvor_SNAFSPY_Info;
important = TRUE;
permanent = TRUE;
};
func int MIL_100_Halvor_SNAFSPY_Condition ()
{
if Npc_KnowsInfo(hero,MIL_100_Halvor_FROMSNAF)
&& C_NpcIsInvincible(hero)
{
return TRUE;
};
};
func void MIL_100_Halvor_SNAFSPY_Info ()
{
AI_Output (self, hero, "MIL_100_SNAFSPY_00_01"); //Mach das du hier verschwindest.
AI_Output (self, hero, "MIL_100_SNAFSPY_00_02"); //Spione von Snaf sind hier nicht willkommen!
AI_StopProcessInfos (self);
};
///////////////////////////////////////////////////////////////////////
// Info STOLERECIPE
///////////////////////////////////////////////////////////////////////
/*
instance MIL_100_Halvor_STOLERECIPE (C_INFO)
{
npc = MIL_100_Halvor;
nr = 1;
condition = MIL_100_Halvor_STOLERECIPE_Condition;
information = MIL_100_Halvor_STOLERECIPE_Info;
important = TRUE;
permanent = TRUE;
};
func int MIL_100_Halvor_STOLERECIPE_Condition ()
{
if Npc_HasItems(hero, ItWr_HalvorRecipe)
&& C_NpcIsInvincible(hero)
{
return TRUE;
};
};
func void MIL_100_Halvor_STOLERECIPE_Info ()
{
AI_Output (self, hero, "MIL_100_STOLERECIPE_00_01"); //Hey, was ist das?
AI_Output (self, hero, "MIL_100_STOLERECIPE_00_02"); //Das ist doch MEIN Rezeptbuch!!!
AI_Output (self, hero, "MIL_100_STOLERECIPE_00_03"); //Na warte, das gibt Prügel!
AI_StopProcessInfos (self);
B_AttackProper (self, hero);
};
*/
///////////////////////////////////////////////////////////////////////
// Info LIAR
///////////////////////////////////////////////////////////////////////
instance MIL_100_Halvor_LIAR (C_INFO)
{
npc = MIL_100_Halvor;
condition = MIL_100_Halvor_LIAR_Condition;
information = MIL_100_Halvor_LIAR_Info;
important = TRUE;
permanent = FALSE;
};
func int MIL_100_Halvor_LIAR_Condition ()
{
if (Snaf_MilitiaFrightened >= 1)
{
return TRUE;
};
};
func void MIL_100_Halvor_LIAR_Info ()
{
AI_Output (self, hero, "MIL_100_LIAR_00_01"); //Hab gehört, du verbreitest Lügen über meinen Fleischeintopf!
AI_Output (self, hero, "MIL_100_LIAR_00_02"); //Behauptest da wäre Menschenfleisch drin und so!
AI_Output (self, hero, "MIL_100_LIAR_00_03"); //Muss dir wohl ein paar Manieren beibringen, Junge!
AI_StopProcessInfos (self);
B_AttackProper (self, hero);
};
///////////////////////////////////////////////////////////////////////
// Info LIAR2
///////////////////////////////////////////////////////////////////////
instance MIL_100_Halvor_LIAR2 (C_INFO)
{
npc = MIL_100_Halvor;
nr = 2;
condition = MIL_100_Halvor_LIAR2_Condition;
information = MIL_100_Halvor_LIAR2_Info;
important = TRUE;
permanent = TRUE;
};
func int MIL_100_Halvor_LIAR2_Condition ()
{
if Npc_KnowsInfo(hero,MIL_100_Halvor_LIAR)
&& C_NpcIsInvincible(hero)
{
return TRUE;
};
};
func void MIL_100_Halvor_LIAR2_Info ()
{
AI_Output (self, hero, "MIL_100_LIAR2_00_01"); //Mach das du hier verschwindest.
AI_Output (self, hero, "MIL_100_LIAR2_00_02"); //Ich kann miese Lügner wie dich nicht ausstehen!
AI_StopProcessInfos (self);
};
|
D
|
/*
* GC to PC Chao Converter v1.1
* by TheGag96, 2015-07-27
*
* License: Do whatever you want with it.
*/
import std.stdio, std.file, std.algorithm, std.string, std.array;
void main(string[] args) {
//welcome
std.stdio.write("=== GC to PC Chao Converter v1.1 by TheGag96 ===\n\n");
//convert each .chao file in the current directory
foreach (string filename; dirEntries(".", "*.chao", SpanMode.shallow)) {
//skip if this is a fixed chao
if (filename.endsWith("_fixed.chao")) continue;
//read in file
auto chaoFile = cast(ubyte[]) read(filename);
string newFilename = filename.replace(".chao", "_fixed.chao");
//convert file (moved to a separate function for clarity)
writeln("Converting ", filename, " to new file ", newFilename);
chaoFile.convert;
//write out converted file
std.file.write(newFilename, chaoFile);
if (!newFilename.isFile) writeln("Something went wrong writing the file...");
}
writeln("\nDone.\n",
"Now re-import each Chao into Fusion's Chao Editor with their fixed .chao file.\n",
"Have fun with your migrated Chao!");
}
void convert(ref ubyte[] file) {
//swap swim, fly, run, power, stamina, intelligence, and luck
file.flip(0x78);
file.flip(0x7A);
file.flip(0x7C);
file.flip(0x7E);
file.flip(0x80);
file.flip(0x82);
file.flip(0x84);
//happiness, age, life1, life2, reincarnations
file.flip(0xC2);
file.flip(0xC6);
file.flip(0xCA);
file.flip(0xCC);
file.flip(0xCE);
//run/power (4-byte reversal)
file.reverse4(0xE8);
//swim/fly (4-byte reversal)
file.reverse4(0xEC);
//dark/hero (4-byte reversal)
file.reverse4(0xF0);
//magnitude (4-byte reversal)
file.reverse4(0x100);
//doctor medal
file.flip(0x148);
//chao karate wins, losses, and draws
file.flip(0x150);
file.flip(0x152);
file.flip(0x154);
//animal behaviors (3-byte reversal)
file.reverse3(0x158);
//sleepiness, tiredness, hunger, mate, boredom, energy, toys
file.flip(0x174);
file.flip(0x176);
file.flip(0x178);
file.flip(0x17A);
file.flip(0x17C);
file.flip(0x188);
file.flip(0x1A4);
}
void flip(ref ubyte[] file, ulong address) {
swap(file[address], file[address+1]);
}
void reverse4(ref ubyte[] file, ulong address) {
swap(file[address], file[address+3]);
swap(file[address+1], file[address+2]);
}
void reverse3(ref ubyte[] file, ulong address) {
swap(file[address], file[address+2]);
}
|
D
|
module mach.meta.varselect;
private:
/++ Docs: mach.meta.varselect
The `varselect` function accepts a number as a template argument and at least
one runtime argument.
It returns the argument at the zero-based index indicated by its template argument.
Because the arguments are lazily-evaluated, only the selected argument will
actually be evaluated.
The function will not compile if the index given is outside the bounds of the
argument list.
+/
unittest{ /// Example
assert(varselect!0(0, 1, 2) == 0);
assert(varselect!2(0, 1, 2) == 2);
}
unittest{ /// Example
static assert(!is(typeof({
varselect!10(0, 1, 2); // Index out of bounds
})));
}
public:
/// Return the argument at the given index.
/// Arguments are lazy, meaning that those arguments not selected are
/// not evaluated.
auto varselect(size_t i, Args...)(lazy Args args) if(i < Args.length){
return args[i]();
}
unittest{
static assert(!is(typeof({varselect!0();})));
static assert(!is(typeof({varselect!1();})));
static assert(!is(typeof({varselect!1(0);})));
assert(varselect!0(0) == 0);
assert(varselect!0(1, 2) == 1);
assert(varselect!1(1, 2) == 2);
assert(varselect!2(1, 2, "hi") == "hi");
}
unittest{
assert(varselect!false(0, 0) == 0);
assert(varselect!true(0, 0) == 0);
assert(varselect!false(0, 1) == 0);
assert(varselect!true(0, 1) == 1);
}
unittest{
void x(){}
void y(){assert(false);}
varselect!false(x(), y());
bool error = false;
try{varselect!true(x(), y());}
catch(Throwable){error = true;}
assert(error);
}
|
D
|
// Written in the D programming language.
module wrapper.sodium.crypto_aead_chacha20poly1305;
import wrapper.sodium.core; // assure sodium got initialized
public
import deimos.sodium.crypto_aead_chacha20poly1305 : crypto_aead_chacha20poly1305_ietf_KEYBYTES,
crypto_aead_chacha20poly1305_ietf_keybytes,
crypto_aead_chacha20poly1305_ietf_NSECBYTES,
crypto_aead_chacha20poly1305_ietf_nsecbytes,
crypto_aead_chacha20poly1305_ietf_NPUBBYTES,
crypto_aead_chacha20poly1305_ietf_npubbytes,
crypto_aead_chacha20poly1305_ietf_ABYTES,
crypto_aead_chacha20poly1305_ietf_abytes,
crypto_aead_chacha20poly1305_ietf_MESSAGEBYTES_MAX,
crypto_aead_chacha20poly1305_ietf_messagebytes_max,
/* crypto_aead_chacha20poly1305_ietf_encrypt,
crypto_aead_chacha20poly1305_ietf_decrypt,
crypto_aead_chacha20poly1305_ietf_encrypt_detached,
crypto_aead_chacha20poly1305_ietf_decrypt_detached, */
crypto_aead_chacha20poly1305_ietf_keygen,
crypto_aead_chacha20poly1305_KEYBYTES,
crypto_aead_chacha20poly1305_keybytes,
crypto_aead_chacha20poly1305_NSECBYTES,
crypto_aead_chacha20poly1305_nsecbytes,
crypto_aead_chacha20poly1305_NPUBBYTES,
crypto_aead_chacha20poly1305_npubbytes,
crypto_aead_chacha20poly1305_ABYTES,
crypto_aead_chacha20poly1305_abytes,
crypto_aead_chacha20poly1305_MESSAGEBYTES_MAX,
crypto_aead_chacha20poly1305_messagebytes_max,
/* crypto_aead_chacha20poly1305_encrypt,
crypto_aead_chacha20poly1305_decrypt,
crypto_aead_chacha20poly1305_encrypt_detached,
crypto_aead_chacha20poly1305_decrypt_detached, */
crypto_aead_chacha20poly1305_keygen;
import std.exception : assertThrown, assertNotThrown;
import nogc.exception: enforce;
// overloading some functions between module deimos.sodium.crypto_aead_chacha20poly1305 and this module
alias crypto_aead_chacha20poly1305_ietf_encrypt = deimos.sodium.crypto_aead_chacha20poly1305.crypto_aead_chacha20poly1305_ietf_encrypt;
/**
* The function crypto_aead_chacha20poly1305_ietf_encrypt()
* encrypts a message `m` using a secret key `k` (crypto_aead_chacha20poly1305_ietf_KEYBYTES bytes)
* and a public nonce `npub` (crypto_aead_chacha20poly1305_ietf_NPUBBYTES bytes).
* The encrypted message, as well as a tag authenticating both the confidential message m and ad.length bytes of non-confidential data `ad`,
* are put into `c`.
* ad can also be an empty array if no additional data are required.
* At most m.length + crypto_aead_chacha20poly1305_ietf_ABYTES bytes are put into `c`.
* The function always returns true.
* The public nonce npub should never ever be reused with the same key. The recommended way to generate it is to use
* randombytes_buf() for the first message, and then to increment it for each subsequent message using the same key.
*/
bool crypto_aead_chacha20poly1305_ietf_encrypt(scope ubyte[] c,
const scope ubyte[] m,
const scope ubyte[] ad,
const ubyte[crypto_aead_chacha20poly1305_ietf_NPUBBYTES] npub,
const ubyte[crypto_aead_chacha20poly1305_ietf_KEYBYTES] k) @nogc @trusted
{
// enforce(m.length, "Error invoking crypto_aead_chacha20poly1305_ietf_encrypt: m is null"); // TODO check if m.ptr==null would be okay
enforce(m.length <= ulong.max - crypto_aead_chacha20poly1305_ietf_ABYTES);
const c_expect_len = m.length + crypto_aead_chacha20poly1305_ietf_ABYTES;
// enforce(c.length == c_expect_len, "Expected c.length: ", c.length, " to be equal to m.length + crypto_aead_chacha20poly1305_ietf_ABYTES: ", c_expect_len);
enforce(c.length == c_expect_len, "Expected c.length is not equal to m.length + crypto_aead_chacha20poly1305_ietf_ABYTES");
ulong clen_p;
bool result = crypto_aead_chacha20poly1305_ietf_encrypt(c.ptr, &clen_p, m.ptr, m.length, ad.ptr, ad.length, null, npub.ptr, k.ptr) == 0;
if (result)
assert(clen_p == c_expect_len); // okay to be removed in release code
return result;
}
alias crypto_aead_chacha20poly1305_ietf_decrypt = deimos.sodium.crypto_aead_chacha20poly1305.crypto_aead_chacha20poly1305_ietf_decrypt;
/**
* The function crypto_aead_chacha20poly1305_ietf_decrypt()
verifies that the ciphertext `c` (as produced by crypto_aead_chacha20poly1305_ietf_encrypt()),
* includes a valid tag using a secret key `k`, a public nonce `npub`, and additional data `ad`. c.length is the ciphertext length
* in bytes with the authenticator, so it has to be at least crypto_aead_chacha20poly1305_ietf_ABYTES.
*
* ad can be an empty array if no additional data are required.
* The function returns false if the verification fails.
* If the verification succeeds, the function returns true, puts the decrypted message into `m` and stores its actual number of bytes into `mlen_p`.
* At most c.length - crypto_aead_chacha20poly1305_ietf_ABYTES bytes will be put into m.
*/
bool crypto_aead_chacha20poly1305_ietf_decrypt(scope ubyte[] m,
const scope ubyte[] c,
const scope ubyte[] ad,
const ubyte[crypto_aead_chacha20poly1305_ietf_NPUBBYTES] npub,
const ubyte[crypto_aead_chacha20poly1305_ietf_KEYBYTES] k) @nogc @trusted
{
// enforce(c.length >= crypto_aead_chacha20poly1305_ietf_ABYTES, "Expected c.length: ", c.length, " to be greater_equal to crypto_aead_chacha20poly1305_ietf_ABYTES: ", crypto_aead_chacha20poly1305_ietf_ABYTES);
enforce(c.length >= crypto_aead_chacha20poly1305_ietf_ABYTES, "Expected c.length is not greater_equal to crypto_aead_chacha20poly1305_ietf_ABYTES");
const m_expect_len = c.length - crypto_aead_chacha20poly1305_ietf_ABYTES;
// enforce(m.length == m_expect_len, "Expected m.length: ", m.length, " to be equal to c.length - crypto_aead_chacha20poly1305_ietf_ABYTES: ", m_expect_len);
enforce(m.length == m_expect_len, "Expected m.length is not equal to c.length - crypto_aead_chacha20poly1305_ietf_ABYTES");
ulong mlen_p;
bool result = crypto_aead_chacha20poly1305_ietf_decrypt(m.ptr, &mlen_p, null, c.ptr, c.length, ad.ptr, ad.length, npub.ptr, k.ptr) == 0;
if (result)
assert(mlen_p == m_expect_len); // okay to be removed in release code
return result;
}
alias crypto_aead_chacha20poly1305_ietf_encrypt_detached = deimos.sodium.crypto_aead_chacha20poly1305.crypto_aead_chacha20poly1305_ietf_encrypt_detached;
bool crypto_aead_chacha20poly1305_ietf_encrypt_detached(scope ubyte[] c,
out ubyte[crypto_aead_chacha20poly1305_ietf_ABYTES] mac,
const scope ubyte[] m,
const scope ubyte[] ad,
const ubyte[crypto_aead_chacha20poly1305_ietf_NPUBBYTES] npub,
const ubyte[crypto_aead_chacha20poly1305_ietf_KEYBYTES] k) @nogc @trusted
{
// enforce(m.length, "Error invoking crypto_aead_chacha20poly1305_ietf_encrypt_detached: m is null"); // TODO check if m.ptr==null would be okay
// enforce(c.length == m.length, "Expected c.length: ", c.length, " to be equal to m.length: ", m.length);
enforce(c.length == m.length, "Expected c.length is not equal to m.length");
ulong maclen_p;
bool result = crypto_aead_chacha20poly1305_ietf_encrypt_detached(c.ptr, mac.ptr, &maclen_p, m.ptr, m.length, ad.ptr, ad.length, null, npub.ptr, k.ptr) == 0;
assert(maclen_p == crypto_aead_chacha20poly1305_ietf_ABYTES); // okay to be removed in release code
return result;
}
alias crypto_aead_chacha20poly1305_ietf_decrypt_detached = deimos.sodium.crypto_aead_chacha20poly1305.crypto_aead_chacha20poly1305_ietf_decrypt_detached;
bool crypto_aead_chacha20poly1305_ietf_decrypt_detached(scope ubyte[] m,
const scope ubyte[] c,
const ubyte[crypto_aead_chacha20poly1305_ietf_ABYTES] mac,
const scope ubyte[] ad,
const ubyte[crypto_aead_chacha20poly1305_ietf_NPUBBYTES] npub,
const ubyte[crypto_aead_chacha20poly1305_ietf_KEYBYTES] k) @nogc @trusted
{
// enforce(c.length, "Error invoking crypto_aead_chacha20poly1305_ietf_decrypt_detached: c is null"); // TODO check if c.ptr==null would be okay
// enforce(m.length == c.length, "Expected m.length: ", m.length, " to be equal to c.length: ", c.length);
enforce(m.length == c.length, "Expected m.length is not equal to c.length");
return crypto_aead_chacha20poly1305_ietf_decrypt_detached(m.ptr, null, c.ptr, c.length, mac.ptr, ad.ptr, ad.length, npub.ptr, k.ptr) == 0;
}
/* -- Original ChaCha20-Poly1305 construction with a 64-bit nonce and a 64-bit internal counter -- */
alias crypto_aead_chacha20poly1305_encrypt = deimos.sodium.crypto_aead_chacha20poly1305.crypto_aead_chacha20poly1305_encrypt;
bool crypto_aead_chacha20poly1305_encrypt(scope ubyte[] c,
const scope ubyte[] m,
const scope ubyte[] ad,
const ubyte[crypto_aead_chacha20poly1305_NPUBBYTES] npub,
const ubyte[crypto_aead_chacha20poly1305_KEYBYTES] k) @nogc @trusted
{
// enforce(m.length, "Error invoking crypto_aead_chacha20poly1305_encrypt: m is null"); // TODO check if m.ptr==null would be okay
const c_expect_len = m.length + crypto_aead_chacha20poly1305_ABYTES;
// enforce(c.length == c_expect_len, "Expected c.length: ", c.length, " to be equal to m.length + crypto_aead_chacha20poly1305_ABYTES: ", c_expect_len);
enforce(c.length == c_expect_len, "Expected c.length is not equal to m.length + crypto_aead_chacha20poly1305_ABYTES");
ulong clen_p;
bool result = crypto_aead_chacha20poly1305_encrypt(c.ptr, &clen_p, m.ptr, m.length, ad.ptr, ad.length, null, npub.ptr, k.ptr) == 0;
if (result)
assert(clen_p == c_expect_len); // okay to be removed in release code
return result;
}
alias crypto_aead_chacha20poly1305_decrypt = deimos.sodium.crypto_aead_chacha20poly1305.crypto_aead_chacha20poly1305_decrypt;
bool crypto_aead_chacha20poly1305_decrypt(scope ubyte[] m,
const scope ubyte[] c,
const scope ubyte[] ad,
const ubyte[crypto_aead_chacha20poly1305_NPUBBYTES] npub,
const ubyte[crypto_aead_chacha20poly1305_KEYBYTES] k) @nogc @trusted
{
// enforce(c.length >= crypto_aead_chacha20poly1305_ABYTES, "Expected c.length: ", c.length, " to be greater_equal to crypto_aead_chacha20poly1305_ABYTES: ", crypto_aead_chacha20poly1305_ABYTES);
enforce(c.length >= crypto_aead_chacha20poly1305_ABYTES, "Expected c.length is not greater_equal to crypto_aead_chacha20poly1305_ABYTES");
const m_expect_len = c.length - crypto_aead_chacha20poly1305_ABYTES;
// enforce(m.length == m_expect_len, "Expected m.length: ", m.length, " to be equal to c.length - crypto_aead_chacha20poly1305_ABYTES: ", m_expect_len);
enforce(m.length == m_expect_len, "Expected m.length is not equal to c.length - crypto_aead_chacha20poly1305_ABYTES");
ulong mlen_p;
bool result = crypto_aead_chacha20poly1305_decrypt(m.ptr, &mlen_p, null, c.ptr, c.length, ad.ptr, ad.length, npub.ptr, k.ptr) == 0;
if (result)
assert(mlen_p == m_expect_len); // okay to be removed in release code
return result;
}
alias crypto_aead_chacha20poly1305_encrypt_detached = deimos.sodium.crypto_aead_chacha20poly1305.crypto_aead_chacha20poly1305_encrypt_detached;
bool crypto_aead_chacha20poly1305_encrypt_detached(scope ubyte[] c,
out ubyte[crypto_aead_chacha20poly1305_ABYTES] mac,
const scope ubyte[] m,
const scope ubyte[] ad,
const ubyte[crypto_aead_chacha20poly1305_NPUBBYTES] npub,
const ubyte[crypto_aead_chacha20poly1305_KEYBYTES] k) @nogc @trusted
{
// enforce(m.length, "Error invoking crypto_aead_chacha20poly1305_encrypt_detached: m is null"); // TODO check if m.ptr==null would be okay
// enforce(c.length == m.length, "Expected c.length: ", c.length, " to be equal to m.length: ", m.length);
enforce(c.length == m.length, "Expected c.length is not equal to m.length");
ulong maclen_p;
bool result = crypto_aead_chacha20poly1305_encrypt_detached(c.ptr, mac.ptr, &maclen_p, m.ptr, m.length, ad.ptr, ad.length, null, npub.ptr, k.ptr) == 0;
assert(maclen_p == crypto_aead_chacha20poly1305_ABYTES); // okay to be removed in release code
return result;
}
alias crypto_aead_chacha20poly1305_decrypt_detached = deimos.sodium.crypto_aead_chacha20poly1305.crypto_aead_chacha20poly1305_decrypt_detached;
bool crypto_aead_chacha20poly1305_decrypt_detached(scope ubyte[] m,
const scope ubyte[] c,
const ubyte[crypto_aead_chacha20poly1305_ABYTES] mac,
const scope ubyte[] ad,
const ubyte[crypto_aead_chacha20poly1305_NPUBBYTES] npub,
const ubyte[crypto_aead_chacha20poly1305_KEYBYTES] k) @nogc @trusted
{
// enforce(c.length, "Error invoking crypto_aead_chacha20poly1305_decrypt_detached: c is null"); // TODO check if c.ptr==null would be okay
// enforce(m.length == c.length, "Expected m.length: ", m.length, " to be equal to c.length: ", c.length);
enforce(m.length == c.length, "Expected m.length is not equal to c.length");
return crypto_aead_chacha20poly1305_decrypt_detached(m.ptr, null, c.ptr, c.length, mac.ptr, ad.ptr, ad.length, npub.ptr, k.ptr) == 0;
}
version(unittest)
{
import wrapper.sodium.randombytes : randombytes;
// share a key and nonce in the following unittests
ubyte[crypto_aead_chacha20poly1305_ietf_NPUBBYTES] nonce = void;
ubyte[crypto_aead_chacha20poly1305_ietf_KEYBYTES] key = void;
ubyte[crypto_aead_chacha20poly1305_NPUBBYTES] nonce2 = void;
ubyte[crypto_aead_chacha20poly1305_KEYBYTES] key2 = void;
static this() {
randombytes(nonce);
randombytes(key);
randombytes(nonce2);
randombytes(key2);
}
}
@system
unittest
{
import std.string : representation;
import std.stdio : writeln;
debug writeln("unittest block 1 from sodium.crypto_aead_chacha20poly1305.d");
auto message = representation("test");
enum message_len = 4;
auto additional_data = representation("A typical use case for additional data is to store protocol-specific metadata " ~
"about the message, such as its length and encoding. (non-confidential, non-encrypted data");
ubyte[message_len + crypto_aead_chacha20poly1305_ietf_ABYTES] ciphertext;
ulong ciphertext_len;
crypto_aead_chacha20poly1305_ietf_encrypt(ciphertext.ptr, &ciphertext_len, message.ptr, message.length,
additional_data.ptr, additional_data.length, null, nonce.ptr, key.ptr);
ubyte[message_len] decrypted;
ulong decrypted_len;
assert(ciphertext_len==ciphertext.length);
assert(crypto_aead_chacha20poly1305_ietf_decrypt(decrypted.ptr, &decrypted_len, null, ciphertext.ptr, ciphertext_len,
additional_data.ptr, additional_data.length, nonce.ptr, key.ptr) == 0);
assert(decrypted == message); //writeln("Decrypted message (aead_chacha20poly1305): ", cast(string)decrypted);
assert(decrypted_len == decrypted.length);
// test null for &ciphertext_len / decrypted_len
crypto_aead_chacha20poly1305_ietf_encrypt(ciphertext.ptr, null, message.ptr, message.length,
additional_data.ptr, additional_data.length, null, nonce.ptr, key.ptr);
crypto_aead_chacha20poly1305_ietf_decrypt(decrypted.ptr, null, null, ciphertext.ptr, ciphertext_len,
additional_data.ptr, additional_data.length, nonce.ptr, key.ptr);
ubyte[crypto_aead_chacha20poly1305_ietf_KEYBYTES] k;
crypto_aead_chacha20poly1305_ietf_keygen(k);
ubyte[crypto_aead_chacha20poly1305_KEYBYTES] k2;
crypto_aead_chacha20poly1305_keygen(k2);
}
@safe
unittest
{
import std.string : representation;
import std.stdio : writeln, writefln;
import wrapper.sodium.utils : sodium_increment;
debug writeln("unittest block 2 from sodium.crypto_aead_chacha20poly1305.d");
assert(crypto_aead_chacha20poly1305_ietf_keybytes() == crypto_aead_chacha20poly1305_ietf_KEYBYTES);
assert(crypto_aead_chacha20poly1305_ietf_nsecbytes() == crypto_aead_chacha20poly1305_ietf_NSECBYTES);
assert(crypto_aead_chacha20poly1305_ietf_npubbytes() == crypto_aead_chacha20poly1305_ietf_NPUBBYTES);
assert(crypto_aead_chacha20poly1305_ietf_abytes() == crypto_aead_chacha20poly1305_ietf_ABYTES);
assert(crypto_aead_chacha20poly1305_ietf_messagebytes_max() == crypto_aead_chacha20poly1305_ietf_MESSAGEBYTES_MAX); // see travis Build #74
// debug writeln("crypto_aead_chacha20poly1305_ietf_MESSAGEBYTES_MAX: ", crypto_aead_chacha20poly1305_ietf_MESSAGEBYTES_MAX);
// debug writeln("crypto_aead_chacha20poly1305_ietf_messagebytes_max(): ", crypto_aead_chacha20poly1305_ietf_messagebytes_max());
auto message = representation("test");
enum message_len = 4;
auto additional_data = representation("A typical use case for additional data is to store protocol-specific metadata " ~
"about the message, such as its length and encoding. (non-confidential, non-encrypted data");
ubyte[message_len + crypto_aead_chacha20poly1305_ietf_ABYTES] ciphertext1;
sodium_increment(nonce);
assertThrown (crypto_aead_chacha20poly1305_ietf_encrypt(ciphertext1[0..$-1], message, additional_data, nonce, key));
assertNotThrown(crypto_aead_chacha20poly1305_ietf_encrypt(ciphertext1[0..$-message.length], null, additional_data, nonce, key));
assertNotThrown(crypto_aead_chacha20poly1305_ietf_encrypt(ciphertext1, message, null, nonce, key));
assert(crypto_aead_chacha20poly1305_ietf_encrypt(ciphertext1, message, additional_data, nonce, key));
ubyte[message_len] decrypted;
assertThrown (crypto_aead_chacha20poly1305_ietf_decrypt(decrypted, ciphertext1[0..crypto_aead_chacha20poly1305_ietf_ABYTES-1], additional_data, nonce, key));
assertThrown (crypto_aead_chacha20poly1305_ietf_decrypt(decrypted[0..$-1], ciphertext1, additional_data, nonce, key));
assertNotThrown(crypto_aead_chacha20poly1305_ietf_decrypt(decrypted, ciphertext1, null, nonce, key));
assert(crypto_aead_chacha20poly1305_ietf_decrypt(decrypted, ciphertext1, additional_data, nonce, key));
assert(decrypted == message);
//
ubyte[message_len] ciphertext2;
ubyte[crypto_aead_chacha20poly1305_ietf_ABYTES] mac;
sodium_increment(nonce);
assertThrown (crypto_aead_chacha20poly1305_ietf_encrypt_detached(ciphertext2[0..$-1], mac, message, additional_data, nonce, key));
assertNotThrown(crypto_aead_chacha20poly1305_ietf_encrypt_detached(ciphertext2[0..$-message.length], mac, null, additional_data, nonce, key));
assertNotThrown(crypto_aead_chacha20poly1305_ietf_encrypt_detached(ciphertext2, mac, message, null, nonce, key));
assert(crypto_aead_chacha20poly1305_ietf_encrypt_detached(ciphertext2, mac, message, additional_data, nonce, key));
assertThrown (crypto_aead_chacha20poly1305_ietf_decrypt_detached(decrypted[0..$-1], ciphertext2, mac, additional_data, nonce, key));
assertNotThrown(crypto_aead_chacha20poly1305_ietf_decrypt_detached(decrypted[0..$-message.length], null, mac, additional_data, nonce, key));
assertNotThrown(crypto_aead_chacha20poly1305_ietf_decrypt_detached(decrypted, ciphertext2, mac, null, nonce, key));
assert(crypto_aead_chacha20poly1305_ietf_decrypt_detached(decrypted, ciphertext2, mac, additional_data, nonce, key));
assert(decrypted == message);
}
@safe
unittest
{
import std.string : representation;
import std.stdio : writeln, writefln;
import wrapper.sodium.utils : sodium_increment;
debug writeln("unittest block 3 from sodium.crypto_aead_chacha20poly1305.d");
assert(crypto_aead_chacha20poly1305_keybytes() == crypto_aead_chacha20poly1305_KEYBYTES);
assert(crypto_aead_chacha20poly1305_nsecbytes() == crypto_aead_chacha20poly1305_NSECBYTES);
assert(crypto_aead_chacha20poly1305_npubbytes() == crypto_aead_chacha20poly1305_NPUBBYTES);
assert(crypto_aead_chacha20poly1305_abytes() == crypto_aead_chacha20poly1305_ABYTES);
assert(crypto_aead_chacha20poly1305_messagebytes_max() == crypto_aead_chacha20poly1305_MESSAGEBYTES_MAX);
auto message = representation("test");
enum message_len = 4;
auto additional_data = representation("A typical use case for additional data is to store protocol-specific metadata " ~
"about the message, such as its length and encoding. (non-confidential, non-encrypted data");
ubyte[message_len + crypto_aead_chacha20poly1305_ABYTES] ciphertext1;
sodium_increment(nonce2);
assertThrown (crypto_aead_chacha20poly1305_encrypt(ciphertext1[0..$-1], message, additional_data, nonce2, key2));
assertNotThrown(crypto_aead_chacha20poly1305_encrypt(ciphertext1[0..$-message.length], null, additional_data, nonce2, key2));
assertNotThrown(crypto_aead_chacha20poly1305_encrypt(ciphertext1, message, null, nonce2, key2));
assert(crypto_aead_chacha20poly1305_encrypt(ciphertext1, message, additional_data, nonce2, key2));
ubyte[message_len] decrypted;
assertThrown (crypto_aead_chacha20poly1305_decrypt(decrypted, ciphertext1[0..crypto_aead_chacha20poly1305_ABYTES-1], additional_data, nonce2, key2));
assertThrown (crypto_aead_chacha20poly1305_decrypt(decrypted[0..$-1], ciphertext1, additional_data, nonce2, key2));
assertNotThrown(crypto_aead_chacha20poly1305_decrypt(decrypted, ciphertext1, null, nonce2, key2));
assert(crypto_aead_chacha20poly1305_decrypt(decrypted, ciphertext1, additional_data, nonce2, key2));
assert(decrypted == message);
//
ubyte[message_len] ciphertext2;
ubyte[crypto_aead_chacha20poly1305_ABYTES] mac;
sodium_increment(nonce2);
assertThrown (crypto_aead_chacha20poly1305_encrypt_detached(ciphertext2[0..$-1], mac, message, additional_data, nonce2, key2));
assertNotThrown(crypto_aead_chacha20poly1305_encrypt_detached(ciphertext2[0..$-message.length], mac, null, additional_data, nonce2, key2));
assertNotThrown(crypto_aead_chacha20poly1305_encrypt_detached(ciphertext2, mac, message, null, nonce2, key2));
assert(crypto_aead_chacha20poly1305_encrypt_detached(ciphertext2, mac, message, additional_data, nonce2, key2));
assertThrown (crypto_aead_chacha20poly1305_decrypt_detached(decrypted[0..$-1], ciphertext2, mac, additional_data, nonce2, key2));
assertNotThrown(crypto_aead_chacha20poly1305_decrypt_detached(decrypted[0..$-message.length], null, mac, additional_data, nonce2, key2));
assertNotThrown(crypto_aead_chacha20poly1305_decrypt_detached(decrypted, ciphertext2, mac, null, nonce2, key2));
assert(crypto_aead_chacha20poly1305_decrypt_detached(decrypted, ciphertext2, mac, additional_data, nonce2, key2));
assert(decrypted == message);
}
@nogc @safe
unittest
{
// usage is not cryptographically safe here; it's purpose is to test @nogc @safe
import std.string : representation;
ubyte[crypto_aead_chacha20poly1305_ietf_NPUBBYTES] n1 = nonce;
ubyte[crypto_aead_chacha20poly1305_ietf_KEYBYTES] k1;
crypto_aead_chacha20poly1305_ietf_keygen(k1);
ubyte[4] message = [116, 101, 115, 116]; //representation("test");
ubyte[4] decrypted;
enum m_len = 4UL;
auto additional_data = representation("A typical use case for additional data is to store protocol-specific metadata " ~
"about the message, such as its length and encoding. (non-confidential, non-encrypted data");
ubyte[m_len+crypto_aead_chacha20poly1305_ietf_ABYTES] ciphertext1;
ubyte[m_len] ciphertext2;
ubyte[ crypto_aead_chacha20poly1305_ietf_ABYTES] mac1;
assert(crypto_aead_chacha20poly1305_ietf_encrypt(ciphertext1, message, additional_data, n1, k1));
assert(crypto_aead_chacha20poly1305_ietf_decrypt(decrypted, ciphertext1, additional_data, n1, k1));
assert(decrypted == message);
decrypted = decrypted.init;
assert(crypto_aead_chacha20poly1305_ietf_encrypt_detached(ciphertext2, mac1, message, additional_data, n1, k1));
assert(crypto_aead_chacha20poly1305_ietf_decrypt_detached(decrypted, ciphertext2, mac1, additional_data, n1, k1));
assert(decrypted == message);
ubyte[crypto_aead_chacha20poly1305_NPUBBYTES] n2 = nonce[0..crypto_aead_chacha20poly1305_NPUBBYTES];
ubyte[crypto_aead_chacha20poly1305_KEYBYTES] k2;
crypto_aead_chacha20poly1305_keygen(k2);
ubyte[m_len+crypto_aead_chacha20poly1305_ABYTES] ciphertext3;
ubyte[m_len] ciphertext4;
ubyte[ crypto_aead_chacha20poly1305_ABYTES] mac2;
decrypted = decrypted.init;
assert(crypto_aead_chacha20poly1305_encrypt(ciphertext3, message, additional_data, n2, k2));
assert(crypto_aead_chacha20poly1305_decrypt(decrypted, ciphertext3, additional_data, n2, k2));
assert(decrypted == message);
decrypted = decrypted.init;
assert(crypto_aead_chacha20poly1305_encrypt_detached(ciphertext4, mac2, message, additional_data, n2, k2));
assert(crypto_aead_chacha20poly1305_decrypt_detached(decrypted, ciphertext4, mac2, additional_data, n2, k2));
assert(decrypted == message);
}
|
D
|
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
* Version 3.0.0
*
* Do not make changes to this file unless you know what you are doing--modify
* the SWIG interface file instead.
* ----------------------------------------------------------------------------- */
module vtkObserverMediator;
static import vtkd_im;
static import core.stdc.config;
static import std.conv;
static import std.string;
static import std.conv;
static import std.string;
static import vtkObjectBase;
static import vtkRenderWindowInteractor;
static import vtkInteractorObserver;
static import vtkObject;
class vtkObserverMediator : vtkObject.vtkObject {
private void* swigCPtr;
public this(void* cObject, bool ownCObject) {
super(vtkd_im.vtkObserverMediator_Upcast(cObject), ownCObject);
swigCPtr = cObject;
}
public static void* swigGetCPtr(vtkObserverMediator obj) {
return (obj is null) ? null : obj.swigCPtr;
}
mixin vtkd_im.SwigOperatorDefinitions;
public override void dispose() {
synchronized(this) {
if (swigCPtr !is null) {
if (swigCMemOwn) {
swigCMemOwn = false;
throw new object.Exception("C++ destructor does not have public access");
}
swigCPtr = null;
super.dispose();
}
}
}
public static vtkObserverMediator New() {
void* cPtr = vtkd_im.vtkObserverMediator_New();
vtkObserverMediator ret = (cPtr is null) ? null : new vtkObserverMediator(cPtr, false);
return ret;
}
public static int IsTypeOf(string type) {
auto ret = vtkd_im.vtkObserverMediator_IsTypeOf((type ? std.string.toStringz(type) : null));
return ret;
}
public static vtkObserverMediator SafeDownCast(vtkObjectBase.vtkObjectBase o) {
void* cPtr = vtkd_im.vtkObserverMediator_SafeDownCast(vtkObjectBase.vtkObjectBase.swigGetCPtr(o));
vtkObserverMediator ret = (cPtr is null) ? null : new vtkObserverMediator(cPtr, false);
return ret;
}
public vtkObserverMediator NewInstance() const {
void* cPtr = vtkd_im.vtkObserverMediator_NewInstance(cast(void*)swigCPtr);
vtkObserverMediator ret = (cPtr is null) ? null : new vtkObserverMediator(cPtr, false);
return ret;
}
alias vtkObject.vtkObject.NewInstance NewInstance;
public void SetInteractor(vtkRenderWindowInteractor.vtkRenderWindowInteractor iren) {
vtkd_im.vtkObserverMediator_SetInteractor(cast(void*)swigCPtr, vtkRenderWindowInteractor.vtkRenderWindowInteractor.swigGetCPtr(iren));
}
public vtkRenderWindowInteractor.vtkRenderWindowInteractor GetInteractor() {
void* cPtr = vtkd_im.vtkObserverMediator_GetInteractor(cast(void*)swigCPtr);
vtkRenderWindowInteractor.vtkRenderWindowInteractor ret = (cPtr is null) ? null : new vtkRenderWindowInteractor.vtkRenderWindowInteractor(cPtr, false);
return ret;
}
public int RequestCursorShape(vtkInteractorObserver.vtkInteractorObserver arg0, int cursorShape) {
auto ret = vtkd_im.vtkObserverMediator_RequestCursorShape(cast(void*)swigCPtr, vtkInteractorObserver.vtkInteractorObserver.swigGetCPtr(arg0), cursorShape);
return ret;
}
public void RemoveAllCursorShapeRequests(vtkInteractorObserver.vtkInteractorObserver arg0) {
vtkd_im.vtkObserverMediator_RemoveAllCursorShapeRequests(cast(void*)swigCPtr, vtkInteractorObserver.vtkInteractorObserver.swigGetCPtr(arg0));
}
}
|
D
|
module mach.types.tuple;
private:
import mach.meta : Any, All;
import mach.types.types : Types, isTypes;
import mach.traits : AsUnaryOp, isUnaryOpPlural, AsBinaryOp, isBinaryOpPlural;
import mach.traits : canCastPlural, canHash, hash, isTemplateOf, isCallable;
/++ Docs
This module implements a tuple type which serves a fairly simple purpose of
holding any number of values of aribtrary types, but does so in such a way that
is accommodating to the language syntax.
Tuples overload various operators, can be indexed with compile-time bounds
checking, and can be passed to functions expecting as arguments the tuple's
constituent types by using `tuple.expand`.
`Tuple` is a template which can be used to acquire a struct representing a
tuple holding some given types, and `tuple` is a function which can be used
to acquire a tuple holding some given values.
+/
unittest{ /// Example
// Reference a tuple type with `Tuple` or instantiate one with `tuple`.
Tuple!(string, char) tup = tuple("hello", '!');
static assert(tup.length == 2); /// Length is known at compile time.
assert(tup[0] == "hello");
assert(tup[1] == '!');
// Out-of-bounds indexes produce a compile error!
static assert(!is(typeof({tup[2];})));
}
unittest{ /// Example
// Unary operators are simply applied to every member of the tuple.
// They are only allowed when every member of the tuple supports the operator.
Tuple!(int, int) itup = tuple(1, 2);
Tuple!(float, float) ftup = cast(Tuple!(float, float)) itup;
assert(-itup == tuple(-1, -2));
assert(-itup == -ftup);
}
unittest{ /// Example
// Binary operators are applied to every pair of elements in tuples.
// They're only allowed when every pair of elements supports the operator.
auto tup = tuple(1, 2, 3);
assert(tup + tuple(4, 5, 6) == tuple(5, 7, 9));
assert(tup - tuple(1, 1, 1) == tuple(0, 1, 2));
}
unittest{ /// Example
// Tuples can be ordered if their corresponding pairs of elements can be ordered.
// The second elements are compared only if the first are equal, the third
// only if the second are equal, etc., in a manner similar to string sorting.
assert(tuple(0, 1) < tuple(1, 1));
assert(tuple(1, 1) > tuple(1, 0));
}
public:
/// Determine whether a type is a tuple.
/// To qualify as a tuple, the type must:
/// - Have a `length` known at compile time of type `size_t`.
/// - Valid `foreach(i, element; tuple)` such that `i` is known at compile time.
/// - Must support indexing i.e. `tuple[0]`.
/// - Accessing an out-of-bounds index via indexing must produce a compile error.
template isTuple(T...) if(T.length == 1){
enum bool isTuple = is(typeof({
enum size_t length = T[0].init.length;
auto ex = T[0].init.expand;
foreach(i, _; T[0].init){
enum j = i;
auto x = T[0].init[i];
}
static if(length != 0){
auto x = T[0].init[0] == T[0].init[length - 1];
}
static assert(!is(typeof({
T[0].init[length];
})));
}));
}
/// Build a tuple from the given values.
auto tuple(T...)(T args){
return Tuple!T(args);
}
private template canTupleOp(alias op, L, R...){
static if(R.length == 1){
static if(isTuple!L && isTuple!R){
enum bool canTupleOp = (
isBinaryOpPlural!(op, L.Types, R[0].Types)
);
}else{
enum bool canTupleOp = false;
}
}else{
enum bool canTupleOp = false;
}
}
private template canUnaryOpTuple(alias op, T){
static if(isTuple!T){
alias canUnaryOpTuple = isUnaryOpPlural!(op, T.T);
}else{
enum bool canUnaryOpTuple = false;
}
}
private template canUnaryOpTuple(string op, T){
alias canUnaryOpTuple = canUnaryOpTuple!(AsUnaryOp!op, T);
}
private template canBinaryOpTuple(string op, L, R...){
alias canBinaryOpTuple = canTupleOp!(AsBinaryOp!op, L, R);
}
private template canAssignTuple(L, R...){
alias canAssignTuple = canOpAssignTuple!(``, L, R);
}
private template canOpAssignTuple(string op, L, R...){
alias assign = (a, b){mixin(`a ` ~ op ~ `= b;`); return 0;};
alias canOpAssignTuple = canTupleOp!(assign, L, R);
}
private template canCastTuple(From, To){
static if(isTuple!From && isTuple!To){
enum bool canCastTuple = canCastPlural!(From.Types, To.Types);
}else{
enum bool canCastTuple = false;
}
}
/// Encapsulate an arbitrary number of values of arbitrary types.
struct Tuple(X...){
alias T = X;
alias Types = .Types!X;
/// The number of types represented by this struct.
static enum length = T.length;
/// True when the sequence of types is empty.
static enum bool empty = T.length == 0;
alias opDollar = length;
T expand;
alias expand this;
static if(T.length){
this(T values){
this.expand = values;
}
}else{
/// Silence default constructor nonsense, allow construction with
/// an empty list of arguments.
static typeof(this) opCall(){
typeof(this) value; return value;
}
}
/// Return another tuple which contains a slice of those values in this one.
auto ref slice(size_t low, size_t high)() if(
low >= 0 && high >= low && high <= this.length
){
return tuple(this.expand[low .. high]);
}
/// Return a tuple which is a concatenation of this and some other tuples.
auto ref concat(Args...)(auto ref Args args) if(All!(isTuple, Args)){
static if(Args.length == 0){
return this;
}else static if(Args.length == 1){
return Tuple!(T, Args[0].T)(this.expand, args[0].expand);
}else{
return this.concat(args[0]).concat(args[1 .. $]);
}
}
/// Return a tuple for which each value is the result of applying a unary
/// operator to every value of this tuple.
auto ref opUnary(string op)() if(
canUnaryOpTuple!(op, typeof(this))
){
static if(op == `++` || op == `--`){
foreach(i, _; T){
mixin(op ~ `this.expand[i];`);
}
return this;
}else{
alias UnOp = AsUnaryOp!op;
static if(T.length == 0){
return this;
}else static if(T.length == 1){
return tuple(UnOp(this.expand));
}else{
return tuple(
UnOp(this.expand[0]),
this.slice!(1, this.length).opUnary!op().expand
);
}
}
}
/// Return a tuple for which each value is the result of applying a binary
/// operator to every pair of values between this tuple and another.
auto ref opBinary(string op, R)(auto ref R rhs) if(
canBinaryOpTuple!(op, typeof(this), R)
){
alias BinOp = AsBinaryOp!op;
static if(T.length == 0){
return this;
}else static if(T.length == 1){
return tuple(BinOp(this.expand, rhs.expand));
}else{
return tuple(
BinOp(this.expand[0], rhs.expand[0]),
this.slice!(1, this.length).opBinary!op(
rhs.slice!(1, rhs.length)
).expand
);
}
}
auto ref opBinary(string op, R...)(auto ref R rhs) if(
!canBinaryOpTuple!(op, typeof(this), R) &&
isBinaryOpPlural!(AsBinaryOp!op, Types, .Types!R)
){
return this.opBinary!op(tuple(rhs));
}
auto ref opBinaryRight(string op, L...)(auto ref L lhs) if(
!canBinaryOpTuple!(op, L, typeof(this)) &&
isBinaryOpPlural!(AsBinaryOp!op, .Types!L, Types)
){
return tuple(lhs).opBinary!op(this);
}
void opAssign(R...)(auto ref R rhs) if(
canAssignTuple!(typeof(this), R)
){
foreach(i, _; T) this.expand[i] = rhs[0].expand[i];
}
void opAssign(R...)(auto ref R rhs) if(
!canAssignTuple!(typeof(this), R) &&
isBinaryOpPlural!((a, b){a = b; return 0;}, Types, .Types!R)
){
foreach(i, _; T) this.expand[i] = rhs[i];
}
void opOpAssign(string op, R...)(auto ref R rhs) if(
canOpAssignTuple!(op, typeof(this), R)
){
foreach(i, _; T) mixin(`this.expand[i] ` ~ op ~ `= rhs[0].expand[i];`);
}
void opOpAssign(string op, R...)(auto ref R rhs) if(
!canOpAssignTuple!(op, typeof(this), R) &&
isBinaryOpPlural!((a, b){mixin(`a ` ~ op ~ `= b;`); return 0;}, Types, .Types!R)
){
foreach(i, _; T) mixin(`this.expand[i] ` ~ op ~ `= rhs[i];`);
}
/// Compare equality of each pair of values with another tuple.
auto ref opEquals(R)(auto ref R rhs) if(
canBinaryOpTuple!(`==`, typeof(this), R)
){
foreach(i, _; T){
if(!(this.expand[i] == rhs[i])) return false;
}
return true;
}
/// Compare equality of each pair of values with a compatible sequence of
/// arguments.
auto opEquals(R...)(auto ref R rhs) if(
!canBinaryOpTuple!(`==`, typeof(this), R) &&
isBinaryOpPlural!(AsBinaryOp!`==`, Types, .Types!R)
){
return this.opEquals(tuple(rhs));
}
/// Compares pairs of values between two tuples from front to back until
/// one member of a pair is found to be greater than the other - in which
/// case this method returns a positive value - or less than the other -
/// in which case this method returns a negative value.
/// If both tuples are empty, or if no pairs have a greater or lesser value,
/// then this method returns zero.
/// Think of it like ordering strings alphabetically, where each string is
/// actually a tuple of characters.
auto opCmp(R)(auto ref R rhs) if(
canBinaryOpTuple!(`>`, typeof(this), R) &&
canBinaryOpTuple!(`<`, typeof(this), R)
){
static if(T.length == 0){
return 0;
}else{
foreach(i, _; rhs){
if(this.expand[i] > rhs[i]){
return 1;
}else if(this.expand[i] < rhs[i]){
return -1;
}else{
static if(T.length == 1){
return 0;
}else{
return this.slice!(1, this.length).opCmp(
rhs.slice!(1, rhs.length)
);
}
}
}
return true;
}
}
auto opCmp(R...)(auto ref R rhs) if(
!(
canBinaryOpTuple!(`>`, typeof(this), R) &&
canBinaryOpTuple!(`<`, typeof(this), R)
) && (
isBinaryOpPlural!(AsBinaryOp!`>`, Types, .Types!R) &&
isBinaryOpPlural!(AsBinaryOp!`<`, Types, .Types!R)
)
){
return this.opCmp(tuple(rhs));
}
/// Cast this tuple to another type of tuple.
auto opCast(To)() if(canCastTuple!(typeof(this), To)){
static if(To.length == 0){
return this;
}else static if(To.length == 1){
return tuple(cast(To.T[0]) this.expand[0]);
}else{
return tuple(
cast(To.T[0]) this.expand[0],
this.slice!(1, this.length).opCast!(
typeof(To.init.slice!(1, To.length)())
).expand
);
}
}
/// When there is only a single element in the tuple, allow it to
/// be cast to any type that the single element can be cast to.
auto opCast(To)() if(
T.length == 1 && !canCastTuple!(typeof(this), To) && is(typeof({
auto x = cast(To) this.expand[0];
}))
){
return cast(To) this.expand[0];
}
/// Get a hash which is a function of the hashes of each item in the
/// tuple.
size_t toHash()() if(All!(canHash, T)){
static if(T.length == 0){
return 0;
}else static if(T.length == 1){
return this.expand[0].hash;
}else{
size_t h = T.length;
foreach(i, _; T){
h ^= this.expand[0].hash;
}
return h;
}
}
}
version(unittest){
private:
struct TupRange(T...){
Tuple!T t;
bool empty = false;
@property auto front(){return t;}
void popFront(){this.empty = true;}
}
}
unittest{ /// isTuple template
static assert(isTuple!(Tuple!()));
static assert(isTuple!(Tuple!(int)));
static assert(isTuple!(Tuple!(int, int)));
static assert(!isTuple!(int));
static assert(!isTuple!(int[]));
static assert(!isTuple!(int[4]));
static assert(!isTuple!(string));
static assert(!isTuple!(void));
}
unittest{ /// Empty tuple
{
auto t = tuple();
static assert(t.length == 0);
static assert(t.empty);
static assert(!is(typeof({t[0];})));
assert(t == t);
assert(t + t == t);
assert(!(t < t));
assert(t <= t);
assert(t.slice!(0, 0) is t);
assert(t.concat(t) == t);
assert(t.hash == tuple().hash);
t = t;
t += t;
t = cast(Tuple!()) t;
}
{
foreach(value; tuple()){
assert(false);
}
}
{
TupRange!() range;
foreach(value; range){
static assert(is(typeof(value) == Tuple!()));
}
}
}
unittest{ /// Single-element tuple
{
auto t = tuple(0);
static assert(t.length == 1);
static assert(!t.empty);
assert(t.expand[0] == 0);
assert(t[0] == 0);
assert(t == t);
assert(t >= t);
assert(!(t > t));
assert(t + 1 == 1);
assert(t - 1 == -1);
assert(t.slice!(0, 1) is t);
assert(t.slice!(0, 0) == tuple());
assert(t.slice!(1, 1) == tuple());
assert(t.hash == tuple(0).hash);
}
{
TupRange!int range;
foreach(value; range){
static assert(is(typeof(value) == Tuple!int));
}
}
{
auto t = tuple(0);
t += 1;
assert(t == 1);
auto sum = t + t;
static assert(is(typeof(t) == typeof(sum)));
assert(sum == 2);
assert(sum > t);
assert(t <= sum);
t = sum;
assert(t == sum);
t += sum;
assert(t == sum * 2);
assert(t == 4);
t++;
assert(t == 5);
}
{
auto i = tuple!int(0);
auto f = cast(float) i;
static assert(is(typeof(f) == float));
assert(f == 0);
}
{
auto i = tuple!int(0);
auto f = cast(Tuple!float) i;
static assert(is(typeof(f) == Tuple!float));
assert(f == 0);
}
}
unittest{ /// Multiple-element tuple
{
auto t = tuple(0, 1);
static assert(t.length == 2);
static assert(!t.empty);
assert(t[0] == 0);
assert(t[1] == 1);
assert(t == t);
assert(t >= t);
assert(!(t > t));
assert(t + tuple(1, 2) == tuple(1, 3));
assert(-t == tuple(0, -1));
assert(t.slice!(0, 2) is t);
assert(t.slice!(0, 1) == tuple(t[0]));
assert(t.slice!(0, 0) == tuple());
assert(t.slice!(2, 2) == tuple());
assert(t.concat(t) == tuple(0, 1, 0, 1));
assert(t.hash == tuple(0, 1).hash);
}
{
TupRange!(int, int) range;
foreach(value; range){
static assert(is(typeof(value) == Tuple!(int, int)));
}
foreach(x, y; range){
static assert(is(typeof(x) == int));
static assert(is(typeof(y) == int));
}
}
{
TupRange!(string, string, int, int) range;
foreach(value; range){
static assert(is(typeof(value) == Tuple!(string, string, int, int)));
}
foreach(x, y, z, w; range){
static assert(is(typeof(x) == string));
static assert(is(typeof(y) == string));
static assert(is(typeof(z) == int));
static assert(is(typeof(w) == int));
}
}
{
auto t = tuple(0, 1);
t++;
assert(t[0] == 1);
assert(t[1] == 2);
t *= tuple(2, 2);
assert(t[0] == 2);
assert(t[1] == 4);
t = t - tuple(1, 1);
assert(t[0] == 1);
assert(t[1] == 3);
}
{
auto i = tuple!(int, int)(0, 1);
auto f = cast(Tuple!(float, float)) i;
static assert(is(typeof(f) == Tuple!(float, float)));
assert(f == i);
}
}
unittest{ /// Concatenation
assert(tuple().concat() is tuple());
assert(tuple().concat(tuple()) is tuple());
assert(tuple().concat(tuple(), tuple()) is tuple());
assert(tuple().concat(tuple(1)) is tuple(1));
assert(tuple(1).concat(tuple()) is tuple(1));
assert(tuple().concat(tuple(1, 2)) is tuple(1, 2));
assert(tuple(0).concat(tuple(1, 2)) is tuple(0, 1, 2));
assert(tuple().concat(tuple(1), tuple(2, 3), tuple(4)) is tuple(1, 2, 3, 4));
assert(tuple(0, 0).concat(tuple(1), tuple(2, 3), tuple(4)) is tuple(0, 0, 1, 2, 3, 4));
}
|
D
|
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.4.0 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
Build : 2.4.0-f0842aea0e77
Exec : simpleFoam
Date : Nov 13 2015
Time : 13:29:26
Host : "ubuntu"
PID : 19722
Case : /home/brennanharris/OpenFOAM/brennanharris-2.4.0/run/team/case8/V_dbldblUM
nProcs : 1
sigFpe : Enabling floating point exception trapping (FOAM_SIGFPE).
fileModificationChecking : Monitoring run-time modified files using timeStampMaster
allowSystemOperations : Allowing user-supplied system call operations
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Create time
Create mesh for time = 0
Reading field p
Reading field U
Reading/calculating face flux field phi
Selecting incompressible transport model Newtonian
Selecting RAS turbulence model kOmegaSST
kOmegaSSTCoeffs
{
alphaK1 0.85;
alphaK2 1;
alphaOmega1 0.5;
alphaOmega2 0.856;
gamma1 0.555556;
gamma2 0.44;
beta1 0.075;
beta2 0.0828;
betaStar 0.09;
a1 0.31;
b1 1;
c1 10;
F3 false;
}
No finite volume options present
SIMPLE: convergence criteria
field p tolerance 0.01
field U tolerance 0.001
field "(k|epsilon|omega)" tolerance 0.001
Starting time loop
Time = 1
smoothSolver: Solving for Ux, Initial residual = 1, Final residual = 0.0321616, No Iterations 1
smoothSolver: Solving for Uy, Initial residual = 1, Final residual = 0.0334111, No Iterations 1
GAMG: Solving for p, Initial residual = 1, Final residual = 0.00862455, No Iterations 13
time step continuity errors : sum local = 0.150911, global = 0.0293555, cumulative = 0.0293555
smoothSolver: Solving for omega, Initial residual = 0.127678, Final residual = 0.00887725, No Iterations 3
smoothSolver: Solving for k, Initial residual = 1, Final residual = 0.085667, No Iterations 3
ExecutionTime = 0.64 s ClockTime = 0 s
Time = 2
smoothSolver: Solving for Ux, Initial residual = 0.858092, Final residual = 0.0726569, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.579337, Final residual = 0.0377508, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0942502, Final residual = 0.000670414, No Iterations 7
time step continuity errors : sum local = 0.921224, global = -0.0957838, cumulative = -0.0664284
smoothSolver: Solving for omega, Initial residual = 0.0856025, Final residual = 0.00750811, No Iterations 2
smoothSolver: Solving for k, Initial residual = 0.890653, Final residual = 0.0675104, No Iterations 2
ExecutionTime = 0.81 s ClockTime = 0 s
Time = 3
smoothSolver: Solving for Ux, Initial residual = 0.708465, Final residual = 0.0462164, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.238942, Final residual = 0.0138036, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0827757, Final residual = 0.000460335, No Iterations 11
time step continuity errors : sum local = 0.790315, global = 0.0993416, cumulative = 0.0329132
smoothSolver: Solving for omega, Initial residual = 0.110249, Final residual = 0.00604524, No Iterations 1
smoothSolver: Solving for k, Initial residual = 0.287619, Final residual = 0.0177138, No Iterations 2
ExecutionTime = 1.01 s ClockTime = 1 s
Time = 4
smoothSolver: Solving for Ux, Initial residual = 0.0532803, Final residual = 0.00231607, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.122112, Final residual = 0.00775277, No Iterations 3
GAMG: Solving for p, Initial residual = 0.625053, Final residual = 0.00354561, No Iterations 9
time step continuity errors : sum local = 1.07275, global = 0.247154, cumulative = 0.280068
smoothSolver: Solving for omega, Initial residual = 0.0369592, Final residual = 0.0018386, No Iterations 2
smoothSolver: Solving for k, Initial residual = 0.202504, Final residual = 0.00974406, No Iterations 2
ExecutionTime = 1.19 s ClockTime = 1 s
Time = 5
smoothSolver: Solving for Ux, Initial residual = 0.522527, Final residual = 0.0297073, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.232003, Final residual = 0.0229669, No Iterations 3
GAMG: Solving for p, Initial residual = 0.11989, Final residual = 0.00112562, No Iterations 6
time step continuity errors : sum local = 1.73995, global = -0.368914, cumulative = -0.0888464
smoothSolver: Solving for omega, Initial residual = 0.0315393, Final residual = 0.00222714, No Iterations 2
smoothSolver: Solving for k, Initial residual = 0.232326, Final residual = 0.0173023, No Iterations 2
ExecutionTime = 1.35 s ClockTime = 1 s
Time = 6
smoothSolver: Solving for Ux, Initial residual = 0.518713, Final residual = 0.025402, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.378154, Final residual = 0.0351049, No Iterations 3
GAMG: Solving for p, Initial residual = 0.138709, Final residual = 0.00112178, No Iterations 8
time step continuity errors : sum local = 1.46271, global = -0.0225158, cumulative = -0.111362
smoothSolver: Solving for omega, Initial residual = 0.0337484, Final residual = 0.00227755, No Iterations 2
smoothSolver: Solving for k, Initial residual = 0.217549, Final residual = 0.018632, No Iterations 2
ExecutionTime = 1.52 s ClockTime = 1 s
Time = 7
smoothSolver: Solving for Ux, Initial residual = 0.091805, Final residual = 0.00401613, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.32731, Final residual = 0.0189121, No Iterations 3
GAMG: Solving for p, Initial residual = 0.543986, Final residual = 0.00285851, No Iterations 8
time step continuity errors : sum local = 0.856645, global = 0.103883, cumulative = -0.00747881
smoothSolver: Solving for omega, Initial residual = 0.0270826, Final residual = 0.00204522, No Iterations 2
smoothSolver: Solving for k, Initial residual = 0.12672, Final residual = 0.00572809, No Iterations 3
ExecutionTime = 1.71 s ClockTime = 1 s
Time = 8
smoothSolver: Solving for Ux, Initial residual = 0.377167, Final residual = 0.0213569, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.241903, Final residual = 0.0229577, No Iterations 3
GAMG: Solving for p, Initial residual = 0.165036, Final residual = 0.00103841, No Iterations 5
time step continuity errors : sum local = 0.815314, global = -0.138527, cumulative = -0.146006
smoothSolver: Solving for omega, Initial residual = 0.0236889, Final residual = 0.00185279, No Iterations 2
smoothSolver: Solving for k, Initial residual = 0.0813924, Final residual = 0.00376172, No Iterations 3
ExecutionTime = 1.85 s ClockTime = 2 s
Time = 9
smoothSolver: Solving for Ux, Initial residual = 0.283949, Final residual = 0.0173226, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.181657, Final residual = 0.0162888, No Iterations 3
GAMG: Solving for p, Initial residual = 0.209856, Final residual = 0.0016691, No Iterations 8
time step continuity errors : sum local = 0.872473, global = -0.0780338, cumulative = -0.22404
smoothSolver: Solving for omega, Initial residual = 0.0197765, Final residual = 0.00168902, No Iterations 2
smoothSolver: Solving for k, Initial residual = 0.0654846, Final residual = 0.00302392, No Iterations 3
ExecutionTime = 2.02 s ClockTime = 2 s
Time = 10
smoothSolver: Solving for Ux, Initial residual = 0.0999155, Final residual = 0.00463318, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.143078, Final residual = 0.00955474, No Iterations 3
GAMG: Solving for p, Initial residual = 0.559929, Final residual = 0.00414186, No Iterations 7
time step continuity errors : sum local = 0.82687, global = 0.00723575, cumulative = -0.216804
smoothSolver: Solving for omega, Initial residual = 0.0164487, Final residual = 0.00160017, No Iterations 2
smoothSolver: Solving for k, Initial residual = 0.0557822, Final residual = 0.00264744, No Iterations 3
ExecutionTime = 2.18 s ClockTime = 2 s
Time = 11
smoothSolver: Solving for Ux, Initial residual = 0.29363, Final residual = 0.0167083, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.123105, Final residual = 0.0121687, No Iterations 3
GAMG: Solving for p, Initial residual = 0.212574, Final residual = 0.00203131, No Iterations 5
time step continuity errors : sum local = 0.87666, global = 0.125037, cumulative = -0.091767
smoothSolver: Solving for omega, Initial residual = 0.0143414, Final residual = 0.000715328, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0526386, Final residual = 0.00252688, No Iterations 3
ExecutionTime = 2.33 s ClockTime = 2 s
Time = 12
smoothSolver: Solving for Ux, Initial residual = 0.175213, Final residual = 0.010078, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.197846, Final residual = 0.0166504, No Iterations 3
GAMG: Solving for p, Initial residual = 0.253337, Final residual = 0.00166175, No Iterations 8
time step continuity errors : sum local = 0.486648, global = 0.0431069, cumulative = -0.04866
smoothSolver: Solving for omega, Initial residual = 0.0134865, Final residual = 0.000696976, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0454548, Final residual = 0.00236244, No Iterations 3
ExecutionTime = 2.51 s ClockTime = 3 s
Time = 13
smoothSolver: Solving for Ux, Initial residual = 0.0886053, Final residual = 0.00474206, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.159825, Final residual = 0.0105826, No Iterations 3
GAMG: Solving for p, Initial residual = 0.467052, Final residual = 0.0031049, No Iterations 6
time step continuity errors : sum local = 0.527855, global = -0.00459327, cumulative = -0.0532533
smoothSolver: Solving for omega, Initial residual = 0.012924, Final residual = 0.000671387, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0393152, Final residual = 0.00225406, No Iterations 3
ExecutionTime = 2.68 s ClockTime = 3 s
Time = 14
smoothSolver: Solving for Ux, Initial residual = 0.172951, Final residual = 0.0104938, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0925219, Final residual = 0.00871256, No Iterations 3
GAMG: Solving for p, Initial residual = 0.236892, Final residual = 0.00236077, No Iterations 5
time step continuity errors : sum local = 0.624797, global = -0.141009, cumulative = -0.194262
smoothSolver: Solving for omega, Initial residual = 0.0121381, Final residual = 0.000646855, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0363759, Final residual = 0.00221043, No Iterations 3
ExecutionTime = 2.83 s ClockTime = 3 s
Time = 15
smoothSolver: Solving for Ux, Initial residual = 0.0877788, Final residual = 0.00579448, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.119007, Final residual = 0.00997561, No Iterations 3
GAMG: Solving for p, Initial residual = 0.310166, Final residual = 0.00281706, No Iterations 7
time step continuity errors : sum local = 0.462392, global = -0.0349086, cumulative = -0.229171
smoothSolver: Solving for omega, Initial residual = 0.0112459, Final residual = 0.000618098, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0341909, Final residual = 0.00217914, No Iterations 3
ExecutionTime = 3 s ClockTime = 3 s
Time = 16
smoothSolver: Solving for Ux, Initial residual = 0.0683917, Final residual = 0.00360101, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.082769, Final residual = 0.00609037, No Iterations 3
GAMG: Solving for p, Initial residual = 0.484341, Final residual = 0.00465612, No Iterations 5
time step continuity errors : sum local = 0.54145, global = 0.0626269, cumulative = -0.166544
smoothSolver: Solving for omega, Initial residual = 0.0104126, Final residual = 0.000586792, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0327929, Final residual = 0.0021299, No Iterations 3
ExecutionTime = 3.15 s ClockTime = 3 s
Time = 17
smoothSolver: Solving for Ux, Initial residual = 0.105954, Final residual = 0.00632584, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0570435, Final residual = 0.00508748, No Iterations 3
GAMG: Solving for p, Initial residual = 0.291318, Final residual = 0.00254374, No Iterations 5
time step continuity errors : sum local = 0.393979, global = 0.0939817, cumulative = -0.0725625
smoothSolver: Solving for omega, Initial residual = 0.00960093, Final residual = 0.000559391, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0320449, Final residual = 0.00211149, No Iterations 3
ExecutionTime = 3.3 s ClockTime = 3 s
Time = 18
smoothSolver: Solving for Ux, Initial residual = 0.047562, Final residual = 0.00283292, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0947328, Final residual = 0.00790822, No Iterations 3
GAMG: Solving for p, Initial residual = 0.418107, Final residual = 0.00301794, No Iterations 6
time step continuity errors : sum local = 0.282923, global = -0.0454581, cumulative = -0.118021
smoothSolver: Solving for omega, Initial residual = 0.00895916, Final residual = 0.000529792, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0305674, Final residual = 0.00207581, No Iterations 3
ExecutionTime = 3.45 s ClockTime = 4 s
Time = 19
smoothSolver: Solving for Ux, Initial residual = 0.0488307, Final residual = 0.00283253, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0617502, Final residual = 0.00485746, No Iterations 3
GAMG: Solving for p, Initial residual = 0.472486, Final residual = 0.00404599, No Iterations 5
time step continuity errors : sum local = 0.360967, global = -0.0636535, cumulative = -0.181674
smoothSolver: Solving for omega, Initial residual = 0.00847515, Final residual = 0.000505509, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0288889, Final residual = 0.0020347, No Iterations 3
ExecutionTime = 3.59 s ClockTime = 4 s
Time = 20
smoothSolver: Solving for Ux, Initial residual = 0.0618603, Final residual = 0.00398821, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0464448, Final residual = 0.00393557, No Iterations 3
GAMG: Solving for p, Initial residual = 0.328101, Final residual = 0.00301332, No Iterations 5
time step continuity errors : sum local = 0.308957, global = -0.0652198, cumulative = -0.246894
smoothSolver: Solving for omega, Initial residual = 0.00803947, Final residual = 0.000484112, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0277153, Final residual = 0.00198372, No Iterations 3
ExecutionTime = 3.74 s ClockTime = 4 s
Time = 21
smoothSolver: Solving for Ux, Initial residual = 0.0299201, Final residual = 0.00191783, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.065476, Final residual = 0.00540127, No Iterations 3
GAMG: Solving for p, Initial residual = 0.447449, Final residual = 0.00339356, No Iterations 5
time step continuity errors : sum local = 0.231492, global = -0.0529116, cumulative = -0.299806
smoothSolver: Solving for omega, Initial residual = 0.00764312, Final residual = 0.000462432, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0269066, Final residual = 0.00194546, No Iterations 3
ExecutionTime = 3.89 s ClockTime = 4 s
Time = 22
smoothSolver: Solving for Ux, Initial residual = 0.0321785, Final residual = 0.00174102, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0396499, Final residual = 0.00316782, No Iterations 3
GAMG: Solving for p, Initial residual = 0.544807, Final residual = 0.00471936, No Iterations 4
time step continuity errors : sum local = 0.277187, global = 0.00214125, cumulative = -0.297664
smoothSolver: Solving for omega, Initial residual = 0.00726461, Final residual = 0.00044159, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0264133, Final residual = 0.00191526, No Iterations 3
ExecutionTime = 4.02 s ClockTime = 4 s
Time = 23
smoothSolver: Solving for Ux, Initial residual = 0.0363891, Final residual = 0.00212076, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0322166, Final residual = 0.00256208, No Iterations 3
GAMG: Solving for p, Initial residual = 0.421845, Final residual = 0.003703, No Iterations 5
time step continuity errors : sum local = 0.234758, global = 0.0420927, cumulative = -0.255572
smoothSolver: Solving for omega, Initial residual = 0.00692473, Final residual = 0.000421143, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0259906, Final residual = 0.00189509, No Iterations 3
ExecutionTime = 4.16 s ClockTime = 4 s
Time = 24
smoothSolver: Solving for Ux, Initial residual = 0.0206012, Final residual = 0.00111125, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0437096, Final residual = 0.00366865, No Iterations 3
GAMG: Solving for p, Initial residual = 0.589035, Final residual = 0.0048671, No Iterations 5
time step continuity errors : sum local = 0.209422, global = 0.0396735, cumulative = -0.215898
smoothSolver: Solving for omega, Initial residual = 0.00655136, Final residual = 0.000400657, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0252673, Final residual = 0.00186988, No Iterations 3
ExecutionTime = 4.32 s ClockTime = 4 s
Time = 25
smoothSolver: Solving for Ux, Initial residual = 0.023882, Final residual = 0.0014215, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0266359, Final residual = 0.00228665, No Iterations 3
GAMG: Solving for p, Initial residual = 0.512666, Final residual = 0.0042623, No Iterations 4
time step continuity errors : sum local = 0.213114, global = 0.0191315, cumulative = -0.196767
smoothSolver: Solving for omega, Initial residual = 0.00619958, Final residual = 0.000381411, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.024445, Final residual = 0.00183765, No Iterations 3
ExecutionTime = 4.45 s ClockTime = 5 s
Time = 26
smoothSolver: Solving for Ux, Initial residual = 0.0254293, Final residual = 0.00160852, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0289987, Final residual = 0.00229331, No Iterations 3
GAMG: Solving for p, Initial residual = 0.427483, Final residual = 0.00282136, No Iterations 5
time step continuity errors : sum local = 0.144401, global = -0.0234538, cumulative = -0.22022
smoothSolver: Solving for omega, Initial residual = 0.00589006, Final residual = 0.000361888, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0237373, Final residual = 0.00180215, No Iterations 3
ExecutionTime = 4.61 s ClockTime = 5 s
Time = 27
smoothSolver: Solving for Ux, Initial residual = 0.0163729, Final residual = 0.00097953, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0335024, Final residual = 0.00270387, No Iterations 3
GAMG: Solving for p, Initial residual = 0.546267, Final residual = 0.00424478, No Iterations 5
time step continuity errors : sum local = 0.162743, global = -0.0308117, cumulative = -0.251032
smoothSolver: Solving for omega, Initial residual = 0.00563682, Final residual = 0.000343858, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0231998, Final residual = 0.00177009, No Iterations 3
ExecutionTime = 4.75 s ClockTime = 5 s
Time = 28
smoothSolver: Solving for Ux, Initial residual = 0.01731, Final residual = 0.000967785, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0216633, Final residual = 0.00174067, No Iterations 3
GAMG: Solving for p, Initial residual = 0.603758, Final residual = 0.00569863, No Iterations 4
time step continuity errors : sum local = 0.194054, global = -0.0115935, cumulative = -0.262625
smoothSolver: Solving for omega, Initial residual = 0.00540667, Final residual = 0.00032611, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0227999, Final residual = 0.00174149, No Iterations 3
ExecutionTime = 4.88 s ClockTime = 5 s
Time = 29
smoothSolver: Solving for Ux, Initial residual = 0.0176117, Final residual = 0.000995986, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0201171, Final residual = 0.0015226, No Iterations 3
GAMG: Solving for p, Initial residual = 0.551333, Final residual = 0.00375858, No Iterations 4
time step continuity errors : sum local = 0.124009, global = -0.0310873, cumulative = -0.293713
smoothSolver: Solving for omega, Initial residual = 0.00514219, Final residual = 0.000309167, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0223312, Final residual = 0.00171433, No Iterations 3
ExecutionTime = 5.01 s ClockTime = 5 s
Time = 30
smoothSolver: Solving for Ux, Initial residual = 0.0139958, Final residual = 0.000796322, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0222216, Final residual = 0.00182894, No Iterations 3
GAMG: Solving for p, Initial residual = 0.669135, Final residual = 0.00446433, No Iterations 4
time step continuity errors : sum local = 0.117835, global = -0.0142683, cumulative = -0.307981
smoothSolver: Solving for omega, Initial residual = 0.00490401, Final residual = 0.000292989, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0217786, Final residual = 0.00168394, No Iterations 3
ExecutionTime = 5.15 s ClockTime = 5 s
Time = 31
smoothSolver: Solving for Ux, Initial residual = 0.0141328, Final residual = 0.000854617, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0181817, Final residual = 0.00152525, No Iterations 3
GAMG: Solving for p, Initial residual = 0.536501, Final residual = 0.00447981, No Iterations 4
time step continuity errors : sum local = 0.142982, global = 0.0117686, cumulative = -0.296213
smoothSolver: Solving for omega, Initial residual = 0.00467958, Final residual = 0.000277692, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0211846, Final residual = 0.00164984, No Iterations 3
ExecutionTime = 5.28 s ClockTime = 5 s
Time = 32
smoothSolver: Solving for Ux, Initial residual = 0.0143941, Final residual = 0.000891529, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0200346, Final residual = 0.00162753, No Iterations 3
GAMG: Solving for p, Initial residual = 0.484946, Final residual = 0.00272587, No Iterations 4
time step continuity errors : sum local = 0.087644, global = 0.00795851, cumulative = -0.288254
smoothSolver: Solving for omega, Initial residual = 0.00447184, Final residual = 0.000263449, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0206087, Final residual = 0.00160932, No Iterations 3
ExecutionTime = 5.41 s ClockTime = 6 s
Time = 33
smoothSolver: Solving for Ux, Initial residual = 0.0124745, Final residual = 0.000766425, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0201751, Final residual = 0.00167395, No Iterations 3
GAMG: Solving for p, Initial residual = 0.53019, Final residual = 0.0024644, No Iterations 4
time step continuity errors : sum local = 0.0691901, global = 0.0101642, cumulative = -0.27809
smoothSolver: Solving for omega, Initial residual = 0.00429354, Final residual = 0.000250829, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0200985, Final residual = 0.00156692, No Iterations 3
ExecutionTime = 5.55 s ClockTime = 6 s
Time = 34
smoothSolver: Solving for Ux, Initial residual = 0.0119618, Final residual = 0.000713475, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.016568, Final residual = 0.00140002, No Iterations 3
GAMG: Solving for p, Initial residual = 0.615042, Final residual = 0.00365529, No Iterations 4
time step continuity errors : sum local = 0.0843165, global = -0.0040493, cumulative = -0.282139
smoothSolver: Solving for omega, Initial residual = 0.00415135, Final residual = 0.000241661, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0196144, Final residual = 0.00152576, No Iterations 3
ExecutionTime = 5.68 s ClockTime = 6 s
Time = 35
smoothSolver: Solving for Ux, Initial residual = 0.0121219, Final residual = 0.000719513, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0160179, Final residual = 0.00134642, No Iterations 3
GAMG: Solving for p, Initial residual = 0.622188, Final residual = 0.00299595, No Iterations 4
time step continuity errors : sum local = 0.0639395, global = 0.00126309, cumulative = -0.280876
smoothSolver: Solving for omega, Initial residual = 0.00402685, Final residual = 0.000235418, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0191395, Final residual = 0.00148696, No Iterations 3
ExecutionTime = 5.82 s ClockTime = 6 s
Time = 36
smoothSolver: Solving for Ux, Initial residual = 0.0112011, Final residual = 0.000679497, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.016223, Final residual = 0.00141223, No Iterations 3
GAMG: Solving for p, Initial residual = 0.60808, Final residual = 0.00258834, No Iterations 4
time step continuity errors : sum local = 0.054573, global = -0.00518418, cumulative = -0.28606
smoothSolver: Solving for omega, Initial residual = 0.00391647, Final residual = 0.000230599, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0186343, Final residual = 0.00144928, No Iterations 3
ExecutionTime = 5.96 s ClockTime = 6 s
Time = 37
smoothSolver: Solving for Ux, Initial residual = 0.01083, Final residual = 0.000672293, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0157851, Final residual = 0.00139854, No Iterations 3
GAMG: Solving for p, Initial residual = 0.539209, Final residual = 0.00241229, No Iterations 4
time step continuity errors : sum local = 0.0549663, global = -0.00451143, cumulative = -0.290572
smoothSolver: Solving for omega, Initial residual = 0.00381525, Final residual = 0.00022667, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0181155, Final residual = 0.00141326, No Iterations 3
ExecutionTime = 6.09 s ClockTime = 6 s
Time = 38
smoothSolver: Solving for Ux, Initial residual = 0.0109234, Final residual = 0.00068537, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0162456, Final residual = 0.00144078, No Iterations 3
GAMG: Solving for p, Initial residual = 0.499081, Final residual = 0.00241065, No Iterations 4
time step continuity errors : sum local = 0.0561553, global = -0.00412447, cumulative = -0.294696
smoothSolver: Solving for omega, Initial residual = 0.00371959, Final residual = 0.000222508, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0176354, Final residual = 0.00137974, No Iterations 3
ExecutionTime = 6.22 s ClockTime = 6 s
Time = 39
smoothSolver: Solving for Ux, Initial residual = 0.0104276, Final residual = 0.000657043, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0156281, Final residual = 0.00140849, No Iterations 3
GAMG: Solving for p, Initial residual = 0.505636, Final residual = 0.00200646, No Iterations 4
time step continuity errors : sum local = 0.0440678, global = -0.00723274, cumulative = -0.301929
smoothSolver: Solving for omega, Initial residual = 0.00361825, Final residual = 0.000217966, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0172086, Final residual = 0.00134907, No Iterations 3
ExecutionTime = 6.36 s ClockTime = 7 s
Time = 40
smoothSolver: Solving for Ux, Initial residual = 0.010046, Final residual = 0.000631061, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0146614, Final residual = 0.00132113, No Iterations 3
GAMG: Solving for p, Initial residual = 0.540422, Final residual = 0.00258964, No Iterations 4
time step continuity errors : sum local = 0.0506601, global = -0.00846365, cumulative = -0.310393
smoothSolver: Solving for omega, Initial residual = 0.00353384, Final residual = 0.000213166, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0168174, Final residual = 0.00132173, No Iterations 3
ExecutionTime = 6.5 s ClockTime = 7 s
Time = 41
smoothSolver: Solving for Ux, Initial residual = 0.00993501, Final residual = 0.000627483, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0145567, Final residual = 0.00128281, No Iterations 3
GAMG: Solving for p, Initial residual = 0.563183, Final residual = 0.00243934, No Iterations 4
time step continuity errors : sum local = 0.0439082, global = -0.00312028, cumulative = -0.313513
smoothSolver: Solving for omega, Initial residual = 0.00345452, Final residual = 0.000208245, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0164691, Final residual = 0.00129723, No Iterations 3
ExecutionTime = 6.63 s ClockTime = 7 s
Time = 42
smoothSolver: Solving for Ux, Initial residual = 0.00959375, Final residual = 0.000616259, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.014622, Final residual = 0.00127824, No Iterations 3
GAMG: Solving for p, Initial residual = 0.555446, Final residual = 0.00181134, No Iterations 4
time step continuity errors : sum local = 0.0319613, global = -0.00430524, cumulative = -0.317818
smoothSolver: Solving for omega, Initial residual = 0.00338304, Final residual = 0.000203009, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0161433, Final residual = 0.00127449, No Iterations 3
ExecutionTime = 6.76 s ClockTime = 7 s
Time = 43
smoothSolver: Solving for Ux, Initial residual = 0.00947113, Final residual = 0.000612999, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0144979, Final residual = 0.00127225, No Iterations 3
GAMG: Solving for p, Initial residual = 0.521853, Final residual = 0.0047909, No Iterations 3
time step continuity errors : sum local = 0.0863517, global = -0.00584855, cumulative = -0.323667
smoothSolver: Solving for omega, Initial residual = 0.00331643, Final residual = 0.000197636, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0158402, Final residual = 0.00125496, No Iterations 3
ExecutionTime = 6.9 s ClockTime = 7 s
Time = 44
smoothSolver: Solving for Ux, Initial residual = 0.00938632, Final residual = 0.000610645, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0143867, Final residual = 0.00127034, No Iterations 3
GAMG: Solving for p, Initial residual = 0.505878, Final residual = 0.00216865, No Iterations 4
time step continuity errors : sum local = 0.0386108, global = 0.00146689, cumulative = -0.3222
smoothSolver: Solving for omega, Initial residual = 0.00324776, Final residual = 0.000192352, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0155587, Final residual = 0.0012372, No Iterations 3
ExecutionTime = 7.04 s ClockTime = 7 s
Time = 45
smoothSolver: Solving for Ux, Initial residual = 0.00924424, Final residual = 0.000605241, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0141187, Final residual = 0.0012467, No Iterations 3
GAMG: Solving for p, Initial residual = 0.492445, Final residual = 0.0019114, No Iterations 4
time step continuity errors : sum local = 0.0335076, global = -0.0021754, cumulative = -0.324375
smoothSolver: Solving for omega, Initial residual = 0.00317516, Final residual = 0.000187236, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0152879, Final residual = 0.00121931, No Iterations 3
ExecutionTime = 7.18 s ClockTime = 7 s
Time = 46
smoothSolver: Solving for Ux, Initial residual = 0.00904135, Final residual = 0.000596312, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0139614, Final residual = 0.0012158, No Iterations 3
GAMG: Solving for p, Initial residual = 0.495041, Final residual = 0.00458245, No Iterations 3
time step continuity errors : sum local = 0.0767587, global = 0.00399375, cumulative = -0.320381
smoothSolver: Solving for omega, Initial residual = 0.0031091, Final residual = 0.00018235, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.015031, Final residual = 0.001201, No Iterations 3
ExecutionTime = 7.3 s ClockTime = 7 s
Time = 47
smoothSolver: Solving for Ux, Initial residual = 0.00878968, Final residual = 0.000585915, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0139357, Final residual = 0.00119617, No Iterations 3
GAMG: Solving for p, Initial residual = 0.499085, Final residual = 0.0043561, No Iterations 3
time step continuity errors : sum local = 0.0698785, global = 0.00433567, cumulative = -0.316046
smoothSolver: Solving for omega, Initial residual = 0.00305411, Final residual = 0.000177943, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0148027, Final residual = 0.00118405, No Iterations 3
ExecutionTime = 7.43 s ClockTime = 8 s
Time = 48
smoothSolver: Solving for Ux, Initial residual = 0.00861248, Final residual = 0.000575201, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0139212, Final residual = 0.00118927, No Iterations 3
GAMG: Solving for p, Initial residual = 0.504902, Final residual = 0.00462656, No Iterations 3
time step continuity errors : sum local = 0.0704443, global = 0.0055809, cumulative = -0.310465
smoothSolver: Solving for omega, Initial residual = 0.00301926, Final residual = 0.000173792, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0145924, Final residual = 0.00116714, No Iterations 3
ExecutionTime = 7.55 s ClockTime = 8 s
Time = 49
smoothSolver: Solving for Ux, Initial residual = 0.00855824, Final residual = 0.000569002, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0139448, Final residual = 0.00118893, No Iterations 3
GAMG: Solving for p, Initial residual = 0.502706, Final residual = 0.00200051, No Iterations 4
time step continuity errors : sum local = 0.0293379, global = 0.00158554, cumulative = -0.308879
smoothSolver: Solving for omega, Initial residual = 0.002993, Final residual = 0.000170106, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.014391, Final residual = 0.00115125, No Iterations 3
ExecutionTime = 7.69 s ClockTime = 8 s
Time = 50
smoothSolver: Solving for Ux, Initial residual = 0.00844841, Final residual = 0.00055981, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0139617, Final residual = 0.0011915, No Iterations 3
GAMG: Solving for p, Initial residual = 0.505545, Final residual = 0.0050435, No Iterations 3
time step continuity errors : sum local = 0.0710228, global = -0.0008332, cumulative = -0.309712
smoothSolver: Solving for omega, Initial residual = 0.00296993, Final residual = 0.00016683, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0141973, Final residual = 0.00113584, No Iterations 3
ExecutionTime = 8.03 s ClockTime = 8 s
Time = 51
smoothSolver: Solving for Ux, Initial residual = 0.00826032, Final residual = 0.000550109, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0138678, Final residual = 0.0011855, No Iterations 3
GAMG: Solving for p, Initial residual = 0.502792, Final residual = 0.00499515, No Iterations 3
time step continuity errors : sum local = 0.0684239, global = -0.00538561, cumulative = -0.315098
smoothSolver: Solving for omega, Initial residual = 0.00294106, Final residual = 0.000164013, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0140098, Final residual = 0.00112069, No Iterations 3
ExecutionTime = 8.16 s ClockTime = 8 s
Time = 52
smoothSolver: Solving for Ux, Initial residual = 0.00806765, Final residual = 0.000541352, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0137714, Final residual = 0.00117108, No Iterations 3
GAMG: Solving for p, Initial residual = 0.495307, Final residual = 0.00445454, No Iterations 3
time step continuity errors : sum local = 0.0594895, global = -0.00358737, cumulative = -0.318685
smoothSolver: Solving for omega, Initial residual = 0.00291286, Final residual = 0.00016157, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0138323, Final residual = 0.00110673, No Iterations 3
ExecutionTime = 8.28 s ClockTime = 8 s
Time = 53
smoothSolver: Solving for Ux, Initial residual = 0.00787104, Final residual = 0.0005344, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0137285, Final residual = 0.00115482, No Iterations 3
GAMG: Solving for p, Initial residual = 0.478475, Final residual = 0.0041987, No Iterations 3
time step continuity errors : sum local = 0.0558329, global = -0.00380247, cumulative = -0.322488
smoothSolver: Solving for omega, Initial residual = 0.00288583, Final residual = 0.000159283, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.013669, Final residual = 0.00109274, No Iterations 3
ExecutionTime = 8.41 s ClockTime = 9 s
Time = 54
smoothSolver: Solving for Ux, Initial residual = 0.0077393, Final residual = 0.000529199, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0138006, Final residual = 0.00114949, No Iterations 3
GAMG: Solving for p, Initial residual = 0.464441, Final residual = 0.00461235, No Iterations 3
time step continuity errors : sum local = 0.0607061, global = -0.00284496, cumulative = -0.325333
smoothSolver: Solving for omega, Initial residual = 0.00285955, Final residual = 0.000157337, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0135175, Final residual = 0.00107932, No Iterations 3
ExecutionTime = 8.53 s ClockTime = 9 s
Time = 55
smoothSolver: Solving for Ux, Initial residual = 0.00767342, Final residual = 0.000525017, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0139362, Final residual = 0.00115446, No Iterations 3
GAMG: Solving for p, Initial residual = 0.458813, Final residual = 0.00452672, No Iterations 3
time step continuity errors : sum local = 0.0583115, global = 0.00118, cumulative = -0.324153
smoothSolver: Solving for omega, Initial residual = 0.00283203, Final residual = 0.00015552, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0133779, Final residual = 0.00106738, No Iterations 3
ExecutionTime = 8.66 s ClockTime = 9 s
Time = 56
smoothSolver: Solving for Ux, Initial residual = 0.00757971, Final residual = 0.000519716, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0140317, Final residual = 0.00116842, No Iterations 3
GAMG: Solving for p, Initial residual = 0.453549, Final residual = 0.00433909, No Iterations 3
time step continuity errors : sum local = 0.0546606, global = 0.00485049, cumulative = -0.319302
smoothSolver: Solving for omega, Initial residual = 0.00279969, Final residual = 0.000154072, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0132502, Final residual = 0.00105646, No Iterations 3
ExecutionTime = 8.78 s ClockTime = 9 s
Time = 57
smoothSolver: Solving for Ux, Initial residual = 0.00743763, Final residual = 0.000513302, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0140978, Final residual = 0.00118387, No Iterations 3
GAMG: Solving for p, Initial residual = 0.446744, Final residual = 0.00434364, No Iterations 3
time step continuity errors : sum local = 0.0531841, global = 0.00359487, cumulative = -0.315707
smoothSolver: Solving for omega, Initial residual = 0.00276419, Final residual = 0.000152712, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.013119, Final residual = 0.00104611, No Iterations 3
ExecutionTime = 8.91 s ClockTime = 9 s
Time = 58
smoothSolver: Solving for Ux, Initial residual = 0.00729713, Final residual = 0.000508245, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0141956, Final residual = 0.00119478, No Iterations 3
GAMG: Solving for p, Initial residual = 0.444622, Final residual = 0.00427707, No Iterations 3
time step continuity errors : sum local = 0.0500708, global = 0.00323243, cumulative = -0.312475
smoothSolver: Solving for omega, Initial residual = 0.00272765, Final residual = 0.000151585, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0129864, Final residual = 0.00103633, No Iterations 3
ExecutionTime = 9.03 s ClockTime = 9 s
Time = 59
smoothSolver: Solving for Ux, Initial residual = 0.00712553, Final residual = 0.000502866, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0142161, Final residual = 0.00119442, No Iterations 3
GAMG: Solving for p, Initial residual = 0.44854, Final residual = 0.00393446, No Iterations 3
time step continuity errors : sum local = 0.0440573, global = 0.00289742, cumulative = -0.309578
smoothSolver: Solving for omega, Initial residual = 0.00269339, Final residual = 0.000150439, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0128547, Final residual = 0.00102717, No Iterations 3
ExecutionTime = 9.16 s ClockTime = 9 s
Time = 60
smoothSolver: Solving for Ux, Initial residual = 0.00699258, Final residual = 0.000497877, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0142231, Final residual = 0.0011884, No Iterations 3
GAMG: Solving for p, Initial residual = 0.445358, Final residual = 0.00416184, No Iterations 3
time step continuity errors : sum local = 0.045194, global = 0.000362914, cumulative = -0.309215
smoothSolver: Solving for omega, Initial residual = 0.0026584, Final residual = 0.00014941, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.01271, Final residual = 0.00101858, No Iterations 3
ExecutionTime = 9.29 s ClockTime = 10 s
Time = 61
smoothSolver: Solving for Ux, Initial residual = 0.00691432, Final residual = 0.000494238, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0142253, Final residual = 0.00118474, No Iterations 3
GAMG: Solving for p, Initial residual = 0.440001, Final residual = 0.00202968, No Iterations 4
time step continuity errors : sum local = 0.0214608, global = -0.000408619, cumulative = -0.309623
smoothSolver: Solving for omega, Initial residual = 0.00262674, Final residual = 0.00014852, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0125709, Final residual = 0.00101079, No Iterations 3
ExecutionTime = 9.42 s ClockTime = 10 s
Time = 62
smoothSolver: Solving for Ux, Initial residual = 0.00680611, Final residual = 0.000487775, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.01417, Final residual = 0.001184, No Iterations 3
GAMG: Solving for p, Initial residual = 0.433896, Final residual = 0.00174437, No Iterations 4
time step continuity errors : sum local = 0.0179992, global = -0.00147739, cumulative = -0.311101
smoothSolver: Solving for omega, Initial residual = 0.00259501, Final residual = 0.000147551, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0124319, Final residual = 0.00100332, No Iterations 3
ExecutionTime = 9.57 s ClockTime = 10 s
Time = 63
smoothSolver: Solving for Ux, Initial residual = 0.00666412, Final residual = 0.000481447, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0141152, Final residual = 0.00119003, No Iterations 3
GAMG: Solving for p, Initial residual = 0.426003, Final residual = 0.00413723, No Iterations 3
time step continuity errors : sum local = 0.0417242, global = -0.00192136, cumulative = -0.313022
smoothSolver: Solving for omega, Initial residual = 0.00256488, Final residual = 0.000146521, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0122879, Final residual = 0.000995631, No Iterations 3
ExecutionTime = 9.69 s ClockTime = 10 s
Time = 64
smoothSolver: Solving for Ux, Initial residual = 0.00653906, Final residual = 0.00047812, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0140997, Final residual = 0.0011953, No Iterations 3
GAMG: Solving for p, Initial residual = 0.41973, Final residual = 0.00220171, No Iterations 4
time step continuity errors : sum local = 0.0216183, global = -0.000775936, cumulative = -0.313798
smoothSolver: Solving for omega, Initial residual = 0.00253995, Final residual = 0.000145605, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0121507, Final residual = 0.000988955, No Iterations 3
ExecutionTime = 9.82 s ClockTime = 10 s
Time = 65
smoothSolver: Solving for Ux, Initial residual = 0.00641525, Final residual = 0.000476437, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0141686, Final residual = 0.00120899, No Iterations 3
GAMG: Solving for p, Initial residual = 0.405869, Final residual = 0.00154672, No Iterations 4
time step continuity errors : sum local = 0.015115, global = -0.000323916, cumulative = -0.314122
smoothSolver: Solving for omega, Initial residual = 0.00251335, Final residual = 0.000144698, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0120028, Final residual = 0.000981781, No Iterations 3
ExecutionTime = 9.96 s ClockTime = 10 s
Time = 66
smoothSolver: Solving for Ux, Initial residual = 0.00631783, Final residual = 0.000473296, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0142058, Final residual = 0.00121106, No Iterations 3
GAMG: Solving for p, Initial residual = 0.395514, Final residual = 0.00391775, No Iterations 3
time step continuity errors : sum local = 0.0374764, global = 0.00110652, cumulative = -0.313015
smoothSolver: Solving for omega, Initial residual = 0.00248612, Final residual = 0.000144095, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.011854, Final residual = 0.000974611, No Iterations 3
ExecutionTime = 10.08 s ClockTime = 10 s
Time = 67
smoothSolver: Solving for Ux, Initial residual = 0.00624616, Final residual = 0.000470921, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0141548, Final residual = 0.0012077, No Iterations 3
GAMG: Solving for p, Initial residual = 0.389147, Final residual = 0.00215653, No Iterations 4
time step continuity errors : sum local = 0.0201763, global = 3.81236e-05, cumulative = -0.312977
smoothSolver: Solving for omega, Initial residual = 0.002463, Final residual = 0.000143787, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0117154, Final residual = 0.000968487, No Iterations 3
ExecutionTime = 10.22 s ClockTime = 10 s
Time = 68
smoothSolver: Solving for Ux, Initial residual = 0.00615577, Final residual = 0.000465732, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0140181, Final residual = 0.00119864, No Iterations 3
GAMG: Solving for p, Initial residual = 0.390473, Final residual = 0.00387114, No Iterations 3
time step continuity errors : sum local = 0.0349461, global = 0.00172246, cumulative = -0.311255
smoothSolver: Solving for omega, Initial residual = 0.00243805, Final residual = 0.000143214, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0115749, Final residual = 0.000961873, No Iterations 3
ExecutionTime = 10.35 s ClockTime = 11 s
Time = 69
smoothSolver: Solving for Ux, Initial residual = 0.00605726, Final residual = 0.000461616, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.013905, Final residual = 0.00119727, No Iterations 3
GAMG: Solving for p, Initial residual = 0.382708, Final residual = 0.00190029, No Iterations 4
time step continuity errors : sum local = 0.0167431, global = 0.000359912, cumulative = -0.310895
smoothSolver: Solving for omega, Initial residual = 0.00241051, Final residual = 0.000142366, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0114345, Final residual = 0.000955717, No Iterations 3
ExecutionTime = 10.49 s ClockTime = 11 s
Time = 70
smoothSolver: Solving for Ux, Initial residual = 0.0059298, Final residual = 0.000457016, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0138157, Final residual = 0.00119862, No Iterations 3
GAMG: Solving for p, Initial residual = 0.380172, Final residual = 0.00154646, No Iterations 4
time step continuity errors : sum local = 0.0131407, global = 0.000461312, cumulative = -0.310434
smoothSolver: Solving for omega, Initial residual = 0.00237988, Final residual = 0.000141253, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0112967, Final residual = 0.000949469, No Iterations 3
ExecutionTime = 10.62 s ClockTime = 11 s
Time = 71
smoothSolver: Solving for Ux, Initial residual = 0.00580631, Final residual = 0.000453215, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0137901, Final residual = 0.00120315, No Iterations 3
GAMG: Solving for p, Initial residual = 0.373237, Final residual = 0.00162568, No Iterations 4
time step continuity errors : sum local = 0.0135223, global = -0.000408707, cumulative = -0.310842
smoothSolver: Solving for omega, Initial residual = 0.00234561, Final residual = 0.000140019, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0111574, Final residual = 0.00094324, No Iterations 3
ExecutionTime = 10.75 s ClockTime = 11 s
Time = 72
smoothSolver: Solving for Ux, Initial residual = 0.00570976, Final residual = 0.00044978, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0137984, Final residual = 0.00120914, No Iterations 3
GAMG: Solving for p, Initial residual = 0.363808, Final residual = 0.00160685, No Iterations 4
time step continuity errors : sum local = 0.013126, global = -0.00115239, cumulative = -0.311995
smoothSolver: Solving for omega, Initial residual = 0.00230779, Final residual = 0.000138896, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0110155, Final residual = 0.000937084, No Iterations 3
ExecutionTime = 10.89 s ClockTime = 11 s
Time = 73
smoothSolver: Solving for Ux, Initial residual = 0.00564674, Final residual = 0.000447526, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.01377, Final residual = 0.00121347, No Iterations 3
GAMG: Solving for p, Initial residual = 0.351703, Final residual = 0.00172184, No Iterations 4
time step continuity errors : sum local = 0.0138634, global = -0.000890115, cumulative = -0.312885
smoothSolver: Solving for omega, Initial residual = 0.00227343, Final residual = 0.00013798, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0108775, Final residual = 0.000931122, No Iterations 3
ExecutionTime = 11.02 s ClockTime = 11 s
Time = 74
smoothSolver: Solving for Ux, Initial residual = 0.00559594, Final residual = 0.000445734, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.013663, Final residual = 0.00121344, No Iterations 3
GAMG: Solving for p, Initial residual = 0.33781, Final residual = 0.00147511, No Iterations 4
time step continuity errors : sum local = 0.0117696, global = -0.00099865, cumulative = -0.313883
smoothSolver: Solving for omega, Initial residual = 0.00223865, Final residual = 0.000137134, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0107341, Final residual = 0.000924814, No Iterations 3
ExecutionTime = 11.16 s ClockTime = 11 s
Time = 75
smoothSolver: Solving for Ux, Initial residual = 0.00551997, Final residual = 0.000443448, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.013532, Final residual = 0.00121073, No Iterations 3
GAMG: Solving for p, Initial residual = 0.327041, Final residual = 0.00161611, No Iterations 4
time step continuity errors : sum local = 0.0126515, global = -0.000465683, cumulative = -0.314349
smoothSolver: Solving for omega, Initial residual = 0.00220438, Final residual = 0.000136315, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0105882, Final residual = 0.000918393, No Iterations 3
ExecutionTime = 11.3 s ClockTime = 12 s
Time = 76
smoothSolver: Solving for Ux, Initial residual = 0.00541102, Final residual = 0.000440241, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0134158, Final residual = 0.00120753, No Iterations 3
GAMG: Solving for p, Initial residual = 0.318728, Final residual = 0.00162663, No Iterations 4
time step continuity errors : sum local = 0.0124585, global = 0.000280702, cumulative = -0.314068
smoothSolver: Solving for omega, Initial residual = 0.00216765, Final residual = 0.000135529, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0104432, Final residual = 0.000911934, No Iterations 3
ExecutionTime = 11.43 s ClockTime = 12 s
Time = 77
smoothSolver: Solving for Ux, Initial residual = 0.00530092, Final residual = 0.000436498, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0133277, Final residual = 0.00120622, No Iterations 3
GAMG: Solving for p, Initial residual = 0.312732, Final residual = 0.00155051, No Iterations 4
time step continuity errors : sum local = 0.0115712, global = 0.000589034, cumulative = -0.313479
smoothSolver: Solving for omega, Initial residual = 0.00213241, Final residual = 0.000134607, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0103009, Final residual = 0.000905437, No Iterations 3
ExecutionTime = 11.56 s ClockTime = 12 s
Time = 78
smoothSolver: Solving for Ux, Initial residual = 0.00522741, Final residual = 0.000433314, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0132687, Final residual = 0.00120853, No Iterations 3
GAMG: Solving for p, Initial residual = 0.307116, Final residual = 0.00170156, No Iterations 4
time step continuity errors : sum local = 0.012302, global = 0.000373873, cumulative = -0.313106
smoothSolver: Solving for omega, Initial residual = 0.00209818, Final residual = 0.000133549, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0101583, Final residual = 0.000898859, No Iterations 3
ExecutionTime = 11.69 s ClockTime = 12 s
Time = 79
smoothSolver: Solving for Ux, Initial residual = 0.00517544, Final residual = 0.00043083, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0132, Final residual = 0.00121332, No Iterations 3
GAMG: Solving for p, Initial residual = 0.303961, Final residual = 0.00149418, No Iterations 4
time step continuity errors : sum local = 0.0104281, global = 0.000680091, cumulative = -0.312425
smoothSolver: Solving for omega, Initial residual = 0.00206359, Final residual = 0.000132396, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0100158, Final residual = 0.000892234, No Iterations 3
ExecutionTime = 11.83 s ClockTime = 12 s
Time = 80
smoothSolver: Solving for Ux, Initial residual = 0.00512061, Final residual = 0.000428322, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0131095, Final residual = 0.00121642, No Iterations 3
GAMG: Solving for p, Initial residual = 0.296124, Final residual = 0.00161293, No Iterations 4
time step continuity errors : sum local = 0.0109463, global = 0.000505786, cumulative = -0.31192
smoothSolver: Solving for omega, Initial residual = 0.00203019, Final residual = 0.000131189, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00987822, Final residual = 0.000885395, No Iterations 3
ExecutionTime = 11.96 s ClockTime = 12 s
Time = 81
smoothSolver: Solving for Ux, Initial residual = 0.00504793, Final residual = 0.000425923, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0130015, Final residual = 0.00121607, No Iterations 3
GAMG: Solving for p, Initial residual = 0.286701, Final residual = 0.0017636, No Iterations 4
time step continuity errors : sum local = 0.0117052, global = 5.8028e-06, cumulative = -0.311914
smoothSolver: Solving for omega, Initial residual = 0.00199669, Final residual = 0.00012989, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00974314, Final residual = 0.000878578, No Iterations 3
ExecutionTime = 12.1 s ClockTime = 12 s
Time = 82
smoothSolver: Solving for Ux, Initial residual = 0.0049524, Final residual = 0.000423225, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0128956, Final residual = 0.00121365, No Iterations 3
GAMG: Solving for p, Initial residual = 0.279015, Final residual = 0.00186792, No Iterations 4
time step continuity errors : sum local = 0.0121749, global = -0.000569428, cumulative = -0.312483
smoothSolver: Solving for omega, Initial residual = 0.00196455, Final residual = 0.000128752, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00960406, Final residual = 0.000871526, No Iterations 3
ExecutionTime = 12.23 s ClockTime = 12 s
Time = 83
smoothSolver: Solving for Ux, Initial residual = 0.00487006, Final residual = 0.000420848, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0127849, Final residual = 0.00121089, No Iterations 3
GAMG: Solving for p, Initial residual = 0.270269, Final residual = 0.00188113, No Iterations 4
time step continuity errors : sum local = 0.0120756, global = -0.000984088, cumulative = -0.313467
smoothSolver: Solving for omega, Initial residual = 0.00193631, Final residual = 0.000127892, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00946626, Final residual = 0.000864105, No Iterations 3
ExecutionTime = 12.38 s ClockTime = 13 s
Time = 84
smoothSolver: Solving for Ux, Initial residual = 0.00482199, Final residual = 0.000419153, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0126763, Final residual = 0.0012087, No Iterations 3
GAMG: Solving for p, Initial residual = 0.260406, Final residual = 0.00184527, No Iterations 4
time step continuity errors : sum local = 0.011703, global = -0.00109225, cumulative = -0.31456
smoothSolver: Solving for omega, Initial residual = 0.00191207, Final residual = 0.00012724, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00933987, Final residual = 0.000856754, No Iterations 3
ExecutionTime = 12.52 s ClockTime = 13 s
Time = 85
smoothSolver: Solving for Ux, Initial residual = 0.00477612, Final residual = 0.000417193, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0125639, Final residual = 0.00120751, No Iterations 3
GAMG: Solving for p, Initial residual = 0.252264, Final residual = 0.00175549, No Iterations 4
time step continuity errors : sum local = 0.0110342, global = -0.000968198, cumulative = -0.315528
smoothSolver: Solving for omega, Initial residual = 0.00188848, Final residual = 0.000126661, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00921472, Final residual = 0.00084945, No Iterations 3
ExecutionTime = 12.65 s ClockTime = 13 s
Time = 86
smoothSolver: Solving for Ux, Initial residual = 0.00472453, Final residual = 0.0004151, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.012455, Final residual = 0.00120662, No Iterations 3
GAMG: Solving for p, Initial residual = 0.243594, Final residual = 0.00172958, No Iterations 4
time step continuity errors : sum local = 0.0107881, global = -0.000562348, cumulative = -0.31609
smoothSolver: Solving for omega, Initial residual = 0.0018653, Final residual = 0.000125907, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00908802, Final residual = 0.00084214, No Iterations 3
ExecutionTime = 12.78 s ClockTime = 13 s
Time = 87
smoothSolver: Solving for Ux, Initial residual = 0.00466111, Final residual = 0.000412822, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.012363, Final residual = 0.00120565, No Iterations 3
GAMG: Solving for p, Initial residual = 0.23496, Final residual = 0.00168695, No Iterations 4
time step continuity errors : sum local = 0.0104387, global = 6.45764e-05, cumulative = -0.316026
smoothSolver: Solving for omega, Initial residual = 0.00184207, Final residual = 0.000125011, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00896302, Final residual = 0.000834819, No Iterations 3
ExecutionTime = 12.92 s ClockTime = 13 s
Time = 88
smoothSolver: Solving for Ux, Initial residual = 0.00459196, Final residual = 0.000410532, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0122844, Final residual = 0.00120496, No Iterations 3
GAMG: Solving for p, Initial residual = 0.227116, Final residual = 0.00159281, No Iterations 4
time step continuity errors : sum local = 0.00976026, global = 0.000551166, cumulative = -0.315474
smoothSolver: Solving for omega, Initial residual = 0.00182061, Final residual = 0.000123963, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00884592, Final residual = 0.000827559, No Iterations 3
ExecutionTime = 13.06 s ClockTime = 13 s
Time = 89
smoothSolver: Solving for Ux, Initial residual = 0.00453677, Final residual = 0.000408801, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.012214, Final residual = 0.00120475, No Iterations 3
GAMG: Solving for p, Initial residual = 0.219073, Final residual = 0.00163145, No Iterations 4
time step continuity errors : sum local = 0.00986846, global = 0.000673148, cumulative = -0.314801
smoothSolver: Solving for omega, Initial residual = 0.00179685, Final residual = 0.000122805, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00873485, Final residual = 0.000820258, No Iterations 3
ExecutionTime = 13.19 s ClockTime = 13 s
Time = 90
smoothSolver: Solving for Ux, Initial residual = 0.00449799, Final residual = 0.000407465, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0121313, Final residual = 0.0012031, No Iterations 3
GAMG: Solving for p, Initial residual = 0.213131, Final residual = 0.00153969, No Iterations 4
time step continuity errors : sum local = 0.00916786, global = 0.000731642, cumulative = -0.31407
smoothSolver: Solving for omega, Initial residual = 0.00177509, Final residual = 0.000121582, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00862045, Final residual = 0.000813003, No Iterations 3
ExecutionTime = 13.33 s ClockTime = 14 s
Time = 91
smoothSolver: Solving for Ux, Initial residual = 0.00446046, Final residual = 0.000405903, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0120425, Final residual = 0.00119994, No Iterations 3
GAMG: Solving for p, Initial residual = 0.207178, Final residual = 0.00149829, No Iterations 4
time step continuity errors : sum local = 0.00879595, global = 0.000597745, cumulative = -0.313472
smoothSolver: Solving for omega, Initial residual = 0.00175398, Final residual = 0.000120347, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00850643, Final residual = 0.000805869, No Iterations 3
ExecutionTime = 13.47 s ClockTime = 14 s
Time = 92
smoothSolver: Solving for Ux, Initial residual = 0.00441763, Final residual = 0.000404143, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0119515, Final residual = 0.000600518, No Iterations 4
GAMG: Solving for p, Initial residual = 0.204019, Final residual = 0.00172814, No Iterations 4
time step continuity errors : sum local = 0.0100213, global = 0.00019621, cumulative = -0.313276
smoothSolver: Solving for omega, Initial residual = 0.00173402, Final residual = 0.000119322, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00839901, Final residual = 0.000798571, No Iterations 3
ExecutionTime = 13.6 s ClockTime = 14 s
Time = 93
smoothSolver: Solving for Ux, Initial residual = 0.00439794, Final residual = 0.000405384, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0117991, Final residual = 0.000593665, No Iterations 4
GAMG: Solving for p, Initial residual = 0.198488, Final residual = 0.0018228, No Iterations 4
time step continuity errors : sum local = 0.0104666, global = -0.000248136, cumulative = -0.313524
smoothSolver: Solving for omega, Initial residual = 0.00171527, Final residual = 0.000118592, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00829746, Final residual = 0.000791597, No Iterations 3
ExecutionTime = 13.74 s ClockTime = 14 s
Time = 94
smoothSolver: Solving for Ux, Initial residual = 0.00437738, Final residual = 0.000406526, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0116693, Final residual = 0.000587846, No Iterations 4
GAMG: Solving for p, Initial residual = 0.190982, Final residual = 0.00181643, No Iterations 4
time step continuity errors : sum local = 0.0103512, global = -0.000521324, cumulative = -0.314045
smoothSolver: Solving for omega, Initial residual = 0.00169785, Final residual = 0.000117989, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0082007, Final residual = 0.000784929, No Iterations 3
ExecutionTime = 13.88 s ClockTime = 14 s
Time = 95
smoothSolver: Solving for Ux, Initial residual = 0.00434267, Final residual = 0.000405623, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0115947, Final residual = 0.000586315, No Iterations 4
GAMG: Solving for p, Initial residual = 0.185001, Final residual = 0.00175269, No Iterations 4
time step continuity errors : sum local = 0.00992223, global = -0.000594676, cumulative = -0.31464
smoothSolver: Solving for omega, Initial residual = 0.00168228, Final residual = 0.000117419, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00810873, Final residual = 0.000778499, No Iterations 3
ExecutionTime = 14.01 s ClockTime = 14 s
Time = 96
smoothSolver: Solving for Ux, Initial residual = 0.00428887, Final residual = 0.000402705, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0115551, Final residual = 0.00058774, No Iterations 4
GAMG: Solving for p, Initial residual = 0.178178, Final residual = 0.00159687, No Iterations 4
time step continuity errors : sum local = 0.00897421, global = -0.000531819, cumulative = -0.315172
smoothSolver: Solving for omega, Initial residual = 0.00166699, Final residual = 0.00011678, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00802207, Final residual = 0.000772316, No Iterations 3
ExecutionTime = 14.15 s ClockTime = 14 s
Time = 97
smoothSolver: Solving for Ux, Initial residual = 0.00423873, Final residual = 0.000399538, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0114953, Final residual = 0.000588385, No Iterations 4
GAMG: Solving for p, Initial residual = 0.171069, Final residual = 0.00144616, No Iterations 4
time step continuity errors : sum local = 0.00805801, global = -0.000303362, cumulative = -0.315475
smoothSolver: Solving for omega, Initial residual = 0.00165014, Final residual = 0.000116053, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00793999, Final residual = 0.000766362, No Iterations 3
ExecutionTime = 14.28 s ClockTime = 15 s
Time = 98
smoothSolver: Solving for Ux, Initial residual = 0.00420105, Final residual = 0.000397467, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0113945, Final residual = 0.000586514, No Iterations 4
GAMG: Solving for p, Initial residual = 0.165238, Final residual = 0.00146753, No Iterations 4
time step continuity errors : sum local = 0.00811296, global = 5.55458e-05, cumulative = -0.315419
smoothSolver: Solving for omega, Initial residual = 0.00163292, Final residual = 0.000115261, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00786428, Final residual = 0.000761029, No Iterations 3
ExecutionTime = 14.42 s ClockTime = 15 s
Time = 99
smoothSolver: Solving for Ux, Initial residual = 0.00417201, Final residual = 0.000396469, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0112773, Final residual = 0.000583059, No Iterations 4
GAMG: Solving for p, Initial residual = 0.160398, Final residual = 0.00152634, No Iterations 4
time step continuity errors : sum local = 0.00837465, global = 0.000394374, cumulative = -0.315025
smoothSolver: Solving for omega, Initial residual = 0.00161679, Final residual = 0.000114368, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00779442, Final residual = 0.000756059, No Iterations 3
ExecutionTime = 14.57 s ClockTime = 15 s
Time = 100
smoothSolver: Solving for Ux, Initial residual = 0.00414483, Final residual = 0.000395513, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0111689, Final residual = 0.000579411, No Iterations 4
GAMG: Solving for p, Initial residual = 0.155441, Final residual = 0.00154885, No Iterations 4
time step continuity errors : sum local = 0.00842641, global = 0.000580055, cumulative = -0.314445
smoothSolver: Solving for omega, Initial residual = 0.00160126, Final residual = 0.000113399, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00772866, Final residual = 0.000751573, No Iterations 3
ExecutionTime = 14.9 s ClockTime = 15 s
Time = 101
smoothSolver: Solving for Ux, Initial residual = 0.00410852, Final residual = 0.00039373, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0110806, Final residual = 0.000576926, No Iterations 4
GAMG: Solving for p, Initial residual = 0.150827, Final residual = 0.000893004, No Iterations 5
time step continuity errors : sum local = 0.00481335, global = 7.55653e-05, cumulative = -0.314369
smoothSolver: Solving for omega, Initial residual = 0.00158602, Final residual = 0.000112412, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00766505, Final residual = 0.000747373, No Iterations 3
ExecutionTime = 15.06 s ClockTime = 15 s
Time = 102
smoothSolver: Solving for Ux, Initial residual = 0.00406581, Final residual = 0.00039144, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0110038, Final residual = 0.000575431, No Iterations 4
GAMG: Solving for p, Initial residual = 0.147618, Final residual = 0.000657809, No Iterations 5
time step continuity errors : sum local = 0.00348705, global = 0.00014421, cumulative = -0.314225
smoothSolver: Solving for omega, Initial residual = 0.00157088, Final residual = 0.000111491, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00760602, Final residual = 0.000743113, No Iterations 3
ExecutionTime = 15.2 s ClockTime = 15 s
Time = 103
smoothSolver: Solving for Ux, Initial residual = 0.00402543, Final residual = 0.000389181, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0109053, Final residual = 0.000573553, No Iterations 4
GAMG: Solving for p, Initial residual = 0.143945, Final residual = 0.00141485, No Iterations 4
time step continuity errors : sum local = 0.00745827, global = -0.000458088, cumulative = -0.314683
smoothSolver: Solving for omega, Initial residual = 0.00155843, Final residual = 0.000110741, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00754997, Final residual = 0.000739297, No Iterations 3
ExecutionTime = 15.34 s ClockTime = 16 s
Time = 104
smoothSolver: Solving for Ux, Initial residual = 0.0039921, Final residual = 0.000387262, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0107994, Final residual = 0.000571238, No Iterations 4
GAMG: Solving for p, Initial residual = 0.140629, Final residual = 0.000746364, No Iterations 5
time step continuity errors : sum local = 0.00392397, global = -0.000211105, cumulative = -0.314894
smoothSolver: Solving for omega, Initial residual = 0.00154652, Final residual = 0.000110193, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00749795, Final residual = 0.000736115, No Iterations 3
ExecutionTime = 15.48 s ClockTime = 16 s
Time = 105
smoothSolver: Solving for Ux, Initial residual = 0.0039669, Final residual = 0.00038578, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.010718, Final residual = 0.000569181, No Iterations 4
GAMG: Solving for p, Initial residual = 0.137128, Final residual = 0.000732652, No Iterations 5
time step continuity errors : sum local = 0.00386391, global = -0.000261208, cumulative = -0.315156
smoothSolver: Solving for omega, Initial residual = 0.00153475, Final residual = 0.000109707, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00744982, Final residual = 0.000733358, No Iterations 3
ExecutionTime = 15.63 s ClockTime = 16 s
Time = 106
smoothSolver: Solving for Ux, Initial residual = 0.00393975, Final residual = 0.000384368, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0106425, Final residual = 0.000567043, No Iterations 4
GAMG: Solving for p, Initial residual = 0.133402, Final residual = 0.000684449, No Iterations 5
time step continuity errors : sum local = 0.0036227, global = -0.000257261, cumulative = -0.315413
smoothSolver: Solving for omega, Initial residual = 0.00152117, Final residual = 0.000109139, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00740429, Final residual = 0.000731044, No Iterations 3
ExecutionTime = 15.78 s ClockTime = 16 s
Time = 107
smoothSolver: Solving for Ux, Initial residual = 0.00390746, Final residual = 0.000382685, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.010562, Final residual = 0.000565163, No Iterations 4
GAMG: Solving for p, Initial residual = 0.129988, Final residual = 0.000634059, No Iterations 5
time step continuity errors : sum local = 0.00335625, global = 3.37804e-05, cumulative = -0.315379
smoothSolver: Solving for omega, Initial residual = 0.00150732, Final residual = 0.000108451, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00736204, Final residual = 0.000729131, No Iterations 3
ExecutionTime = 15.92 s ClockTime = 16 s
Time = 108
smoothSolver: Solving for Ux, Initial residual = 0.00387296, Final residual = 0.000380773, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0104775, Final residual = 0.000563261, No Iterations 4
GAMG: Solving for p, Initial residual = 0.127561, Final residual = 0.000603046, No Iterations 5
time step continuity errors : sum local = 0.00318275, global = 0.000263836, cumulative = -0.315115
smoothSolver: Solving for omega, Initial residual = 0.00149465, Final residual = 0.000107645, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0073218, Final residual = 0.000727238, No Iterations 3
ExecutionTime = 16.07 s ClockTime = 16 s
Time = 109
smoothSolver: Solving for Ux, Initial residual = 0.0038406, Final residual = 0.000378794, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0103962, Final residual = 0.000561096, No Iterations 4
GAMG: Solving for p, Initial residual = 0.125465, Final residual = 0.000671791, No Iterations 5
time step continuity errors : sum local = 0.00352509, global = 0.000246479, cumulative = -0.314869
smoothSolver: Solving for omega, Initial residual = 0.00148209, Final residual = 0.000106714, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0072823, Final residual = 0.000725211, No Iterations 3
ExecutionTime = 16.21 s ClockTime = 16 s
Time = 110
smoothSolver: Solving for Ux, Initial residual = 0.00381361, Final residual = 0.000376993, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.010324, Final residual = 0.000558869, No Iterations 4
GAMG: Solving for p, Initial residual = 0.123955, Final residual = 0.000611116, No Iterations 5
time step continuity errors : sum local = 0.00318056, global = 0.000267526, cumulative = -0.314601
smoothSolver: Solving for omega, Initial residual = 0.00146896, Final residual = 0.000105728, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00724283, Final residual = 0.000723124, No Iterations 3
ExecutionTime = 16.36 s ClockTime = 17 s
Time = 111
smoothSolver: Solving for Ux, Initial residual = 0.00378786, Final residual = 0.000375236, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0102584, Final residual = 0.000556708, No Iterations 4
GAMG: Solving for p, Initial residual = 0.122284, Final residual = 0.000620227, No Iterations 5
time step continuity errors : sum local = 0.00321078, global = 0.000110173, cumulative = -0.314491
smoothSolver: Solving for omega, Initial residual = 0.00145421, Final residual = 0.000104687, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00720216, Final residual = 0.000358103, No Iterations 4
ExecutionTime = 16.51 s ClockTime = 17 s
Time = 112
smoothSolver: Solving for Ux, Initial residual = 0.00376005, Final residual = 0.000373362, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0101967, Final residual = 0.000554546, No Iterations 4
GAMG: Solving for p, Initial residual = 0.120258, Final residual = 0.000653674, No Iterations 5
time step continuity errors : sum local = 0.00337328, global = -8.84127e-05, cumulative = -0.31458
smoothSolver: Solving for omega, Initial residual = 0.00143925, Final residual = 0.000103671, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00715097, Final residual = 0.000356787, No Iterations 4
ExecutionTime = 16.66 s ClockTime = 17 s
Time = 113
smoothSolver: Solving for Ux, Initial residual = 0.00373166, Final residual = 0.000371448, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0101411, Final residual = 0.000552375, No Iterations 4
GAMG: Solving for p, Initial residual = 0.118471, Final residual = 0.000677017, No Iterations 5
time step continuity errors : sum local = 0.00348581, global = -0.000197173, cumulative = -0.314777
smoothSolver: Solving for omega, Initial residual = 0.00142571, Final residual = 0.000102758, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00710031, Final residual = 0.000355389, No Iterations 4
ExecutionTime = 16.8 s ClockTime = 17 s
Time = 114
smoothSolver: Solving for Ux, Initial residual = 0.00370388, Final residual = 0.00036954, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0100875, Final residual = 0.000550233, No Iterations 4
GAMG: Solving for p, Initial residual = 0.116341, Final residual = 0.000671926, No Iterations 5
time step continuity errors : sum local = 0.00345253, global = -0.000205796, cumulative = -0.314983
smoothSolver: Solving for omega, Initial residual = 0.00141247, Final residual = 0.00010199, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00705111, Final residual = 0.000354064, No Iterations 4
ExecutionTime = 16.94 s ClockTime = 17 s
Time = 115
smoothSolver: Solving for Ux, Initial residual = 0.00367725, Final residual = 0.000367691, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0100341, Final residual = 0.00054797, No Iterations 4
GAMG: Solving for p, Initial residual = 0.114424, Final residual = 0.000641211, No Iterations 5
time step continuity errors : sum local = 0.00328728, global = -0.000126213, cumulative = -0.315109
smoothSolver: Solving for omega, Initial residual = 0.00139946, Final residual = 0.000101367, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00700087, Final residual = 0.000352758, No Iterations 4
ExecutionTime = 17.08 s ClockTime = 17 s
Time = 116
smoothSolver: Solving for Ux, Initial residual = 0.00365052, Final residual = 0.00018306, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00998202, Final residual = 0.000545746, No Iterations 4
GAMG: Solving for p, Initial residual = 0.114485, Final residual = 0.000589953, No Iterations 5
time step continuity errors : sum local = 0.00301924, global = 9.46234e-05, cumulative = -0.315014
smoothSolver: Solving for omega, Initial residual = 0.00138793, Final residual = 0.000100854, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00696227, Final residual = 0.000352034, No Iterations 4
ExecutionTime = 17.23 s ClockTime = 18 s
Time = 117
smoothSolver: Solving for Ux, Initial residual = 0.00359873, Final residual = 0.000179979, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0100069, Final residual = 0.000547477, No Iterations 4
GAMG: Solving for p, Initial residual = 0.11196, Final residual = 0.000583227, No Iterations 5
time step continuity errors : sum local = 0.00297549, global = 0.000275483, cumulative = -0.314739
smoothSolver: Solving for omega, Initial residual = 0.00137599, Final residual = 0.000100266, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00692383, Final residual = 0.000351135, No Iterations 4
ExecutionTime = 17.38 s ClockTime = 18 s
Time = 118
smoothSolver: Solving for Ux, Initial residual = 0.00355338, Final residual = 0.000354872, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.0100189, Final residual = 0.000548427, No Iterations 4
GAMG: Solving for p, Initial residual = 0.110117, Final residual = 0.000598302, No Iterations 5
time step continuity errors : sum local = 0.00303376, global = 0.000210128, cumulative = -0.314528
smoothSolver: Solving for omega, Initial residual = 0.00136367, Final residual = 9.95546e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.006878, Final residual = 0.000349749, No Iterations 4
ExecutionTime = 17.53 s ClockTime = 18 s
Time = 119
smoothSolver: Solving for Ux, Initial residual = 0.00355048, Final residual = 0.000178333, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00988586, Final residual = 0.000541712, No Iterations 4
GAMG: Solving for p, Initial residual = 0.105596, Final residual = 0.000569657, No Iterations 5
time step continuity errors : sum local = 0.00286275, global = 0.000204943, cumulative = -0.314324
smoothSolver: Solving for omega, Initial residual = 0.00135262, Final residual = 9.89053e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00684546, Final residual = 0.00034905, No Iterations 4
ExecutionTime = 17.67 s ClockTime = 18 s
Time = 120
smoothSolver: Solving for Ux, Initial residual = 0.00352953, Final residual = 0.000178011, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00980212, Final residual = 0.000537442, No Iterations 4
GAMG: Solving for p, Initial residual = 0.103818, Final residual = 0.00056002, No Iterations 5
time step continuity errors : sum local = 0.0027935, global = 0.000169148, cumulative = -0.314154
smoothSolver: Solving for omega, Initial residual = 0.00134257, Final residual = 9.82259e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00681263, Final residual = 0.000348288, No Iterations 4
ExecutionTime = 17.82 s ClockTime = 18 s
Time = 121
smoothSolver: Solving for Ux, Initial residual = 0.00349054, Final residual = 0.000176169, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00977858, Final residual = 0.000536242, No Iterations 4
GAMG: Solving for p, Initial residual = 0.102613, Final residual = 0.000588834, No Iterations 5
time step continuity errors : sum local = 0.00292495, global = 7.43094e-05, cumulative = -0.31408
smoothSolver: Solving for omega, Initial residual = 0.00133352, Final residual = 9.74809e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00678236, Final residual = 0.000347398, No Iterations 4
ExecutionTime = 17.97 s ClockTime = 18 s
Time = 122
smoothSolver: Solving for Ux, Initial residual = 0.00344842, Final residual = 0.000173994, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00976925, Final residual = 0.000535665, No Iterations 4
GAMG: Solving for p, Initial residual = 0.10039, Final residual = 0.000595378, No Iterations 5
time step continuity errors : sum local = 0.00294868, global = 4.00841e-05, cumulative = -0.31404
smoothSolver: Solving for omega, Initial residual = 0.00132429, Final residual = 9.66827e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00675289, Final residual = 0.000346309, No Iterations 4
ExecutionTime = 18.11 s ClockTime = 18 s
Time = 123
smoothSolver: Solving for Ux, Initial residual = 0.00341619, Final residual = 0.000172525, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00972897, Final residual = 0.000533664, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0984515, Final residual = 0.000584453, No Iterations 5
time step continuity errors : sum local = 0.00288757, global = 7.82328e-05, cumulative = -0.313962
smoothSolver: Solving for omega, Initial residual = 0.00131635, Final residual = 9.59006e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00672555, Final residual = 0.000345234, No Iterations 4
ExecutionTime = 18.26 s ClockTime = 19 s
Time = 124
smoothSolver: Solving for Ux, Initial residual = 0.00339355, Final residual = 0.000171804, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00965971, Final residual = 0.000529959, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0967393, Final residual = 0.000555439, No Iterations 5
time step continuity errors : sum local = 0.00273681, global = 0.000149058, cumulative = -0.313813
smoothSolver: Solving for omega, Initial residual = 0.00130802, Final residual = 9.52176e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00670065, Final residual = 0.000344228, No Iterations 4
ExecutionTime = 18.41 s ClockTime = 19 s
Time = 125
smoothSolver: Solving for Ux, Initial residual = 0.00337127, Final residual = 0.000171199, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00959, Final residual = 0.00052611, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0950675, Final residual = 0.000556395, No Iterations 5
time step continuity errors : sum local = 0.00273267, global = 0.000182395, cumulative = -0.31363
smoothSolver: Solving for omega, Initial residual = 0.00129991, Final residual = 9.46115e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00667869, Final residual = 0.000343304, No Iterations 4
ExecutionTime = 18.56 s ClockTime = 19 s
Time = 126
smoothSolver: Solving for Ux, Initial residual = 0.00334333, Final residual = 0.000170154, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00953758, Final residual = 0.00052332, No Iterations 4
GAMG: Solving for p, Initial residual = 0.094018, Final residual = 0.000573065, No Iterations 5
time step continuity errors : sum local = 0.00280356, global = 0.00019386, cumulative = -0.313436
smoothSolver: Solving for omega, Initial residual = 0.00129189, Final residual = 9.40536e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00665823, Final residual = 0.000342514, No Iterations 4
ExecutionTime = 18.71 s ClockTime = 19 s
Time = 127
smoothSolver: Solving for Ux, Initial residual = 0.00331074, Final residual = 0.000168678, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00950544, Final residual = 0.000521565, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0931228, Final residual = 0.000567687, No Iterations 5
time step continuity errors : sum local = 0.00276652, global = 0.000202538, cumulative = -0.313234
smoothSolver: Solving for omega, Initial residual = 0.00128428, Final residual = 9.35256e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00663914, Final residual = 0.000341862, No Iterations 4
ExecutionTime = 18.85 s ClockTime = 19 s
Time = 128
smoothSolver: Solving for Ux, Initial residual = 0.00327912, Final residual = 0.000167195, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00947533, Final residual = 0.000519938, No Iterations 4
GAMG: Solving for p, Initial residual = 0.09228, Final residual = 0.000558086, No Iterations 5
time step continuity errors : sum local = 0.00271124, global = 0.000180395, cumulative = -0.313054
smoothSolver: Solving for omega, Initial residual = 0.00127733, Final residual = 9.30295e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00662035, Final residual = 0.000341324, No Iterations 4
ExecutionTime = 19 s ClockTime = 19 s
Time = 129
smoothSolver: Solving for Ux, Initial residual = 0.00325211, Final residual = 0.000165983, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00943133, Final residual = 0.000517837, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0916375, Final residual = 0.000549233, No Iterations 5
time step continuity errors : sum local = 0.00266083, global = 0.00014868, cumulative = -0.312905
smoothSolver: Solving for omega, Initial residual = 0.00127077, Final residual = 9.24811e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00660286, Final residual = 0.000340828, No Iterations 4
ExecutionTime = 19.15 s ClockTime = 19 s
Time = 130
smoothSolver: Solving for Ux, Initial residual = 0.00322801, Final residual = 0.000164976, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00938178, Final residual = 0.000515464, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0911453, Final residual = 0.000540065, No Iterations 5
time step continuity errors : sum local = 0.00260929, global = 0.000134219, cumulative = -0.312771
smoothSolver: Solving for omega, Initial residual = 0.00126414, Final residual = 9.1875e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00658692, Final residual = 0.000340238, No Iterations 4
ExecutionTime = 19.29 s ClockTime = 20 s
Time = 131
smoothSolver: Solving for Ux, Initial residual = 0.00320302, Final residual = 0.000163942, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00933978, Final residual = 0.000513183, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0907785, Final residual = 0.000526082, No Iterations 5
time step continuity errors : sum local = 0.00253449, global = 0.000139758, cumulative = -0.312631
smoothSolver: Solving for omega, Initial residual = 0.00125677, Final residual = 9.12193e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00657108, Final residual = 0.00033955, No Iterations 4
ExecutionTime = 19.45 s ClockTime = 20 s
Time = 132
smoothSolver: Solving for Ux, Initial residual = 0.00317609, Final residual = 0.000162759, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00930569, Final residual = 0.000511346, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0903051, Final residual = 0.000522, No Iterations 5
time step continuity errors : sum local = 0.00250652, global = 0.00015344, cumulative = -0.312477
smoothSolver: Solving for omega, Initial residual = 0.00124972, Final residual = 9.05825e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00655508, Final residual = 0.000338974, No Iterations 4
ExecutionTime = 19.6 s ClockTime = 20 s
Time = 133
smoothSolver: Solving for Ux, Initial residual = 0.00314829, Final residual = 0.000161462, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00927822, Final residual = 0.000509797, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0897813, Final residual = 0.000524671, No Iterations 5
time step continuity errors : sum local = 0.00251036, global = 0.000163986, cumulative = -0.312313
smoothSolver: Solving for omega, Initial residual = 0.00124231, Final residual = 8.99248e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00653864, Final residual = 0.000338453, No Iterations 4
ExecutionTime = 19.75 s ClockTime = 20 s
Time = 134
smoothSolver: Solving for Ux, Initial residual = 0.00312099, Final residual = 0.000160166, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00925615, Final residual = 0.000508285, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0890965, Final residual = 0.000521966, No Iterations 5
time step continuity errors : sum local = 0.00248774, global = 0.000166418, cumulative = -0.312147
smoothSolver: Solving for omega, Initial residual = 0.00123451, Final residual = 8.9234e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00652117, Final residual = 0.000337848, No Iterations 4
ExecutionTime = 19.9 s ClockTime = 20 s
Time = 135
smoothSolver: Solving for Ux, Initial residual = 0.0030955, Final residual = 0.000158931, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00923463, Final residual = 0.000506773, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0882939, Final residual = 0.000509838, No Iterations 5
time step continuity errors : sum local = 0.00242037, global = 0.000157018, cumulative = -0.31199
smoothSolver: Solving for omega, Initial residual = 0.00122619, Final residual = 8.85651e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00650388, Final residual = 0.000337156, No Iterations 4
ExecutionTime = 20.05 s ClockTime = 20 s
Time = 136
smoothSolver: Solving for Ux, Initial residual = 0.00307049, Final residual = 0.000157734, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00921438, Final residual = 0.000505177, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0874706, Final residual = 0.000495042, No Iterations 5
time step continuity errors : sum local = 0.00234037, global = 0.00014122, cumulative = -0.311849
smoothSolver: Solving for omega, Initial residual = 0.00121809, Final residual = 8.79928e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00648525, Final residual = 0.0003365, No Iterations 4
ExecutionTime = 20.2 s ClockTime = 21 s
Time = 137
smoothSolver: Solving for Ux, Initial residual = 0.00304456, Final residual = 0.00015654, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00919894, Final residual = 0.000503653, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0868548, Final residual = 0.000482033, No Iterations 5
time step continuity errors : sum local = 0.00227004, global = 0.000127013, cumulative = -0.311722
smoothSolver: Solving for omega, Initial residual = 0.00121051, Final residual = 8.7461e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00646541, Final residual = 0.000335839, No Iterations 4
ExecutionTime = 20.34 s ClockTime = 21 s
Time = 138
smoothSolver: Solving for Ux, Initial residual = 0.00301817, Final residual = 0.000155316, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00918269, Final residual = 0.000502343, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0858602, Final residual = 0.000473961, No Iterations 5
time step continuity errors : sum local = 0.00222349, global = 0.000121283, cumulative = -0.3116
smoothSolver: Solving for omega, Initial residual = 0.00120281, Final residual = 8.69494e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0064451, Final residual = 0.000335091, No Iterations 4
ExecutionTime = 20.49 s ClockTime = 21 s
Time = 139
smoothSolver: Solving for Ux, Initial residual = 0.00299182, Final residual = 0.00015409, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00916734, Final residual = 0.00050087, No Iterations 4
GAMG: Solving for p, Initial residual = 0.084458, Final residual = 0.000471441, No Iterations 5
time step continuity errors : sum local = 0.00220361, global = 0.00012289, cumulative = -0.311478
smoothSolver: Solving for omega, Initial residual = 0.00119508, Final residual = 8.64326e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00642256, Final residual = 0.000334237, No Iterations 4
ExecutionTime = 20.64 s ClockTime = 21 s
Time = 140
smoothSolver: Solving for Ux, Initial residual = 0.00296598, Final residual = 0.000152878, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00915061, Final residual = 0.000499381, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0831984, Final residual = 0.000474236, No Iterations 5
time step continuity errors : sum local = 0.00220854, global = 0.000127686, cumulative = -0.31135
smoothSolver: Solving for omega, Initial residual = 0.00118751, Final residual = 8.59338e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00639808, Final residual = 0.000333295, No Iterations 4
ExecutionTime = 20.78 s ClockTime = 21 s
Time = 141
smoothSolver: Solving for Ux, Initial residual = 0.00294075, Final residual = 0.000151689, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00913036, Final residual = 0.000497727, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0823629, Final residual = 0.00047725, No Iterations 5
time step continuity errors : sum local = 0.00221401, global = 0.000129961, cumulative = -0.31122
smoothSolver: Solving for omega, Initial residual = 0.00118055, Final residual = 8.53803e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00637161, Final residual = 0.000332309, No Iterations 4
ExecutionTime = 20.93 s ClockTime = 21 s
Time = 142
smoothSolver: Solving for Ux, Initial residual = 0.00291587, Final residual = 0.000150511, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00910927, Final residual = 0.000495871, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0814091, Final residual = 0.000477306, No Iterations 5
time step continuity errors : sum local = 0.00220547, global = 0.000128431, cumulative = -0.311092
smoothSolver: Solving for omega, Initial residual = 0.001173, Final residual = 8.47527e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00634386, Final residual = 0.000331206, No Iterations 4
ExecutionTime = 21.08 s ClockTime = 21 s
Time = 143
smoothSolver: Solving for Ux, Initial residual = 0.002891, Final residual = 0.00014932, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00908558, Final residual = 0.000494027, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0806537, Final residual = 0.000475837, No Iterations 5
time step continuity errors : sum local = 0.00219031, global = 0.0001259, cumulative = -0.310966
smoothSolver: Solving for omega, Initial residual = 0.00116516, Final residual = 8.41137e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00631418, Final residual = 0.00032995, No Iterations 4
ExecutionTime = 21.22 s ClockTime = 22 s
Time = 144
smoothSolver: Solving for Ux, Initial residual = 0.00286584, Final residual = 0.000148115, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00905922, Final residual = 0.000491997, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0801193, Final residual = 0.000475143, No Iterations 5
time step continuity errors : sum local = 0.00217894, global = 0.000121054, cumulative = -0.310845
smoothSolver: Solving for omega, Initial residual = 0.00115674, Final residual = 8.34494e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00628207, Final residual = 0.000328564, No Iterations 4
ExecutionTime = 21.37 s ClockTime = 22 s
Time = 145
smoothSolver: Solving for Ux, Initial residual = 0.00284055, Final residual = 0.000146909, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0090326, Final residual = 0.000490049, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0798128, Final residual = 0.000474999, No Iterations 5
time step continuity errors : sum local = 0.00217004, global = 0.000117294, cumulative = -0.310727
smoothSolver: Solving for omega, Initial residual = 0.00114798, Final residual = 8.2781e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00624837, Final residual = 0.000327147, No Iterations 4
ExecutionTime = 21.52 s ClockTime = 22 s
Time = 146
smoothSolver: Solving for Ux, Initial residual = 0.00281552, Final residual = 0.00014573, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00900252, Final residual = 0.000488047, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0799955, Final residual = 0.000474869, No Iterations 5
time step continuity errors : sum local = 0.00216078, global = 0.000115464, cumulative = -0.310612
smoothSolver: Solving for omega, Initial residual = 0.00113947, Final residual = 8.21362e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00621359, Final residual = 0.000325668, No Iterations 4
ExecutionTime = 21.66 s ClockTime = 22 s
Time = 147
smoothSolver: Solving for Ux, Initial residual = 0.00279121, Final residual = 0.000144595, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00897061, Final residual = 0.000485992, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0802166, Final residual = 0.000477223, No Iterations 5
time step continuity errors : sum local = 0.00216346, global = 0.000115806, cumulative = -0.310496
smoothSolver: Solving for omega, Initial residual = 0.00113082, Final residual = 8.15605e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00617775, Final residual = 0.000324165, No Iterations 4
ExecutionTime = 21.8 s ClockTime = 22 s
Time = 148
smoothSolver: Solving for Ux, Initial residual = 0.00276749, Final residual = 0.000143495, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00893712, Final residual = 0.000483996, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0802203, Final residual = 0.000480073, No Iterations 5
time step continuity errors : sum local = 0.00216788, global = 0.000116612, cumulative = -0.310379
smoothSolver: Solving for omega, Initial residual = 0.00112284, Final residual = 8.10282e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00614209, Final residual = 0.000322696, No Iterations 4
ExecutionTime = 21.95 s ClockTime = 22 s
Time = 149
smoothSolver: Solving for Ux, Initial residual = 0.00274427, Final residual = 0.000142408, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00889967, Final residual = 0.000481809, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0800159, Final residual = 0.000480884, No Iterations 5
time step continuity errors : sum local = 0.00216258, global = 0.000117005, cumulative = -0.310262
smoothSolver: Solving for omega, Initial residual = 0.001115, Final residual = 8.04836e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00610632, Final residual = 0.000321261, No Iterations 4
ExecutionTime = 22.09 s ClockTime = 22 s
Time = 150
smoothSolver: Solving for Ux, Initial residual = 0.00272144, Final residual = 0.000141334, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00886398, Final residual = 0.000479704, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0797732, Final residual = 0.000478371, No Iterations 5
time step continuity errors : sum local = 0.00214193, global = 0.000116479, cumulative = -0.310146
smoothSolver: Solving for omega, Initial residual = 0.00110696, Final residual = 7.99155e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00607045, Final residual = 0.000319833, No Iterations 4
ExecutionTime = 22.45 s ClockTime = 23 s
Time = 151
smoothSolver: Solving for Ux, Initial residual = 0.00269881, Final residual = 0.000140263, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00882424, Final residual = 0.000477446, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0795611, Final residual = 0.000472294, No Iterations 5
time step continuity errors : sum local = 0.00210502, global = 0.000115059, cumulative = -0.310031
smoothSolver: Solving for omega, Initial residual = 0.00109825, Final residual = 7.93264e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00603465, Final residual = 0.000318425, No Iterations 4
ExecutionTime = 22.6 s ClockTime = 23 s
Time = 152
smoothSolver: Solving for Ux, Initial residual = 0.00267623, Final residual = 0.000139203, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00878438, Final residual = 0.000475182, No Iterations 4
GAMG: Solving for p, Initial residual = 0.079504, Final residual = 0.000464982, No Iterations 5
time step continuity errors : sum local = 0.00206319, global = 0.000114446, cumulative = -0.309916
smoothSolver: Solving for omega, Initial residual = 0.00108967, Final residual = 7.86893e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00599853, Final residual = 0.000316961, No Iterations 4
ExecutionTime = 22.75 s ClockTime = 23 s
Time = 153
smoothSolver: Solving for Ux, Initial residual = 0.00265372, Final residual = 0.000138146, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00874372, Final residual = 0.000472921, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0796789, Final residual = 0.00045885, No Iterations 5
time step continuity errors : sum local = 0.00202758, global = 0.000114811, cumulative = -0.309802
smoothSolver: Solving for omega, Initial residual = 0.00108032, Final residual = 7.80337e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00596225, Final residual = 0.000315439, No Iterations 4
ExecutionTime = 22.89 s ClockTime = 23 s
Time = 154
smoothSolver: Solving for Ux, Initial residual = 0.0026315, Final residual = 0.000137092, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00870101, Final residual = 0.000470629, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0791959, Final residual = 0.000454009, No Iterations 5
time step continuity errors : sum local = 0.00199835, global = 0.000115754, cumulative = -0.309686
smoothSolver: Solving for omega, Initial residual = 0.00107063, Final residual = 7.7388e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00592669, Final residual = 0.000313909, No Iterations 4
ExecutionTime = 23.04 s ClockTime = 23 s
Time = 155
smoothSolver: Solving for Ux, Initial residual = 0.00260921, Final residual = 0.00013603, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00865878, Final residual = 0.000468452, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0786369, Final residual = 0.000448512, No Iterations 5
time step continuity errors : sum local = 0.0019664, global = 0.000115935, cumulative = -0.30957
smoothSolver: Solving for omega, Initial residual = 0.00106066, Final residual = 7.67606e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00589092, Final residual = 0.00031242, No Iterations 4
ExecutionTime = 23.19 s ClockTime = 24 s
Time = 156
smoothSolver: Solving for Ux, Initial residual = 0.00258699, Final residual = 0.000134955, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00861462, Final residual = 0.000466222, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0782108, Final residual = 0.000440985, No Iterations 5
time step continuity errors : sum local = 0.00192563, global = 0.000114115, cumulative = -0.309456
smoothSolver: Solving for omega, Initial residual = 0.00105089, Final residual = 7.61449e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00585472, Final residual = 0.000310934, No Iterations 4
ExecutionTime = 23.33 s ClockTime = 24 s
Time = 157
smoothSolver: Solving for Ux, Initial residual = 0.00256455, Final residual = 0.000133879, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00857065, Final residual = 0.000464082, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0773648, Final residual = 0.000433513, No Iterations 5
time step continuity errors : sum local = 0.0018857, global = 0.000111344, cumulative = -0.309344
smoothSolver: Solving for omega, Initial residual = 0.00104131, Final residual = 7.55318e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00581825, Final residual = 0.000309431, No Iterations 4
ExecutionTime = 23.48 s ClockTime = 24 s
Time = 158
smoothSolver: Solving for Ux, Initial residual = 0.00254231, Final residual = 0.000132799, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00852495, Final residual = 0.000461867, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0761598, Final residual = 0.000428161, No Iterations 5
time step continuity errors : sum local = 0.00185519, global = 0.000108434, cumulative = -0.309236
smoothSolver: Solving for omega, Initial residual = 0.00103146, Final residual = 7.49129e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0057827, Final residual = 0.000307906, No Iterations 4
ExecutionTime = 23.62 s ClockTime = 24 s
Time = 159
smoothSolver: Solving for Ux, Initial residual = 0.00252043, Final residual = 0.000131721, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00847842, Final residual = 0.000459638, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0753817, Final residual = 0.000426959, No Iterations 5
time step continuity errors : sum local = 0.00184303, global = 0.000106638, cumulative = -0.309129
smoothSolver: Solving for omega, Initial residual = 0.00102131, Final residual = 7.42598e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00574844, Final residual = 0.000306339, No Iterations 4
ExecutionTime = 23.77 s ClockTime = 24 s
Time = 160
smoothSolver: Solving for Ux, Initial residual = 0.0024986, Final residual = 0.000130641, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0084326, Final residual = 0.000457427, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0743353, Final residual = 0.00042758, No Iterations 5
time step continuity errors : sum local = 0.00183938, global = 0.000105407, cumulative = -0.309024
smoothSolver: Solving for omega, Initial residual = 0.00101137, Final residual = 7.35676e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0057159, Final residual = 0.000304831, No Iterations 4
ExecutionTime = 23.91 s ClockTime = 24 s
Time = 161
smoothSolver: Solving for Ux, Initial residual = 0.00247687, Final residual = 0.000129552, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0083855, Final residual = 0.00045516, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0731382, Final residual = 0.000429554, No Iterations 5
time step continuity errors : sum local = 0.0018417, global = 0.000104325, cumulative = -0.30892
smoothSolver: Solving for omega, Initial residual = 0.00100113, Final residual = 7.28551e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00568584, Final residual = 0.000303357, No Iterations 4
ExecutionTime = 24.05 s ClockTime = 24 s
Time = 162
smoothSolver: Solving for Ux, Initial residual = 0.00245514, Final residual = 0.00012846, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00833991, Final residual = 0.000452991, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0724368, Final residual = 0.000431105, No Iterations 5
time step continuity errors : sum local = 0.00184251, global = 0.000102778, cumulative = -0.308817
smoothSolver: Solving for omega, Initial residual = 0.000991381, Final residual = 7.21386e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00565733, Final residual = 0.000301893, No Iterations 4
ExecutionTime = 24.2 s ClockTime = 25 s
Time = 163
smoothSolver: Solving for Ux, Initial residual = 0.00243338, Final residual = 0.000127374, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0082959, Final residual = 0.000450862, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0720446, Final residual = 0.000430809, No Iterations 5
time step continuity errors : sum local = 0.00183567, global = 0.000100601, cumulative = -0.308716
smoothSolver: Solving for omega, Initial residual = 0.000981999, Final residual = 7.1459e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00563034, Final residual = 0.000300428, No Iterations 4
ExecutionTime = 24.35 s ClockTime = 25 s
Time = 164
smoothSolver: Solving for Ux, Initial residual = 0.00241189, Final residual = 0.000126296, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00825364, Final residual = 0.000448816, No Iterations 4
GAMG: Solving for p, Initial residual = 0.07149, Final residual = 0.000428015, No Iterations 5
time step continuity errors : sum local = 0.00181945, global = 9.80718e-05, cumulative = -0.308618
smoothSolver: Solving for omega, Initial residual = 0.000972314, Final residual = 7.0836e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00560349, Final residual = 0.000298937, No Iterations 4
ExecutionTime = 24.5 s ClockTime = 25 s
Time = 165
smoothSolver: Solving for Ux, Initial residual = 0.0023907, Final residual = 0.000125242, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00821195, Final residual = 0.000446756, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0710338, Final residual = 0.000423936, No Iterations 5
time step continuity errors : sum local = 0.0017981, global = 9.58768e-05, cumulative = -0.308522
smoothSolver: Solving for omega, Initial residual = 0.000962773, Final residual = 7.0267e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00557647, Final residual = 0.000297477, No Iterations 4
ExecutionTime = 24.65 s ClockTime = 25 s
Time = 166
smoothSolver: Solving for Ux, Initial residual = 0.00236983, Final residual = 0.000124204, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00817049, Final residual = 0.000444685, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0706086, Final residual = 0.000420172, No Iterations 5
time step continuity errors : sum local = 0.00177813, global = 9.38256e-05, cumulative = -0.308428
smoothSolver: Solving for omega, Initial residual = 0.00095369, Final residual = 6.96825e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00554907, Final residual = 0.000296045, No Iterations 4
ExecutionTime = 24.79 s ClockTime = 25 s
Time = 167
smoothSolver: Solving for Ux, Initial residual = 0.00234932, Final residual = 0.000123179, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00812983, Final residual = 0.000442612, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0699377, Final residual = 0.000417535, No Iterations 5
time step continuity errors : sum local = 0.0017636, global = 9.22541e-05, cumulative = -0.308336
smoothSolver: Solving for omega, Initial residual = 0.000944745, Final residual = 6.90833e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00552173, Final residual = 0.000294596, No Iterations 4
ExecutionTime = 24.94 s ClockTime = 25 s
Time = 168
smoothSolver: Solving for Ux, Initial residual = 0.00232906, Final residual = 0.000122168, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00808873, Final residual = 0.000440417, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0695745, Final residual = 0.000416524, No Iterations 5
time step continuity errors : sum local = 0.00175523, global = 9.14687e-05, cumulative = -0.308245
smoothSolver: Solving for omega, Initial residual = 0.000935411, Final residual = 6.84601e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00549288, Final residual = 0.000293158, No Iterations 4
ExecutionTime = 25.09 s ClockTime = 25 s
Time = 169
smoothSolver: Solving for Ux, Initial residual = 0.0023088, Final residual = 0.000121168, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00804807, Final residual = 0.000438297, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0695009, Final residual = 0.000415853, No Iterations 5
time step continuity errors : sum local = 0.00174858, global = 9.11274e-05, cumulative = -0.308154
smoothSolver: Solving for omega, Initial residual = 0.000925762, Final residual = 6.78351e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00546304, Final residual = 0.00029166, No Iterations 4
ExecutionTime = 25.24 s ClockTime = 26 s
Time = 170
smoothSolver: Solving for Ux, Initial residual = 0.0022887, Final residual = 0.000120176, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00800602, Final residual = 0.00043608, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0691749, Final residual = 0.000413438, No Iterations 5
time step continuity errors : sum local = 0.0017351, global = 9.12958e-05, cumulative = -0.308062
smoothSolver: Solving for omega, Initial residual = 0.000915581, Final residual = 6.72256e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00543228, Final residual = 0.000290152, No Iterations 4
ExecutionTime = 25.38 s ClockTime = 26 s
Time = 171
smoothSolver: Solving for Ux, Initial residual = 0.00226863, Final residual = 0.000119198, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00796331, Final residual = 0.000433937, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0685152, Final residual = 0.000409665, No Iterations 5
time step continuity errors : sum local = 0.001715, global = 9.08808e-05, cumulative = -0.307971
smoothSolver: Solving for omega, Initial residual = 0.000905439, Final residual = 6.66426e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00540073, Final residual = 0.000288661, No Iterations 4
ExecutionTime = 25.53 s ClockTime = 26 s
Time = 172
smoothSolver: Solving for Ux, Initial residual = 0.00224885, Final residual = 0.000118237, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00791951, Final residual = 0.000431728, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0678959, Final residual = 0.000404372, No Iterations 5
time step continuity errors : sum local = 0.00168817, global = 8.96533e-05, cumulative = -0.307882
smoothSolver: Solving for omega, Initial residual = 0.000895593, Final residual = 6.60801e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00536814, Final residual = 0.000287181, No Iterations 4
ExecutionTime = 25.67 s ClockTime = 26 s
Time = 173
smoothSolver: Solving for Ux, Initial residual = 0.00222924, Final residual = 0.00011729, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00787328, Final residual = 0.000429505, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0670915, Final residual = 0.000398293, No Iterations 5
time step continuity errors : sum local = 0.00165836, global = 8.81773e-05, cumulative = -0.307794
smoothSolver: Solving for omega, Initial residual = 0.000885773, Final residual = 6.55215e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00533485, Final residual = 0.000285709, No Iterations 4
ExecutionTime = 25.82 s ClockTime = 26 s
Time = 174
smoothSolver: Solving for Ux, Initial residual = 0.00220985, Final residual = 0.000116361, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00782638, Final residual = 0.000427193, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0660153, Final residual = 0.000393724, No Iterations 5
time step continuity errors : sum local = 0.00163483, global = 8.65778e-05, cumulative = -0.307707
smoothSolver: Solving for omega, Initial residual = 0.000876068, Final residual = 6.49538e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00530158, Final residual = 0.000284215, No Iterations 4
ExecutionTime = 25.97 s ClockTime = 26 s
Time = 175
smoothSolver: Solving for Ux, Initial residual = 0.00219078, Final residual = 0.000115447, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00777701, Final residual = 0.000424867, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0649802, Final residual = 0.000391765, No Iterations 5
time step continuity errors : sum local = 0.00162163, global = 8.53783e-05, cumulative = -0.307622
smoothSolver: Solving for omega, Initial residual = 0.000865933, Final residual = 6.43691e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00526788, Final residual = 0.000282704, No Iterations 4
ExecutionTime = 26.11 s ClockTime = 26 s
Time = 176
smoothSolver: Solving for Ux, Initial residual = 0.00217172, Final residual = 0.000114544, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00772697, Final residual = 0.000422499, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0642037, Final residual = 0.000392717, No Iterations 5
time step continuity errors : sum local = 0.00162093, global = 8.48252e-05, cumulative = -0.307537
smoothSolver: Solving for omega, Initial residual = 0.000855463, Final residual = 6.37813e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00523388, Final residual = 0.000281186, No Iterations 4
ExecutionTime = 26.26 s ClockTime = 27 s
Time = 177
smoothSolver: Solving for Ux, Initial residual = 0.00215293, Final residual = 0.000113656, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00767549, Final residual = 0.000420104, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0633771, Final residual = 0.000394994, No Iterations 5
time step continuity errors : sum local = 0.00162639, global = 8.44791e-05, cumulative = -0.307452
smoothSolver: Solving for omega, Initial residual = 0.000845492, Final residual = 6.32001e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00519998, Final residual = 0.000279684, No Iterations 4
ExecutionTime = 26.41 s ClockTime = 27 s
Time = 178
smoothSolver: Solving for Ux, Initial residual = 0.00213418, Final residual = 0.000112782, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00762376, Final residual = 0.000417763, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0626431, Final residual = 0.000395435, No Iterations 5
time step continuity errors : sum local = 0.0016242, global = 8.38051e-05, cumulative = -0.307369
smoothSolver: Solving for omega, Initial residual = 0.000835914, Final residual = 6.26404e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0051659, Final residual = 0.00027822, No Iterations 4
ExecutionTime = 26.55 s ClockTime = 27 s
Time = 179
smoothSolver: Solving for Ux, Initial residual = 0.00211577, Final residual = 0.000111924, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00757098, Final residual = 0.000415379, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0622577, Final residual = 0.000393088, No Iterations 5
time step continuity errors : sum local = 0.00161119, global = 8.21701e-05, cumulative = -0.307286
smoothSolver: Solving for omega, Initial residual = 0.000826305, Final residual = 6.21235e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00513188, Final residual = 0.000276753, No Iterations 4
ExecutionTime = 26.7 s ClockTime = 27 s
Time = 180
smoothSolver: Solving for Ux, Initial residual = 0.00209766, Final residual = 0.000111087, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00751749, Final residual = 0.000412992, No Iterations 4
GAMG: Solving for p, Initial residual = 0.06162, Final residual = 0.000387826, No Iterations 5
time step continuity errors : sum local = 0.00158698, global = 7.96075e-05, cumulative = -0.307207
smoothSolver: Solving for omega, Initial residual = 0.000816785, Final residual = 6.16322e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00509765, Final residual = 0.000275313, No Iterations 4
ExecutionTime = 26.85 s ClockTime = 27 s
Time = 181
smoothSolver: Solving for Ux, Initial residual = 0.00207997, Final residual = 0.000110269, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00746348, Final residual = 0.000410581, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0607954, Final residual = 0.000380768, No Iterations 5
time step continuity errors : sum local = 0.00155578, global = 7.68386e-05, cumulative = -0.30713
smoothSolver: Solving for omega, Initial residual = 0.000807598, Final residual = 6.11225e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0050635, Final residual = 0.000273875, No Iterations 4
ExecutionTime = 27 s ClockTime = 27 s
Time = 182
smoothSolver: Solving for Ux, Initial residual = 0.00206272, Final residual = 0.000109465, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00740815, Final residual = 0.000408162, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0599511, Final residual = 0.000375169, No Iterations 5
time step continuity errors : sum local = 0.00153025, global = 7.42505e-05, cumulative = -0.307056
smoothSolver: Solving for omega, Initial residual = 0.000797952, Final residual = 6.06051e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00502986, Final residual = 0.000272451, No Iterations 4
ExecutionTime = 27.14 s ClockTime = 28 s
Time = 183
smoothSolver: Solving for Ux, Initial residual = 0.00204568, Final residual = 0.000108675, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00735301, Final residual = 0.000405738, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0595793, Final residual = 0.000372247, No Iterations 5
time step continuity errors : sum local = 0.00151517, global = 7.25221e-05, cumulative = -0.306983
smoothSolver: Solving for omega, Initial residual = 0.000788364, Final residual = 6.00864e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00499721, Final residual = 0.000271086, No Iterations 4
ExecutionTime = 27.29 s ClockTime = 28 s
Time = 184
smoothSolver: Solving for Ux, Initial residual = 0.00202893, Final residual = 0.000107894, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00729677, Final residual = 0.000403304, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0592955, Final residual = 0.000371679, No Iterations 5
time step continuity errors : sum local = 0.00151013, global = 7.12858e-05, cumulative = -0.306912
smoothSolver: Solving for omega, Initial residual = 0.000778717, Final residual = 5.9575e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00496518, Final residual = 0.000269728, No Iterations 4
ExecutionTime = 27.43 s ClockTime = 28 s
Time = 185
smoothSolver: Solving for Ux, Initial residual = 0.00201241, Final residual = 0.000107124, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00724113, Final residual = 0.0004009, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0587669, Final residual = 0.000369643, No Iterations 5
time step continuity errors : sum local = 0.00149941, global = 7.0784e-05, cumulative = -0.306841
smoothSolver: Solving for omega, Initial residual = 0.000768618, Final residual = 5.90741e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00493318, Final residual = 0.000268426, No Iterations 4
ExecutionTime = 27.58 s ClockTime = 28 s
Time = 186
smoothSolver: Solving for Ux, Initial residual = 0.00199615, Final residual = 0.000106359, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00718506, Final residual = 0.000398482, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0581717, Final residual = 0.00036607, No Iterations 5
time step continuity errors : sum local = 0.00148162, global = 7.00237e-05, cumulative = -0.306771
smoothSolver: Solving for omega, Initial residual = 0.000758554, Final residual = 5.86011e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00490179, Final residual = 0.000267105, No Iterations 4
ExecutionTime = 27.73 s ClockTime = 28 s
Time = 187
smoothSolver: Solving for Ux, Initial residual = 0.0019803, Final residual = 0.000105609, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00712903, Final residual = 0.00039607, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0575676, Final residual = 0.000360366, No Iterations 5
time step continuity errors : sum local = 0.00145475, global = 6.85765e-05, cumulative = -0.306703
smoothSolver: Solving for omega, Initial residual = 0.000749255, Final residual = 5.8141e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00487151, Final residual = 0.000265805, No Iterations 4
ExecutionTime = 27.87 s ClockTime = 28 s
Time = 188
smoothSolver: Solving for Ux, Initial residual = 0.00196466, Final residual = 0.000104867, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00707282, Final residual = 0.000393646, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0568605, Final residual = 0.000353714, No Iterations 5
time step continuity errors : sum local = 0.00142446, global = 6.65278e-05, cumulative = -0.306636
smoothSolver: Solving for omega, Initial residual = 0.000740061, Final residual = 5.76741e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00484188, Final residual = 0.000264586, No Iterations 4
ExecutionTime = 28.01 s ClockTime = 28 s
Time = 189
smoothSolver: Solving for Ux, Initial residual = 0.0019494, Final residual = 0.00010414, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00701657, Final residual = 0.000391225, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0559398, Final residual = 0.000348292, No Iterations 5
time step continuity errors : sum local = 0.00139977, global = 6.45086e-05, cumulative = -0.306571
smoothSolver: Solving for omega, Initial residual = 0.000730897, Final residual = 5.71966e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00481415, Final residual = 0.000263427, No Iterations 4
ExecutionTime = 28.16 s ClockTime = 29 s
Time = 190
smoothSolver: Solving for Ux, Initial residual = 0.00193433, Final residual = 0.000103424, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00696031, Final residual = 0.000388795, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0548988, Final residual = 0.000346035, No Iterations 5
time step continuity errors : sum local = 0.00138757, global = 6.30215e-05, cumulative = -0.306508
smoothSolver: Solving for omega, Initial residual = 0.000721771, Final residual = 5.67158e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00478721, Final residual = 0.000262306, No Iterations 4
ExecutionTime = 28.31 s ClockTime = 29 s
Time = 191
smoothSolver: Solving for Ux, Initial residual = 0.00191968, Final residual = 0.00010272, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00690427, Final residual = 0.000386378, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0541722, Final residual = 0.000346392, No Iterations 5
time step continuity errors : sum local = 0.00138614, global = 6.21505e-05, cumulative = -0.306446
smoothSolver: Solving for omega, Initial residual = 0.000713104, Final residual = 5.62435e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0047619, Final residual = 0.000261177, No Iterations 4
ExecutionTime = 28.46 s ClockTime = 29 s
Time = 192
smoothSolver: Solving for Ux, Initial residual = 0.00190536, Final residual = 0.000102035, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00684937, Final residual = 0.000383996, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0536766, Final residual = 0.000347173, No Iterations 5
time step continuity errors : sum local = 0.00138683, global = 6.16046e-05, cumulative = -0.306385
smoothSolver: Solving for omega, Initial residual = 0.000705054, Final residual = 5.57801e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00473767, Final residual = 0.00026006, No Iterations 4
ExecutionTime = 28.61 s ClockTime = 29 s
Time = 193
smoothSolver: Solving for Ux, Initial residual = 0.00189144, Final residual = 0.000101365, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00679498, Final residual = 0.000381666, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0531107, Final residual = 0.000346117, No Iterations 5
time step continuity errors : sum local = 0.00138057, global = 6.07943e-05, cumulative = -0.306324
smoothSolver: Solving for omega, Initial residual = 0.000697208, Final residual = 5.53503e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00471464, Final residual = 0.000258979, No Iterations 4
ExecutionTime = 28.75 s ClockTime = 29 s
Time = 194
smoothSolver: Solving for Ux, Initial residual = 0.00187795, Final residual = 0.000100709, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00674202, Final residual = 0.000379332, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0525074, Final residual = 0.000341912, No Iterations 5
time step continuity errors : sum local = 0.00136211, global = 5.92005e-05, cumulative = -0.306265
smoothSolver: Solving for omega, Initial residual = 0.000689626, Final residual = 5.49401e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00469251, Final residual = 0.000257975, No Iterations 4
ExecutionTime = 28.9 s ClockTime = 29 s
Time = 195
smoothSolver: Solving for Ux, Initial residual = 0.00186495, Final residual = 0.000100073, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00669019, Final residual = 0.000377055, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0519507, Final residual = 0.000335624, No Iterations 5
time step continuity errors : sum local = 0.00133517, global = 5.69317e-05, cumulative = -0.306208
smoothSolver: Solving for omega, Initial residual = 0.00068213, Final residual = 5.45234e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00467111, Final residual = 0.000256977, No Iterations 4
ExecutionTime = 29.04 s ClockTime = 29 s
Time = 196
smoothSolver: Solving for Ux, Initial residual = 0.00185239, Final residual = 9.94517e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00664076, Final residual = 0.000374812, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0513821, Final residual = 0.000329529, No Iterations 5
time step continuity errors : sum local = 0.00130902, global = 5.46444e-05, cumulative = -0.306153
smoothSolver: Solving for omega, Initial residual = 0.000674852, Final residual = 5.41064e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0046516, Final residual = 0.00025598, No Iterations 4
ExecutionTime = 29.19 s ClockTime = 30 s
Time = 197
smoothSolver: Solving for Ux, Initial residual = 0.00184027, Final residual = 9.88501e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00659244, Final residual = 0.000372607, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0508873, Final residual = 0.000325811, No Iterations 5
time step continuity errors : sum local = 0.0012926, global = 5.30836e-05, cumulative = -0.3061
smoothSolver: Solving for omega, Initial residual = 0.000668123, Final residual = 5.36944e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00463215, Final residual = 0.000254955, No Iterations 4
ExecutionTime = 29.35 s ClockTime = 30 s
Time = 198
smoothSolver: Solving for Ux, Initial residual = 0.00182847, Final residual = 9.82658e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00654636, Final residual = 0.000370406, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0505115, Final residual = 0.000324792, No Iterations 5
time step continuity errors : sum local = 0.00128636, global = 5.23581e-05, cumulative = -0.306048
smoothSolver: Solving for omega, Initial residual = 0.000661419, Final residual = 5.32893e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00461348, Final residual = 0.000253886, No Iterations 4
ExecutionTime = 29.49 s ClockTime = 30 s
Time = 199
smoothSolver: Solving for Ux, Initial residual = 0.00181703, Final residual = 9.76941e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00650153, Final residual = 0.000368253, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0503125, Final residual = 0.000324634, No Iterations 5
time step continuity errors : sum local = 0.00128323, global = 5.20967e-05, cumulative = -0.305996
smoothSolver: Solving for omega, Initial residual = 0.00065471, Final residual = 5.28942e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00459428, Final residual = 0.00025285, No Iterations 4
ExecutionTime = 29.64 s ClockTime = 30 s
Time = 200
smoothSolver: Solving for Ux, Initial residual = 0.00180592, Final residual = 9.71352e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00645723, Final residual = 0.000366055, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0500478, Final residual = 0.000323132, No Iterations 5
time step continuity errors : sum local = 0.0012748, global = 5.19406e-05, cumulative = -0.305944
smoothSolver: Solving for omega, Initial residual = 0.000648268, Final residual = 5.25177e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00457527, Final residual = 0.000251852, No Iterations 4
ExecutionTime = 29.99 s ClockTime = 30 s
Time = 201
smoothSolver: Solving for Ux, Initial residual = 0.00179519, Final residual = 9.65869e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00641251, Final residual = 0.000363899, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0495654, Final residual = 0.000318922, No Iterations 5
time step continuity errors : sum local = 0.00125587, global = 5.14718e-05, cumulative = -0.305892
smoothSolver: Solving for omega, Initial residual = 0.000642264, Final residual = 5.21539e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00455596, Final residual = 0.000250858, No Iterations 4
ExecutionTime = 30.13 s ClockTime = 31 s
Time = 202
smoothSolver: Solving for Ux, Initial residual = 0.0017847, Final residual = 9.60478e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00636801, Final residual = 0.000361693, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0489364, Final residual = 0.00031277, No Iterations 5
time step continuity errors : sum local = 0.00122912, global = 5.07041e-05, cumulative = -0.305841
smoothSolver: Solving for omega, Initial residual = 0.000636715, Final residual = 5.1785e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00453692, Final residual = 0.000249826, No Iterations 4
ExecutionTime = 30.28 s ClockTime = 31 s
Time = 203
smoothSolver: Solving for Ux, Initial residual = 0.00177448, Final residual = 9.55237e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00632293, Final residual = 0.000359505, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0482837, Final residual = 0.000307533, No Iterations 5
time step continuity errors : sum local = 0.00120586, global = 4.9627e-05, cumulative = -0.305792
smoothSolver: Solving for omega, Initial residual = 0.000631211, Final residual = 5.14087e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00451789, Final residual = 0.000248774, No Iterations 4
ExecutionTime = 30.43 s ClockTime = 31 s
Time = 204
smoothSolver: Solving for Ux, Initial residual = 0.00176459, Final residual = 9.50079e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00627837, Final residual = 0.000357274, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0477454, Final residual = 0.000305107, No Iterations 5
time step continuity errors : sum local = 0.00119371, global = 4.88908e-05, cumulative = -0.305743
smoothSolver: Solving for omega, Initial residual = 0.000625952, Final residual = 5.1024e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00449914, Final residual = 0.00024766, No Iterations 4
ExecutionTime = 30.58 s ClockTime = 31 s
Time = 205
smoothSolver: Solving for Ux, Initial residual = 0.00175496, Final residual = 9.45047e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00623322, Final residual = 0.000355062, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0472506, Final residual = 0.000304948, No Iterations 5
time step continuity errors : sum local = 0.00119142, global = 4.87166e-05, cumulative = -0.305694
smoothSolver: Solving for omega, Initial residual = 0.000621075, Final residual = 5.06567e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00448047, Final residual = 0.000246639, No Iterations 4
ExecutionTime = 30.72 s ClockTime = 31 s
Time = 206
smoothSolver: Solving for Ux, Initial residual = 0.00174564, Final residual = 9.4014e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00618918, Final residual = 0.000352855, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0468848, Final residual = 0.000305553, No Iterations 5
time step continuity errors : sum local = 0.00119212, global = 4.89663e-05, cumulative = -0.305645
smoothSolver: Solving for omega, Initial residual = 0.000616452, Final residual = 5.03035e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0044617, Final residual = 0.000245609, No Iterations 4
ExecutionTime = 30.88 s ClockTime = 31 s
Time = 207
smoothSolver: Solving for Ux, Initial residual = 0.00173651, Final residual = 9.353e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00614463, Final residual = 0.000350657, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0465308, Final residual = 0.0003047, No Iterations 5
time step continuity errors : sum local = 0.00118744, global = 4.9159e-05, cumulative = -0.305596
smoothSolver: Solving for omega, Initial residual = 0.00061194, Final residual = 4.99667e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00444292, Final residual = 0.000244561, No Iterations 4
ExecutionTime = 31.02 s ClockTime = 31 s
Time = 208
smoothSolver: Solving for Ux, Initial residual = 0.00172762, Final residual = 9.30527e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00610133, Final residual = 0.000348442, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0463234, Final residual = 0.000301416, No Iterations 5
time step continuity errors : sum local = 0.00117337, global = 4.88293e-05, cumulative = -0.305547
smoothSolver: Solving for omega, Initial residual = 0.000607575, Final residual = 4.96474e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00442406, Final residual = 0.000243505, No Iterations 4
ExecutionTime = 31.16 s ClockTime = 32 s
Time = 209
smoothSolver: Solving for Ux, Initial residual = 0.00171888, Final residual = 9.25834e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00605833, Final residual = 0.000346222, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0460003, Final residual = 0.00029597, No Iterations 5
time step continuity errors : sum local = 0.00115096, global = 4.78955e-05, cumulative = -0.305499
smoothSolver: Solving for omega, Initial residual = 0.000603159, Final residual = 4.93225e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00440563, Final residual = 0.00024242, No Iterations 4
ExecutionTime = 31.31 s ClockTime = 32 s
Time = 210
smoothSolver: Solving for Ux, Initial residual = 0.00171033, Final residual = 9.2127e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00601547, Final residual = 0.000343997, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0454914, Final residual = 0.000290384, No Iterations 5
time step continuity errors : sum local = 0.00112802, global = 4.67869e-05, cumulative = -0.305453
smoothSolver: Solving for omega, Initial residual = 0.000598982, Final residual = 4.89958e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00438712, Final residual = 0.000241347, No Iterations 4
ExecutionTime = 31.46 s ClockTime = 32 s
Time = 211
smoothSolver: Solving for Ux, Initial residual = 0.00170194, Final residual = 9.16745e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00597302, Final residual = 0.000341783, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0450007, Final residual = 0.000287301, No Iterations 5
time step continuity errors : sum local = 0.00111448, global = 4.60538e-05, cumulative = -0.305407
smoothSolver: Solving for omega, Initial residual = 0.000594852, Final residual = 4.86733e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00436844, Final residual = 0.000240329, No Iterations 4
ExecutionTime = 31.6 s ClockTime = 32 s
Time = 212
smoothSolver: Solving for Ux, Initial residual = 0.00169374, Final residual = 9.12256e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00593111, Final residual = 0.00033956, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0447837, Final residual = 0.000287429, No Iterations 5
time step continuity errors : sum local = 0.00111313, global = 4.59329e-05, cumulative = -0.305361
smoothSolver: Solving for omega, Initial residual = 0.000590737, Final residual = 4.83557e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00434935, Final residual = 0.000239281, No Iterations 4
ExecutionTime = 31.75 s ClockTime = 32 s
Time = 213
smoothSolver: Solving for Ux, Initial residual = 0.00168557, Final residual = 9.07823e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0058892, Final residual = 0.000337392, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0446657, Final residual = 0.00028844, No Iterations 5
time step continuity errors : sum local = 0.00111511, global = 4.62979e-05, cumulative = -0.305314
smoothSolver: Solving for omega, Initial residual = 0.000586544, Final residual = 4.80453e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00433023, Final residual = 0.00023822, No Iterations 4
ExecutionTime = 31.9 s ClockTime = 32 s
Time = 214
smoothSolver: Solving for Ux, Initial residual = 0.00167766, Final residual = 9.03415e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00584848, Final residual = 0.000335181, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0445299, Final residual = 0.000287758, No Iterations 5
time step continuity errors : sum local = 0.00111069, global = 4.6808e-05, cumulative = -0.305267
smoothSolver: Solving for omega, Initial residual = 0.000582582, Final residual = 4.77494e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00431149, Final residual = 0.000237141, No Iterations 4
ExecutionTime = 32.04 s ClockTime = 32 s
Time = 215
smoothSolver: Solving for Ux, Initial residual = 0.00166981, Final residual = 8.99028e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00580768, Final residual = 0.000333024, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0442223, Final residual = 0.000284513, No Iterations 5
time step continuity errors : sum local = 0.00109623, global = 4.69807e-05, cumulative = -0.305221
smoothSolver: Solving for omega, Initial residual = 0.000578866, Final residual = 4.74508e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00429302, Final residual = 0.000236062, No Iterations 4
ExecutionTime = 32.18 s ClockTime = 33 s
Time = 216
smoothSolver: Solving for Ux, Initial residual = 0.00166204, Final residual = 8.94645e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00576747, Final residual = 0.000330827, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0438385, Final residual = 0.000279673, No Iterations 5
time step continuity errors : sum local = 0.00107547, global = 4.67231e-05, cumulative = -0.305174
smoothSolver: Solving for omega, Initial residual = 0.000575332, Final residual = 4.71498e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00427507, Final residual = 0.000235006, No Iterations 4
ExecutionTime = 32.33 s ClockTime = 33 s
Time = 217
smoothSolver: Solving for Ux, Initial residual = 0.00165442, Final residual = 8.90286e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00572732, Final residual = 0.00032866, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0436452, Final residual = 0.000275544, No Iterations 5
time step continuity errors : sum local = 0.00105761, global = 4.62408e-05, cumulative = -0.305128
smoothSolver: Solving for omega, Initial residual = 0.000571498, Final residual = 4.68432e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00425706, Final residual = 0.000233942, No Iterations 4
ExecutionTime = 32.48 s ClockTime = 33 s
Time = 218
smoothSolver: Solving for Ux, Initial residual = 0.00164683, Final residual = 8.85945e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00568776, Final residual = 0.000326482, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0432952, Final residual = 0.000273939, No Iterations 5
time step continuity errors : sum local = 0.00104978, global = 4.59135e-05, cumulative = -0.305082
smoothSolver: Solving for omega, Initial residual = 0.00056783, Final residual = 4.653e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00423894, Final residual = 0.000232887, No Iterations 4
ExecutionTime = 32.63 s ClockTime = 33 s
Time = 219
smoothSolver: Solving for Ux, Initial residual = 0.00163931, Final residual = 8.81679e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0056481, Final residual = 0.000324339, No Iterations 4
GAMG: Solving for p, Initial residual = 0.043032, Final residual = 0.000274511, No Iterations 5
time step continuity errors : sum local = 0.00105085, global = 4.59693e-05, cumulative = -0.305036
smoothSolver: Solving for omega, Initial residual = 0.000564352, Final residual = 4.62256e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00422036, Final residual = 0.000231816, No Iterations 4
ExecutionTime = 32.78 s ClockTime = 33 s
Time = 220
smoothSolver: Solving for Ux, Initial residual = 0.00163189, Final residual = 8.7746e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00560934, Final residual = 0.000322203, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0427505, Final residual = 0.000275052, No Iterations 5
time step continuity errors : sum local = 0.00105201, global = 4.64426e-05, cumulative = -0.304989
smoothSolver: Solving for omega, Initial residual = 0.000560951, Final residual = 4.59431e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00420232, Final residual = 0.000230721, No Iterations 4
ExecutionTime = 32.93 s ClockTime = 33 s
Time = 221
smoothSolver: Solving for Ux, Initial residual = 0.00162452, Final residual = 8.73304e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00557047, Final residual = 0.000320094, No Iterations 4
GAMG: Solving for p, Initial residual = 0.042625, Final residual = 0.00027375, No Iterations 5
time step continuity errors : sum local = 0.0010463, global = 4.69937e-05, cumulative = -0.304942
smoothSolver: Solving for omega, Initial residual = 0.000557648, Final residual = 4.56714e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00418405, Final residual = 0.000229656, No Iterations 4
ExecutionTime = 33.07 s ClockTime = 34 s
Time = 222
smoothSolver: Solving for Ux, Initial residual = 0.00161725, Final residual = 8.69216e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00553209, Final residual = 0.000317999, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0424744, Final residual = 0.000270168, No Iterations 5
time step continuity errors : sum local = 0.00103174, global = 4.70511e-05, cumulative = -0.304895
smoothSolver: Solving for omega, Initial residual = 0.000554246, Final residual = 4.53972e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00416614, Final residual = 0.000228624, No Iterations 4
ExecutionTime = 33.22 s ClockTime = 34 s
Time = 223
smoothSolver: Solving for Ux, Initial residual = 0.00161013, Final residual = 8.65179e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00549402, Final residual = 0.000315892, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0420198, Final residual = 0.000264849, No Iterations 5
time step continuity errors : sum local = 0.0010107, global = 4.64793e-05, cumulative = -0.304849
smoothSolver: Solving for omega, Initial residual = 0.000550962, Final residual = 4.51198e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00414767, Final residual = 0.000227554, No Iterations 4
ExecutionTime = 33.36 s ClockTime = 34 s
Time = 224
smoothSolver: Solving for Ux, Initial residual = 0.00160314, Final residual = 8.61237e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00545681, Final residual = 0.000313789, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0416508, Final residual = 0.000260297, No Iterations 5
time step continuity errors : sum local = 0.000992222, global = 4.55611e-05, cumulative = -0.304803
smoothSolver: Solving for omega, Initial residual = 0.000547862, Final residual = 4.48473e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00412927, Final residual = 0.000226487, No Iterations 4
ExecutionTime = 33.52 s ClockTime = 34 s
Time = 225
smoothSolver: Solving for Ux, Initial residual = 0.0015962, Final residual = 8.57343e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00541991, Final residual = 0.000311665, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0413407, Final residual = 0.000258828, No Iterations 5
time step continuity errors : sum local = 0.000985153, global = 4.4645e-05, cumulative = -0.304758
smoothSolver: Solving for omega, Initial residual = 0.000544684, Final residual = 4.45781e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00411061, Final residual = 0.000225396, No Iterations 4
ExecutionTime = 33.67 s ClockTime = 34 s
Time = 226
smoothSolver: Solving for Ux, Initial residual = 0.00158936, Final residual = 8.53492e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0053833, Final residual = 0.00030959, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0413773, Final residual = 0.000259644, No Iterations 5
time step continuity errors : sum local = 0.000986826, global = 4.4298e-05, cumulative = -0.304714
smoothSolver: Solving for omega, Initial residual = 0.000541531, Final residual = 4.43164e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00409192, Final residual = 0.000224309, No Iterations 4
ExecutionTime = 33.82 s ClockTime = 34 s
Time = 227
smoothSolver: Solving for Ux, Initial residual = 0.00158262, Final residual = 8.49666e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00534669, Final residual = 0.000307489, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0412633, Final residual = 0.000260311, No Iterations 5
time step continuity errors : sum local = 0.0009882, global = 4.45786e-05, cumulative = -0.30467
smoothSolver: Solving for omega, Initial residual = 0.000538383, Final residual = 4.40681e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00407348, Final residual = 0.000223249, No Iterations 4
ExecutionTime = 33.96 s ClockTime = 34 s
Time = 228
smoothSolver: Solving for Ux, Initial residual = 0.00157598, Final residual = 8.45893e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0053105, Final residual = 0.00030542, No Iterations 4
GAMG: Solving for p, Initial residual = 0.041008, Final residual = 0.000258949, No Iterations 5
time step continuity errors : sum local = 0.000981561, global = 4.51519e-05, cumulative = -0.304624
smoothSolver: Solving for omega, Initial residual = 0.000535387, Final residual = 4.38212e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00405506, Final residual = 0.000222204, No Iterations 4
ExecutionTime = 34.11 s ClockTime = 35 s
Time = 229
smoothSolver: Solving for Ux, Initial residual = 0.00156941, Final residual = 8.42183e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00527476, Final residual = 0.000303333, No Iterations 4
GAMG: Solving for p, Initial residual = 0.04076, Final residual = 0.000254884, No Iterations 5
time step continuity errors : sum local = 0.000964505, global = 4.56214e-05, cumulative = -0.304579
smoothSolver: Solving for omega, Initial residual = 0.000532612, Final residual = 4.35703e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.004037, Final residual = 0.000221166, No Iterations 4
ExecutionTime = 34.25 s ClockTime = 35 s
Time = 230
smoothSolver: Solving for Ux, Initial residual = 0.00156291, Final residual = 8.38507e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00523875, Final residual = 0.000301265, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0407124, Final residual = 0.000250343, No Iterations 5
time step continuity errors : sum local = 0.00094586, global = 4.54099e-05, cumulative = -0.304533
smoothSolver: Solving for omega, Initial residual = 0.000529758, Final residual = 4.33205e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00401869, Final residual = 0.000220095, No Iterations 4
ExecutionTime = 34.4 s ClockTime = 35 s
Time = 231
smoothSolver: Solving for Ux, Initial residual = 0.00155648, Final residual = 8.34902e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00520312, Final residual = 0.000299203, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0406574, Final residual = 0.000247202, No Iterations 5
time step continuity errors : sum local = 0.000932974, global = 4.47719e-05, cumulative = -0.304489
smoothSolver: Solving for omega, Initial residual = 0.000526764, Final residual = 4.30623e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0040004, Final residual = 0.000219015, No Iterations 4
ExecutionTime = 34.55 s ClockTime = 35 s
Time = 232
smoothSolver: Solving for Ux, Initial residual = 0.00155017, Final residual = 8.31342e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00516715, Final residual = 0.00029714, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0403959, Final residual = 0.000246674, No Iterations 5
time step continuity errors : sum local = 0.000930229, global = 4.40499e-05, cumulative = -0.304445
smoothSolver: Solving for omega, Initial residual = 0.000524084, Final residual = 4.28066e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00398197, Final residual = 0.000217915, No Iterations 4
ExecutionTime = 34.7 s ClockTime = 35 s
Time = 233
smoothSolver: Solving for Ux, Initial residual = 0.001544, Final residual = 8.27831e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00513173, Final residual = 0.000295125, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0401529, Final residual = 0.000247547, No Iterations 5
time step continuity errors : sum local = 0.00093273, global = 4.36614e-05, cumulative = -0.304401
smoothSolver: Solving for omega, Initial residual = 0.000521541, Final residual = 4.25629e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0039634, Final residual = 0.000216855, No Iterations 4
ExecutionTime = 34.84 s ClockTime = 35 s
Time = 234
smoothSolver: Solving for Ux, Initial residual = 0.00153793, Final residual = 8.24375e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00509651, Final residual = 0.000293101, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0400631, Final residual = 0.000247557, No Iterations 5
time step continuity errors : sum local = 0.000931955, global = 4.38318e-05, cumulative = -0.304357
smoothSolver: Solving for omega, Initial residual = 0.000518922, Final residual = 4.23279e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00394474, Final residual = 0.00021582, No Iterations 4
ExecutionTime = 34.99 s ClockTime = 35 s
Time = 235
smoothSolver: Solving for Ux, Initial residual = 0.0015319, Final residual = 8.21e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00506166, Final residual = 0.000291125, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0401874, Final residual = 0.000245254, No Iterations 5
time step continuity errors : sum local = 0.000922961, global = 4.42523e-05, cumulative = -0.304313
smoothSolver: Solving for omega, Initial residual = 0.000516293, Final residual = 4.20918e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00392613, Final residual = 0.000214805, No Iterations 4
ExecutionTime = 35.13 s ClockTime = 36 s
Time = 236
smoothSolver: Solving for Ux, Initial residual = 0.0015261, Final residual = 8.17682e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00502732, Final residual = 0.000289127, No Iterations 4
GAMG: Solving for p, Initial residual = 0.039885, Final residual = 0.000241181, No Iterations 5
time step continuity errors : sum local = 0.000907119, global = 4.43593e-05, cumulative = -0.304269
smoothSolver: Solving for omega, Initial residual = 0.000513575, Final residual = 4.18545e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00390752, Final residual = 0.000213784, No Iterations 4
ExecutionTime = 35.28 s ClockTime = 36 s
Time = 237
smoothSolver: Solving for Ux, Initial residual = 0.0015204, Final residual = 8.14418e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00499306, Final residual = 0.000287171, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0394975, Final residual = 0.000236883, No Iterations 5
time step continuity errors : sum local = 0.000889915, global = 4.38365e-05, cumulative = -0.304225
smoothSolver: Solving for omega, Initial residual = 0.000511023, Final residual = 4.16185e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00388886, Final residual = 0.000212761, No Iterations 4
ExecutionTime = 35.42 s ClockTime = 36 s
Time = 238
smoothSolver: Solving for Ux, Initial residual = 0.00151476, Final residual = 8.11221e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0049592, Final residual = 0.00028522, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0393475, Final residual = 0.000234272, No Iterations 5
time step continuity errors : sum local = 0.00087876, global = 4.28357e-05, cumulative = -0.304182
smoothSolver: Solving for omega, Initial residual = 0.000508447, Final residual = 4.13848e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0038703, Final residual = 0.000211721, No Iterations 4
ExecutionTime = 35.57 s ClockTime = 36 s
Time = 239
smoothSolver: Solving for Ux, Initial residual = 0.00150931, Final residual = 8.08045e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00492568, Final residual = 0.000283303, No Iterations 4
GAMG: Solving for p, Initial residual = 0.03955, Final residual = 0.00023417, No Iterations 5
time step continuity errors : sum local = 0.000877359, global = 4.17621e-05, cumulative = -0.30414
smoothSolver: Solving for omega, Initial residual = 0.000505718, Final residual = 4.11523e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00385181, Final residual = 0.000210678, No Iterations 4
ExecutionTime = 35.71 s ClockTime = 36 s
Time = 240
smoothSolver: Solving for Ux, Initial residual = 0.00150397, Final residual = 8.04903e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00489262, Final residual = 0.000281398, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0395379, Final residual = 0.000235323, No Iterations 5
time step continuity errors : sum local = 0.000880582, global = 4.10738e-05, cumulative = -0.304099
smoothSolver: Solving for omega, Initial residual = 0.000503035, Final residual = 4.09325e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00383325, Final residual = 0.000209695, No Iterations 4
ExecutionTime = 35.86 s ClockTime = 36 s
Time = 241
smoothSolver: Solving for Ux, Initial residual = 0.0014987, Final residual = 8.01823e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00485999, Final residual = 0.00027952, No Iterations 4
GAMG: Solving for p, Initial residual = 0.039237, Final residual = 0.00023564, No Iterations 5
time step continuity errors : sum local = 0.000880282, global = 4.09332e-05, cumulative = -0.304058
smoothSolver: Solving for omega, Initial residual = 0.000500464, Final residual = 4.07157e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00381511, Final residual = 0.000208742, No Iterations 4
ExecutionTime = 36.01 s ClockTime = 36 s
Time = 242
smoothSolver: Solving for Ux, Initial residual = 0.00149351, Final residual = 7.98756e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00482775, Final residual = 0.000277668, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0390281, Final residual = 0.000233873, No Iterations 5
time step continuity errors : sum local = 0.000872163, global = 4.10139e-05, cumulative = -0.304017
smoothSolver: Solving for omega, Initial residual = 0.000497972, Final residual = 4.04919e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00379712, Final residual = 0.000207807, No Iterations 4
ExecutionTime = 36.15 s ClockTime = 37 s
Time = 243
smoothSolver: Solving for Ux, Initial residual = 0.00148835, Final residual = 7.95705e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00479585, Final residual = 0.000275811, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0391804, Final residual = 0.000230421, No Iterations 5
time step continuity errors : sum local = 0.000858495, global = 4.07813e-05, cumulative = -0.303976
smoothSolver: Solving for omega, Initial residual = 0.000495376, Final residual = 4.02591e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00377915, Final residual = 0.000206877, No Iterations 4
ExecutionTime = 36.3 s ClockTime = 37 s
Time = 244
smoothSolver: Solving for Ux, Initial residual = 0.00148326, Final residual = 7.92715e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00476415, Final residual = 0.000273995, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0390867, Final residual = 0.000227206, No Iterations 5
time step continuity errors : sum local = 0.000845891, global = 3.99675e-05, cumulative = -0.303936
smoothSolver: Solving for omega, Initial residual = 0.000492877, Final residual = 4.00234e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00376125, Final residual = 0.000205946, No Iterations 4
ExecutionTime = 36.46 s ClockTime = 37 s
Time = 245
smoothSolver: Solving for Ux, Initial residual = 0.00147827, Final residual = 7.89752e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00473268, Final residual = 0.000272187, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0387768, Final residual = 0.000225957, No Iterations 5
time step continuity errors : sum local = 0.000840464, global = 3.87349e-05, cumulative = -0.303898
smoothSolver: Solving for omega, Initial residual = 0.000490598, Final residual = 3.979e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00374376, Final residual = 0.000205021, No Iterations 4
ExecutionTime = 36.61 s ClockTime = 37 s
Time = 246
smoothSolver: Solving for Ux, Initial residual = 0.00147334, Final residual = 7.86823e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00470152, Final residual = 0.00027043, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0385763, Final residual = 0.000226391, No Iterations 5
time step continuity errors : sum local = 0.00084133, global = 3.75165e-05, cumulative = -0.30386
smoothSolver: Solving for omega, Initial residual = 0.000488251, Final residual = 3.95608e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0037261, Final residual = 0.000204119, No Iterations 4
ExecutionTime = 36.75 s ClockTime = 37 s
Time = 247
smoothSolver: Solving for Ux, Initial residual = 0.00146855, Final residual = 7.83952e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0046709, Final residual = 0.000268681, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0386974, Final residual = 0.000226697, No Iterations 5
time step continuity errors : sum local = 0.000842473, global = 3.68161e-05, cumulative = -0.303823
smoothSolver: Solving for omega, Initial residual = 0.000485811, Final residual = 3.93411e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00370873, Final residual = 0.000203243, No Iterations 4
ExecutionTime = 36.9 s ClockTime = 37 s
Time = 248
smoothSolver: Solving for Ux, Initial residual = 0.00146382, Final residual = 7.81094e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00464066, Final residual = 0.000266961, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0387367, Final residual = 0.000225443, No Iterations 5
time step continuity errors : sum local = 0.000837777, global = 3.67495e-05, cumulative = -0.303786
smoothSolver: Solving for omega, Initial residual = 0.000483458, Final residual = 3.91221e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00369154, Final residual = 0.000202416, No Iterations 4
ExecutionTime = 37.05 s ClockTime = 38 s
Time = 249
smoothSolver: Solving for Ux, Initial residual = 0.00145922, Final residual = 7.78278e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00461111, Final residual = 0.000265265, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0384183, Final residual = 0.000222427, No Iterations 5
time step continuity errors : sum local = 0.000826061, global = 3.69229e-05, cumulative = -0.30375
smoothSolver: Solving for omega, Initial residual = 0.000481033, Final residual = 3.89013e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00367442, Final residual = 0.000201618, No Iterations 4
ExecutionTime = 37.19 s ClockTime = 38 s
Time = 250
smoothSolver: Solving for Ux, Initial residual = 0.00145473, Final residual = 7.7549e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0045821, Final residual = 0.000263584, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0381961, Final residual = 0.000218447, No Iterations 5
time step continuity errors : sum local = 0.00081048, global = 3.67885e-05, cumulative = -0.303713
smoothSolver: Solving for omega, Initial residual = 0.000478824, Final residual = 3.8678e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00365725, Final residual = 0.000200839, No Iterations 4
ExecutionTime = 37.55 s ClockTime = 38 s
Time = 251
smoothSolver: Solving for Ux, Initial residual = 0.00145026, Final residual = 7.7275e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00455336, Final residual = 0.000261943, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0382661, Final residual = 0.00021545, No Iterations 5
time step continuity errors : sum local = 0.000798911, global = 3.60662e-05, cumulative = -0.303677
smoothSolver: Solving for omega, Initial residual = 0.000476507, Final residual = 3.84613e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00364043, Final residual = 0.000200113, No Iterations 4
ExecutionTime = 37.69 s ClockTime = 38 s
Time = 252
smoothSolver: Solving for Ux, Initial residual = 0.00144587, Final residual = 7.70042e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00452523, Final residual = 0.000260308, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0382867, Final residual = 0.00021483, No Iterations 5
time step continuity errors : sum local = 0.000795984, global = 3.49586e-05, cumulative = -0.303642
smoothSolver: Solving for omega, Initial residual = 0.000474174, Final residual = 3.82489e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00362414, Final residual = 0.000199411, No Iterations 4
ExecutionTime = 37.84 s ClockTime = 38 s
Time = 253
smoothSolver: Solving for Ux, Initial residual = 0.00144159, Final residual = 7.67306e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00449755, Final residual = 0.000258729, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0380846, Final residual = 0.000216019, No Iterations 5
time step continuity errors : sum local = 0.000799433, global = 3.38662e-05, cumulative = -0.303608
smoothSolver: Solving for omega, Initial residual = 0.000471759, Final residual = 3.80389e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0036083, Final residual = 0.000198748, No Iterations 4
ExecutionTime = 37.98 s ClockTime = 38 s
Time = 254
smoothSolver: Solving for Ux, Initial residual = 0.00143728, Final residual = 7.64626e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00447047, Final residual = 0.000257166, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0379902, Final residual = 0.000216622, No Iterations 5
time step continuity errors : sum local = 0.0008006, global = 3.32117e-05, cumulative = -0.303575
smoothSolver: Solving for omega, Initial residual = 0.000469406, Final residual = 3.78258e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00359304, Final residual = 0.000198129, No Iterations 4
ExecutionTime = 38.14 s ClockTime = 39 s
Time = 255
smoothSolver: Solving for Ux, Initial residual = 0.00143296, Final residual = 7.61963e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00444392, Final residual = 0.000255627, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0379908, Final residual = 0.000215223, No Iterations 5
time step continuity errors : sum local = 0.000795042, global = 3.29851e-05, cumulative = -0.303542
smoothSolver: Solving for omega, Initial residual = 0.000467157, Final residual = 3.76123e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00357796, Final residual = 0.000197526, No Iterations 4
ExecutionTime = 38.28 s ClockTime = 39 s
Time = 256
smoothSolver: Solving for Ux, Initial residual = 0.00142874, Final residual = 7.59285e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00441787, Final residual = 0.000254117, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0379681, Final residual = 0.000212063, No Iterations 5
time step continuity errors : sum local = 0.000783036, global = 3.28572e-05, cumulative = -0.303509
smoothSolver: Solving for omega, Initial residual = 0.000464862, Final residual = 3.73907e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00356317, Final residual = 0.000196993, No Iterations 4
ExecutionTime = 38.44 s ClockTime = 39 s
Time = 257
smoothSolver: Solving for Ux, Initial residual = 0.00142452, Final residual = 7.56646e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00439194, Final residual = 0.000252627, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0377478, Final residual = 0.00020831, No Iterations 5
time step continuity errors : sum local = 0.000768633, global = 3.24561e-05, cumulative = -0.303476
smoothSolver: Solving for omega, Initial residual = 0.0004626, Final residual = 3.71666e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0035487, Final residual = 0.000196522, No Iterations 4
ExecutionTime = 38.58 s ClockTime = 39 s
Time = 258
smoothSolver: Solving for Ux, Initial residual = 0.00142034, Final residual = 7.5406e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00436654, Final residual = 0.000251182, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0376159, Final residual = 0.000205378, No Iterations 5
time step continuity errors : sum local = 0.000757469, global = 3.16158e-05, cumulative = -0.303445
smoothSolver: Solving for omega, Initial residual = 0.000460417, Final residual = 3.69444e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00353456, Final residual = 0.000196119, No Iterations 4
ExecutionTime = 38.72 s ClockTime = 39 s
Time = 259
smoothSolver: Solving for Ux, Initial residual = 0.00141629, Final residual = 7.51499e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00434164, Final residual = 0.000249753, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0376317, Final residual = 0.000203964, No Iterations 5
time step continuity errors : sum local = 0.000752501, global = 3.058e-05, cumulative = -0.303414
smoothSolver: Solving for omega, Initial residual = 0.00045815, Final residual = 3.67283e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00352083, Final residual = 0.000195766, No Iterations 4
ExecutionTime = 38.86 s ClockTime = 39 s
Time = 260
smoothSolver: Solving for Ux, Initial residual = 0.00141236, Final residual = 7.48954e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00431693, Final residual = 0.000248354, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0375613, Final residual = 0.000203236, No Iterations 5
time step continuity errors : sum local = 0.000749828, global = 2.98065e-05, cumulative = -0.303384
smoothSolver: Solving for omega, Initial residual = 0.000455859, Final residual = 3.65168e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00350772, Final residual = 0.00019543, No Iterations 4
ExecutionTime = 39.01 s ClockTime = 40 s
Time = 261
smoothSolver: Solving for Ux, Initial residual = 0.00140847, Final residual = 7.46488e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00429313, Final residual = 0.000246997, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0372689, Final residual = 0.000201588, No Iterations 5
time step continuity errors : sum local = 0.000743647, global = 2.95368e-05, cumulative = -0.303355
smoothSolver: Solving for omega, Initial residual = 0.000453755, Final residual = 3.63069e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00349464, Final residual = 0.000195103, No Iterations 4
ExecutionTime = 39.17 s ClockTime = 40 s
Time = 262
smoothSolver: Solving for Ux, Initial residual = 0.00140468, Final residual = 7.4405e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00426968, Final residual = 0.000245649, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0371612, Final residual = 0.000198446, No Iterations 5
time step continuity errors : sum local = 0.000731936, global = 2.97111e-05, cumulative = -0.303325
smoothSolver: Solving for omega, Initial residual = 0.000451677, Final residual = 3.60986e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00348176, Final residual = 0.000194774, No Iterations 4
ExecutionTime = 39.32 s ClockTime = 40 s
Time = 263
smoothSolver: Solving for Ux, Initial residual = 0.00140103, Final residual = 7.41638e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00424653, Final residual = 0.000244344, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0371629, Final residual = 0.000194731, No Iterations 5
time step continuity errors : sum local = 0.00071837, global = 2.97262e-05, cumulative = -0.303295
smoothSolver: Solving for omega, Initial residual = 0.000449675, Final residual = 3.58923e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0034689, Final residual = 0.000194442, No Iterations 4
ExecutionTime = 39.47 s ClockTime = 40 s
Time = 264
smoothSolver: Solving for Ux, Initial residual = 0.00139745, Final residual = 7.39274e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00422406, Final residual = 0.000243048, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0370985, Final residual = 0.000191696, No Iterations 5
time step continuity errors : sum local = 0.000706852, global = 2.96032e-05, cumulative = -0.303266
smoothSolver: Solving for omega, Initial residual = 0.000447563, Final residual = 3.56898e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00345615, Final residual = 0.000194107, No Iterations 4
ExecutionTime = 39.61 s ClockTime = 40 s
Time = 265
smoothSolver: Solving for Ux, Initial residual = 0.00139386, Final residual = 7.3698e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00420208, Final residual = 0.000241778, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0369054, Final residual = 0.000190077, No Iterations 5
time step continuity errors : sum local = 0.00070026, global = 2.91006e-05, cumulative = -0.303237
smoothSolver: Solving for omega, Initial residual = 0.000445433, Final residual = 3.54925e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00344377, Final residual = 0.0001938, No Iterations 4
ExecutionTime = 39.76 s ClockTime = 40 s
Time = 266
smoothSolver: Solving for Ux, Initial residual = 0.00139041, Final residual = 7.34696e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00418049, Final residual = 0.000240553, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0369398, Final residual = 0.00018942, No Iterations 5
time step continuity errors : sum local = 0.000697512, global = 2.84734e-05, cumulative = -0.303208
smoothSolver: Solving for omega, Initial residual = 0.000443385, Final residual = 3.52987e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00343136, Final residual = 0.000193513, No Iterations 4
ExecutionTime = 39.9 s ClockTime = 40 s
Time = 267
smoothSolver: Solving for Ux, Initial residual = 0.00138698, Final residual = 7.32452e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00415942, Final residual = 0.000239336, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0369731, Final residual = 0.00018886, No Iterations 5
time step continuity errors : sum local = 0.000695281, global = 2.80694e-05, cumulative = -0.30318
smoothSolver: Solving for omega, Initial residual = 0.000441391, Final residual = 3.51015e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00341897, Final residual = 0.000193233, No Iterations 4
ExecutionTime = 40.04 s ClockTime = 41 s
Time = 268
smoothSolver: Solving for Ux, Initial residual = 0.00138352, Final residual = 7.30274e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00413839, Final residual = 0.00023814, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0368403, Final residual = 0.000187582, No Iterations 5
time step continuity errors : sum local = 0.000690262, global = 2.79848e-05, cumulative = -0.303152
smoothSolver: Solving for omega, Initial residual = 0.00043954, Final residual = 3.49033e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00340667, Final residual = 0.000192949, No Iterations 4
ExecutionTime = 40.19 s ClockTime = 41 s
Time = 269
smoothSolver: Solving for Ux, Initial residual = 0.00138018, Final residual = 7.28104e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00411763, Final residual = 0.000236962, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0367013, Final residual = 0.000184891, No Iterations 5
time step continuity errors : sum local = 0.000680124, global = 2.82916e-05, cumulative = -0.303124
smoothSolver: Solving for omega, Initial residual = 0.000437617, Final residual = 3.47085e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00339457, Final residual = 0.000192668, No Iterations 4
ExecutionTime = 40.34 s ClockTime = 41 s
Time = 270
smoothSolver: Solving for Ux, Initial residual = 0.0013769, Final residual = 7.25971e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00409698, Final residual = 0.000235802, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0366661, Final residual = 0.000181815, No Iterations 5
time step continuity errors : sum local = 0.000669065, global = 2.83644e-05, cumulative = -0.303096
smoothSolver: Solving for omega, Initial residual = 0.000435751, Final residual = 3.45217e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00338256, Final residual = 0.000192376, No Iterations 4
ExecutionTime = 40.49 s ClockTime = 41 s
Time = 271
smoothSolver: Solving for Ux, Initial residual = 0.00137361, Final residual = 7.23917e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00407631, Final residual = 0.000234666, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0366255, Final residual = 0.000179422, No Iterations 5
time step continuity errors : sum local = 0.000660506, global = 2.82308e-05, cumulative = -0.303067
smoothSolver: Solving for omega, Initial residual = 0.000433887, Final residual = 3.43436e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00337052, Final residual = 0.000192079, No Iterations 4
ExecutionTime = 40.64 s ClockTime = 41 s
Time = 272
smoothSolver: Solving for Ux, Initial residual = 0.00137043, Final residual = 7.21894e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00405604, Final residual = 0.000233541, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0365579, Final residual = 0.00017792, No Iterations 5
time step continuity errors : sum local = 0.000654945, global = 2.79894e-05, cumulative = -0.303039
smoothSolver: Solving for omega, Initial residual = 0.000432026, Final residual = 3.41756e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00335865, Final residual = 0.000191767, No Iterations 4
ExecutionTime = 40.79 s ClockTime = 41 s
Time = 273
smoothSolver: Solving for Ux, Initial residual = 0.00136739, Final residual = 7.19878e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00403608, Final residual = 0.000232422, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0365349, Final residual = 0.000176313, No Iterations 5
time step continuity errors : sum local = 0.000649017, global = 2.77638e-05, cumulative = -0.303012
smoothSolver: Solving for omega, Initial residual = 0.000430311, Final residual = 3.40203e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00334674, Final residual = 0.000191438, No Iterations 4
ExecutionTime = 40.94 s ClockTime = 41 s
Time = 274
smoothSolver: Solving for Ux, Initial residual = 0.00136438, Final residual = 7.17964e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00401649, Final residual = 0.000231321, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0364987, Final residual = 0.000173818, No Iterations 5
time step continuity errors : sum local = 0.000640265, global = 2.77283e-05, cumulative = -0.302984
smoothSolver: Solving for omega, Initial residual = 0.000428654, Final residual = 3.38706e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0033348, Final residual = 0.000191112, No Iterations 4
ExecutionTime = 41.08 s ClockTime = 42 s
Time = 275
smoothSolver: Solving for Ux, Initial residual = 0.00136144, Final residual = 7.16086e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00399706, Final residual = 0.000230214, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0364689, Final residual = 0.000170733, No Iterations 5
time step continuity errors : sum local = 0.000628978, global = 2.78737e-05, cumulative = -0.302956
smoothSolver: Solving for omega, Initial residual = 0.000427051, Final residual = 3.37267e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00332284, Final residual = 0.000190806, No Iterations 4
ExecutionTime = 41.22 s ClockTime = 42 s
Time = 276
smoothSolver: Solving for Ux, Initial residual = 0.00135863, Final residual = 7.14199e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00397779, Final residual = 0.000229107, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0363044, Final residual = 0.000167718, No Iterations 5
time step continuity errors : sum local = 0.000617548, global = 2.80481e-05, cumulative = -0.302928
smoothSolver: Solving for omega, Initial residual = 0.000425511, Final residual = 3.35909e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00331108, Final residual = 0.000190503, No Iterations 4
ExecutionTime = 41.37 s ClockTime = 42 s
Time = 277
smoothSolver: Solving for Ux, Initial residual = 0.0013558, Final residual = 7.12405e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00395868, Final residual = 0.00022803, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0362992, Final residual = 0.000165327, No Iterations 5
time step continuity errors : sum local = 0.000608416, global = 2.80959e-05, cumulative = -0.3029
smoothSolver: Solving for omega, Initial residual = 0.000423887, Final residual = 3.34651e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00329933, Final residual = 0.000190192, No Iterations 4
ExecutionTime = 41.51 s ClockTime = 42 s
Time = 278
smoothSolver: Solving for Ux, Initial residual = 0.001353, Final residual = 7.10667e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00393969, Final residual = 0.000226956, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0362734, Final residual = 0.00016381, No Iterations 5
time step continuity errors : sum local = 0.000602903, global = 2.80545e-05, cumulative = -0.302872
smoothSolver: Solving for omega, Initial residual = 0.000422374, Final residual = 3.33443e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0032878, Final residual = 0.000189872, No Iterations 4
ExecutionTime = 41.67 s ClockTime = 42 s
Time = 279
smoothSolver: Solving for Ux, Initial residual = 0.00135031, Final residual = 7.08923e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00392072, Final residual = 0.000225871, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0362235, Final residual = 0.000162744, No Iterations 5
time step continuity errors : sum local = 0.000598741, global = 2.80704e-05, cumulative = -0.302844
smoothSolver: Solving for omega, Initial residual = 0.00042091, Final residual = 3.32278e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0032763, Final residual = 0.00018954, No Iterations 4
ExecutionTime = 41.81 s ClockTime = 42 s
Time = 280
smoothSolver: Solving for Ux, Initial residual = 0.00134765, Final residual = 7.07221e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00390189, Final residual = 0.000224818, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0360606, Final residual = 0.000161329, No Iterations 5
time step continuity errors : sum local = 0.000593123, global = 2.81393e-05, cumulative = -0.302816
smoothSolver: Solving for omega, Initial residual = 0.000419552, Final residual = 3.31119e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00326478, Final residual = 0.000189191, No Iterations 4
ExecutionTime = 41.96 s ClockTime = 42 s
Time = 281
smoothSolver: Solving for Ux, Initial residual = 0.00134499, Final residual = 7.05583e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00388326, Final residual = 0.000223764, No Iterations 4
GAMG: Solving for p, Initial residual = 0.036165, Final residual = 0.000159053, No Iterations 5
time step continuity errors : sum local = 0.000584735, global = 2.81627e-05, cumulative = -0.302787
smoothSolver: Solving for omega, Initial residual = 0.000418225, Final residual = 3.29997e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00325325, Final residual = 0.000188822, No Iterations 4
ExecutionTime = 42.1 s ClockTime = 43 s
Time = 282
smoothSolver: Solving for Ux, Initial residual = 0.0013424, Final residual = 7.03959e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00386459, Final residual = 0.000222703, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0362503, Final residual = 0.000156333, No Iterations 5
time step continuity errors : sum local = 0.000575064, global = 2.81303e-05, cumulative = -0.302759
smoothSolver: Solving for omega, Initial residual = 0.000416908, Final residual = 3.28929e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00324164, Final residual = 0.00018843, No Iterations 4
ExecutionTime = 42.25 s ClockTime = 43 s
Time = 283
smoothSolver: Solving for Ux, Initial residual = 0.00133992, Final residual = 7.02372e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00384602, Final residual = 0.000221669, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0361662, Final residual = 0.000153839, No Iterations 5
time step continuity errors : sum local = 0.000565958, global = 2.80815e-05, cumulative = -0.302731
smoothSolver: Solving for omega, Initial residual = 0.000415626, Final residual = 3.27923e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00323009, Final residual = 0.000188019, No Iterations 4
ExecutionTime = 42.39 s ClockTime = 43 s
Time = 284
smoothSolver: Solving for Ux, Initial residual = 0.00133749, Final residual = 7.0084e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00382759, Final residual = 0.000220643, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0358556, Final residual = 0.000151803, No Iterations 5
time step continuity errors : sum local = 0.000558517, global = 2.79914e-05, cumulative = -0.302703
smoothSolver: Solving for omega, Initial residual = 0.000414368, Final residual = 3.26981e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00321846, Final residual = 0.000187602, No Iterations 4
ExecutionTime = 42.54 s ClockTime = 43 s
Time = 285
smoothSolver: Solving for Ux, Initial residual = 0.00133511, Final residual = 6.99355e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00380933, Final residual = 0.000219619, No Iterations 4
GAMG: Solving for p, Initial residual = 0.035995, Final residual = 0.000149913, No Iterations 5
time step continuity errors : sum local = 0.000551907, global = 2.79925e-05, cumulative = -0.302675
smoothSolver: Solving for omega, Initial residual = 0.000413093, Final residual = 3.26068e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00320677, Final residual = 0.000187197, No Iterations 4
ExecutionTime = 42.69 s ClockTime = 43 s
Time = 286
smoothSolver: Solving for Ux, Initial residual = 0.00133284, Final residual = 6.97892e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00379119, Final residual = 0.000218611, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0360518, Final residual = 0.000147646, No Iterations 5
time step continuity errors : sum local = 0.000543931, global = 2.81587e-05, cumulative = -0.302647
smoothSolver: Solving for omega, Initial residual = 0.000411875, Final residual = 3.25166e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00319501, Final residual = 0.000186792, No Iterations 4
ExecutionTime = 42.84 s ClockTime = 43 s
Time = 287
smoothSolver: Solving for Ux, Initial residual = 0.00133061, Final residual = 6.96468e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00377321, Final residual = 0.0002176, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0359913, Final residual = 0.000144816, No Iterations 5
time step continuity errors : sum local = 0.000533481, global = 2.84101e-05, cumulative = -0.302619
smoothSolver: Solving for omega, Initial residual = 0.000410757, Final residual = 3.24318e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0031833, Final residual = 0.000186377, No Iterations 4
ExecutionTime = 42.98 s ClockTime = 44 s
Time = 288
smoothSolver: Solving for Ux, Initial residual = 0.0013284, Final residual = 6.95095e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00375544, Final residual = 0.000216594, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0357514, Final residual = 0.000141715, No Iterations 5
time step continuity errors : sum local = 0.000521956, global = 2.84167e-05, cumulative = -0.30259
smoothSolver: Solving for omega, Initial residual = 0.000409669, Final residual = 3.23565e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00317172, Final residual = 0.000185954, No Iterations 4
ExecutionTime = 43.13 s ClockTime = 44 s
Time = 289
smoothSolver: Solving for Ux, Initial residual = 0.00132622, Final residual = 6.93759e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00373788, Final residual = 0.000215612, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0358671, Final residual = 0.000138506, No Iterations 5
time step continuity errors : sum local = 0.00051018, global = 2.83173e-05, cumulative = -0.302562
smoothSolver: Solving for omega, Initial residual = 0.000408543, Final residual = 3.22848e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00316027, Final residual = 0.000185512, No Iterations 4
ExecutionTime = 43.27 s ClockTime = 44 s
Time = 290
smoothSolver: Solving for Ux, Initial residual = 0.00132409, Final residual = 6.92449e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00372035, Final residual = 0.000214625, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0358594, Final residual = 0.000135674, No Iterations 5
time step continuity errors : sum local = 0.000499773, global = 2.81431e-05, cumulative = -0.302534
smoothSolver: Solving for omega, Initial residual = 0.000407447, Final residual = 3.2213e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00314882, Final residual = 0.000185057, No Iterations 4
ExecutionTime = 43.42 s ClockTime = 44 s
Time = 291
smoothSolver: Solving for Ux, Initial residual = 0.00132198, Final residual = 6.91138e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00370297, Final residual = 0.000213646, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0358077, Final residual = 0.000133414, No Iterations 5
time step continuity errors : sum local = 0.000491191, global = 2.80373e-05, cumulative = -0.302506
smoothSolver: Solving for omega, Initial residual = 0.00040639, Final residual = 3.21427e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0031373, Final residual = 0.000184586, No Iterations 4
ExecutionTime = 43.57 s ClockTime = 44 s
Time = 292
smoothSolver: Solving for Ux, Initial residual = 0.00131989, Final residual = 6.89875e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00368594, Final residual = 0.000212692, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0357074, Final residual = 0.000131253, No Iterations 5
time step continuity errors : sum local = 0.000483025, global = 2.79983e-05, cumulative = -0.302478
smoothSolver: Solving for omega, Initial residual = 0.000405376, Final residual = 3.20768e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00312573, Final residual = 0.000184097, No Iterations 4
ExecutionTime = 43.71 s ClockTime = 44 s
Time = 293
smoothSolver: Solving for Ux, Initial residual = 0.00131783, Final residual = 6.88621e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00366884, Final residual = 0.000211744, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0359609, Final residual = 0.000128786, No Iterations 5
time step continuity errors : sum local = 0.000474037, global = 2.79595e-05, cumulative = -0.30245
smoothSolver: Solving for omega, Initial residual = 0.000404424, Final residual = 3.20089e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00311415, Final residual = 0.000183586, No Iterations 4
ExecutionTime = 43.85 s ClockTime = 44 s
Time = 294
smoothSolver: Solving for Ux, Initial residual = 0.00131583, Final residual = 6.87387e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00365195, Final residual = 0.000210797, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0359772, Final residual = 0.000125978, No Iterations 5
time step continuity errors : sum local = 0.000463819, global = 2.79468e-05, cumulative = -0.302422
smoothSolver: Solving for omega, Initial residual = 0.000403487, Final residual = 3.19406e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00310259, Final residual = 0.000183062, No Iterations 4
ExecutionTime = 44.01 s ClockTime = 45 s
Time = 295
smoothSolver: Solving for Ux, Initial residual = 0.00131386, Final residual = 6.86155e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0036354, Final residual = 0.000209874, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0358117, Final residual = 0.000357085, No Iterations 4
time step continuity errors : sum local = 0.00131471, global = 1.27885e-05, cumulative = -0.302409
smoothSolver: Solving for omega, Initial residual = 0.000402549, Final residual = 3.18787e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00309102, Final residual = 0.000182533, No Iterations 4
ExecutionTime = 44.14 s ClockTime = 45 s
Time = 296
smoothSolver: Solving for Ux, Initial residual = 0.00131219, Final residual = 6.85249e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00361806, Final residual = 0.000208942, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0357149, Final residual = 0.000352152, No Iterations 4
time step continuity errors : sum local = 0.0012971, global = 2.32978e-05, cumulative = -0.302386
smoothSolver: Solving for omega, Initial residual = 0.000401582, Final residual = 3.18257e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00307935, Final residual = 0.00018202, No Iterations 4
ExecutionTime = 44.27 s ClockTime = 45 s
Time = 297
smoothSolver: Solving for Ux, Initial residual = 0.00131022, Final residual = 6.83983e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00360191, Final residual = 0.000208037, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0359828, Final residual = 0.000343273, No Iterations 4
time step continuity errors : sum local = 0.00126519, global = 3.50395e-05, cumulative = -0.302351
smoothSolver: Solving for omega, Initial residual = 0.000400652, Final residual = 3.17741e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00306778, Final residual = 0.0001815, No Iterations 4
ExecutionTime = 44.41 s ClockTime = 45 s
Time = 298
smoothSolver: Solving for Ux, Initial residual = 0.00130816, Final residual = 6.82547e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0035868, Final residual = 0.000207163, No Iterations 4
GAMG: Solving for p, Initial residual = 0.036035, Final residual = 0.000335056, No Iterations 4
time step continuity errors : sum local = 0.00123524, global = 4.22326e-05, cumulative = -0.302308
smoothSolver: Solving for omega, Initial residual = 0.000399803, Final residual = 3.17228e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00305631, Final residual = 0.000180985, No Iterations 4
ExecutionTime = 44.56 s ClockTime = 45 s
Time = 299
smoothSolver: Solving for Ux, Initial residual = 0.00130626, Final residual = 6.81305e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00357155, Final residual = 0.000206284, No Iterations 4
GAMG: Solving for p, Initial residual = 0.035931, Final residual = 0.000328571, No Iterations 4
time step continuity errors : sum local = 0.00121086, global = 4.35401e-05, cumulative = -0.302265
smoothSolver: Solving for omega, Initial residual = 0.000398996, Final residual = 3.16743e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00304494, Final residual = 0.00018046, No Iterations 4
ExecutionTime = 44.7 s ClockTime = 45 s
Time = 300
smoothSolver: Solving for Ux, Initial residual = 0.00130452, Final residual = 6.80344e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00355541, Final residual = 0.00020539, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0357722, Final residual = 0.000324956, No Iterations 4
time step continuity errors : sum local = 0.00119725, global = 3.95623e-05, cumulative = -0.302225
smoothSolver: Solving for omega, Initial residual = 0.000398187, Final residual = 3.16354e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00303361, Final residual = 0.000179925, No Iterations 4
ExecutionTime = 45.05 s ClockTime = 46 s
Time = 301
smoothSolver: Solving for Ux, Initial residual = 0.00130281, Final residual = 6.79453e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00353926, Final residual = 0.000204523, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0359607, Final residual = 0.000321317, No Iterations 4
time step continuity errors : sum local = 0.00118399, global = 3.2508e-05, cumulative = -0.302193
smoothSolver: Solving for omega, Initial residual = 0.000397371, Final residual = 3.15987e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00302246, Final residual = 0.00017938, No Iterations 4
ExecutionTime = 45.18 s ClockTime = 46 s
Time = 302
smoothSolver: Solving for Ux, Initial residual = 0.00130105, Final residual = 6.7837e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00352388, Final residual = 0.000203681, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0359741, Final residual = 0.000317952, No Iterations 4
time step continuity errors : sum local = 0.0011718, global = 2.66177e-05, cumulative = -0.302166
smoothSolver: Solving for omega, Initial residual = 0.000396561, Final residual = 3.15612e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00301127, Final residual = 0.000178832, No Iterations 4
ExecutionTime = 45.32 s ClockTime = 46 s
Time = 303
smoothSolver: Solving for Ux, Initial residual = 0.00129926, Final residual = 6.77164e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00350917, Final residual = 0.000202849, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0360315, Final residual = 0.000314603, No Iterations 4
time step continuity errors : sum local = 0.00115938, global = 2.45432e-05, cumulative = -0.302142
smoothSolver: Solving for omega, Initial residual = 0.0003958, Final residual = 3.15228e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00300014, Final residual = 0.000178274, No Iterations 4
ExecutionTime = 45.45 s ClockTime = 46 s
Time = 304
smoothSolver: Solving for Ux, Initial residual = 0.00129746, Final residual = 6.76011e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00349475, Final residual = 0.000202035, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0359029, Final residual = 0.000308281, No Iterations 4
time step continuity errors : sum local = 0.00113617, global = 2.63137e-05, cumulative = -0.302115
smoothSolver: Solving for omega, Initial residual = 0.000395068, Final residual = 3.14901e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00298894, Final residual = 0.000177705, No Iterations 4
ExecutionTime = 45.59 s ClockTime = 46 s
Time = 305
smoothSolver: Solving for Ux, Initial residual = 0.00129576, Final residual = 6.74947e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00348038, Final residual = 0.000201235, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0360658, Final residual = 0.000298285, No Iterations 4
time step continuity errors : sum local = 0.00109972, global = 3.01537e-05, cumulative = -0.302085
smoothSolver: Solving for omega, Initial residual = 0.000394392, Final residual = 3.14568e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00297791, Final residual = 0.000177133, No Iterations 4
ExecutionTime = 45.73 s ClockTime = 46 s
Time = 306
smoothSolver: Solving for Ux, Initial residual = 0.00129414, Final residual = 6.73941e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00346586, Final residual = 0.000200433, No Iterations 4
GAMG: Solving for p, Initial residual = 0.036066, Final residual = 0.000287698, No Iterations 4
time step continuity errors : sum local = 0.00106111, global = 3.32964e-05, cumulative = -0.302052
smoothSolver: Solving for omega, Initial residual = 0.000393759, Final residual = 3.1427e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00296695, Final residual = 0.000176552, No Iterations 4
ExecutionTime = 45.87 s ClockTime = 46 s
Time = 307
smoothSolver: Solving for Ux, Initial residual = 0.00129251, Final residual = 6.7298e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00345122, Final residual = 0.000199642, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0360887, Final residual = 0.00027976, No Iterations 4
time step continuity errors : sum local = 0.00103219, global = 3.39945e-05, cumulative = -0.302018
smoothSolver: Solving for omega, Initial residual = 0.000393073, Final residual = 3.13924e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00295599, Final residual = 0.00017596, No Iterations 4
ExecutionTime = 46.01 s ClockTime = 47 s
Time = 308
smoothSolver: Solving for Ux, Initial residual = 0.00129079, Final residual = 6.72003e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0034369, Final residual = 0.00019887, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0359284, Final residual = 0.000274465, No Iterations 4
time step continuity errors : sum local = 0.0010126, global = 3.237e-05, cumulative = -0.301986
smoothSolver: Solving for omega, Initial residual = 0.000392373, Final residual = 3.13627e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00294499, Final residual = 0.000175374, No Iterations 4
ExecutionTime = 46.14 s ClockTime = 47 s
Time = 309
smoothSolver: Solving for Ux, Initial residual = 0.00128911, Final residual = 6.70959e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00342326, Final residual = 0.00019812, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0361829, Final residual = 0.000270626, No Iterations 4
time step continuity errors : sum local = 0.000998678, global = 2.93413e-05, cumulative = -0.301956
smoothSolver: Solving for omega, Initial residual = 0.000391714, Final residual = 3.13326e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00293418, Final residual = 0.000174804, No Iterations 4
ExecutionTime = 46.28 s ClockTime = 47 s
Time = 310
smoothSolver: Solving for Ux, Initial residual = 0.00128751, Final residual = 6.69914e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00340992, Final residual = 0.000197383, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0361928, Final residual = 0.00026598, No Iterations 4
time step continuity errors : sum local = 0.000982126, global = 2.60833e-05, cumulative = -0.30193
smoothSolver: Solving for omega, Initial residual = 0.000391066, Final residual = 3.12989e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00292347, Final residual = 0.000174236, No Iterations 4
ExecutionTime = 46.42 s ClockTime = 47 s
Time = 311
smoothSolver: Solving for Ux, Initial residual = 0.00128596, Final residual = 6.68932e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00339668, Final residual = 0.00019666, No Iterations 4
GAMG: Solving for p, Initial residual = 0.036153, Final residual = 0.000260024, No Iterations 4
time step continuity errors : sum local = 0.000960593, global = 2.38481e-05, cumulative = -0.301906
smoothSolver: Solving for omega, Initial residual = 0.000390387, Final residual = 3.1265e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00291279, Final residual = 0.000173665, No Iterations 4
ExecutionTime = 46.56 s ClockTime = 47 s
Time = 312
smoothSolver: Solving for Ux, Initial residual = 0.00128438, Final residual = 6.68002e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00338337, Final residual = 0.000195948, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0358865, Final residual = 0.000253194, No Iterations 4
time step continuity errors : sum local = 0.000935629, global = 2.31544e-05, cumulative = -0.301883
smoothSolver: Solving for omega, Initial residual = 0.000389719, Final residual = 3.12346e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00290223, Final residual = 0.000173089, No Iterations 4
ExecutionTime = 46.72 s ClockTime = 47 s
Time = 313
smoothSolver: Solving for Ux, Initial residual = 0.00128283, Final residual = 6.67033e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00337023, Final residual = 0.000195238, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0360243, Final residual = 0.000246603, No Iterations 4
time step continuity errors : sum local = 0.000911387, global = 2.3574e-05, cumulative = -0.30186
smoothSolver: Solving for omega, Initial residual = 0.000389056, Final residual = 3.12035e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00289181, Final residual = 0.000172515, No Iterations 4
ExecutionTime = 46.85 s ClockTime = 47 s
Time = 314
smoothSolver: Solving for Ux, Initial residual = 0.00128134, Final residual = 6.66039e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00335738, Final residual = 0.000194552, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0362114, Final residual = 0.00024099, No Iterations 4
time step continuity errors : sum local = 0.000891184, global = 2.41372e-05, cumulative = -0.301835
smoothSolver: Solving for omega, Initial residual = 0.0003884, Final residual = 3.11705e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00288152, Final residual = 0.000171936, No Iterations 4
ExecutionTime = 46.99 s ClockTime = 48 s
Time = 315
smoothSolver: Solving for Ux, Initial residual = 0.00127983, Final residual = 6.6509e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00334463, Final residual = 0.000193873, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0363482, Final residual = 0.00023614, No Iterations 4
time step continuity errors : sum local = 0.000873574, global = 2.39059e-05, cumulative = -0.301811
smoothSolver: Solving for omega, Initial residual = 0.000387744, Final residual = 3.11373e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00287118, Final residual = 0.000171349, No Iterations 4
ExecutionTime = 47.12 s ClockTime = 48 s
Time = 316
smoothSolver: Solving for Ux, Initial residual = 0.00127823, Final residual = 6.64147e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00333209, Final residual = 0.000193202, No Iterations 4
GAMG: Solving for p, Initial residual = 0.036183, Final residual = 0.000231979, No Iterations 4
time step continuity errors : sum local = 0.000858505, global = 2.2644e-05, cumulative = -0.301789
smoothSolver: Solving for omega, Initial residual = 0.000387086, Final residual = 3.11044e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00286083, Final residual = 0.00017076, No Iterations 4
ExecutionTime = 47.25 s ClockTime = 48 s
Time = 317
smoothSolver: Solving for Ux, Initial residual = 0.00127667, Final residual = 6.63177e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00331984, Final residual = 0.000192545, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0358775, Final residual = 0.000228242, No Iterations 4
time step continuity errors : sum local = 0.000844875, global = 2.05977e-05, cumulative = -0.301768
smoothSolver: Solving for omega, Initial residual = 0.000386491, Final residual = 3.10734e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00285067, Final residual = 0.00017017, No Iterations 4
ExecutionTime = 47.39 s ClockTime = 48 s
Time = 318
smoothSolver: Solving for Ux, Initial residual = 0.00127515, Final residual = 6.62198e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0033078, Final residual = 0.000191904, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0359327, Final residual = 0.000224621, No Iterations 4
time step continuity errors : sum local = 0.00083178, global = 1.84854e-05, cumulative = -0.30175
smoothSolver: Solving for omega, Initial residual = 0.000385879, Final residual = 3.10408e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00284057, Final residual = 0.000169572, No Iterations 4
ExecutionTime = 47.53 s ClockTime = 48 s
Time = 319
smoothSolver: Solving for Ux, Initial residual = 0.00127364, Final residual = 6.61261e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00329559, Final residual = 0.000191263, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0361109, Final residual = 0.000220586, No Iterations 4
time step continuity errors : sum local = 0.000817064, global = 1.68379e-05, cumulative = -0.301733
smoothSolver: Solving for omega, Initial residual = 0.000385222, Final residual = 3.10082e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00283035, Final residual = 0.000168968, No Iterations 4
ExecutionTime = 47.68 s ClockTime = 48 s
Time = 320
smoothSolver: Solving for Ux, Initial residual = 0.00127208, Final residual = 6.60328e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00328369, Final residual = 0.000190632, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0360998, Final residual = 0.000215666, No Iterations 4
time step continuity errors : sum local = 0.000799107, global = 1.55673e-05, cumulative = -0.301717
smoothSolver: Solving for omega, Initial residual = 0.000384589, Final residual = 3.09734e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00282015, Final residual = 0.000168359, No Iterations 4
ExecutionTime = 47.81 s ClockTime = 48 s
Time = 321
smoothSolver: Solving for Ux, Initial residual = 0.00127056, Final residual = 6.59353e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00327209, Final residual = 0.000190019, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0357204, Final residual = 0.000210711, No Iterations 4
time step continuity errors : sum local = 0.000781033, global = 1.44333e-05, cumulative = -0.301703
smoothSolver: Solving for omega, Initial residual = 0.00038403, Final residual = 3.09415e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00280992, Final residual = 0.000167745, No Iterations 4
ExecutionTime = 47.94 s ClockTime = 49 s
Time = 322
smoothSolver: Solving for Ux, Initial residual = 0.00126908, Final residual = 6.58373e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326052, Final residual = 0.000189404, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0356451, Final residual = 0.000206337, No Iterations 4
time step continuity errors : sum local = 0.000764948, global = 1.31923e-05, cumulative = -0.30169
smoothSolver: Solving for omega, Initial residual = 0.000383452, Final residual = 3.09108e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00279979, Final residual = 0.000167123, No Iterations 4
ExecutionTime = 48.08 s ClockTime = 49 s
Time = 323
smoothSolver: Solving for Ux, Initial residual = 0.00126758, Final residual = 6.57424e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00324892, Final residual = 0.000188788, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0358685, Final residual = 0.000202564, No Iterations 4
time step continuity errors : sum local = 0.000751132, global = 1.16332e-05, cumulative = -0.301678
smoothSolver: Solving for omega, Initial residual = 0.000382864, Final residual = 3.08784e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00278959, Final residual = 0.000166498, No Iterations 4
ExecutionTime = 48.21 s ClockTime = 49 s
Time = 324
smoothSolver: Solving for Ux, Initial residual = 0.00126599, Final residual = 6.56476e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00323761, Final residual = 0.000188191, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0360216, Final residual = 0.000199425, No Iterations 4
time step continuity errors : sum local = 0.000739641, global = 9.8121e-06, cumulative = -0.301668
smoothSolver: Solving for omega, Initial residual = 0.000382259, Final residual = 3.08446e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00277938, Final residual = 0.00016588, No Iterations 4
ExecutionTime = 48.36 s ClockTime = 49 s
Time = 325
smoothSolver: Solving for Ux, Initial residual = 0.00126444, Final residual = 6.55476e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00322645, Final residual = 0.000187605, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0357562, Final residual = 0.000196299, No Iterations 4
time step continuity errors : sum local = 0.000728204, global = 7.78359e-06, cumulative = -0.30166
smoothSolver: Solving for omega, Initial residual = 0.000381727, Final residual = 3.08095e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00276915, Final residual = 0.000165267, No Iterations 4
ExecutionTime = 48.5 s ClockTime = 49 s
Time = 326
smoothSolver: Solving for Ux, Initial residual = 0.00126294, Final residual = 6.54462e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0032152, Final residual = 0.000187002, No Iterations 4
GAMG: Solving for p, Initial residual = 0.03546, Final residual = 0.000193617, No Iterations 4
time step continuity errors : sum local = 0.000718664, global = 5.96847e-06, cumulative = -0.301655
smoothSolver: Solving for omega, Initial residual = 0.000381192, Final residual = 3.07791e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00275898, Final residual = 0.000164649, No Iterations 4
ExecutionTime = 48.63 s ClockTime = 49 s
Time = 327
smoothSolver: Solving for Ux, Initial residual = 0.00126139, Final residual = 6.5348e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00320405, Final residual = 0.000186403, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0354633, Final residual = 0.000191371, No Iterations 4
time step continuity errors : sum local = 0.000710684, global = 4.27197e-06, cumulative = -0.30165
smoothSolver: Solving for omega, Initial residual = 0.000380633, Final residual = 3.07539e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00274889, Final residual = 0.000164037, No Iterations 4
ExecutionTime = 48.77 s ClockTime = 49 s
Time = 328
smoothSolver: Solving for Ux, Initial residual = 0.00125976, Final residual = 6.52494e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00319317, Final residual = 0.000185823, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0357071, Final residual = 0.00018935, No Iterations 4
time step continuity errors : sum local = 0.000703529, global = 2.49705e-06, cumulative = -0.301648
smoothSolver: Solving for omega, Initial residual = 0.000380078, Final residual = 3.07227e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00273886, Final residual = 0.000163418, No Iterations 4
ExecutionTime = 48.91 s ClockTime = 49 s
Time = 329
smoothSolver: Solving for Ux, Initial residual = 0.00125816, Final residual = 6.51466e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00318236, Final residual = 0.000185239, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0356486, Final residual = 0.000187631, No Iterations 4
time step continuity errors : sum local = 0.000697522, global = 5.46682e-07, cumulative = -0.301647
smoothSolver: Solving for omega, Initial residual = 0.00037955, Final residual = 3.06903e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00272877, Final residual = 0.000162799, No Iterations 4
ExecutionTime = 49.05 s ClockTime = 50 s
Time = 330
smoothSolver: Solving for Ux, Initial residual = 0.00125662, Final residual = 6.50434e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0031714, Final residual = 0.000184647, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0352344, Final residual = 0.000186104, No Iterations 4
time step continuity errors : sum local = 0.000692092, global = -1.66593e-06, cumulative = -0.301649
smoothSolver: Solving for omega, Initial residual = 0.000379059, Final residual = 3.06603e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00271863, Final residual = 0.000162177, No Iterations 4
ExecutionTime = 49.19 s ClockTime = 50 s
Time = 331
smoothSolver: Solving for Ux, Initial residual = 0.00125504, Final residual = 6.49452e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00316058, Final residual = 0.000184065, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0350758, Final residual = 0.000184368, No Iterations 4
time step continuity errors : sum local = 0.000686215, global = -4.16204e-06, cumulative = -0.301653
smoothSolver: Solving for omega, Initial residual = 0.000378526, Final residual = 3.06273e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00270861, Final residual = 0.000161556, No Iterations 4
ExecutionTime = 49.33 s ClockTime = 50 s
Time = 332
smoothSolver: Solving for Ux, Initial residual = 0.0012534, Final residual = 6.48467e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00314999, Final residual = 0.000183489, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0351534, Final residual = 0.000182841, No Iterations 4
time step continuity errors : sum local = 0.00068099, global = -6.67097e-06, cumulative = -0.30166
smoothSolver: Solving for omega, Initial residual = 0.000377957, Final residual = 3.0591e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00269866, Final residual = 0.000160931, No Iterations 4
ExecutionTime = 49.46 s ClockTime = 50 s
Time = 333
smoothSolver: Solving for Ux, Initial residual = 0.00125182, Final residual = 6.47464e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0031394, Final residual = 0.000182904, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0352387, Final residual = 0.000181842, No Iterations 4
time step continuity errors : sum local = 0.000677447, global = -8.96283e-06, cumulative = -0.301669
smoothSolver: Solving for omega, Initial residual = 0.000377497, Final residual = 3.05534e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00268861, Final residual = 0.0001603, No Iterations 4
ExecutionTime = 49.6 s ClockTime = 50 s
Time = 334
smoothSolver: Solving for Ux, Initial residual = 0.00125028, Final residual = 6.4644e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00312877, Final residual = 0.000182318, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0351452, Final residual = 0.000181194, No Iterations 4
time step continuity errors : sum local = 0.000675395, global = -1.1752e-05, cumulative = -0.30168
smoothSolver: Solving for omega, Initial residual = 0.000376991, Final residual = 3.05161e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00267845, Final residual = 0.000159666, No Iterations 4
ExecutionTime = 49.74 s ClockTime = 50 s
Time = 335
smoothSolver: Solving for Ux, Initial residual = 0.0012487, Final residual = 6.45434e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00311818, Final residual = 0.000181736, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0349272, Final residual = 0.000180539, No Iterations 4
time step continuity errors : sum local = 0.000673351, global = -1.36712e-05, cumulative = -0.301694
smoothSolver: Solving for omega, Initial residual = 0.000376468, Final residual = 3.04794e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00266836, Final residual = 0.00015903, No Iterations 4
ExecutionTime = 49.87 s ClockTime = 50 s
Time = 336
smoothSolver: Solving for Ux, Initial residual = 0.00124705, Final residual = 6.44429e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00310781, Final residual = 0.000181158, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0349291, Final residual = 0.00018012, No Iterations 4
time step continuity errors : sum local = 0.000672226, global = -1.52439e-05, cumulative = -0.301709
smoothSolver: Solving for omega, Initial residual = 0.000375952, Final residual = 3.044e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00265838, Final residual = 0.000158393, No Iterations 4
ExecutionTime = 50.01 s ClockTime = 51 s
Time = 337
smoothSolver: Solving for Ux, Initial residual = 0.00124542, Final residual = 6.43412e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0030975, Final residual = 0.000180574, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0349289, Final residual = 0.000179571, No Iterations 4
time step continuity errors : sum local = 0.00067062, global = -1.67548e-05, cumulative = -0.301726
smoothSolver: Solving for omega, Initial residual = 0.000375454, Final residual = 3.04016e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00264832, Final residual = 0.000157754, No Iterations 4
ExecutionTime = 50.14 s ClockTime = 51 s
Time = 338
smoothSolver: Solving for Ux, Initial residual = 0.00124387, Final residual = 6.42375e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00308712, Final residual = 0.000179998, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0349104, Final residual = 0.000179127, No Iterations 4
time step continuity errors : sum local = 0.000669332, global = -1.8066e-05, cumulative = -0.301744
smoothSolver: Solving for omega, Initial residual = 0.000374973, Final residual = 3.03636e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00263819, Final residual = 0.000157113, No Iterations 4
ExecutionTime = 50.27 s ClockTime = 51 s
Time = 339
smoothSolver: Solving for Ux, Initial residual = 0.0012423, Final residual = 6.41377e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00307678, Final residual = 0.000179416, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0348407, Final residual = 0.000178705, No Iterations 4
time step continuity errors : sum local = 0.000668146, global = -1.94292e-05, cumulative = -0.301764
smoothSolver: Solving for omega, Initial residual = 0.00037443, Final residual = 3.03217e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00262817, Final residual = 0.000156471, No Iterations 4
ExecutionTime = 50.41 s ClockTime = 51 s
Time = 340
smoothSolver: Solving for Ux, Initial residual = 0.00124066, Final residual = 6.4039e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00306652, Final residual = 0.000178827, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0347756, Final residual = 0.000178294, No Iterations 4
time step continuity errors : sum local = 0.000667152, global = -2.08586e-05, cumulative = -0.301784
smoothSolver: Solving for omega, Initial residual = 0.000373891, Final residual = 3.02796e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00261818, Final residual = 0.000155833, No Iterations 4
ExecutionTime = 50.55 s ClockTime = 51 s
Time = 341
smoothSolver: Solving for Ux, Initial residual = 0.00123903, Final residual = 6.39387e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00305631, Final residual = 0.00017824, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0347546, Final residual = 0.000178002, No Iterations 4
time step continuity errors : sum local = 0.000666458, global = -2.25019e-05, cumulative = -0.301807
smoothSolver: Solving for omega, Initial residual = 0.00037338, Final residual = 3.02379e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0026082, Final residual = 0.000155193, No Iterations 4
ExecutionTime = 50.68 s ClockTime = 51 s
Time = 342
smoothSolver: Solving for Ux, Initial residual = 0.0012375, Final residual = 6.38373e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00304612, Final residual = 0.000177659, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0348016, Final residual = 0.000177825, No Iterations 4
time step continuity errors : sum local = 0.000666191, global = -2.42759e-05, cumulative = -0.301831
smoothSolver: Solving for omega, Initial residual = 0.000372865, Final residual = 3.01958e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00259825, Final residual = 0.000154553, No Iterations 4
ExecutionTime = 50.81 s ClockTime = 51 s
Time = 343
smoothSolver: Solving for Ux, Initial residual = 0.00123596, Final residual = 6.37384e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00303599, Final residual = 0.00017708, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0346632, Final residual = 0.000177619, No Iterations 4
time step continuity errors : sum local = 0.000665933, global = -2.60649e-05, cumulative = -0.301857
smoothSolver: Solving for omega, Initial residual = 0.000372323, Final residual = 3.0152e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00258837, Final residual = 0.00015392, No Iterations 4
ExecutionTime = 50.96 s ClockTime = 52 s
Time = 344
smoothSolver: Solving for Ux, Initial residual = 0.00123437, Final residual = 6.36432e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00302597, Final residual = 0.000176495, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0344885, Final residual = 0.000176966, No Iterations 4
time step continuity errors : sum local = 0.000663955, global = -2.77957e-05, cumulative = -0.301885
smoothSolver: Solving for omega, Initial residual = 0.000371741, Final residual = 3.01068e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00257854, Final residual = 0.000153294, No Iterations 4
ExecutionTime = 51.09 s ClockTime = 52 s
Time = 345
smoothSolver: Solving for Ux, Initial residual = 0.00123276, Final residual = 6.35466e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00301606, Final residual = 0.000175916, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0344813, Final residual = 0.000176238, No Iterations 4
time step continuity errors : sum local = 0.000661638, global = -2.90597e-05, cumulative = -0.301914
smoothSolver: Solving for omega, Initial residual = 0.000371206, Final residual = 3.00647e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00256879, Final residual = 0.00015267, No Iterations 4
ExecutionTime = 51.23 s ClockTime = 52 s
Time = 346
smoothSolver: Solving for Ux, Initial residual = 0.00123125, Final residual = 6.34476e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00300605, Final residual = 0.000175333, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0345126, Final residual = 0.000175734, No Iterations 4
time step continuity errors : sum local = 0.000660248, global = -2.96605e-05, cumulative = -0.301944
smoothSolver: Solving for omega, Initial residual = 0.000370728, Final residual = 3.00244e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00255914, Final residual = 0.000152048, No Iterations 4
ExecutionTime = 51.36 s ClockTime = 52 s
Time = 347
smoothSolver: Solving for Ux, Initial residual = 0.00122973, Final residual = 6.33499e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00299603, Final residual = 0.000174747, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0346327, Final residual = 0.000175442, No Iterations 4
time step continuity errors : sum local = 0.000659575, global = -3.00845e-05, cumulative = -0.301974
smoothSolver: Solving for omega, Initial residual = 0.000370231, Final residual = 2.99808e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00254956, Final residual = 0.000151431, No Iterations 4
ExecutionTime = 51.5 s ClockTime = 52 s
Time = 348
smoothSolver: Solving for Ux, Initial residual = 0.00122816, Final residual = 6.32563e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00298625, Final residual = 0.000174158, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0344209, Final residual = 0.000175121, No Iterations 4
time step continuity errors : sum local = 0.000658877, global = -3.04882e-05, cumulative = -0.302004
smoothSolver: Solving for omega, Initial residual = 0.000369731, Final residual = 2.99387e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00254001, Final residual = 0.000150816, No Iterations 4
ExecutionTime = 51.63 s ClockTime = 52 s
Time = 349
smoothSolver: Solving for Ux, Initial residual = 0.00122656, Final residual = 6.31622e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00297662, Final residual = 0.000173586, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0341649, Final residual = 0.000174897, No Iterations 4
time step continuity errors : sum local = 0.000658545, global = -3.09108e-05, cumulative = -0.302035
smoothSolver: Solving for omega, Initial residual = 0.000369209, Final residual = 2.98931e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00253054, Final residual = 0.0001502, No Iterations 4
ExecutionTime = 51.77 s ClockTime = 52 s
Time = 350
smoothSolver: Solving for Ux, Initial residual = 0.00122507, Final residual = 6.30674e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0029668, Final residual = 0.000173008, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0340682, Final residual = 0.000174685, No Iterations 4
time step continuity errors : sum local = 0.000658336, global = -3.11863e-05, cumulative = -0.302066
smoothSolver: Solving for omega, Initial residual = 0.000368685, Final residual = 2.98453e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00252115, Final residual = 0.000149589, No Iterations 4
ExecutionTime = 52.12 s ClockTime = 53 s
Time = 351
smoothSolver: Solving for Ux, Initial residual = 0.0012236, Final residual = 6.29722e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00295709, Final residual = 0.00017243, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0341174, Final residual = 0.000174428, No Iterations 4
time step continuity errors : sum local = 0.00065792, global = -3.13795e-05, cumulative = -0.302098
smoothSolver: Solving for omega, Initial residual = 0.000368182, Final residual = 2.97995e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0025119, Final residual = 0.000148979, No Iterations 4
ExecutionTime = 52.28 s ClockTime = 53 s
Time = 352
smoothSolver: Solving for Ux, Initial residual = 0.00122209, Final residual = 6.28866e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00294746, Final residual = 0.000171862, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0340972, Final residual = 0.000173824, No Iterations 4
time step continuity errors : sum local = 0.000656165, global = -3.19631e-05, cumulative = -0.30213
smoothSolver: Solving for omega, Initial residual = 0.000367673, Final residual = 2.97525e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00250272, Final residual = 0.000148374, No Iterations 4
ExecutionTime = 52.42 s ClockTime = 53 s
Time = 353
smoothSolver: Solving for Ux, Initial residual = 0.00122055, Final residual = 6.28001e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0029381, Final residual = 0.000171304, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0338745, Final residual = 0.000173031, No Iterations 4
time step continuity errors : sum local = 0.000653655, global = -3.2828e-05, cumulative = -0.302163
smoothSolver: Solving for omega, Initial residual = 0.000367137, Final residual = 2.97034e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00249358, Final residual = 0.00014777, No Iterations 4
ExecutionTime = 52.56 s ClockTime = 53 s
Time = 354
smoothSolver: Solving for Ux, Initial residual = 0.00121909, Final residual = 6.27142e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0029286, Final residual = 0.000170733, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0336595, Final residual = 0.000172372, No Iterations 4
time step continuity errors : sum local = 0.000651723, global = -3.36101e-05, cumulative = -0.302196
smoothSolver: Solving for omega, Initial residual = 0.000366592, Final residual = 2.96534e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00248447, Final residual = 0.000147169, No Iterations 4
ExecutionTime = 52.7 s ClockTime = 53 s
Time = 355
smoothSolver: Solving for Ux, Initial residual = 0.00121767, Final residual = 6.26259e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00291919, Final residual = 0.000170159, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0335301, Final residual = 0.000171887, No Iterations 4
time step continuity errors : sum local = 0.000650454, global = -3.43327e-05, cumulative = -0.302231
smoothSolver: Solving for omega, Initial residual = 0.00036604, Final residual = 2.96029e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00247541, Final residual = 0.000146567, No Iterations 4
ExecutionTime = 52.83 s ClockTime = 53 s
Time = 356
smoothSolver: Solving for Ux, Initial residual = 0.00121622, Final residual = 6.25443e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290986, Final residual = 0.000169597, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0334779, Final residual = 0.00017159, No Iterations 4
time step continuity errors : sum local = 0.00064985, global = -3.52811e-05, cumulative = -0.302266
smoothSolver: Solving for omega, Initial residual = 0.000365528, Final residual = 2.95532e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00246658, Final residual = 0.000145967, No Iterations 4
ExecutionTime = 52.98 s ClockTime = 54 s
Time = 357
smoothSolver: Solving for Ux, Initial residual = 0.00121474, Final residual = 6.24642e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290084, Final residual = 0.000169043, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0334345, Final residual = 0.000171258, No Iterations 4
time step continuity errors : sum local = 0.000649032, global = -3.60719e-05, cumulative = -0.302302
smoothSolver: Solving for omega, Initial residual = 0.000365025, Final residual = 2.95039e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00245776, Final residual = 0.000145372, No Iterations 4
ExecutionTime = 53.12 s ClockTime = 54 s
Time = 358
smoothSolver: Solving for Ux, Initial residual = 0.00121329, Final residual = 6.23849e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289172, Final residual = 0.000168493, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0334531, Final residual = 0.000170881, No Iterations 4
time step continuity errors : sum local = 0.000648162, global = -3.64498e-05, cumulative = -0.302338
smoothSolver: Solving for omega, Initial residual = 0.000364509, Final residual = 2.94539e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00244902, Final residual = 0.000144776, No Iterations 4
ExecutionTime = 53.25 s ClockTime = 54 s
Time = 359
smoothSolver: Solving for Ux, Initial residual = 0.00121192, Final residual = 6.23044e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288268, Final residual = 0.000167947, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0333187, Final residual = 0.000170399, No Iterations 4
time step continuity errors : sum local = 0.000646843, global = -3.65423e-05, cumulative = -0.302375
smoothSolver: Solving for omega, Initial residual = 0.000364022, Final residual = 2.94066e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00244038, Final residual = 0.000144177, No Iterations 4
ExecutionTime = 53.4 s ClockTime = 54 s
Time = 360
smoothSolver: Solving for Ux, Initial residual = 0.00121053, Final residual = 6.2231e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287378, Final residual = 0.00016741, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0332358, Final residual = 0.000169819, No Iterations 4
time step continuity errors : sum local = 0.000644999, global = -3.66129e-05, cumulative = -0.302412
smoothSolver: Solving for omega, Initial residual = 0.000363534, Final residual = 2.93593e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00243173, Final residual = 0.00014358, No Iterations 4
ExecutionTime = 53.54 s ClockTime = 54 s
Time = 361
smoothSolver: Solving for Ux, Initial residual = 0.00120911, Final residual = 6.21619e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00286506, Final residual = 0.000166871, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0331192, Final residual = 0.000169076, No Iterations 4
time step continuity errors : sum local = 0.000642338, global = -3.70089e-05, cumulative = -0.302449
smoothSolver: Solving for omega, Initial residual = 0.000363096, Final residual = 2.93199e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00242315, Final residual = 0.000142987, No Iterations 4
ExecutionTime = 53.69 s ClockTime = 54 s
Time = 362
smoothSolver: Solving for Ux, Initial residual = 0.00120774, Final residual = 6.20919e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00285634, Final residual = 0.00016632, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0330009, Final residual = 0.000168296, No Iterations 4
time step continuity errors : sum local = 0.000639615, global = -3.76812e-05, cumulative = -0.302486
smoothSolver: Solving for omega, Initial residual = 0.000362636, Final residual = 2.92779e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00241463, Final residual = 0.000142391, No Iterations 4
ExecutionTime = 53.82 s ClockTime = 54 s
Time = 363
smoothSolver: Solving for Ux, Initial residual = 0.00120646, Final residual = 6.20202e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00284763, Final residual = 0.000165783, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0328728, Final residual = 0.000167567, No Iterations 4
time step continuity errors : sum local = 0.000637308, global = -3.83803e-05, cumulative = -0.302525
smoothSolver: Solving for omega, Initial residual = 0.000362133, Final residual = 2.92332e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00240619, Final residual = 0.000141791, No Iterations 4
ExecutionTime = 53.95 s ClockTime = 55 s
Time = 364
smoothSolver: Solving for Ux, Initial residual = 0.0012052, Final residual = 6.19527e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00283895, Final residual = 0.000165252, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0327055, Final residual = 0.000166885, No Iterations 4
time step continuity errors : sum local = 0.000635206, global = -3.88273e-05, cumulative = -0.302563
smoothSolver: Solving for omega, Initial residual = 0.000361666, Final residual = 2.91879e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00239773, Final residual = 0.00014119, No Iterations 4
ExecutionTime = 54.09 s ClockTime = 55 s
Time = 365
smoothSolver: Solving for Ux, Initial residual = 0.00120393, Final residual = 6.18938e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00283052, Final residual = 0.000164728, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0325752, Final residual = 0.000166146, No Iterations 4
time step continuity errors : sum local = 0.00063275, global = -3.93256e-05, cumulative = -0.302603
smoothSolver: Solving for omega, Initial residual = 0.000361146, Final residual = 2.91422e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00238928, Final residual = 0.000140591, No Iterations 4
ExecutionTime = 54.24 s ClockTime = 55 s
Time = 366
smoothSolver: Solving for Ux, Initial residual = 0.00120266, Final residual = 6.18409e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00282227, Final residual = 0.000164199, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0325857, Final residual = 0.000165421, No Iterations 4
time step continuity errors : sum local = 0.000630414, global = -3.97706e-05, cumulative = -0.302643
smoothSolver: Solving for omega, Initial residual = 0.0003607, Final residual = 2.90963e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00238094, Final residual = 0.000139991, No Iterations 4
ExecutionTime = 54.38 s ClockTime = 55 s
Time = 367
smoothSolver: Solving for Ux, Initial residual = 0.00120151, Final residual = 6.179e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00281392, Final residual = 0.00016368, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0326357, Final residual = 0.000164705, No Iterations 4
time step continuity errors : sum local = 0.000628147, global = -4.01908e-05, cumulative = -0.302683
smoothSolver: Solving for omega, Initial residual = 0.000360285, Final residual = 2.90504e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00237264, Final residual = 0.000139394, No Iterations 4
ExecutionTime = 54.52 s ClockTime = 55 s
Time = 368
smoothSolver: Solving for Ux, Initial residual = 0.0012004, Final residual = 6.17414e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028057, Final residual = 0.000163163, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0327275, Final residual = 0.000163986, No Iterations 4
time step continuity errors : sum local = 0.000625818, global = -4.07645e-05, cumulative = -0.302723
smoothSolver: Solving for omega, Initial residual = 0.000359798, Final residual = 2.90022e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00236441, Final residual = 0.000138797, No Iterations 4
ExecutionTime = 54.66 s ClockTime = 55 s
Time = 369
smoothSolver: Solving for Ux, Initial residual = 0.00119931, Final residual = 6.17041e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00279769, Final residual = 0.000162647, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0327685, Final residual = 0.000163068, No Iterations 4
time step continuity errors : sum local = 0.000622673, global = -4.13591e-05, cumulative = -0.302765
smoothSolver: Solving for omega, Initial residual = 0.00035934, Final residual = 2.89536e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00235627, Final residual = 0.000138203, No Iterations 4
ExecutionTime = 54.8 s ClockTime = 55 s
Time = 370
smoothSolver: Solving for Ux, Initial residual = 0.00119817, Final residual = 6.16706e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027899, Final residual = 0.00016214, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0327352, Final residual = 0.0001622, No Iterations 4
time step continuity errors : sum local = 0.000619581, global = -4.20256e-05, cumulative = -0.302807
smoothSolver: Solving for omega, Initial residual = 0.000358906, Final residual = 2.89051e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00234826, Final residual = 0.000137615, No Iterations 4
ExecutionTime = 54.94 s ClockTime = 56 s
Time = 371
smoothSolver: Solving for Ux, Initial residual = 0.00119713, Final residual = 6.16355e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00278191, Final residual = 0.000161642, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0326733, Final residual = 0.00016123, No Iterations 4
time step continuity errors : sum local = 0.000616226, global = -4.23492e-05, cumulative = -0.302849
smoothSolver: Solving for omega, Initial residual = 0.000358449, Final residual = 2.88576e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00234028, Final residual = 0.000137027, No Iterations 4
ExecutionTime = 55.08 s ClockTime = 56 s
Time = 372
smoothSolver: Solving for Ux, Initial residual = 0.00119614, Final residual = 6.15999e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00277417, Final residual = 0.000161143, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0326304, Final residual = 0.000160242, No Iterations 4
time step continuity errors : sum local = 0.000612911, global = -4.27927e-05, cumulative = -0.302892
smoothSolver: Solving for omega, Initial residual = 0.000357994, Final residual = 2.88101e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0023324, Final residual = 0.000136442, No Iterations 4
ExecutionTime = 55.21 s ClockTime = 56 s
Time = 373
smoothSolver: Solving for Ux, Initial residual = 0.00119512, Final residual = 6.15716e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027666, Final residual = 0.000160649, No Iterations 4
GAMG: Solving for p, Initial residual = 0.032547, Final residual = 0.000159398, No Iterations 4
time step continuity errors : sum local = 0.000610331, global = -4.37595e-05, cumulative = -0.302936
smoothSolver: Solving for omega, Initial residual = 0.000357557, Final residual = 2.87642e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00232462, Final residual = 0.00013586, No Iterations 4
ExecutionTime = 55.35 s ClockTime = 56 s
Time = 374
smoothSolver: Solving for Ux, Initial residual = 0.00119409, Final residual = 6.15457e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00275919, Final residual = 0.000160163, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0325024, Final residual = 0.000158703, No Iterations 4
time step continuity errors : sum local = 0.000608309, global = -4.48191e-05, cumulative = -0.302981
smoothSolver: Solving for omega, Initial residual = 0.000357154, Final residual = 2.8728e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00231684, Final residual = 0.000135279, No Iterations 4
ExecutionTime = 55.49 s ClockTime = 56 s
Time = 375
smoothSolver: Solving for Ux, Initial residual = 0.00119305, Final residual = 6.15196e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00275159, Final residual = 0.00015968, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0324292, Final residual = 0.000158103, No Iterations 4
time step continuity errors : sum local = 0.00060665, global = -4.56769e-05, cumulative = -0.303026
smoothSolver: Solving for omega, Initial residual = 0.000356788, Final residual = 2.8695e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00230923, Final residual = 0.000134701, No Iterations 4
ExecutionTime = 55.62 s ClockTime = 56 s
Time = 376
smoothSolver: Solving for Ux, Initial residual = 0.00119208, Final residual = 6.14888e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00274426, Final residual = 0.000159199, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0324633, Final residual = 0.000157536, No Iterations 4
time step continuity errors : sum local = 0.000604972, global = -4.63122e-05, cumulative = -0.303073
smoothSolver: Solving for omega, Initial residual = 0.000356425, Final residual = 2.86615e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00230162, Final residual = 0.000134125, No Iterations 4
ExecutionTime = 55.76 s ClockTime = 56 s
Time = 377
smoothSolver: Solving for Ux, Initial residual = 0.00119114, Final residual = 6.14609e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273713, Final residual = 0.000158727, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0325661, Final residual = 0.000156866, No Iterations 4
time step continuity errors : sum local = 0.000602901, global = -4.69127e-05, cumulative = -0.303119
smoothSolver: Solving for omega, Initial residual = 0.000356043, Final residual = 2.86262e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00229409, Final residual = 0.000133552, No Iterations 4
ExecutionTime = 55.89 s ClockTime = 57 s
Time = 378
smoothSolver: Solving for Ux, Initial residual = 0.00119022, Final residual = 6.14358e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273008, Final residual = 0.000158265, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0325376, Final residual = 0.000156187, No Iterations 4
time step continuity errors : sum local = 0.000600771, global = -4.7753e-05, cumulative = -0.303167
smoothSolver: Solving for omega, Initial residual = 0.000355662, Final residual = 2.85932e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00228673, Final residual = 0.000132984, No Iterations 4
ExecutionTime = 56.03 s ClockTime = 57 s
Time = 379
smoothSolver: Solving for Ux, Initial residual = 0.0011893, Final residual = 6.14138e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272305, Final residual = 0.000157811, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0325555, Final residual = 0.000155583, No Iterations 4
time step continuity errors : sum local = 0.000598683, global = -4.82886e-05, cumulative = -0.303216
smoothSolver: Solving for omega, Initial residual = 0.000355308, Final residual = 2.85624e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00227943, Final residual = 0.000132424, No Iterations 4
ExecutionTime = 56.17 s ClockTime = 57 s
Time = 380
smoothSolver: Solving for Ux, Initial residual = 0.00118845, Final residual = 6.13906e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00271608, Final residual = 0.000157352, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0325267, Final residual = 0.000154842, No Iterations 4
time step continuity errors : sum local = 0.000596196, global = -4.82911e-05, cumulative = -0.303264
smoothSolver: Solving for omega, Initial residual = 0.000354959, Final residual = 2.85299e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00227223, Final residual = 0.000131866, No Iterations 4
ExecutionTime = 56.3 s ClockTime = 57 s
Time = 381
smoothSolver: Solving for Ux, Initial residual = 0.00118761, Final residual = 6.13668e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00270936, Final residual = 0.000156906, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0324927, Final residual = 0.00015407, No Iterations 4
time step continuity errors : sum local = 0.000593647, global = -4.82689e-05, cumulative = -0.303312
smoothSolver: Solving for omega, Initial residual = 0.000354603, Final residual = 2.85013e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00226504, Final residual = 0.000131313, No Iterations 4
ExecutionTime = 56.44 s ClockTime = 57 s
Time = 382
smoothSolver: Solving for Ux, Initial residual = 0.00118677, Final residual = 6.13488e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00270273, Final residual = 0.000156472, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0324574, Final residual = 0.000153435, No Iterations 4
time step continuity errors : sum local = 0.000591794, global = -4.84027e-05, cumulative = -0.30336
smoothSolver: Solving for omega, Initial residual = 0.000354321, Final residual = 2.84736e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00225798, Final residual = 0.000130764, No Iterations 4
ExecutionTime = 56.59 s ClockTime = 57 s
Time = 383
smoothSolver: Solving for Ux, Initial residual = 0.00118589, Final residual = 6.13309e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00269632, Final residual = 0.000156051, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0323333, Final residual = 0.000152904, No Iterations 4
time step continuity errors : sum local = 0.000590414, global = -4.88665e-05, cumulative = -0.303409
smoothSolver: Solving for omega, Initial residual = 0.000353999, Final residual = 2.84476e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00225101, Final residual = 0.000130225, No Iterations 4
ExecutionTime = 56.73 s ClockTime = 57 s
Time = 384
smoothSolver: Solving for Ux, Initial residual = 0.00118507, Final residual = 6.13116e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00268977, Final residual = 0.000155624, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0322387, Final residual = 0.00015254, No Iterations 4
time step continuity errors : sum local = 0.000589712, global = -4.93201e-05, cumulative = -0.303459
smoothSolver: Solving for omega, Initial residual = 0.000353746, Final residual = 2.84252e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00224418, Final residual = 0.000129689, No Iterations 4
ExecutionTime = 56.86 s ClockTime = 58 s
Time = 385
smoothSolver: Solving for Ux, Initial residual = 0.00118431, Final residual = 6.12883e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00268351, Final residual = 0.000155203, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0322003, Final residual = 0.000152197, No Iterations 4
time step continuity errors : sum local = 0.000589189, global = -4.95417e-05, cumulative = -0.303508
smoothSolver: Solving for omega, Initial residual = 0.000353534, Final residual = 2.84061e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0022374, Final residual = 0.000129159, No Iterations 4
ExecutionTime = 57.01 s ClockTime = 58 s
Time = 386
smoothSolver: Solving for Ux, Initial residual = 0.00118353, Final residual = 6.12726e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0026774, Final residual = 0.000154797, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0322237, Final residual = 0.000151774, No Iterations 4
time step continuity errors : sum local = 0.000588368, global = -4.9668e-05, cumulative = -0.303558
smoothSolver: Solving for omega, Initial residual = 0.000353402, Final residual = 2.83976e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00223064, Final residual = 0.000128636, No Iterations 4
ExecutionTime = 57.14 s ClockTime = 58 s
Time = 387
smoothSolver: Solving for Ux, Initial residual = 0.00118273, Final residual = 6.12611e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00267151, Final residual = 0.000154402, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0322796, Final residual = 0.00015112, No Iterations 4
time step continuity errors : sum local = 0.000586719, global = -4.97419e-05, cumulative = -0.303608
smoothSolver: Solving for omega, Initial residual = 0.000353226, Final residual = 2.8384e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.002224, Final residual = 0.00012812, No Iterations 4
ExecutionTime = 57.28 s ClockTime = 58 s
Time = 388
smoothSolver: Solving for Ux, Initial residual = 0.00118192, Final residual = 6.12487e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00266548, Final residual = 0.000154008, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0322536, Final residual = 0.000150543, No Iterations 4
time step continuity errors : sum local = 0.000585258, global = -5.00139e-05, cumulative = -0.303658
smoothSolver: Solving for omega, Initial residual = 0.000353067, Final residual = 2.83699e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0022174, Final residual = 0.000127609, No Iterations 4
ExecutionTime = 57.42 s ClockTime = 58 s
Time = 389
smoothSolver: Solving for Ux, Initial residual = 0.00118115, Final residual = 6.12337e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00265984, Final residual = 0.000153625, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0322008, Final residual = 0.000150084, No Iterations 4
time step continuity errors : sum local = 0.000584082, global = -5.02335e-05, cumulative = -0.303708
smoothSolver: Solving for omega, Initial residual = 0.000352976, Final residual = 2.83555e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00221089, Final residual = 0.000127099, No Iterations 4
ExecutionTime = 57.56 s ClockTime = 58 s
Time = 390
smoothSolver: Solving for Ux, Initial residual = 0.00118039, Final residual = 6.12171e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00265434, Final residual = 0.000153255, No Iterations 4
GAMG: Solving for p, Initial residual = 0.03222, Final residual = 0.000149838, No Iterations 4
time step continuity errors : sum local = 0.000583689, global = -5.04618e-05, cumulative = -0.303758
smoothSolver: Solving for omega, Initial residual = 0.000352942, Final residual = 2.83426e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00220449, Final residual = 0.000126595, No Iterations 4
ExecutionTime = 57.69 s ClockTime = 58 s
Time = 391
smoothSolver: Solving for Ux, Initial residual = 0.00117964, Final residual = 6.12036e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00264902, Final residual = 0.000152901, No Iterations 4
GAMG: Solving for p, Initial residual = 0.032201, Final residual = 0.000149776, No Iterations 4
time step continuity errors : sum local = 0.000584049, global = -5.07101e-05, cumulative = -0.303809
smoothSolver: Solving for omega, Initial residual = 0.000352942, Final residual = 2.83293e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00219825, Final residual = 0.000126099, No Iterations 4
ExecutionTime = 57.84 s ClockTime = 59 s
Time = 392
smoothSolver: Solving for Ux, Initial residual = 0.00117891, Final residual = 6.1193e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00264376, Final residual = 0.000152549, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0321999, Final residual = 0.000149783, No Iterations 4
time step continuity errors : sum local = 0.000584801, global = -5.09287e-05, cumulative = -0.30386
smoothSolver: Solving for omega, Initial residual = 0.00035303, Final residual = 2.83192e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00219216, Final residual = 0.000125607, No Iterations 4
ExecutionTime = 57.97 s ClockTime = 59 s
Time = 393
smoothSolver: Solving for Ux, Initial residual = 0.00117824, Final residual = 6.11833e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0026388, Final residual = 0.000152207, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0321699, Final residual = 0.000149786, No Iterations 4
time step continuity errors : sum local = 0.000585511, global = -5.09905e-05, cumulative = -0.303911
smoothSolver: Solving for omega, Initial residual = 0.000353085, Final residual = 2.83104e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00218614, Final residual = 0.000125119, No Iterations 4
ExecutionTime = 58.1 s ClockTime = 59 s
Time = 394
smoothSolver: Solving for Ux, Initial residual = 0.00117763, Final residual = 6.11723e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00263399, Final residual = 0.000151887, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0320886, Final residual = 0.000149593, No Iterations 4
time step continuity errors : sum local = 0.000585485, global = -5.0679e-05, cumulative = -0.303962
smoothSolver: Solving for omega, Initial residual = 0.000353181, Final residual = 2.83037e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00218018, Final residual = 0.000124642, No Iterations 4
ExecutionTime = 58.24 s ClockTime = 59 s
Time = 395
smoothSolver: Solving for Ux, Initial residual = 0.00117701, Final residual = 6.11636e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00262928, Final residual = 0.000151574, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0320632, Final residual = 0.000149161, No Iterations 4
time step continuity errors : sum local = 0.000584679, global = -4.99177e-05, cumulative = -0.304012
smoothSolver: Solving for omega, Initial residual = 0.000353312, Final residual = 2.82996e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00217434, Final residual = 0.000124176, No Iterations 4
ExecutionTime = 58.39 s ClockTime = 59 s
Time = 396
smoothSolver: Solving for Ux, Initial residual = 0.00117639, Final residual = 6.11575e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00262489, Final residual = 0.000151266, No Iterations 4
GAMG: Solving for p, Initial residual = 0.032101, Final residual = 0.00014867, No Iterations 4
time step continuity errors : sum local = 0.00058368, global = -4.89841e-05, cumulative = -0.304061
smoothSolver: Solving for omega, Initial residual = 0.000353519, Final residual = 2.83015e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00216859, Final residual = 0.000123715, No Iterations 4
ExecutionTime = 58.53 s ClockTime = 59 s
Time = 397
smoothSolver: Solving for Ux, Initial residual = 0.00117579, Final residual = 6.11513e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00262046, Final residual = 0.000150965, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0321687, Final residual = 0.000148238, No Iterations 4
time step continuity errors : sum local = 0.00058292, global = -4.80418e-05, cumulative = -0.304109
smoothSolver: Solving for omega, Initial residual = 0.000353726, Final residual = 2.83102e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00216289, Final residual = 0.000123257, No Iterations 4
ExecutionTime = 58.67 s ClockTime = 59 s
Time = 398
smoothSolver: Solving for Ux, Initial residual = 0.00117524, Final residual = 6.11401e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00261641, Final residual = 0.000150685, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0322592, Final residual = 0.000148038, No Iterations 4
time step continuity errors : sum local = 0.000582896, global = -4.73712e-05, cumulative = -0.304156
smoothSolver: Solving for omega, Initial residual = 0.000353981, Final residual = 2.83187e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00215729, Final residual = 0.000122804, No Iterations 4
ExecutionTime = 58.8 s ClockTime = 59 s
Time = 399
smoothSolver: Solving for Ux, Initial residual = 0.00117471, Final residual = 6.11324e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00261258, Final residual = 0.000150421, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0323068, Final residual = 0.000147941, No Iterations 4
time step continuity errors : sum local = 0.000583314, global = -4.66874e-05, cumulative = -0.304203
smoothSolver: Solving for omega, Initial residual = 0.000354254, Final residual = 2.83286e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00215178, Final residual = 0.000122355, No Iterations 4
ExecutionTime = 58.94 s ClockTime = 60 s
Time = 400
smoothSolver: Solving for Ux, Initial residual = 0.00117418, Final residual = 6.11288e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00260897, Final residual = 0.000150163, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0323628, Final residual = 0.000147859, No Iterations 4
time step continuity errors : sum local = 0.00058379, global = -4.57136e-05, cumulative = -0.304248
smoothSolver: Solving for omega, Initial residual = 0.000354517, Final residual = 2.83387e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00214646, Final residual = 0.000121912, No Iterations 4
ExecutionTime = 59.29 s ClockTime = 60 s
Time = 401
smoothSolver: Solving for Ux, Initial residual = 0.00117364, Final residual = 6.11259e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00260549, Final residual = 0.000149917, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0323758, Final residual = 0.000147764, No Iterations 4
time step continuity errors : sum local = 0.000584257, global = -4.44239e-05, cumulative = -0.304293
smoothSolver: Solving for omega, Initial residual = 0.000354718, Final residual = 2.83496e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00214129, Final residual = 0.00012148, No Iterations 4
ExecutionTime = 59.43 s ClockTime = 60 s
Time = 402
smoothSolver: Solving for Ux, Initial residual = 0.00117311, Final residual = 6.11226e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00260228, Final residual = 0.00014969, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0324319, Final residual = 0.000147631, No Iterations 4
time step continuity errors : sum local = 0.000584539, global = -4.2803e-05, cumulative = -0.304336
smoothSolver: Solving for omega, Initial residual = 0.00035507, Final residual = 2.83629e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00213626, Final residual = 0.000121056, No Iterations 4
ExecutionTime = 59.56 s ClockTime = 60 s
Time = 403
smoothSolver: Solving for Ux, Initial residual = 0.00117259, Final residual = 6.11178e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00259934, Final residual = 0.00014948, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0324569, Final residual = 0.000147438, No Iterations 4
time step continuity errors : sum local = 0.000584643, global = -4.13534e-05, cumulative = -0.304377
smoothSolver: Solving for omega, Initial residual = 0.000355398, Final residual = 2.83751e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0021313, Final residual = 0.000120644, No Iterations 4
ExecutionTime = 59.7 s ClockTime = 60 s
Time = 404
smoothSolver: Solving for Ux, Initial residual = 0.00117208, Final residual = 6.1114e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00259671, Final residual = 0.000149279, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0324096, Final residual = 0.000147092, No Iterations 4
time step continuity errors : sum local = 0.000584235, global = -4.00593e-05, cumulative = -0.304417
smoothSolver: Solving for omega, Initial residual = 0.000355748, Final residual = 2.839e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212643, Final residual = 0.00012024, No Iterations 4
ExecutionTime = 59.84 s ClockTime = 61 s
Time = 405
smoothSolver: Solving for Ux, Initial residual = 0.00117161, Final residual = 6.11108e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00259428, Final residual = 0.000149091, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0322574, Final residual = 0.00014656, No Iterations 4
time step continuity errors : sum local = 0.0005832, global = -3.88934e-05, cumulative = -0.304456
smoothSolver: Solving for omega, Initial residual = 0.000356164, Final residual = 2.84083e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212168, Final residual = 0.000119845, No Iterations 4
ExecutionTime = 59.98 s ClockTime = 61 s
Time = 406
smoothSolver: Solving for Ux, Initial residual = 0.00117119, Final residual = 6.11106e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00259194, Final residual = 0.000148919, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0320742, Final residual = 0.00014595, No Iterations 4
time step continuity errors : sum local = 0.00058202, global = -3.77984e-05, cumulative = -0.304494
smoothSolver: Solving for omega, Initial residual = 0.000356588, Final residual = 2.84284e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00211701, Final residual = 0.000119457, No Iterations 4
ExecutionTime = 60.13 s ClockTime = 61 s
Time = 407
smoothSolver: Solving for Ux, Initial residual = 0.0011708, Final residual = 6.11108e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00258991, Final residual = 0.000148757, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0320427, Final residual = 0.000145504, No Iterations 4
time step continuity errors : sum local = 0.0005814, global = -3.68391e-05, cumulative = -0.304531
smoothSolver: Solving for omega, Initial residual = 0.000357092, Final residual = 2.84544e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00211238, Final residual = 0.000119077, No Iterations 4
ExecutionTime = 60.27 s ClockTime = 61 s
Time = 408
smoothSolver: Solving for Ux, Initial residual = 0.00117044, Final residual = 6.11112e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00258822, Final residual = 0.000148604, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0320467, Final residual = 0.000145082, No Iterations 4
time step continuity errors : sum local = 0.000580915, global = -3.55945e-05, cumulative = -0.304566
smoothSolver: Solving for omega, Initial residual = 0.000357638, Final residual = 2.84823e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0021079, Final residual = 0.000118705, No Iterations 4
ExecutionTime = 60.41 s ClockTime = 61 s
Time = 409
smoothSolver: Solving for Ux, Initial residual = 0.00117009, Final residual = 6.11128e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00258671, Final residual = 0.000148461, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0320513, Final residual = 0.000144658, No Iterations 4
time step continuity errors : sum local = 0.000580466, global = -3.41073e-05, cumulative = -0.3046
smoothSolver: Solving for omega, Initial residual = 0.00035818, Final residual = 2.8509e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00210362, Final residual = 0.000118344, No Iterations 4
ExecutionTime = 60.56 s ClockTime = 61 s
Time = 410
smoothSolver: Solving for Ux, Initial residual = 0.00116973, Final residual = 6.11155e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00258546, Final residual = 0.000148341, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0320226, Final residual = 0.000144191, No Iterations 4
time step continuity errors : sum local = 0.000579804, global = -3.23434e-05, cumulative = -0.304633
smoothSolver: Solving for omega, Initial residual = 0.000358734, Final residual = 2.85347e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00209941, Final residual = 0.000117994, No Iterations 4
ExecutionTime = 60.69 s ClockTime = 61 s
Time = 411
smoothSolver: Solving for Ux, Initial residual = 0.00116941, Final residual = 6.11159e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00258456, Final residual = 0.000148226, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0319823, Final residual = 0.000143731, No Iterations 4
time step continuity errors : sum local = 0.000579135, global = -3.03917e-05, cumulative = -0.304663
smoothSolver: Solving for omega, Initial residual = 0.000359332, Final residual = 2.8566e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00209527, Final residual = 0.000117653, No Iterations 4
ExecutionTime = 60.82 s ClockTime = 62 s
Time = 412
smoothSolver: Solving for Ux, Initial residual = 0.0011691, Final residual = 6.11145e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00258381, Final residual = 0.000148116, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0320801, Final residual = 0.00014335, No Iterations 4
time step continuity errors : sum local = 0.000578695, global = -2.8565e-05, cumulative = -0.304692
smoothSolver: Solving for omega, Initial residual = 0.00035992, Final residual = 2.85981e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00209124, Final residual = 0.000117321, No Iterations 4
ExecutionTime = 60.96 s ClockTime = 62 s
Time = 413
smoothSolver: Solving for Ux, Initial residual = 0.00116883, Final residual = 6.11181e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00258327, Final residual = 0.000148016, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0321901, Final residual = 0.00014296, No Iterations 4
time step continuity errors : sum local = 0.000578239, global = -2.66867e-05, cumulative = -0.304718
smoothSolver: Solving for omega, Initial residual = 0.000360517, Final residual = 2.86334e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00208733, Final residual = 0.000116996, No Iterations 4
ExecutionTime = 61.09 s ClockTime = 62 s
Time = 414
smoothSolver: Solving for Ux, Initial residual = 0.00116854, Final residual = 6.1123e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00258282, Final residual = 0.000147931, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0322603, Final residual = 0.000142688, No Iterations 4
time step continuity errors : sum local = 0.000578398, global = -2.48901e-05, cumulative = -0.304743
smoothSolver: Solving for omega, Initial residual = 0.000361152, Final residual = 2.86734e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00208363, Final residual = 0.000116681, No Iterations 4
ExecutionTime = 61.24 s ClockTime = 62 s
Time = 415
smoothSolver: Solving for Ux, Initial residual = 0.00116827, Final residual = 6.11292e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00258237, Final residual = 0.000147842, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0322183, Final residual = 0.000142587, No Iterations 4
time step continuity errors : sum local = 0.000579445, global = -2.31769e-05, cumulative = -0.304766
smoothSolver: Solving for omega, Initial residual = 0.000361776, Final residual = 2.87122e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00208004, Final residual = 0.000116374, No Iterations 4
ExecutionTime = 61.37 s ClockTime = 62 s
Time = 416
smoothSolver: Solving for Ux, Initial residual = 0.00116803, Final residual = 6.11337e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0025822, Final residual = 0.000147751, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0321849, Final residual = 0.000142621, No Iterations 4
time step continuity errors : sum local = 0.000581101, global = -2.15999e-05, cumulative = -0.304788
smoothSolver: Solving for omega, Initial residual = 0.000362433, Final residual = 2.87565e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00207663, Final residual = 0.000116074, No Iterations 4
ExecutionTime = 61.51 s ClockTime = 62 s
Time = 417
smoothSolver: Solving for Ux, Initial residual = 0.00116779, Final residual = 6.11397e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00258215, Final residual = 0.000147672, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0321148, Final residual = 0.000142683, No Iterations 4
time step continuity errors : sum local = 0.000582839, global = -2.06426e-05, cumulative = -0.304809
smoothSolver: Solving for omega, Initial residual = 0.000363088, Final residual = 2.88034e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00207344, Final residual = 0.000115784, No Iterations 4
ExecutionTime = 61.65 s ClockTime = 62 s
Time = 418
smoothSolver: Solving for Ux, Initial residual = 0.00116755, Final residual = 6.11445e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00258216, Final residual = 0.000147596, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0319215, Final residual = 0.000142373, No Iterations 4
time step continuity errors : sum local = 0.000582997, global = -1.96563e-05, cumulative = -0.304828
smoothSolver: Solving for omega, Initial residual = 0.00036383, Final residual = 2.88462e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00207036, Final residual = 0.000115503, No Iterations 4
ExecutionTime = 61.79 s ClockTime = 63 s
Time = 419
smoothSolver: Solving for Ux, Initial residual = 0.00116736, Final residual = 6.11495e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00258223, Final residual = 0.000147519, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0317605, Final residual = 0.000141771, No Iterations 4
time step continuity errors : sum local = 0.000581968, global = -1.82996e-05, cumulative = -0.304846
smoothSolver: Solving for omega, Initial residual = 0.00036458, Final residual = 2.88932e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00206741, Final residual = 0.00011523, No Iterations 4
ExecutionTime = 61.92 s ClockTime = 63 s
Time = 420
smoothSolver: Solving for Ux, Initial residual = 0.00116725, Final residual = 6.11561e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0025823, Final residual = 0.000147429, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0317261, Final residual = 0.000141264, No Iterations 4
time step continuity errors : sum local = 0.000581271, global = -1.66485e-05, cumulative = -0.304863
smoothSolver: Solving for omega, Initial residual = 0.000365379, Final residual = 2.89435e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0020645, Final residual = 0.000114968, No Iterations 4
ExecutionTime = 62.07 s ClockTime = 63 s
Time = 421
smoothSolver: Solving for Ux, Initial residual = 0.00116715, Final residual = 6.11636e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00258256, Final residual = 0.000147345, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0318063, Final residual = 0.00014184, No Iterations 4
time step continuity errors : sum local = 0.000584939, global = -1.53762e-05, cumulative = -0.304879
smoothSolver: Solving for omega, Initial residual = 0.000366159, Final residual = 2.89927e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00206168, Final residual = 0.000114713, No Iterations 4
ExecutionTime = 62.2 s ClockTime = 63 s
Time = 422
smoothSolver: Solving for Ux, Initial residual = 0.00116708, Final residual = 6.1172e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00258298, Final residual = 0.000147269, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0319527, Final residual = 0.000141878, No Iterations 4
time step continuity errors : sum local = 0.000586233, global = -1.38854e-05, cumulative = -0.304892
smoothSolver: Solving for omega, Initial residual = 0.000366917, Final residual = 2.90409e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00205894, Final residual = 0.000114468, No Iterations 4
ExecutionTime = 62.34 s ClockTime = 63 s
Time = 423
smoothSolver: Solving for Ux, Initial residual = 0.00116702, Final residual = 6.118e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00258349, Final residual = 0.000147204, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0320382, Final residual = 0.000141894, No Iterations 4
time step continuity errors : sum local = 0.000587414, global = -1.22606e-05, cumulative = -0.304905
smoothSolver: Solving for omega, Initial residual = 0.000367709, Final residual = 2.9091e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00205624, Final residual = 0.000114234, No Iterations 4
ExecutionTime = 62.49 s ClockTime = 63 s
Time = 424
smoothSolver: Solving for Ux, Initial residual = 0.00116696, Final residual = 6.11892e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00258396, Final residual = 0.000147131, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0321006, Final residual = 0.000141846, No Iterations 4
time step continuity errors : sum local = 0.000588409, global = -1.0478e-05, cumulative = -0.304915
smoothSolver: Solving for omega, Initial residual = 0.000368537, Final residual = 2.91437e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00205375, Final residual = 0.000114005, No Iterations 4
ExecutionTime = 62.63 s ClockTime = 63 s
Time = 425
smoothSolver: Solving for Ux, Initial residual = 0.00116693, Final residual = 6.11975e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00258463, Final residual = 0.000147059, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0321578, Final residual = 0.000141804, No Iterations 4
time step continuity errors : sum local = 0.000589577, global = -8.6863e-06, cumulative = -0.304924
smoothSolver: Solving for omega, Initial residual = 0.000369388, Final residual = 2.91978e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00205147, Final residual = 0.000113784, No Iterations 4
ExecutionTime = 62.77 s ClockTime = 64 s
Time = 426
smoothSolver: Solving for Ux, Initial residual = 0.00116689, Final residual = 6.1205e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00258539, Final residual = 0.000146997, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0322216, Final residual = 0.000141949, No Iterations 4
time step continuity errors : sum local = 0.0005914, global = -7.1312e-06, cumulative = -0.304931
smoothSolver: Solving for omega, Initial residual = 0.000370289, Final residual = 2.92639e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00204934, Final residual = 0.000113571, No Iterations 4
ExecutionTime = 62.9 s ClockTime = 64 s
Time = 427
smoothSolver: Solving for Ux, Initial residual = 0.00116685, Final residual = 6.12132e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00258624, Final residual = 0.000146937, No Iterations 4
GAMG: Solving for p, Initial residual = 0.032181, Final residual = 0.000142174, No Iterations 4
time step continuity errors : sum local = 0.000593633, global = -5.71223e-06, cumulative = -0.304937
smoothSolver: Solving for omega, Initial residual = 0.00037122, Final residual = 2.93356e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00204735, Final residual = 0.000113364, No Iterations 4
ExecutionTime = 63.04 s ClockTime = 64 s
Time = 428
smoothSolver: Solving for Ux, Initial residual = 0.00116683, Final residual = 6.1222e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00258715, Final residual = 0.000146876, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0320588, Final residual = 0.000142148, No Iterations 4
time step continuity errors : sum local = 0.000594943, global = -4.0184e-06, cumulative = -0.304941
smoothSolver: Solving for omega, Initial residual = 0.000372144, Final residual = 2.94071e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00204547, Final residual = 0.000113171, No Iterations 4
ExecutionTime = 63.18 s ClockTime = 64 s
Time = 429
smoothSolver: Solving for Ux, Initial residual = 0.00116684, Final residual = 6.12326e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00258799, Final residual = 0.000146807, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0319739, Final residual = 0.00014206, No Iterations 4
time step continuity errors : sum local = 0.000596048, global = -2.27189e-06, cumulative = -0.304943
smoothSolver: Solving for omega, Initial residual = 0.000373051, Final residual = 2.94748e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00204371, Final residual = 0.000112995, No Iterations 4
ExecutionTime = 63.32 s ClockTime = 64 s
Time = 430
smoothSolver: Solving for Ux, Initial residual = 0.00116687, Final residual = 6.12425e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00258895, Final residual = 0.000146741, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0319687, Final residual = 0.000142108, No Iterations 4
time step continuity errors : sum local = 0.000597605, global = -7.23278e-07, cumulative = -0.304944
smoothSolver: Solving for omega, Initial residual = 0.000373981, Final residual = 2.95428e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00204207, Final residual = 0.000112835, No Iterations 4
ExecutionTime = 63.46 s ClockTime = 64 s
Time = 431
smoothSolver: Solving for Ux, Initial residual = 0.00116689, Final residual = 6.12525e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00259004, Final residual = 0.000146668, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0319976, Final residual = 0.000142024, No Iterations 4
time step continuity errors : sum local = 0.000598405, global = 6.94723e-07, cumulative = -0.304943
smoothSolver: Solving for omega, Initial residual = 0.000374913, Final residual = 2.96086e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00204062, Final residual = 0.000112685, No Iterations 4
ExecutionTime = 63.6 s ClockTime = 64 s
Time = 432
smoothSolver: Solving for Ux, Initial residual = 0.00116696, Final residual = 6.12633e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00259124, Final residual = 0.000146602, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0319994, Final residual = 0.00014177, No Iterations 4
time step continuity errors : sum local = 0.000598434, global = 2.02275e-06, cumulative = -0.304941
smoothSolver: Solving for omega, Initial residual = 0.0003759, Final residual = 2.96753e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00203929, Final residual = 0.000112545, No Iterations 4
ExecutionTime = 63.73 s ClockTime = 64 s
Time = 433
smoothSolver: Solving for Ux, Initial residual = 0.00116706, Final residual = 6.1273e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00259252, Final residual = 0.000146539, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0320112, Final residual = 0.000141482, No Iterations 4
time step continuity errors : sum local = 0.000598269, global = 3.55851e-06, cumulative = -0.304937
smoothSolver: Solving for omega, Initial residual = 0.000376957, Final residual = 2.97504e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00203813, Final residual = 0.000112414, No Iterations 4
ExecutionTime = 63.87 s ClockTime = 65 s
Time = 434
smoothSolver: Solving for Ux, Initial residual = 0.00116719, Final residual = 6.12822e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00259379, Final residual = 0.000146477, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0320374, Final residual = 0.000141289, No Iterations 4
time step continuity errors : sum local = 0.000598606, global = 5.23236e-06, cumulative = -0.304932
smoothSolver: Solving for omega, Initial residual = 0.000378021, Final residual = 2.98275e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00203712, Final residual = 0.000112295, No Iterations 4
ExecutionTime = 64.02 s ClockTime = 65 s
Time = 435
smoothSolver: Solving for Ux, Initial residual = 0.00116732, Final residual = 6.12905e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00259519, Final residual = 0.000146418, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0320245, Final residual = 0.000141195, No Iterations 4
time step continuity errors : sum local = 0.000599457, global = 6.93717e-06, cumulative = -0.304925
smoothSolver: Solving for omega, Initial residual = 0.000379133, Final residual = 2.9912e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00203635, Final residual = 0.000112193, No Iterations 4
ExecutionTime = 64.17 s ClockTime = 65 s
Time = 436
smoothSolver: Solving for Ux, Initial residual = 0.00116744, Final residual = 6.12996e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00259663, Final residual = 0.000146357, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0321028, Final residual = 0.000141329, No Iterations 4
time step continuity errors : sum local = 0.000601202, global = 8.51225e-06, cumulative = -0.304917
smoothSolver: Solving for omega, Initial residual = 0.000380227, Final residual = 3.00033e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00203564, Final residual = 0.0001121, No Iterations 4
ExecutionTime = 64.3 s ClockTime = 65 s
Time = 437
smoothSolver: Solving for Ux, Initial residual = 0.00116758, Final residual = 6.13078e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00259815, Final residual = 0.000146295, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0320981, Final residual = 0.000141464, No Iterations 4
time step continuity errors : sum local = 0.000603027, global = 1.01482e-05, cumulative = -0.304907
smoothSolver: Solving for omega, Initial residual = 0.000381305, Final residual = 3.00963e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00203502, Final residual = 0.000112019, No Iterations 4
ExecutionTime = 64.44 s ClockTime = 65 s
Time = 438
smoothSolver: Solving for Ux, Initial residual = 0.00116772, Final residual = 6.13161e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00259963, Final residual = 0.000146236, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0319618, Final residual = 0.000141481, No Iterations 4
time step continuity errors : sum local = 0.000604336, global = 1.15977e-05, cumulative = -0.304895
smoothSolver: Solving for omega, Initial residual = 0.000382389, Final residual = 3.0185e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00203463, Final residual = 0.000111954, No Iterations 4
ExecutionTime = 64.58 s ClockTime = 65 s
Time = 439
smoothSolver: Solving for Ux, Initial residual = 0.0011679, Final residual = 6.13237e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00260123, Final residual = 0.00014617, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0319206, Final residual = 0.000141326, No Iterations 4
time step continuity errors : sum local = 0.000604901, global = 1.31027e-05, cumulative = -0.304882
smoothSolver: Solving for omega, Initial residual = 0.000383549, Final residual = 3.02764e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00203434, Final residual = 0.000111898, No Iterations 4
ExecutionTime = 64.72 s ClockTime = 65 s
Time = 440
smoothSolver: Solving for Ux, Initial residual = 0.00116807, Final residual = 6.13304e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00260288, Final residual = 0.000146094, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0319738, Final residual = 0.000141138, No Iterations 4
time step continuity errors : sum local = 0.000605292, global = 1.46471e-05, cumulative = -0.304867
smoothSolver: Solving for omega, Initial residual = 0.000384759, Final residual = 3.03733e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00203417, Final residual = 0.000111851, No Iterations 4
ExecutionTime = 64.86 s ClockTime = 66 s
Time = 441
smoothSolver: Solving for Ux, Initial residual = 0.0011682, Final residual = 6.13378e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00260458, Final residual = 0.000146026, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0321999, Final residual = 0.000141073, No Iterations 4
time step continuity errors : sum local = 0.000606177, global = 1.59743e-05, cumulative = -0.304851
smoothSolver: Solving for omega, Initial residual = 0.00038595, Final residual = 3.04694e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00203407, Final residual = 0.000111817, No Iterations 4
ExecutionTime = 65 s ClockTime = 66 s
Time = 442
smoothSolver: Solving for Ux, Initial residual = 0.00116834, Final residual = 6.13438e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00260635, Final residual = 0.000145966, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0323682, Final residual = 0.000141429, No Iterations 4
time step continuity errors : sum local = 0.000608822, global = 1.70567e-05, cumulative = -0.304834
smoothSolver: Solving for omega, Initial residual = 0.000387052, Final residual = 3.05614e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00203404, Final residual = 0.00011179, No Iterations 4
ExecutionTime = 65.14 s ClockTime = 66 s
Time = 443
smoothSolver: Solving for Ux, Initial residual = 0.00116847, Final residual = 6.13479e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00260815, Final residual = 0.0001459, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0325035, Final residual = 0.000141651, No Iterations 4
time step continuity errors : sum local = 0.000610972, global = 1.81601e-05, cumulative = -0.304816
smoothSolver: Solving for omega, Initial residual = 0.000388202, Final residual = 3.06591e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00203421, Final residual = 0.000111776, No Iterations 4
ExecutionTime = 65.27 s ClockTime = 66 s
Time = 444
smoothSolver: Solving for Ux, Initial residual = 0.00116859, Final residual = 6.13495e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00261005, Final residual = 0.000145835, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0325229, Final residual = 0.000141507, No Iterations 4
time step continuity errors : sum local = 0.000611586, global = 1.94221e-05, cumulative = -0.304797
smoothSolver: Solving for omega, Initial residual = 0.000389413, Final residual = 3.07587e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00203458, Final residual = 0.000111775, No Iterations 4
ExecutionTime = 65.42 s ClockTime = 66 s
Time = 445
smoothSolver: Solving for Ux, Initial residual = 0.00116871, Final residual = 6.13499e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00261211, Final residual = 0.000145768, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0324178, Final residual = 0.000141762, No Iterations 4
time step continuity errors : sum local = 0.00061402, global = 2.0321e-05, cumulative = -0.304776
smoothSolver: Solving for omega, Initial residual = 0.00039065, Final residual = 3.08688e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00203502, Final residual = 0.000111786, No Iterations 4
ExecutionTime = 65.56 s ClockTime = 66 s
Time = 446
smoothSolver: Solving for Ux, Initial residual = 0.00116882, Final residual = 6.13509e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00261416, Final residual = 0.000145713, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0323343, Final residual = 0.000141692, No Iterations 4
time step continuity errors : sum local = 0.000614928, global = 2.11868e-05, cumulative = -0.304755
smoothSolver: Solving for omega, Initial residual = 0.000391904, Final residual = 3.09861e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00203562, Final residual = 0.000111812, No Iterations 4
ExecutionTime = 65.7 s ClockTime = 66 s
Time = 447
smoothSolver: Solving for Ux, Initial residual = 0.00116892, Final residual = 6.13499e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00261619, Final residual = 0.000145656, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0321034, Final residual = 0.000141567, No Iterations 4
time step continuity errors : sum local = 0.000615552, global = 2.18315e-05, cumulative = -0.304733
smoothSolver: Solving for omega, Initial residual = 0.000393239, Final residual = 3.11029e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00203641, Final residual = 0.000111854, No Iterations 4
ExecutionTime = 65.83 s ClockTime = 67 s
Time = 448
smoothSolver: Solving for Ux, Initial residual = 0.00116905, Final residual = 6.13479e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00261816, Final residual = 0.000145591, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0319056, Final residual = 0.000141361, No Iterations 4
time step continuity errors : sum local = 0.000615745, global = 2.23688e-05, cumulative = -0.304711
smoothSolver: Solving for omega, Initial residual = 0.000394609, Final residual = 3.12167e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00203733, Final residual = 0.000111912, No Iterations 4
ExecutionTime = 65.97 s ClockTime = 67 s
Time = 449
smoothSolver: Solving for Ux, Initial residual = 0.00116917, Final residual = 6.13436e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00262033, Final residual = 0.000145511, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0317667, Final residual = 0.000141235, No Iterations 4
time step continuity errors : sum local = 0.000616182, global = 2.3029e-05, cumulative = -0.304688
smoothSolver: Solving for omega, Initial residual = 0.000395952, Final residual = 3.13324e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00203836, Final residual = 0.000111979, No Iterations 4
ExecutionTime = 66.1 s ClockTime = 67 s
Time = 450
smoothSolver: Solving for Ux, Initial residual = 0.00116927, Final residual = 6.13381e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00262256, Final residual = 0.000145438, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0317495, Final residual = 0.000141164, No Iterations 4
time step continuity errors : sum local = 0.000616941, global = 2.36593e-05, cumulative = -0.304664
smoothSolver: Solving for omega, Initial residual = 0.000397334, Final residual = 3.14559e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00203952, Final residual = 0.000112053, No Iterations 4
ExecutionTime = 66.44 s ClockTime = 67 s
Time = 451
smoothSolver: Solving for Ux, Initial residual = 0.00116935, Final residual = 6.1333e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00262478, Final residual = 0.000145376, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0318766, Final residual = 0.0001412, No Iterations 4
time step continuity errors : sum local = 0.00061805, global = 2.41994e-05, cumulative = -0.30464
smoothSolver: Solving for omega, Initial residual = 0.000398634, Final residual = 3.1579e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00204092, Final residual = 0.00011214, No Iterations 4
ExecutionTime = 66.59 s ClockTime = 67 s
Time = 452
smoothSolver: Solving for Ux, Initial residual = 0.00116941, Final residual = 6.13263e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00262711, Final residual = 0.00014531, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0319714, Final residual = 0.000141266, No Iterations 4
time step continuity errors : sum local = 0.000619344, global = 2.46439e-05, cumulative = -0.304615
smoothSolver: Solving for omega, Initial residual = 0.000399975, Final residual = 3.17024e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00204246, Final residual = 0.000112237, No Iterations 4
ExecutionTime = 66.73 s ClockTime = 67 s
Time = 453
smoothSolver: Solving for Ux, Initial residual = 0.00116946, Final residual = 6.13179e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00262942, Final residual = 0.000145242, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0320425, Final residual = 0.00014125, No Iterations 4
time step continuity errors : sum local = 0.000620452, global = 2.51647e-05, cumulative = -0.30459
smoothSolver: Solving for omega, Initial residual = 0.000401305, Final residual = 3.18313e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00204404, Final residual = 0.000112342, No Iterations 4
ExecutionTime = 66.87 s ClockTime = 68 s
Time = 454
smoothSolver: Solving for Ux, Initial residual = 0.00116948, Final residual = 6.13067e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00263173, Final residual = 0.00014518, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0321052, Final residual = 0.000141298, No Iterations 4
time step continuity errors : sum local = 0.000621975, global = 2.57589e-05, cumulative = -0.304564
smoothSolver: Solving for omega, Initial residual = 0.00040262, Final residual = 3.1961e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00204566, Final residual = 0.000112455, No Iterations 4
ExecutionTime = 67.01 s ClockTime = 68 s
Time = 455
smoothSolver: Solving for Ux, Initial residual = 0.00116948, Final residual = 6.1293e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00263428, Final residual = 0.00014512, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0321272, Final residual = 0.000141751, No Iterations 4
time step continuity errors : sum local = 0.000625411, global = 2.61308e-05, cumulative = -0.304538
smoothSolver: Solving for omega, Initial residual = 0.00040394, Final residual = 3.20907e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00204733, Final residual = 0.000112577, No Iterations 4
ExecutionTime = 67.15 s ClockTime = 68 s
Time = 456
smoothSolver: Solving for Ux, Initial residual = 0.00116944, Final residual = 6.12785e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00263685, Final residual = 0.000145057, No Iterations 4
GAMG: Solving for p, Initial residual = 0.032101, Final residual = 0.00014217, No Iterations 4
time step continuity errors : sum local = 0.000628574, global = 2.62134e-05, cumulative = -0.304512
smoothSolver: Solving for omega, Initial residual = 0.000405343, Final residual = 3.22218e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00204906, Final residual = 0.000112703, No Iterations 4
ExecutionTime = 67.29 s ClockTime = 68 s
Time = 457
smoothSolver: Solving for Ux, Initial residual = 0.00116939, Final residual = 6.1262e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00263938, Final residual = 0.000144994, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0320827, Final residual = 0.00014218, No Iterations 4
time step continuity errors : sum local = 0.000629702, global = 2.62873e-05, cumulative = -0.304486
smoothSolver: Solving for omega, Initial residual = 0.000406815, Final residual = 3.23592e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00205079, Final residual = 0.000112835, No Iterations 4
ExecutionTime = 67.43 s ClockTime = 68 s
Time = 458
smoothSolver: Solving for Ux, Initial residual = 0.00116934, Final residual = 6.12423e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00264194, Final residual = 0.000144927, No Iterations 4
GAMG: Solving for p, Initial residual = 0.03198, Final residual = 0.000141736, No Iterations 4
time step continuity errors : sum local = 0.0006288, global = 2.6526e-05, cumulative = -0.304459
smoothSolver: Solving for omega, Initial residual = 0.000408272, Final residual = 3.24928e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00205255, Final residual = 0.000112972, No Iterations 4
ExecutionTime = 67.56 s ClockTime = 68 s
Time = 459
smoothSolver: Solving for Ux, Initial residual = 0.00116929, Final residual = 6.12203e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00264445, Final residual = 0.000144858, No Iterations 4
GAMG: Solving for p, Initial residual = 0.031883, Final residual = 0.000141212, No Iterations 4
time step continuity errors : sum local = 0.000627529, global = 2.68825e-05, cumulative = -0.304432
smoothSolver: Solving for omega, Initial residual = 0.000409697, Final residual = 3.26282e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00205437, Final residual = 0.000113109, No Iterations 4
ExecutionTime = 67.71 s ClockTime = 68 s
Time = 460
smoothSolver: Solving for Ux, Initial residual = 0.00116922, Final residual = 6.11966e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00264709, Final residual = 0.000144791, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0317943, Final residual = 0.000140991, No Iterations 4
time step continuity errors : sum local = 0.000627663, global = 2.72735e-05, cumulative = -0.304405
smoothSolver: Solving for omega, Initial residual = 0.000411111, Final residual = 3.27677e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00205625, Final residual = 0.000113248, No Iterations 4
ExecutionTime = 67.84 s ClockTime = 69 s
Time = 461
smoothSolver: Solving for Ux, Initial residual = 0.00116912, Final residual = 6.11716e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00264993, Final residual = 0.000144727, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0317256, Final residual = 0.000141134, No Iterations 4
time step continuity errors : sum local = 0.000629249, global = 2.75093e-05, cumulative = -0.304378
smoothSolver: Solving for omega, Initial residual = 0.000412535, Final residual = 3.29098e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00205811, Final residual = 0.00011339, No Iterations 4
ExecutionTime = 67.98 s ClockTime = 69 s
Time = 462
smoothSolver: Solving for Ux, Initial residual = 0.00116898, Final residual = 6.11442e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00265271, Final residual = 0.000144666, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0316783, Final residual = 0.000141465, No Iterations 4
time step continuity errors : sum local = 0.000631746, global = 2.78041e-05, cumulative = -0.30435
smoothSolver: Solving for omega, Initial residual = 0.000413968, Final residual = 3.30508e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00205991, Final residual = 0.000113535, No Iterations 4
ExecutionTime = 68.13 s ClockTime = 69 s
Time = 463
smoothSolver: Solving for Ux, Initial residual = 0.00116883, Final residual = 6.11136e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00265553, Final residual = 0.000144609, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0316408, Final residual = 0.000141733, No Iterations 4
time step continuity errors : sum local = 0.000634123, global = 2.82381e-05, cumulative = -0.304322
smoothSolver: Solving for omega, Initial residual = 0.000415434, Final residual = 3.31923e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00206177, Final residual = 0.000113685, No Iterations 4
ExecutionTime = 68.27 s ClockTime = 69 s
Time = 464
smoothSolver: Solving for Ux, Initial residual = 0.00116865, Final residual = 6.10809e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00265826, Final residual = 0.000144546, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0315574, Final residual = 0.000141877, No Iterations 4
time step continuity errors : sum local = 0.000636008, global = 2.87582e-05, cumulative = -0.304293
smoothSolver: Solving for omega, Initial residual = 0.000416947, Final residual = 3.33384e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00206358, Final residual = 0.000113834, No Iterations 4
ExecutionTime = 68.41 s ClockTime = 69 s
Time = 465
smoothSolver: Solving for Ux, Initial residual = 0.00116843, Final residual = 6.1047e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00266106, Final residual = 0.000144491, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0314752, Final residual = 0.00014195, No Iterations 4
time step continuity errors : sum local = 0.000637471, global = 2.90879e-05, cumulative = -0.304264
smoothSolver: Solving for omega, Initial residual = 0.000418407, Final residual = 3.34801e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00206544, Final residual = 0.000113985, No Iterations 4
ExecutionTime = 68.55 s ClockTime = 69 s
Time = 466
smoothSolver: Solving for Ux, Initial residual = 0.00116818, Final residual = 6.10117e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00266401, Final residual = 0.000144428, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0314967, Final residual = 0.000142032, No Iterations 4
time step continuity errors : sum local = 0.000638755, global = 2.94178e-05, cumulative = -0.304234
smoothSolver: Solving for omega, Initial residual = 0.000419832, Final residual = 3.36224e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0020674, Final residual = 0.000114138, No Iterations 4
ExecutionTime = 68.7 s ClockTime = 69 s
Time = 467
smoothSolver: Solving for Ux, Initial residual = 0.00116788, Final residual = 6.09742e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00266685, Final residual = 0.000144363, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0316213, Final residual = 0.000142056, No Iterations 4
time step continuity errors : sum local = 0.000639701, global = 2.9793e-05, cumulative = -0.304205
smoothSolver: Solving for omega, Initial residual = 0.000421234, Final residual = 3.37692e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00206948, Final residual = 0.000114292, No Iterations 4
ExecutionTime = 68.84 s ClockTime = 70 s
Time = 468
smoothSolver: Solving for Ux, Initial residual = 0.00116757, Final residual = 6.09341e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00266967, Final residual = 0.000144296, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0317357, Final residual = 0.000142015, No Iterations 4
time step continuity errors : sum local = 0.000640484, global = 3.03021e-05, cumulative = -0.304174
smoothSolver: Solving for omega, Initial residual = 0.000422579, Final residual = 3.39158e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00207155, Final residual = 0.000114446, No Iterations 4
ExecutionTime = 68.98 s ClockTime = 70 s
Time = 469
smoothSolver: Solving for Ux, Initial residual = 0.00116725, Final residual = 6.08914e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00267248, Final residual = 0.000144237, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0317554, Final residual = 0.000142374, No Iterations 4
time step continuity errors : sum local = 0.000643015, global = 3.06121e-05, cumulative = -0.304144
smoothSolver: Solving for omega, Initial residual = 0.000423943, Final residual = 3.40626e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00207362, Final residual = 0.000114602, No Iterations 4
ExecutionTime = 69.12 s ClockTime = 70 s
Time = 470
smoothSolver: Solving for Ux, Initial residual = 0.0011669, Final residual = 6.08459e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00267534, Final residual = 0.00014418, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0316754, Final residual = 0.000142693, No Iterations 4
time step continuity errors : sum local = 0.000645544, global = 3.0993e-05, cumulative = -0.304113
smoothSolver: Solving for omega, Initial residual = 0.000425331, Final residual = 3.42119e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00207568, Final residual = 0.000114759, No Iterations 4
ExecutionTime = 69.26 s ClockTime = 70 s
Time = 471
smoothSolver: Solving for Ux, Initial residual = 0.0011665, Final residual = 6.07983e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0026783, Final residual = 0.000144128, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0315798, Final residual = 0.000142851, No Iterations 4
time step continuity errors : sum local = 0.000647569, global = 3.14221e-05, cumulative = -0.304081
smoothSolver: Solving for omega, Initial residual = 0.000426816, Final residual = 3.4365e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00207766, Final residual = 0.000114915, No Iterations 4
ExecutionTime = 69.4 s ClockTime = 70 s
Time = 472
smoothSolver: Solving for Ux, Initial residual = 0.00116606, Final residual = 6.07487e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00268128, Final residual = 0.000144077, No Iterations 4
GAMG: Solving for p, Initial residual = 0.031496, Final residual = 0.000142991, No Iterations 4
time step continuity errors : sum local = 0.000649413, global = 3.19303e-05, cumulative = -0.304049
smoothSolver: Solving for omega, Initial residual = 0.00042827, Final residual = 3.45124e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0020795, Final residual = 0.000115068, No Iterations 4
ExecutionTime = 69.55 s ClockTime = 70 s
Time = 473
smoothSolver: Solving for Ux, Initial residual = 0.0011656, Final residual = 6.0698e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00268429, Final residual = 0.000144027, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0314416, Final residual = 0.000143057, No Iterations 4
time step continuity errors : sum local = 0.000650765, global = 3.21154e-05, cumulative = -0.304017
smoothSolver: Solving for omega, Initial residual = 0.000429668, Final residual = 3.4655e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00208136, Final residual = 0.000115219, No Iterations 4
ExecutionTime = 69.69 s ClockTime = 70 s
Time = 474
smoothSolver: Solving for Ux, Initial residual = 0.00116512, Final residual = 6.06445e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00268721, Final residual = 0.000143968, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0313595, Final residual = 0.000143338, No Iterations 4
time step continuity errors : sum local = 0.00065307, global = 3.23679e-05, cumulative = -0.303985
smoothSolver: Solving for omega, Initial residual = 0.000431028, Final residual = 3.4798e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0020832, Final residual = 0.00011537, No Iterations 4
ExecutionTime = 69.83 s ClockTime = 71 s
Time = 475
smoothSolver: Solving for Ux, Initial residual = 0.00116462, Final residual = 6.05889e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00269006, Final residual = 0.000143909, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0313012, Final residual = 0.000143832, No Iterations 4
time step continuity errors : sum local = 0.00065643, global = 3.28295e-05, cumulative = -0.303952
smoothSolver: Solving for omega, Initial residual = 0.000432421, Final residual = 3.49445e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00208506, Final residual = 0.00011552, No Iterations 4
ExecutionTime = 69.97 s ClockTime = 71 s
Time = 476
smoothSolver: Solving for Ux, Initial residual = 0.00116407, Final residual = 6.05312e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00269293, Final residual = 0.000143851, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0311994, Final residual = 0.000144496, No Iterations 4
time step continuity errors : sum local = 0.000660504, global = 3.34583e-05, cumulative = -0.303919
smoothSolver: Solving for omega, Initial residual = 0.000433756, Final residual = 3.50911e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00208691, Final residual = 0.000115668, No Iterations 4
ExecutionTime = 70.1 s ClockTime = 71 s
Time = 477
smoothSolver: Solving for Ux, Initial residual = 0.00116348, Final residual = 6.0472e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00269584, Final residual = 0.000143796, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0311347, Final residual = 0.000145415, No Iterations 4
time step continuity errors : sum local = 0.00066562, global = 3.42328e-05, cumulative = -0.303884
smoothSolver: Solving for omega, Initial residual = 0.000435086, Final residual = 3.52373e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00208864, Final residual = 0.000115814, No Iterations 4
ExecutionTime = 70.24 s ClockTime = 71 s
Time = 478
smoothSolver: Solving for Ux, Initial residual = 0.00116285, Final residual = 6.04115e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0026988, Final residual = 0.000143751, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0310947, Final residual = 0.000146549, No Iterations 4
time step continuity errors : sum local = 0.000671777, global = 3.50787e-05, cumulative = -0.303849
smoothSolver: Solving for omega, Initial residual = 0.000436448, Final residual = 3.5386e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00209033, Final residual = 0.000115957, No Iterations 4
ExecutionTime = 70.38 s ClockTime = 71 s
Time = 479
smoothSolver: Solving for Ux, Initial residual = 0.00116222, Final residual = 6.03486e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00270181, Final residual = 0.000143705, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0310534, Final residual = 0.000147869, No Iterations 4
time step continuity errors : sum local = 0.000678838, global = 3.59683e-05, cumulative = -0.303813
smoothSolver: Solving for omega, Initial residual = 0.000437801, Final residual = 3.55315e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00209204, Final residual = 0.000116098, No Iterations 4
ExecutionTime = 70.51 s ClockTime = 71 s
Time = 480
smoothSolver: Solving for Ux, Initial residual = 0.00116158, Final residual = 6.02841e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00270486, Final residual = 0.000143665, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0310687, Final residual = 0.000148974, No Iterations 4
time step continuity errors : sum local = 0.000684957, global = 3.6763e-05, cumulative = -0.303776
smoothSolver: Solving for omega, Initial residual = 0.0004391, Final residual = 3.56727e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00209379, Final residual = 0.000116237, No Iterations 4
ExecutionTime = 70.66 s ClockTime = 71 s
Time = 481
smoothSolver: Solving for Ux, Initial residual = 0.00116092, Final residual = 6.02183e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00270782, Final residual = 0.000143628, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0311382, Final residual = 0.000149751, No Iterations 4
time step continuity errors : sum local = 0.000689429, global = 3.73683e-05, cumulative = -0.303739
smoothSolver: Solving for omega, Initial residual = 0.00044034, Final residual = 3.58127e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00209558, Final residual = 0.000116376, No Iterations 4
ExecutionTime = 70.8 s ClockTime = 72 s
Time = 482
smoothSolver: Solving for Ux, Initial residual = 0.00116023, Final residual = 6.0151e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00271071, Final residual = 0.000143581, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0311613, Final residual = 0.000150347, No Iterations 4
time step continuity errors : sum local = 0.00069304, global = 3.81063e-05, cumulative = -0.303701
smoothSolver: Solving for omega, Initial residual = 0.000441615, Final residual = 3.59574e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00209739, Final residual = 0.000116512, No Iterations 4
ExecutionTime = 70.93 s ClockTime = 72 s
Time = 483
smoothSolver: Solving for Ux, Initial residual = 0.00115951, Final residual = 6.00826e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00271357, Final residual = 0.000143532, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0311723, Final residual = 0.000150855, No Iterations 4
time step continuity errors : sum local = 0.000696315, global = 3.899e-05, cumulative = -0.303662
smoothSolver: Solving for omega, Initial residual = 0.000442866, Final residual = 3.60999e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00209913, Final residual = 0.000116645, No Iterations 4
ExecutionTime = 71.08 s ClockTime = 72 s
Time = 484
smoothSolver: Solving for Ux, Initial residual = 0.00115876, Final residual = 6.00122e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00271648, Final residual = 0.000143489, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0310715, Final residual = 0.000151529, No Iterations 4
time step continuity errors : sum local = 0.000700296, global = 3.99976e-05, cumulative = -0.303622
smoothSolver: Solving for omega, Initial residual = 0.000444044, Final residual = 3.6238e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00210085, Final residual = 0.000116775, No Iterations 4
ExecutionTime = 71.21 s ClockTime = 72 s
Time = 485
smoothSolver: Solving for Ux, Initial residual = 0.00115798, Final residual = 5.99397e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00271948, Final residual = 0.000143456, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0309883, Final residual = 0.0001523, No Iterations 4
time step continuity errors : sum local = 0.000704883, global = 4.07721e-05, cumulative = -0.303581
smoothSolver: Solving for omega, Initial residual = 0.00044523, Final residual = 3.63745e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0021025, Final residual = 0.000116903, No Iterations 4
ExecutionTime = 71.35 s ClockTime = 72 s
Time = 486
smoothSolver: Solving for Ux, Initial residual = 0.00115717, Final residual = 5.98662e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272258, Final residual = 0.000143435, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0309594, Final residual = 0.00015303, No Iterations 4
time step continuity errors : sum local = 0.00070952, global = 4.12717e-05, cumulative = -0.30354
smoothSolver: Solving for omega, Initial residual = 0.000446449, Final residual = 3.65116e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00210413, Final residual = 0.000117027, No Iterations 4
ExecutionTime = 71.49 s ClockTime = 72 s
Time = 487
smoothSolver: Solving for Ux, Initial residual = 0.00115633, Final residual = 5.97923e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027257, Final residual = 0.00014342, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0309628, Final residual = 0.000153421, No Iterations 4
time step continuity errors : sum local = 0.000712688, global = 4.19549e-05, cumulative = -0.303498
smoothSolver: Solving for omega, Initial residual = 0.000447615, Final residual = 3.66423e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00210574, Final residual = 0.000117149, No Iterations 4
ExecutionTime = 71.62 s ClockTime = 72 s
Time = 488
smoothSolver: Solving for Ux, Initial residual = 0.00115547, Final residual = 5.97189e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272873, Final residual = 0.000143398, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0310016, Final residual = 0.000153284, No Iterations 4
time step continuity errors : sum local = 0.0007131, global = 4.26244e-05, cumulative = -0.303455
smoothSolver: Solving for omega, Initial residual = 0.000448732, Final residual = 3.67706e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00210722, Final residual = 0.000117267, No Iterations 4
ExecutionTime = 71.76 s ClockTime = 73 s
Time = 489
smoothSolver: Solving for Ux, Initial residual = 0.00115458, Final residual = 5.96451e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273165, Final residual = 0.000143373, No Iterations 4
GAMG: Solving for p, Initial residual = 0.030845, Final residual = 0.000153121, No Iterations 4
time step continuity errors : sum local = 0.00071343, global = 4.32028e-05, cumulative = -0.303412
smoothSolver: Solving for omega, Initial residual = 0.000449824, Final residual = 3.69013e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00210868, Final residual = 0.000117378, No Iterations 4
ExecutionTime = 71.89 s ClockTime = 73 s
Time = 490
smoothSolver: Solving for Ux, Initial residual = 0.00115368, Final residual = 5.95703e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273454, Final residual = 0.000143342, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0307024, Final residual = 0.000153399, No Iterations 4
time step continuity errors : sum local = 0.000715807, global = 4.3816e-05, cumulative = -0.303368
smoothSolver: Solving for omega, Initial residual = 0.000450915, Final residual = 3.7033e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00210999, Final residual = 0.000117488, No Iterations 4
ExecutionTime = 72.03 s ClockTime = 73 s
Time = 491
smoothSolver: Solving for Ux, Initial residual = 0.00115277, Final residual = 5.94948e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273756, Final residual = 0.000143321, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0305082, Final residual = 0.000154023, No Iterations 4
time step continuity errors : sum local = 0.000719732, global = 4.4309e-05, cumulative = -0.303324
smoothSolver: Solving for omega, Initial residual = 0.000451941, Final residual = 3.71588e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00211121, Final residual = 0.000117592, No Iterations 4
ExecutionTime = 72.18 s ClockTime = 73 s
Time = 492
smoothSolver: Solving for Ux, Initial residual = 0.00115187, Final residual = 5.94181e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00274068, Final residual = 0.000143318, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0303369, Final residual = 0.000154651, No Iterations 4
time step continuity errors : sum local = 0.00072373, global = 4.45816e-05, cumulative = -0.303279
smoothSolver: Solving for omega, Initial residual = 0.000452942, Final residual = 3.7281e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00211234, Final residual = 0.000117695, No Iterations 4
ExecutionTime = 72.32 s ClockTime = 73 s
Time = 493
smoothSolver: Solving for Ux, Initial residual = 0.00115093, Final residual = 5.9341e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00274384, Final residual = 0.000143324, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0302698, Final residual = 0.000155471, No Iterations 4
time step continuity errors : sum local = 0.000728699, global = 4.51635e-05, cumulative = -0.303234
smoothSolver: Solving for omega, Initial residual = 0.000453963, Final residual = 3.74027e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00211341, Final residual = 0.000117794, No Iterations 4
ExecutionTime = 72.45 s ClockTime = 73 s
Time = 494
smoothSolver: Solving for Ux, Initial residual = 0.00114996, Final residual = 5.92637e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027471, Final residual = 0.000143332, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0302871, Final residual = 0.000156278, No Iterations 4
time step continuity errors : sum local = 0.000733479, global = 4.58108e-05, cumulative = -0.303188
smoothSolver: Solving for omega, Initial residual = 0.000454935, Final residual = 3.75191e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00211447, Final residual = 0.000117889, No Iterations 4
ExecutionTime = 72.59 s ClockTime = 73 s
Time = 495
smoothSolver: Solving for Ux, Initial residual = 0.00114899, Final residual = 5.91866e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00275023, Final residual = 0.000143341, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0303011, Final residual = 0.000156631, No Iterations 4
time step continuity errors : sum local = 0.000735962, global = 4.63841e-05, cumulative = -0.303142
smoothSolver: Solving for omega, Initial residual = 0.000455832, Final residual = 3.76293e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00211551, Final residual = 0.000117979, No Iterations 4
ExecutionTime = 72.73 s ClockTime = 74 s
Time = 496
smoothSolver: Solving for Ux, Initial residual = 0.00114798, Final residual = 5.91091e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027532, Final residual = 0.000143339, No Iterations 4
GAMG: Solving for p, Initial residual = 0.030145, Final residual = 0.000157073, No Iterations 4
time step continuity errors : sum local = 0.000738947, global = 4.69515e-05, cumulative = -0.303095
smoothSolver: Solving for omega, Initial residual = 0.0004567, Final residual = 3.7739e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00211654, Final residual = 0.000118065, No Iterations 4
ExecutionTime = 72.87 s ClockTime = 74 s
Time = 497
smoothSolver: Solving for Ux, Initial residual = 0.00114694, Final residual = 5.90312e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00275627, Final residual = 0.00014334, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0299694, Final residual = 0.000157635, No Iterations 4
time step continuity errors : sum local = 0.000742474, global = 4.77478e-05, cumulative = -0.303047
smoothSolver: Solving for omega, Initial residual = 0.000457577, Final residual = 3.78508e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00211755, Final residual = 0.00011815, No Iterations 4
ExecutionTime = 73.01 s ClockTime = 74 s
Time = 498
smoothSolver: Solving for Ux, Initial residual = 0.0011459, Final residual = 5.89531e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00275937, Final residual = 0.000143357, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0298573, Final residual = 0.000158272, No Iterations 4
time step continuity errors : sum local = 0.000746429, global = 4.88051e-05, cumulative = -0.302999
smoothSolver: Solving for omega, Initial residual = 0.000458403, Final residual = 3.79595e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00211844, Final residual = 0.000118232, No Iterations 4
ExecutionTime = 73.15 s ClockTime = 74 s
Time = 499
smoothSolver: Solving for Ux, Initial residual = 0.00114485, Final residual = 5.88753e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00276251, Final residual = 0.000143388, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0298974, Final residual = 0.000158788, No Iterations 4
time step continuity errors : sum local = 0.000749819, global = 4.98579e-05, cumulative = -0.302949
smoothSolver: Solving for omega, Initial residual = 0.000459232, Final residual = 3.80636e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00211928, Final residual = 0.00011831, No Iterations 4
ExecutionTime = 73.29 s ClockTime = 74 s
Time = 500
smoothSolver: Solving for Ux, Initial residual = 0.00114379, Final residual = 5.87983e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00276585, Final residual = 0.000143427, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0299664, Final residual = 0.000159393, No Iterations 4
time step continuity errors : sum local = 0.000753692, global = 5.06737e-05, cumulative = -0.302898
smoothSolver: Solving for omega, Initial residual = 0.000460042, Final residual = 3.81607e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212014, Final residual = 0.000118383, No Iterations 4
ExecutionTime = 73.64 s ClockTime = 74 s
Time = 501
smoothSolver: Solving for Ux, Initial residual = 0.00114271, Final residual = 5.87219e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027691, Final residual = 0.000143468, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0300519, Final residual = 0.000160015, No Iterations 4
time step continuity errors : sum local = 0.000757594, global = 5.1231e-05, cumulative = -0.302847
smoothSolver: Solving for omega, Initial residual = 0.000460834, Final residual = 3.82575e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212095, Final residual = 0.000118453, No Iterations 4
ExecutionTime = 73.78 s ClockTime = 75 s
Time = 502
smoothSolver: Solving for Ux, Initial residual = 0.00114162, Final residual = 5.86459e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00277228, Final residual = 0.00014351, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0300424, Final residual = 0.000160308, No Iterations 4
time step continuity errors : sum local = 0.000759903, global = 5.1717e-05, cumulative = -0.302795
smoothSolver: Solving for omega, Initial residual = 0.000461567, Final residual = 3.83499e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212174, Final residual = 0.000118516, No Iterations 4
ExecutionTime = 73.93 s ClockTime = 75 s
Time = 503
smoothSolver: Solving for Ux, Initial residual = 0.0011405, Final residual = 5.85712e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00277542, Final residual = 0.000143545, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0298291, Final residual = 0.000160751, No Iterations 4
time step continuity errors : sum local = 0.000763226, global = 5.22422e-05, cumulative = -0.302743
smoothSolver: Solving for omega, Initial residual = 0.000462257, Final residual = 3.84409e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212251, Final residual = 0.000118577, No Iterations 4
ExecutionTime = 74.07 s ClockTime = 75 s
Time = 504
smoothSolver: Solving for Ux, Initial residual = 0.00113939, Final residual = 5.84966e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00277859, Final residual = 0.000143592, No Iterations 4
GAMG: Solving for p, Initial residual = 0.029508, Final residual = 0.000161532, No Iterations 4
time step continuity errors : sum local = 0.000767981, global = 5.30814e-05, cumulative = -0.30269
smoothSolver: Solving for omega, Initial residual = 0.000462926, Final residual = 3.85268e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212325, Final residual = 0.000118634, No Iterations 4
ExecutionTime = 74.2 s ClockTime = 75 s
Time = 505
smoothSolver: Solving for Ux, Initial residual = 0.00113827, Final residual = 5.84212e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00278168, Final residual = 0.000143651, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0293488, Final residual = 0.000162444, No Iterations 4
time step continuity errors : sum local = 0.000773258, global = 5.41569e-05, cumulative = -0.302636
smoothSolver: Solving for omega, Initial residual = 0.000463602, Final residual = 3.86149e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212379, Final residual = 0.000118689, No Iterations 4
ExecutionTime = 74.34 s ClockTime = 75 s
Time = 506
smoothSolver: Solving for Ux, Initial residual = 0.00113712, Final residual = 5.83459e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00278494, Final residual = 0.000143724, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0293098, Final residual = 0.000163307, No Iterations 4
time step continuity errors : sum local = 0.00077849, global = 5.51765e-05, cumulative = -0.30258
smoothSolver: Solving for omega, Initial residual = 0.000464267, Final residual = 3.86953e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212419, Final residual = 0.000118736, No Iterations 4
ExecutionTime = 74.49 s ClockTime = 75 s
Time = 507
smoothSolver: Solving for Ux, Initial residual = 0.00113595, Final residual = 5.82708e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00278824, Final residual = 0.000143804, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0293361, Final residual = 0.000164141, No Iterations 4
time step continuity errors : sum local = 0.000783485, global = 5.60439e-05, cumulative = -0.302524
smoothSolver: Solving for omega, Initial residual = 0.000464879, Final residual = 3.87692e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212458, Final residual = 0.000118779, No Iterations 4
ExecutionTime = 74.63 s ClockTime = 75 s
Time = 508
smoothSolver: Solving for Ux, Initial residual = 0.00113477, Final residual = 5.81963e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00279148, Final residual = 0.000143887, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0294574, Final residual = 0.000164653, No Iterations 4
time step continuity errors : sum local = 0.000786784, global = 5.66028e-05, cumulative = -0.302468
smoothSolver: Solving for omega, Initial residual = 0.000465414, Final residual = 3.88401e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212483, Final residual = 0.000118815, No Iterations 4
ExecutionTime = 74.77 s ClockTime = 76 s
Time = 509
smoothSolver: Solving for Ux, Initial residual = 0.00113355, Final residual = 5.81224e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00279475, Final residual = 0.000143968, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0294315, Final residual = 0.000164961, No Iterations 4
time step continuity errors : sum local = 0.000789222, global = 5.69361e-05, cumulative = -0.302411
smoothSolver: Solving for omega, Initial residual = 0.000465932, Final residual = 3.89134e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212512, Final residual = 0.000118846, No Iterations 4
ExecutionTime = 74.9 s ClockTime = 76 s
Time = 510
smoothSolver: Solving for Ux, Initial residual = 0.00113235, Final residual = 5.80495e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00279798, Final residual = 0.000144053, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0291769, Final residual = 0.000165382, No Iterations 4
time step continuity errors : sum local = 0.000792252, global = 5.70937e-05, cumulative = -0.302354
smoothSolver: Solving for omega, Initial residual = 0.000466378, Final residual = 3.89826e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212527, Final residual = 0.000118872, No Iterations 4
ExecutionTime = 75.04 s ClockTime = 76 s
Time = 511
smoothSolver: Solving for Ux, Initial residual = 0.00113115, Final residual = 5.79763e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00280117, Final residual = 0.000144148, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0289374, Final residual = 0.000166101, No Iterations 4
time step continuity errors : sum local = 0.000796399, global = 5.72795e-05, cumulative = -0.302297
smoothSolver: Solving for omega, Initial residual = 0.000466791, Final residual = 3.90463e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212535, Final residual = 0.000118895, No Iterations 4
ExecutionTime = 75.18 s ClockTime = 76 s
Time = 512
smoothSolver: Solving for Ux, Initial residual = 0.00112993, Final residual = 5.79032e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00280441, Final residual = 0.000144252, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0288473, Final residual = 0.000166727, No Iterations 4
time step continuity errors : sum local = 0.000800168, global = 5.76146e-05, cumulative = -0.302239
smoothSolver: Solving for omega, Initial residual = 0.000467239, Final residual = 3.91063e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0021253, Final residual = 0.000118913, No Iterations 4
ExecutionTime = 75.32 s ClockTime = 76 s
Time = 513
smoothSolver: Solving for Ux, Initial residual = 0.00112871, Final residual = 5.78306e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00280784, Final residual = 0.00014437, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0289216, Final residual = 0.000166938, No Iterations 4
time step continuity errors : sum local = 0.000801993, global = 5.80434e-05, cumulative = -0.302181
smoothSolver: Solving for omega, Initial residual = 0.000467712, Final residual = 3.91649e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212525, Final residual = 0.000118924, No Iterations 4
ExecutionTime = 75.46 s ClockTime = 76 s
Time = 514
smoothSolver: Solving for Ux, Initial residual = 0.00112746, Final residual = 5.77584e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00281114, Final residual = 0.000144493, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0290719, Final residual = 0.000166736, No Iterations 4
time step continuity errors : sum local = 0.000801757, global = 5.83274e-05, cumulative = -0.302123
smoothSolver: Solving for omega, Initial residual = 0.000468152, Final residual = 3.9219e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212514, Final residual = 0.000118929, No Iterations 4
ExecutionTime = 75.6 s ClockTime = 76 s
Time = 515
smoothSolver: Solving for Ux, Initial residual = 0.00112618, Final residual = 5.76873e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00281436, Final residual = 0.000144619, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0291143, Final residual = 0.000165908, No Iterations 4
time step continuity errors : sum local = 0.000798413, global = 5.83573e-05, cumulative = -0.302064
smoothSolver: Solving for omega, Initial residual = 0.000468508, Final residual = 3.92681e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212509, Final residual = 0.000118929, No Iterations 4
ExecutionTime = 75.73 s ClockTime = 77 s
Time = 516
smoothSolver: Solving for Ux, Initial residual = 0.0011249, Final residual = 5.76167e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028175, Final residual = 0.000144737, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0289624, Final residual = 0.000165288, No Iterations 4
time step continuity errors : sum local = 0.000796415, global = 5.81408e-05, cumulative = -0.302006
smoothSolver: Solving for omega, Initial residual = 0.000468817, Final residual = 3.93152e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212494, Final residual = 0.000118924, No Iterations 4
ExecutionTime = 75.86 s ClockTime = 77 s
Time = 517
smoothSolver: Solving for Ux, Initial residual = 0.0011236, Final residual = 5.75457e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00282067, Final residual = 0.000144857, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0287121, Final residual = 0.000165372, No Iterations 4
time step continuity errors : sum local = 0.000797645, global = 5.77572e-05, cumulative = -0.301948
smoothSolver: Solving for omega, Initial residual = 0.000469101, Final residual = 3.93645e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212475, Final residual = 0.000118916, No Iterations 4
ExecutionTime = 76 s ClockTime = 77 s
Time = 518
smoothSolver: Solving for Ux, Initial residual = 0.0011223, Final residual = 5.74746e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00282385, Final residual = 0.000144988, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0284358, Final residual = 0.000166023, No Iterations 4
time step continuity errors : sum local = 0.000801511, global = 5.72623e-05, cumulative = -0.301891
smoothSolver: Solving for omega, Initial residual = 0.000469394, Final residual = 3.94077e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212446, Final residual = 0.000118902, No Iterations 4
ExecutionTime = 76.14 s ClockTime = 77 s
Time = 519
smoothSolver: Solving for Ux, Initial residual = 0.00112098, Final residual = 5.74036e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028271, Final residual = 0.00014513, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0283568, Final residual = 0.000166861, No Iterations 4
time step continuity errors : sum local = 0.000806433, global = 5.67608e-05, cumulative = -0.301834
smoothSolver: Solving for omega, Initial residual = 0.000469682, Final residual = 3.94436e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212406, Final residual = 0.000118882, No Iterations 4
ExecutionTime = 76.28 s ClockTime = 77 s
Time = 520
smoothSolver: Solving for Ux, Initial residual = 0.00111966, Final residual = 5.73338e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00283029, Final residual = 0.000145277, No Iterations 4
GAMG: Solving for p, Initial residual = 0.028442, Final residual = 0.000167415, No Iterations 4
time step continuity errors : sum local = 0.000809891, global = 5.6381e-05, cumulative = -0.301778
smoothSolver: Solving for omega, Initial residual = 0.000469923, Final residual = 3.94763e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212356, Final residual = 0.000118856, No Iterations 4
ExecutionTime = 76.43 s ClockTime = 77 s
Time = 521
smoothSolver: Solving for Ux, Initial residual = 0.00111832, Final residual = 5.72648e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028334, Final residual = 0.000145423, No Iterations 4
GAMG: Solving for p, Initial residual = 0.028556, Final residual = 0.000167354, No Iterations 4
time step continuity errors : sum local = 0.000810254, global = 5.61368e-05, cumulative = -0.301722
smoothSolver: Solving for omega, Initial residual = 0.000470153, Final residual = 3.95123e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212313, Final residual = 0.000118824, No Iterations 4
ExecutionTime = 76.57 s ClockTime = 77 s
Time = 522
smoothSolver: Solving for Ux, Initial residual = 0.00111697, Final residual = 5.71965e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00283636, Final residual = 0.000145559, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0284328, Final residual = 0.000167296, No Iterations 4
time step continuity errors : sum local = 0.000810866, global = 5.59063e-05, cumulative = -0.301666
smoothSolver: Solving for omega, Initial residual = 0.000470331, Final residual = 3.95462e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212258, Final residual = 0.000118787, No Iterations 4
ExecutionTime = 76.71 s ClockTime = 78 s
Time = 523
smoothSolver: Solving for Ux, Initial residual = 0.0011156, Final residual = 5.71278e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00283926, Final residual = 0.000145695, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0282375, Final residual = 0.000167754, No Iterations 4
time step continuity errors : sum local = 0.000813962, global = 5.54847e-05, cumulative = -0.30161
smoothSolver: Solving for omega, Initial residual = 0.000470463, Final residual = 3.95749e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212189, Final residual = 0.000118744, No Iterations 4
ExecutionTime = 76.85 s ClockTime = 78 s
Time = 524
smoothSolver: Solving for Ux, Initial residual = 0.00111422, Final residual = 5.7059e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00284229, Final residual = 0.000145842, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0279903, Final residual = 0.000168444, No Iterations 4
time step continuity errors : sum local = 0.000818067, global = 5.49994e-05, cumulative = -0.301555
smoothSolver: Solving for omega, Initial residual = 0.00047061, Final residual = 3.96026e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212108, Final residual = 0.000118695, No Iterations 4
ExecutionTime = 76.99 s ClockTime = 78 s
Time = 525
smoothSolver: Solving for Ux, Initial residual = 0.00111285, Final residual = 5.69902e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00284534, Final residual = 0.000146002, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0278727, Final residual = 0.000168974, No Iterations 4
time step continuity errors : sum local = 0.000821502, global = 5.46341e-05, cumulative = -0.301501
smoothSolver: Solving for omega, Initial residual = 0.000470807, Final residual = 3.96287e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00212019, Final residual = 0.000118639, No Iterations 4
ExecutionTime = 77.13 s ClockTime = 78 s
Time = 526
smoothSolver: Solving for Ux, Initial residual = 0.00111145, Final residual = 5.69225e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00284844, Final residual = 0.000146164, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0279656, Final residual = 0.000169145, No Iterations 4
time step continuity errors : sum local = 0.000823069, global = 5.44446e-05, cumulative = -0.301446
smoothSolver: Solving for omega, Initial residual = 0.000471029, Final residual = 3.96576e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00211917, Final residual = 0.000118579, No Iterations 4
ExecutionTime = 77.26 s ClockTime = 78 s
Time = 527
smoothSolver: Solving for Ux, Initial residual = 0.00111003, Final residual = 5.68553e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00285144, Final residual = 0.000146324, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0281869, Final residual = 0.000168703, No Iterations 4
time step continuity errors : sum local = 0.000821538, global = 5.44528e-05, cumulative = -0.301392
smoothSolver: Solving for omega, Initial residual = 0.000471188, Final residual = 3.9683e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0021182, Final residual = 0.000118513, No Iterations 4
ExecutionTime = 77.4 s ClockTime = 78 s
Time = 528
smoothSolver: Solving for Ux, Initial residual = 0.0011086, Final residual = 5.67886e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00285421, Final residual = 0.000146467, No Iterations 4
GAMG: Solving for p, Initial residual = 0.028185, Final residual = 0.000168277, No Iterations 4
time step continuity errors : sum local = 0.00082037, global = 5.45331e-05, cumulative = -0.301337
smoothSolver: Solving for omega, Initial residual = 0.000471292, Final residual = 3.97061e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00211722, Final residual = 0.000118444, No Iterations 4
ExecutionTime = 77.53 s ClockTime = 78 s
Time = 529
smoothSolver: Solving for Ux, Initial residual = 0.00110718, Final residual = 5.67226e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00285695, Final residual = 0.000146613, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0280646, Final residual = 0.000168574, No Iterations 4
time step continuity errors : sum local = 0.000822625, global = 5.46327e-05, cumulative = -0.301283
smoothSolver: Solving for omega, Initial residual = 0.000471357, Final residual = 3.9731e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00211614, Final residual = 0.000118368, No Iterations 4
ExecutionTime = 77.68 s ClockTime = 79 s
Time = 530
smoothSolver: Solving for Ux, Initial residual = 0.00110574, Final residual = 5.66567e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00285975, Final residual = 0.000146768, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0279156, Final residual = 0.000169347, No Iterations 4
time step continuity errors : sum local = 0.000827139, global = 5.47401e-05, cumulative = -0.301228
smoothSolver: Solving for omega, Initial residual = 0.000471439, Final residual = 3.97544e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00211495, Final residual = 0.000118291, No Iterations 4
ExecutionTime = 77.81 s ClockTime = 79 s
Time = 531
smoothSolver: Solving for Ux, Initial residual = 0.00110432, Final residual = 5.6591e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00286261, Final residual = 0.00014693, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0278379, Final residual = 0.000170068, No Iterations 4
time step continuity errors : sum local = 0.000831429, global = 5.49644e-05, cumulative = -0.301173
smoothSolver: Solving for omega, Initial residual = 0.00047152, Final residual = 3.97742e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00211372, Final residual = 0.000118205, No Iterations 4
ExecutionTime = 77.95 s ClockTime = 79 s
Time = 532
smoothSolver: Solving for Ux, Initial residual = 0.00110288, Final residual = 5.65257e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00286544, Final residual = 0.000147098, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0278946, Final residual = 0.000170417, No Iterations 4
time step continuity errors : sum local = 0.000833777, global = 5.52537e-05, cumulative = -0.301118
smoothSolver: Solving for omega, Initial residual = 0.000471595, Final residual = 3.9793e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00211245, Final residual = 0.000118117, No Iterations 4
ExecutionTime = 78.09 s ClockTime = 79 s
Time = 533
smoothSolver: Solving for Ux, Initial residual = 0.00110142, Final residual = 5.64618e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00286818, Final residual = 0.000147259, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0280315, Final residual = 0.000170437, No Iterations 4
time step continuity errors : sum local = 0.00083438, global = 5.54032e-05, cumulative = -0.301062
smoothSolver: Solving for omega, Initial residual = 0.000471654, Final residual = 3.98106e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00211113, Final residual = 0.000118024, No Iterations 4
ExecutionTime = 78.22 s ClockTime = 79 s
Time = 534
smoothSolver: Solving for Ux, Initial residual = 0.00109995, Final residual = 5.63988e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287075, Final residual = 0.000147408, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0279838, Final residual = 0.000170336, No Iterations 4
time step continuity errors : sum local = 0.000834605, global = 5.5273e-05, cumulative = -0.301007
smoothSolver: Solving for omega, Initial residual = 0.000471698, Final residual = 3.9833e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00210982, Final residual = 0.000117927, No Iterations 4
ExecutionTime = 78.36 s ClockTime = 79 s
Time = 535
smoothSolver: Solving for Ux, Initial residual = 0.00109848, Final residual = 5.63357e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287314, Final residual = 0.000147546, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0278269, Final residual = 0.000170844, No Iterations 4
time step continuity errors : sum local = 0.000837739, global = 5.50476e-05, cumulative = -0.300952
smoothSolver: Solving for omega, Initial residual = 0.000471663, Final residual = 3.98524e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00210845, Final residual = 0.000117824, No Iterations 4
ExecutionTime = 78.51 s ClockTime = 79 s
Time = 536
smoothSolver: Solving for Ux, Initial residual = 0.00109701, Final residual = 5.62721e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028755, Final residual = 0.000147695, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0276728, Final residual = 0.000171383, No Iterations 4
time step continuity errors : sum local = 0.000841124, global = 5.4858e-05, cumulative = -0.300897
smoothSolver: Solving for omega, Initial residual = 0.000471629, Final residual = 3.98686e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00210699, Final residual = 0.000117719, No Iterations 4
ExecutionTime = 78.65 s ClockTime = 80 s
Time = 537
smoothSolver: Solving for Ux, Initial residual = 0.00109552, Final residual = 5.62091e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287787, Final residual = 0.000147857, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0276115, Final residual = 0.000171449, No Iterations 4
time step continuity errors : sum local = 0.000842232, global = 5.46781e-05, cumulative = -0.300842
smoothSolver: Solving for omega, Initial residual = 0.000471608, Final residual = 3.98797e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00210547, Final residual = 0.000117608, No Iterations 4
ExecutionTime = 78.79 s ClockTime = 80 s
Time = 538
smoothSolver: Solving for Ux, Initial residual = 0.00109402, Final residual = 5.61461e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288022, Final residual = 0.000148017, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0277242, Final residual = 0.000170897, No Iterations 4
time step continuity errors : sum local = 0.000840104, global = 5.45444e-05, cumulative = -0.300788
smoothSolver: Solving for omega, Initial residual = 0.000471648, Final residual = 3.98989e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00210385, Final residual = 0.000117497, No Iterations 4
ExecutionTime = 78.92 s ClockTime = 80 s
Time = 539
smoothSolver: Solving for Ux, Initial residual = 0.00109253, Final residual = 5.60849e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288242, Final residual = 0.000148166, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0279078, Final residual = 0.000169895, No Iterations 4
time step continuity errors : sum local = 0.000835708, global = 5.44989e-05, cumulative = -0.300733
smoothSolver: Solving for omega, Initial residual = 0.000471643, Final residual = 3.99141e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0021022, Final residual = 0.000117381, No Iterations 4
ExecutionTime = 79.07 s ClockTime = 80 s
Time = 540
smoothSolver: Solving for Ux, Initial residual = 0.00109105, Final residual = 5.60248e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288441, Final residual = 0.000148302, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0277707, Final residual = 0.000168972, No Iterations 4
time step continuity errors : sum local = 0.000831879, global = 5.43321e-05, cumulative = -0.300679
smoothSolver: Solving for omega, Initial residual = 0.000471563, Final residual = 3.9923e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00210053, Final residual = 0.000117261, No Iterations 4
ExecutionTime = 79.21 s ClockTime = 80 s
Time = 541
smoothSolver: Solving for Ux, Initial residual = 0.00108958, Final residual = 5.59647e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288622, Final residual = 0.000148436, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0275591, Final residual = 0.000168905, No Iterations 4
time step continuity errors : sum local = 0.000832099, global = 5.41073e-05, cumulative = -0.300625
smoothSolver: Solving for omega, Initial residual = 0.000471444, Final residual = 3.99321e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00209882, Final residual = 0.000117139, No Iterations 4
ExecutionTime = 79.34 s ClockTime = 80 s
Time = 542
smoothSolver: Solving for Ux, Initial residual = 0.00108809, Final residual = 5.5904e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288811, Final residual = 0.00014858, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0274631, Final residual = 0.000169382, No Iterations 4
time step continuity errors : sum local = 0.00083506, global = 5.40127e-05, cumulative = -0.300571
smoothSolver: Solving for omega, Initial residual = 0.000471338, Final residual = 3.99447e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00209699, Final residual = 0.000117016, No Iterations 4
ExecutionTime = 79.48 s ClockTime = 80 s
Time = 543
smoothSolver: Solving for Ux, Initial residual = 0.00108659, Final residual = 5.58441e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289004, Final residual = 0.000148729, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0274245, Final residual = 0.000169857, No Iterations 4
time step continuity errors : sum local = 0.000838209, global = 5.40559e-05, cumulative = -0.300517
smoothSolver: Solving for omega, Initial residual = 0.000471226, Final residual = 3.99514e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00209517, Final residual = 0.000116886, No Iterations 4
ExecutionTime = 79.63 s ClockTime = 81 s
Time = 544
smoothSolver: Solving for Ux, Initial residual = 0.00108511, Final residual = 5.5785e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289193, Final residual = 0.000148879, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0274989, Final residual = 0.000170086, No Iterations 4
time step continuity errors : sum local = 0.000839929, global = 5.4179e-05, cumulative = -0.300463
smoothSolver: Solving for omega, Initial residual = 0.0004711, Final residual = 3.99562e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00209326, Final residual = 0.000116757, No Iterations 4
ExecutionTime = 79.77 s ClockTime = 81 s
Time = 545
smoothSolver: Solving for Ux, Initial residual = 0.00108362, Final residual = 5.57261e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289366, Final residual = 0.000149014, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0276779, Final residual = 0.000169946, No Iterations 4
time step continuity errors : sum local = 0.00083978, global = 5.46497e-05, cumulative = -0.300408
smoothSolver: Solving for omega, Initial residual = 0.000470962, Final residual = 3.99578e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00209129, Final residual = 0.000116624, No Iterations 4
ExecutionTime = 79.9 s ClockTime = 81 s
Time = 546
smoothSolver: Solving for Ux, Initial residual = 0.00108211, Final residual = 5.56682e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289523, Final residual = 0.000149136, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0275324, Final residual = 0.000169916, No Iterations 4
time step continuity errors : sum local = 0.000840285, global = 5.5352e-05, cumulative = -0.300353
smoothSolver: Solving for omega, Initial residual = 0.000470778, Final residual = 3.99574e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00208935, Final residual = 0.000116491, No Iterations 4
ExecutionTime = 80.04 s ClockTime = 81 s
Time = 547
smoothSolver: Solving for Ux, Initial residual = 0.00108061, Final residual = 5.5611e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289669, Final residual = 0.000149257, No Iterations 4
GAMG: Solving for p, Initial residual = 0.027325, Final residual = 0.000170522, No Iterations 4
time step continuity errors : sum local = 0.000843862, global = 5.61495e-05, cumulative = -0.300297
smoothSolver: Solving for omega, Initial residual = 0.000470572, Final residual = 3.99585e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00208744, Final residual = 0.000116354, No Iterations 4
ExecutionTime = 80.19 s ClockTime = 81 s
Time = 548
smoothSolver: Solving for Ux, Initial residual = 0.00107912, Final residual = 5.55546e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289814, Final residual = 0.000149382, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0271792, Final residual = 0.000171273, No Iterations 4
time step continuity errors : sum local = 0.000848163, global = 5.69909e-05, cumulative = -0.30024
smoothSolver: Solving for omega, Initial residual = 0.00047035, Final residual = 3.99561e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00208541, Final residual = 0.000116218, No Iterations 4
ExecutionTime = 80.32 s ClockTime = 81 s
Time = 549
smoothSolver: Solving for Ux, Initial residual = 0.00107763, Final residual = 5.54985e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289962, Final residual = 0.000149513, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0271397, Final residual = 0.000171619, No Iterations 4
time step continuity errors : sum local = 0.000850594, global = 5.77937e-05, cumulative = -0.300182
smoothSolver: Solving for omega, Initial residual = 0.000470119, Final residual = 3.99517e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0020834, Final residual = 0.000116081, No Iterations 4
ExecutionTime = 80.46 s ClockTime = 81 s
Time = 550
smoothSolver: Solving for Ux, Initial residual = 0.00107615, Final residual = 5.54442e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290102, Final residual = 0.000149643, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0272597, Final residual = 0.000171736, No Iterations 4
time step continuity errors : sum local = 0.000851782, global = 5.85286e-05, cumulative = -0.300123
smoothSolver: Solving for omega, Initial residual = 0.000469888, Final residual = 3.9947e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00208138, Final residual = 0.000115942, No Iterations 4
ExecutionTime = 80.81 s ClockTime = 82 s
Time = 551
smoothSolver: Solving for Ux, Initial residual = 0.00107467, Final residual = 5.53898e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290223, Final residual = 0.000149762, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0273898, Final residual = 0.000171516, No Iterations 4
time step continuity errors : sum local = 0.000851376, global = 5.92737e-05, cumulative = -0.300064
smoothSolver: Solving for omega, Initial residual = 0.000469673, Final residual = 3.99396e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00207937, Final residual = 0.000115802, No Iterations 4
ExecutionTime = 80.95 s ClockTime = 82 s
Time = 552
smoothSolver: Solving for Ux, Initial residual = 0.00107319, Final residual = 5.53366e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290322, Final residual = 0.000149873, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0272213, Final residual = 0.000171928, No Iterations 4
time step continuity errors : sum local = 0.000853974, global = 6.00286e-05, cumulative = -0.300004
smoothSolver: Solving for omega, Initial residual = 0.000469389, Final residual = 3.99291e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0020774, Final residual = 0.000115664, No Iterations 4
ExecutionTime = 81.09 s ClockTime = 82 s
Time = 553
smoothSolver: Solving for Ux, Initial residual = 0.0010717, Final residual = 5.52843e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290409, Final residual = 0.000149981, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0270743, Final residual = 0.000172923, No Iterations 4
time step continuity errors : sum local = 0.00085944, global = 6.06439e-05, cumulative = -0.299943
smoothSolver: Solving for omega, Initial residual = 0.000469048, Final residual = 3.99187e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00207538, Final residual = 0.000115523, No Iterations 4
ExecutionTime = 81.22 s ClockTime = 82 s
Time = 554
smoothSolver: Solving for Ux, Initial residual = 0.00107022, Final residual = 5.52315e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290505, Final residual = 0.000150095, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0269849, Final residual = 0.000173881, No Iterations 4
time step continuity errors : sum local = 0.000864844, global = 6.1096e-05, cumulative = -0.299882
smoothSolver: Solving for omega, Initial residual = 0.000468675, Final residual = 3.99035e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00207334, Final residual = 0.000115384, No Iterations 4
ExecutionTime = 81.38 s ClockTime = 82 s
Time = 555
smoothSolver: Solving for Ux, Initial residual = 0.00106875, Final residual = 5.51799e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290604, Final residual = 0.000150216, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0269561, Final residual = 0.000174199, No Iterations 4
time step continuity errors : sum local = 0.000866974, global = 6.1362e-05, cumulative = -0.299821
smoothSolver: Solving for omega, Initial residual = 0.000468343, Final residual = 3.98921e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00207127, Final residual = 0.000115244, No Iterations 4
ExecutionTime = 81.52 s ClockTime = 82 s
Time = 556
smoothSolver: Solving for Ux, Initial residual = 0.00106727, Final residual = 5.513e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290688, Final residual = 0.000150328, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0270939, Final residual = 0.00017432, No Iterations 4
time step continuity errors : sum local = 0.000868217, global = 6.14963e-05, cumulative = -0.299759
smoothSolver: Solving for omega, Initial residual = 0.000468048, Final residual = 3.98793e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00206915, Final residual = 0.000115102, No Iterations 4
ExecutionTime = 81.65 s ClockTime = 83 s
Time = 557
smoothSolver: Solving for Ux, Initial residual = 0.00106581, Final residual = 5.50816e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290755, Final residual = 0.000150436, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0270881, Final residual = 0.000173834, No Iterations 4
time step continuity errors : sum local = 0.000866614, global = 6.165e-05, cumulative = -0.299698
smoothSolver: Solving for omega, Initial residual = 0.000467716, Final residual = 3.98586e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00206702, Final residual = 0.000114963, No Iterations 4
ExecutionTime = 81.78 s ClockTime = 83 s
Time = 558
smoothSolver: Solving for Ux, Initial residual = 0.00106435, Final residual = 5.50342e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290801, Final residual = 0.000150533, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0269086, Final residual = 0.000173905, No Iterations 4
time step continuity errors : sum local = 0.000867604, global = 6.17523e-05, cumulative = -0.299636
smoothSolver: Solving for omega, Initial residual = 0.000467327, Final residual = 3.98389e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.002065, Final residual = 0.000114824, No Iterations 4
ExecutionTime = 81.92 s ClockTime = 83 s
Time = 559
smoothSolver: Solving for Ux, Initial residual = 0.00106293, Final residual = 5.49876e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290846, Final residual = 0.000150634, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0267247, Final residual = 0.000174164, No Iterations 4
time step continuity errors : sum local = 0.000869515, global = 6.18947e-05, cumulative = -0.299574
smoothSolver: Solving for omega, Initial residual = 0.000466914, Final residual = 3.98191e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00206296, Final residual = 0.000114686, No Iterations 4
ExecutionTime = 82.06 s ClockTime = 83 s
Time = 560
smoothSolver: Solving for Ux, Initial residual = 0.00106149, Final residual = 5.49415e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.002909, Final residual = 0.000150741, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0266416, Final residual = 0.00017427, No Iterations 4
time step continuity errors : sum local = 0.000870701, global = 6.218e-05, cumulative = -0.299512
smoothSolver: Solving for omega, Initial residual = 0.000466491, Final residual = 3.97975e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0020609, Final residual = 0.000114549, No Iterations 4
ExecutionTime = 82.2 s ClockTime = 83 s
Time = 561
smoothSolver: Solving for Ux, Initial residual = 0.00106008, Final residual = 5.48964e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290948, Final residual = 0.00015085, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0266671, Final residual = 0.000173757, No Iterations 4
time step continuity errors : sum local = 0.000868635, global = 6.25042e-05, cumulative = -0.299449
smoothSolver: Solving for omega, Initial residual = 0.000466077, Final residual = 3.9774e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00205878, Final residual = 0.000114412, No Iterations 4
ExecutionTime = 82.34 s ClockTime = 83 s
Time = 562
smoothSolver: Solving for Ux, Initial residual = 0.00105867, Final residual = 5.48525e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290983, Final residual = 0.000150953, No Iterations 4
GAMG: Solving for p, Initial residual = 0.026846, Final residual = 0.000172778, No Iterations 4
time step continuity errors : sum local = 0.000864385, global = 6.27924e-05, cumulative = -0.299387
smoothSolver: Solving for omega, Initial residual = 0.00046569, Final residual = 3.97475e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0020567, Final residual = 0.000114275, No Iterations 4
ExecutionTime = 82.48 s ClockTime = 83 s
Time = 563
smoothSolver: Solving for Ux, Initial residual = 0.00105729, Final residual = 5.48106e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00291004, Final residual = 0.00015105, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0267063, Final residual = 0.000171292, No Iterations 4
time step continuity errors : sum local = 0.000857612, global = 6.3127e-05, cumulative = -0.299323
smoothSolver: Solving for omega, Initial residual = 0.000465255, Final residual = 3.97157e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00205461, Final residual = 0.000114142, No Iterations 4
ExecutionTime = 82.62 s ClockTime = 84 s
Time = 564
smoothSolver: Solving for Ux, Initial residual = 0.0010559, Final residual = 5.47703e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0029101, Final residual = 0.000151138, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0264983, Final residual = 0.000170211, No Iterations 4
time step continuity errors : sum local = 0.000852757, global = 6.30814e-05, cumulative = -0.29926
smoothSolver: Solving for omega, Initial residual = 0.000464809, Final residual = 3.96889e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00205258, Final residual = 0.00011401, No Iterations 4
ExecutionTime = 82.77 s ClockTime = 84 s
Time = 565
smoothSolver: Solving for Ux, Initial residual = 0.00105454, Final residual = 5.47304e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00291018, Final residual = 0.000151234, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0263217, Final residual = 0.000169596, No Iterations 4
time step continuity errors : sum local = 0.000850197, global = 6.33673e-05, cumulative = -0.299197
smoothSolver: Solving for omega, Initial residual = 0.000464352, Final residual = 3.96609e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00205056, Final residual = 0.000113877, No Iterations 4
ExecutionTime = 82.9 s ClockTime = 84 s
Time = 566
smoothSolver: Solving for Ux, Initial residual = 0.00105319, Final residual = 5.46916e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00291034, Final residual = 0.000151338, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0262868, Final residual = 0.000169176, No Iterations 4
time step continuity errors : sum local = 0.000848686, global = 6.36179e-05, cumulative = -0.299133
smoothSolver: Solving for omega, Initial residual = 0.00046389, Final residual = 3.96325e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00204852, Final residual = 0.000113748, No Iterations 4
ExecutionTime = 83.05 s ClockTime = 84 s
Time = 567
smoothSolver: Solving for Ux, Initial residual = 0.00105188, Final residual = 5.46546e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00291045, Final residual = 0.000151443, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0264083, Final residual = 0.0001686, No Iterations 4
time step continuity errors : sum local = 0.0008464, global = 6.36688e-05, cumulative = -0.29907
smoothSolver: Solving for omega, Initial residual = 0.000463423, Final residual = 3.96018e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00204652, Final residual = 0.000113621, No Iterations 4
ExecutionTime = 83.19 s ClockTime = 84 s
Time = 568
smoothSolver: Solving for Ux, Initial residual = 0.00105056, Final residual = 5.46203e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00291042, Final residual = 0.000151543, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0265226, Final residual = 0.000167464, No Iterations 4
time step continuity errors : sum local = 0.000841449, global = 6.36563e-05, cumulative = -0.299006
smoothSolver: Solving for omega, Initial residual = 0.000462997, Final residual = 3.95675e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0020445, Final residual = 0.000113492, No Iterations 4
ExecutionTime = 83.33 s ClockTime = 84 s
Time = 569
smoothSolver: Solving for Ux, Initial residual = 0.00104926, Final residual = 5.45861e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00291025, Final residual = 0.000151634, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0263742, Final residual = 0.000166628, No Iterations 4
time step continuity errors : sum local = 0.000837942, global = 6.34285e-05, cumulative = -0.298943
smoothSolver: Solving for omega, Initial residual = 0.00046255, Final residual = 3.95321e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00204251, Final residual = 0.000113367, No Iterations 4
ExecutionTime = 83.47 s ClockTime = 84 s
Time = 570
smoothSolver: Solving for Ux, Initial residual = 0.00104797, Final residual = 5.45523e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00291004, Final residual = 0.000151723, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0261768, Final residual = 0.000166561, No Iterations 4
time step continuity errors : sum local = 0.000838185, global = 6.29008e-05, cumulative = -0.29888
smoothSolver: Solving for omega, Initial residual = 0.000462051, Final residual = 3.94973e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0020406, Final residual = 0.000113243, No Iterations 4
ExecutionTime = 83.61 s ClockTime = 85 s
Time = 571
smoothSolver: Solving for Ux, Initial residual = 0.0010467, Final residual = 5.45193e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290995, Final residual = 0.000151821, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0260461, Final residual = 0.000166922, No Iterations 4
time step continuity errors : sum local = 0.00084056, global = 6.25207e-05, cumulative = -0.298817
smoothSolver: Solving for omega, Initial residual = 0.000461527, Final residual = 3.94612e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00203872, Final residual = 0.000113118, No Iterations 4
ExecutionTime = 83.74 s ClockTime = 85 s
Time = 572
smoothSolver: Solving for Ux, Initial residual = 0.00104545, Final residual = 5.44881e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290988, Final residual = 0.000151926, No Iterations 4
GAMG: Solving for p, Initial residual = 0.026051, Final residual = 0.000167283, No Iterations 4
time step continuity errors : sum local = 0.000842825, global = 6.2554e-05, cumulative = -0.298755
smoothSolver: Solving for omega, Initial residual = 0.000461003, Final residual = 3.94274e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00203677, Final residual = 0.000112998, No Iterations 4
ExecutionTime = 83.88 s ClockTime = 85 s
Time = 573
smoothSolver: Solving for Ux, Initial residual = 0.00104423, Final residual = 5.44585e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290975, Final residual = 0.000152029, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0262518, Final residual = 0.000167421, No Iterations 4
time step continuity errors : sum local = 0.000844059, global = 6.29034e-05, cumulative = -0.298692
smoothSolver: Solving for omega, Initial residual = 0.000460526, Final residual = 3.93936e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00203487, Final residual = 0.000112879, No Iterations 4
ExecutionTime = 84.02 s ClockTime = 85 s
Time = 574
smoothSolver: Solving for Ux, Initial residual = 0.00104302, Final residual = 5.44307e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290952, Final residual = 0.000152128, No Iterations 4
GAMG: Solving for p, Initial residual = 0.026223, Final residual = 0.000167185, No Iterations 4
time step continuity errors : sum local = 0.000843628, global = 6.43204e-05, cumulative = -0.298627
smoothSolver: Solving for omega, Initial residual = 0.000460096, Final residual = 3.93547e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00203299, Final residual = 0.000112759, No Iterations 4
ExecutionTime = 84.15 s ClockTime = 85 s
Time = 575
smoothSolver: Solving for Ux, Initial residual = 0.00104182, Final residual = 5.44039e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290914, Final residual = 0.000152218, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0260824, Final residual = 0.000167734, No Iterations 4
time step continuity errors : sum local = 0.000847011, global = 6.53361e-05, cumulative = -0.298562
smoothSolver: Solving for omega, Initial residual = 0.000459627, Final residual = 3.93152e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00203112, Final residual = 0.000112642, No Iterations 4
ExecutionTime = 84.29 s ClockTime = 85 s
Time = 576
smoothSolver: Solving for Ux, Initial residual = 0.00104064, Final residual = 5.43772e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290882, Final residual = 0.000152313, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0259313, Final residual = 0.000168952, No Iterations 4
time step continuity errors : sum local = 0.000853746, global = 6.53107e-05, cumulative = -0.298497
smoothSolver: Solving for omega, Initial residual = 0.000459092, Final residual = 3.92748e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00202932, Final residual = 0.000112528, No Iterations 4
ExecutionTime = 84.43 s ClockTime = 85 s
Time = 577
smoothSolver: Solving for Ux, Initial residual = 0.00103948, Final residual = 5.4351e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290859, Final residual = 0.000152414, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0258399, Final residual = 0.000170311, No Iterations 4
time step continuity errors : sum local = 0.000861417, global = 6.45063e-05, cumulative = -0.298432
smoothSolver: Solving for omega, Initial residual = 0.000458596, Final residual = 3.92392e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00202753, Final residual = 0.000112416, No Iterations 4
ExecutionTime = 84.57 s ClockTime = 86 s
Time = 578
smoothSolver: Solving for Ux, Initial residual = 0.00103833, Final residual = 5.43266e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290839, Final residual = 0.000152524, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0258799, Final residual = 0.000171377, No Iterations 4
time step continuity errors : sum local = 0.000867459, global = 6.34548e-05, cumulative = -0.298369
smoothSolver: Solving for omega, Initial residual = 0.000458094, Final residual = 3.92063e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00202573, Final residual = 0.000112307, No Iterations 4
ExecutionTime = 84.72 s ClockTime = 86 s
Time = 579
smoothSolver: Solving for Ux, Initial residual = 0.0010372, Final residual = 5.43035e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290806, Final residual = 0.000152627, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0260907, Final residual = 0.000171889, No Iterations 4
time step continuity errors : sum local = 0.000870728, global = 6.25528e-05, cumulative = -0.298306
smoothSolver: Solving for omega, Initial residual = 0.000457621, Final residual = 3.91661e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00202394, Final residual = 0.0001122, No Iterations 4
ExecutionTime = 84.85 s ClockTime = 86 s
Time = 580
smoothSolver: Solving for Ux, Initial residual = 0.0010361, Final residual = 5.42816e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290764, Final residual = 0.000152722, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0259965, Final residual = 0.000172127, No Iterations 4
time step continuity errors : sum local = 0.000872529, global = 6.18733e-05, cumulative = -0.298244
smoothSolver: Solving for omega, Initial residual = 0.000457199, Final residual = 3.91242e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0020222, Final residual = 0.000112094, No Iterations 4
ExecutionTime = 84.99 s ClockTime = 86 s
Time = 581
smoothSolver: Solving for Ux, Initial residual = 0.001035, Final residual = 5.42596e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290717, Final residual = 0.000152815, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0259062, Final residual = 0.000172556, No Iterations 4
time step continuity errors : sum local = 0.000875254, global = 6.11387e-05, cumulative = -0.298183
smoothSolver: Solving for omega, Initial residual = 0.000456717, Final residual = 3.90832e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00202048, Final residual = 0.000111992, No Iterations 4
ExecutionTime = 85.13 s ClockTime = 86 s
Time = 582
smoothSolver: Solving for Ux, Initial residual = 0.00103392, Final residual = 5.42382e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290684, Final residual = 0.000152914, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0258397, Final residual = 0.000172988, No Iterations 4
time step continuity errors : sum local = 0.000877912, global = 6.05175e-05, cumulative = -0.298123
smoothSolver: Solving for omega, Initial residual = 0.000456286, Final residual = 3.90499e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00201879, Final residual = 0.000111892, No Iterations 4
ExecutionTime = 85.27 s ClockTime = 86 s
Time = 583
smoothSolver: Solving for Ux, Initial residual = 0.00103283, Final residual = 5.42178e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290657, Final residual = 0.000153022, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0258509, Final residual = 0.00017312, No Iterations 4
time step continuity errors : sum local = 0.000879068, global = 6.00789e-05, cumulative = -0.298063
smoothSolver: Solving for omega, Initial residual = 0.00045584, Final residual = 3.90199e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00201712, Final residual = 0.000111794, No Iterations 4
ExecutionTime = 85.41 s ClockTime = 86 s
Time = 584
smoothSolver: Solving for Ux, Initial residual = 0.00103178, Final residual = 5.41973e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290623, Final residual = 0.00015313, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0260346, Final residual = 0.000172985, No Iterations 4
time step continuity errors : sum local = 0.000879013, global = 5.96667e-05, cumulative = -0.298003
smoothSolver: Solving for omega, Initial residual = 0.000455365, Final residual = 3.89883e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00201546, Final residual = 0.000111698, No Iterations 4
ExecutionTime = 85.55 s ClockTime = 86 s
Time = 585
smoothSolver: Solving for Ux, Initial residual = 0.00103074, Final residual = 5.41776e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290576, Final residual = 0.00015323, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0260973, Final residual = 0.000172091, No Iterations 4
time step continuity errors : sum local = 0.000875284, global = 5.94193e-05, cumulative = -0.297944
smoothSolver: Solving for omega, Initial residual = 0.000454926, Final residual = 3.89499e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00201382, Final residual = 0.000111604, No Iterations 4
ExecutionTime = 85.69 s ClockTime = 87 s
Time = 586
smoothSolver: Solving for Ux, Initial residual = 0.00102972, Final residual = 5.41593e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290519, Final residual = 0.000153321, No Iterations 4
GAMG: Solving for p, Initial residual = 0.025976, Final residual = 0.00017123, No Iterations 4
time step continuity errors : sum local = 0.000871522, global = 5.89876e-05, cumulative = -0.297885
smoothSolver: Solving for omega, Initial residual = 0.000454562, Final residual = 3.89164e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0020122, Final residual = 0.000111512, No Iterations 4
ExecutionTime = 85.83 s ClockTime = 87 s
Time = 587
smoothSolver: Solving for Ux, Initial residual = 0.00102872, Final residual = 5.41422e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290472, Final residual = 0.000153414, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0258646, Final residual = 0.000170694, No Iterations 4
time step continuity errors : sum local = 0.000869347, global = 5.82863e-05, cumulative = -0.297826
smoothSolver: Solving for omega, Initial residual = 0.000454181, Final residual = 3.8886e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00201065, Final residual = 0.000111424, No Iterations 4
ExecutionTime = 85.97 s ClockTime = 87 s
Time = 588
smoothSolver: Solving for Ux, Initial residual = 0.00102774, Final residual = 5.41238e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290434, Final residual = 0.000153515, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0258436, Final residual = 0.000170388, No Iterations 4
time step continuity errors : sum local = 0.000868338, global = 5.76652e-05, cumulative = -0.297769
smoothSolver: Solving for omega, Initial residual = 0.000453785, Final residual = 3.88583e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00200913, Final residual = 0.000111336, No Iterations 4
ExecutionTime = 86.1 s ClockTime = 87 s
Time = 589
smoothSolver: Solving for Ux, Initial residual = 0.00102678, Final residual = 5.41053e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.002904, Final residual = 0.000153623, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0259252, Final residual = 0.000170054, No Iterations 4
time step continuity errors : sum local = 0.000867098, global = 5.7319e-05, cumulative = -0.297711
smoothSolver: Solving for omega, Initial residual = 0.000453373, Final residual = 3.88316e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00200763, Final residual = 0.000111254, No Iterations 4
ExecutionTime = 86.25 s ClockTime = 87 s
Time = 590
smoothSolver: Solving for Ux, Initial residual = 0.00102581, Final residual = 5.40874e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290352, Final residual = 0.000153723, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0261352, Final residual = 0.000169184, No Iterations 4
time step continuity errors : sum local = 0.000863249, global = 6.00245e-05, cumulative = -0.297651
smoothSolver: Solving for omega, Initial residual = 0.000452958, Final residual = 3.88035e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0020061, Final residual = 0.000111172, No Iterations 4
ExecutionTime = 86.39 s ClockTime = 87 s
Time = 591
smoothSolver: Solving for Ux, Initial residual = 0.00102485, Final residual = 5.4071e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290291, Final residual = 0.000153812, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0260657, Final residual = 0.000168436, No Iterations 4
time step continuity errors : sum local = 0.000860008, global = 5.97572e-05, cumulative = -0.297592
smoothSolver: Solving for omega, Initial residual = 0.000452612, Final residual = 3.87741e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00200463, Final residual = 0.000111093, No Iterations 4
ExecutionTime = 86.52 s ClockTime = 87 s
Time = 592
smoothSolver: Solving for Ux, Initial residual = 0.00102391, Final residual = 5.40554e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290228, Final residual = 0.000153896, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0259897, Final residual = 0.000168079, No Iterations 4
time step continuity errors : sum local = 0.000858717, global = 5.93409e-05, cumulative = -0.297532
smoothSolver: Solving for omega, Initial residual = 0.000452263, Final residual = 3.87422e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0020032, Final residual = 0.000111019, No Iterations 4
ExecutionTime = 86.66 s ClockTime = 88 s
Time = 593
smoothSolver: Solving for Ux, Initial residual = 0.00102299, Final residual = 5.40387e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290171, Final residual = 0.000153985, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0259547, Final residual = 0.000168201, No Iterations 4
time step continuity errors : sum local = 0.00085981, global = 5.84332e-05, cumulative = -0.297474
smoothSolver: Solving for omega, Initial residual = 0.000451882, Final residual = 3.87108e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00200178, Final residual = 0.000110948, No Iterations 4
ExecutionTime = 86.8 s ClockTime = 88 s
Time = 594
smoothSolver: Solving for Ux, Initial residual = 0.0010221, Final residual = 5.40211e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290126, Final residual = 0.000154083, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0260184, Final residual = 0.000168506, No Iterations 4
time step continuity errors : sum local = 0.000861907, global = 5.6815e-05, cumulative = -0.297417
smoothSolver: Solving for omega, Initial residual = 0.000451513, Final residual = 3.86828e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00200036, Final residual = 0.000110878, No Iterations 4
ExecutionTime = 86.94 s ClockTime = 88 s
Time = 595
smoothSolver: Solving for Ux, Initial residual = 0.00102121, Final residual = 5.40031e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290077, Final residual = 0.00015418, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0262141, Final residual = 0.000168787, No Iterations 4
time step continuity errors : sum local = 0.000863942, global = 5.44925e-05, cumulative = -0.297362
smoothSolver: Solving for omega, Initial residual = 0.000451137, Final residual = 3.86581e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00199899, Final residual = 0.000110812, No Iterations 4
ExecutionTime = 87.08 s ClockTime = 88 s
Time = 596
smoothSolver: Solving for Ux, Initial residual = 0.00102031, Final residual = 5.39864e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0029001, Final residual = 0.000154266, No Iterations 4
GAMG: Solving for p, Initial residual = 0.026281, Final residual = 0.000168341, No Iterations 4
time step continuity errors : sum local = 0.000862383, global = 5.21395e-05, cumulative = -0.29731
smoothSolver: Solving for omega, Initial residual = 0.000450762, Final residual = 3.86319e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0019976, Final residual = 0.000110749, No Iterations 4
ExecutionTime = 87.22 s ClockTime = 88 s
Time = 597
smoothSolver: Solving for Ux, Initial residual = 0.00101942, Final residual = 5.39709e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289934, Final residual = 0.000154344, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0261539, Final residual = 0.000167962, No Iterations 4
time step continuity errors : sum local = 0.000861003, global = 5.029e-05, cumulative = -0.29726
smoothSolver: Solving for omega, Initial residual = 0.000450414, Final residual = 3.86043e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00199627, Final residual = 0.000110688, No Iterations 4
ExecutionTime = 87.37 s ClockTime = 88 s
Time = 598
smoothSolver: Solving for Ux, Initial residual = 0.00101856, Final residual = 5.39539e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289866, Final residual = 0.000154422, No Iterations 4
GAMG: Solving for p, Initial residual = 0.026097, Final residual = 0.000168003, No Iterations 4
time step continuity errors : sum local = 0.000861668, global = 4.91224e-05, cumulative = -0.297211
smoothSolver: Solving for omega, Initial residual = 0.000450092, Final residual = 3.85772e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00199498, Final residual = 0.000110631, No Iterations 4
ExecutionTime = 87.5 s ClockTime = 88 s
Time = 599
smoothSolver: Solving for Ux, Initial residual = 0.00101773, Final residual = 5.39354e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289807, Final residual = 0.000154509, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0261132, Final residual = 0.000168231, No Iterations 4
time step continuity errors : sum local = 0.000863276, global = 4.87245e-05, cumulative = -0.297162
smoothSolver: Solving for omega, Initial residual = 0.000449738, Final residual = 3.85514e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0019937, Final residual = 0.000110576, No Iterations 4
ExecutionTime = 87.64 s ClockTime = 89 s
Time = 600
smoothSolver: Solving for Ux, Initial residual = 0.00101687, Final residual = 5.39153e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289756, Final residual = 0.000154601, No Iterations 4
GAMG: Solving for p, Initial residual = 0.02626, Final residual = 0.00016828, No Iterations 4
time step continuity errors : sum local = 0.000864034, global = 4.87981e-05, cumulative = -0.297113
smoothSolver: Solving for omega, Initial residual = 0.000449432, Final residual = 3.85297e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00199244, Final residual = 0.000110522, No Iterations 4
ExecutionTime = 87.98 s ClockTime = 89 s
Time = 601
smoothSolver: Solving for Ux, Initial residual = 0.00101602, Final residual = 5.38975e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289692, Final residual = 0.000154686, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0265291, Final residual = 0.000168039, No Iterations 4
time step continuity errors : sum local = 0.000863307, global = 4.90591e-05, cumulative = -0.297064
smoothSolver: Solving for omega, Initial residual = 0.000449089, Final residual = 3.85062e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00199122, Final residual = 0.000110472, No Iterations 4
ExecutionTime = 88.12 s ClockTime = 89 s
Time = 602
smoothSolver: Solving for Ux, Initial residual = 0.00101517, Final residual = 5.388e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289616, Final residual = 0.000154758, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0264262, Final residual = 0.000167399, No Iterations 4
time step continuity errors : sum local = 0.000860577, global = 4.95835e-05, cumulative = -0.297015
smoothSolver: Solving for omega, Initial residual = 0.000448742, Final residual = 3.848e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00199, Final residual = 0.000110425, No Iterations 4
ExecutionTime = 88.25 s ClockTime = 89 s
Time = 603
smoothSolver: Solving for Ux, Initial residual = 0.00101437, Final residual = 5.3861e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289539, Final residual = 0.000154829, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0263404, Final residual = 0.000167024, No Iterations 4
time step continuity errors : sum local = 0.00085904, global = 4.99949e-05, cumulative = -0.296965
smoothSolver: Solving for omega, Initial residual = 0.000448402, Final residual = 3.8454e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00198882, Final residual = 0.00011038, No Iterations 4
ExecutionTime = 88.39 s ClockTime = 89 s
Time = 604
smoothSolver: Solving for Ux, Initial residual = 0.00101358, Final residual = 5.384e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289471, Final residual = 0.000154902, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0263073, Final residual = 0.000166831, No Iterations 4
time step continuity errors : sum local = 0.000858392, global = 5.03686e-05, cumulative = -0.296914
smoothSolver: Solving for omega, Initial residual = 0.000448101, Final residual = 3.8432e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00198766, Final residual = 0.000110342, No Iterations 4
ExecutionTime = 88.54 s ClockTime = 90 s
Time = 605
smoothSolver: Solving for Ux, Initial residual = 0.00101278, Final residual = 5.38177e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289416, Final residual = 0.000154986, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0263624, Final residual = 0.000166483, No Iterations 4
time step continuity errors : sum local = 0.000856966, global = 5.06593e-05, cumulative = -0.296864
smoothSolver: Solving for omega, Initial residual = 0.000447819, Final residual = 3.84136e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00198653, Final residual = 0.000110308, No Iterations 4
ExecutionTime = 88.68 s ClockTime = 90 s
Time = 606
smoothSolver: Solving for Ux, Initial residual = 0.00101197, Final residual = 5.37961e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289355, Final residual = 0.000155066, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0265244, Final residual = 0.000166033, No Iterations 4
time step continuity errors : sum local = 0.000855164, global = 5.11311e-05, cumulative = -0.296813
smoothSolver: Solving for omega, Initial residual = 0.00044752, Final residual = 3.83943e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00198548, Final residual = 0.000110275, No Iterations 4
ExecutionTime = 88.82 s ClockTime = 90 s
Time = 607
smoothSolver: Solving for Ux, Initial residual = 0.00101116, Final residual = 5.37746e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289287, Final residual = 0.000155137, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0265678, Final residual = 0.000165068, No Iterations 4
time step continuity errors : sum local = 0.000850892, global = 5.2321e-05, cumulative = -0.29676
smoothSolver: Solving for omega, Initial residual = 0.000447192, Final residual = 3.8372e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00198438, Final residual = 0.000110248, No Iterations 4
ExecutionTime = 88.96 s ClockTime = 90 s
Time = 608
smoothSolver: Solving for Ux, Initial residual = 0.00101036, Final residual = 5.37524e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289202, Final residual = 0.000155199, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0264742, Final residual = 0.000164416, No Iterations 4
time step continuity errors : sum local = 0.000848012, global = 5.40785e-05, cumulative = -0.296706
smoothSolver: Solving for omega, Initial residual = 0.000446868, Final residual = 3.83498e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0019833, Final residual = 0.000110225, No Iterations 4
ExecutionTime = 89.1 s ClockTime = 90 s
Time = 609
smoothSolver: Solving for Ux, Initial residual = 0.00100958, Final residual = 5.37278e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289133, Final residual = 0.000155264, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0264145, Final residual = 0.000164188, No Iterations 4
time step continuity errors : sum local = 0.000847088, global = 5.63787e-05, cumulative = -0.29665
smoothSolver: Solving for omega, Initial residual = 0.000446561, Final residual = 3.83272e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00198232, Final residual = 0.000110203, No Iterations 4
ExecutionTime = 89.25 s ClockTime = 90 s
Time = 610
smoothSolver: Solving for Ux, Initial residual = 0.0010088, Final residual = 5.37012e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289073, Final residual = 0.000155332, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0264599, Final residual = 0.000164181, No Iterations 4
time step continuity errors : sum local = 0.000847353, global = 5.8933e-05, cumulative = -0.296591
smoothSolver: Solving for omega, Initial residual = 0.000446297, Final residual = 3.83119e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0019813, Final residual = 0.000110185, No Iterations 4
ExecutionTime = 89.38 s ClockTime = 90 s
Time = 611
smoothSolver: Solving for Ux, Initial residual = 0.001008, Final residual = 5.36751e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289014, Final residual = 0.000155404, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0265971, Final residual = 0.000164586, No Iterations 4
time step continuity errors : sum local = 0.00084982, global = 5.62377e-05, cumulative = -0.296535
smoothSolver: Solving for omega, Initial residual = 0.000446048, Final residual = 3.82957e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00198032, Final residual = 0.000110172, No Iterations 4
ExecutionTime = 89.52 s ClockTime = 91 s
Time = 612
smoothSolver: Solving for Ux, Initial residual = 0.00100721, Final residual = 5.36492e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288946, Final residual = 0.000155468, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0267404, Final residual = 0.000164328, No Iterations 4
time step continuity errors : sum local = 0.000849006, global = 5.60844e-05, cumulative = -0.296479
smoothSolver: Solving for omega, Initial residual = 0.00044578, Final residual = 3.82773e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197941, Final residual = 0.000110159, No Iterations 4
ExecutionTime = 89.66 s ClockTime = 91 s
Time = 613
smoothSolver: Solving for Ux, Initial residual = 0.00100644, Final residual = 5.36208e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288867, Final residual = 0.000155522, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0266104, Final residual = 0.000163677, No Iterations 4
time step continuity errors : sum local = 0.000846263, global = 5.57417e-05, cumulative = -0.296423
smoothSolver: Solving for omega, Initial residual = 0.000445473, Final residual = 3.82575e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197854, Final residual = 0.000110152, No Iterations 4
ExecutionTime = 89.79 s ClockTime = 91 s
Time = 614
smoothSolver: Solving for Ux, Initial residual = 0.00100567, Final residual = 5.35901e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028879, Final residual = 0.000155572, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0265022, Final residual = 0.000162965, No Iterations 4
time step continuity errors : sum local = 0.000842941, global = 5.5096e-05, cumulative = -0.296368
smoothSolver: Solving for omega, Initial residual = 0.000445199, Final residual = 3.82396e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197767, Final residual = 0.000110148, No Iterations 4
ExecutionTime = 89.93 s ClockTime = 91 s
Time = 615
smoothSolver: Solving for Ux, Initial residual = 0.00100489, Final residual = 5.35588e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028873, Final residual = 0.000155628, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0264671, Final residual = 0.000162251, No Iterations 4
time step continuity errors : sum local = 0.000839523, global = 5.44233e-05, cumulative = -0.296313
smoothSolver: Solving for omega, Initial residual = 0.000444959, Final residual = 3.82256e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197687, Final residual = 0.000110149, No Iterations 4
ExecutionTime = 90.08 s ClockTime = 91 s
Time = 616
smoothSolver: Solving for Ux, Initial residual = 0.00100411, Final residual = 5.3527e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288681, Final residual = 0.000155691, No Iterations 4
GAMG: Solving for p, Initial residual = 0.02657, Final residual = 0.000161096, No Iterations 4
time step continuity errors : sum local = 0.000833914, global = 5.40653e-05, cumulative = -0.296259
smoothSolver: Solving for omega, Initial residual = 0.000444729, Final residual = 3.82127e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197602, Final residual = 0.000110154, No Iterations 4
ExecutionTime = 90.22 s ClockTime = 91 s
Time = 617
smoothSolver: Solving for Ux, Initial residual = 0.00100331, Final residual = 5.34954e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288626, Final residual = 0.00015575, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0267818, Final residual = 0.000159662, No Iterations 4
time step continuity errors : sum local = 0.000827023, global = 5.38041e-05, cumulative = -0.296205
smoothSolver: Solving for omega, Initial residual = 0.000444496, Final residual = 3.8199e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197523, Final residual = 0.000110165, No Iterations 4
ExecutionTime = 90.36 s ClockTime = 91 s
Time = 618
smoothSolver: Solving for Ux, Initial residual = 0.00100254, Final residual = 5.34619e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288559, Final residual = 0.000155795, No Iterations 4
GAMG: Solving for p, Initial residual = 0.026775, Final residual = 0.000157458, No Iterations 4
time step continuity errors : sum local = 0.000816127, global = 5.37498e-05, cumulative = -0.296152
smoothSolver: Solving for omega, Initial residual = 0.000444245, Final residual = 3.81838e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197454, Final residual = 0.000110181, No Iterations 4
ExecutionTime = 90.5 s ClockTime = 91 s
Time = 619
smoothSolver: Solving for Ux, Initial residual = 0.00100176, Final residual = 5.34272e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028848, Final residual = 0.000155831, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0267248, Final residual = 0.000155595, No Iterations 4
time step continuity errors : sum local = 0.00080687, global = 5.31698e-05, cumulative = -0.296098
smoothSolver: Solving for omega, Initial residual = 0.000443989, Final residual = 3.81708e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197388, Final residual = 0.000110204, No Iterations 4
ExecutionTime = 90.63 s ClockTime = 92 s
Time = 620
smoothSolver: Solving for Ux, Initial residual = 0.001001, Final residual = 5.3391e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288415, Final residual = 0.00015587, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0266405, Final residual = 0.000154636, No Iterations 4
time step continuity errors : sum local = 0.000802195, global = 5.15597e-05, cumulative = -0.296047
smoothSolver: Solving for omega, Initial residual = 0.000443775, Final residual = 3.81585e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197323, Final residual = 0.00011023, No Iterations 4
ExecutionTime = 90.78 s ClockTime = 92 s
Time = 621
smoothSolver: Solving for Ux, Initial residual = 0.00100022, Final residual = 5.33537e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288371, Final residual = 0.000155919, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0266193, Final residual = 0.000154127, No Iterations 4
time step continuity errors : sum local = 0.00079988, global = 4.90914e-05, cumulative = -0.295998
smoothSolver: Solving for omega, Initial residual = 0.000443594, Final residual = 3.81486e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197263, Final residual = 0.00011026, No Iterations 4
ExecutionTime = 90.91 s ClockTime = 92 s
Time = 622
smoothSolver: Solving for Ux, Initial residual = 0.000999434, Final residual = 5.33173e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288327, Final residual = 0.000155967, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0267917, Final residual = 0.00015371, No Iterations 4
time step continuity errors : sum local = 0.000798092, global = 4.61527e-05, cumulative = -0.295952
smoothSolver: Solving for omega, Initial residual = 0.000443403, Final residual = 3.81378e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197202, Final residual = 0.000110297, No Iterations 4
ExecutionTime = 91.05 s ClockTime = 92 s
Time = 623
smoothSolver: Solving for Ux, Initial residual = 0.00099867, Final residual = 5.3279e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288272, Final residual = 0.000156003, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0268704, Final residual = 0.000152701, No Iterations 4
time step continuity errors : sum local = 0.000793355, global = 4.36043e-05, cumulative = -0.295908
smoothSolver: Solving for omega, Initial residual = 0.000443218, Final residual = 3.8125e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197156, Final residual = 0.000110338, No Iterations 4
ExecutionTime = 91.19 s ClockTime = 92 s
Time = 624
smoothSolver: Solving for Ux, Initial residual = 0.000997871, Final residual = 5.32396e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288205, Final residual = 0.000156028, No Iterations 4
GAMG: Solving for p, Initial residual = 0.026767, Final residual = 0.00015163, No Iterations 4
time step continuity errors : sum local = 0.000788278, global = 4.17234e-05, cumulative = -0.295866
smoothSolver: Solving for omega, Initial residual = 0.00044305, Final residual = 3.81176e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197118, Final residual = 0.000110385, No Iterations 4
ExecutionTime = 91.32 s ClockTime = 92 s
Time = 625
smoothSolver: Solving for Ux, Initial residual = 0.000997082, Final residual = 5.31991e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028814, Final residual = 0.00015605, No Iterations 4
GAMG: Solving for p, Initial residual = 0.026713, Final residual = 0.000150928, No Iterations 4
time step continuity errors : sum local = 0.000784979, global = 4.03575e-05, cumulative = -0.295826
smoothSolver: Solving for omega, Initial residual = 0.00044286, Final residual = 3.81099e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197079, Final residual = 0.000110437, No Iterations 4
ExecutionTime = 91.45 s ClockTime = 92 s
Time = 626
smoothSolver: Solving for Ux, Initial residual = 0.000996315, Final residual = 5.31572e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288098, Final residual = 0.00015608, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0267163, Final residual = 0.000150406, No Iterations 4
time step continuity errors : sum local = 0.000782581, global = 3.93894e-05, cumulative = -0.295787
smoothSolver: Solving for omega, Initial residual = 0.000442723, Final residual = 3.81021e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197045, Final residual = 0.000110491, No Iterations 4
ExecutionTime = 91.59 s ClockTime = 93 s
Time = 627
smoothSolver: Solving for Ux, Initial residual = 0.000995532, Final residual = 5.31155e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288064, Final residual = 0.000156112, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0267939, Final residual = 0.000149705, No Iterations 4
time step continuity errors : sum local = 0.000779173, global = 3.86265e-05, cumulative = -0.295748
smoothSolver: Solving for omega, Initial residual = 0.000442585, Final residual = 3.80966e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197006, Final residual = 0.000110551, No Iterations 4
ExecutionTime = 91.72 s ClockTime = 93 s
Time = 628
smoothSolver: Solving for Ux, Initial residual = 0.000994781, Final residual = 5.3073e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288021, Final residual = 0.000156137, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0269795, Final residual = 0.000148576, No Iterations 4
time step continuity errors : sum local = 0.000773584, global = 3.79789e-05, cumulative = -0.29571
smoothSolver: Solving for omega, Initial residual = 0.000442448, Final residual = 3.80891e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00196968, Final residual = 0.000110617, No Iterations 4
ExecutionTime = 91.87 s ClockTime = 93 s
Time = 629
smoothSolver: Solving for Ux, Initial residual = 0.000994024, Final residual = 5.30297e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287964, Final residual = 0.000156147, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0269022, Final residual = 0.000147196, No Iterations 4
time step continuity errors : sum local = 0.000766805, global = 3.76869e-05, cumulative = -0.295672
smoothSolver: Solving for omega, Initial residual = 0.00044233, Final residual = 3.80832e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00196948, Final residual = 0.000110684, No Iterations 4
ExecutionTime = 92.01 s ClockTime = 93 s
Time = 630
smoothSolver: Solving for Ux, Initial residual = 0.000993242, Final residual = 5.29849e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287903, Final residual = 0.00015615, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0268155, Final residual = 0.000146245, No Iterations 4
time step continuity errors : sum local = 0.000762127, global = 3.71807e-05, cumulative = -0.295635
smoothSolver: Solving for omega, Initial residual = 0.000442206, Final residual = 3.80801e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00196928, Final residual = 0.000110757, No Iterations 4
ExecutionTime = 92.14 s ClockTime = 93 s
Time = 631
smoothSolver: Solving for Ux, Initial residual = 0.000992483, Final residual = 5.29396e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028786, Final residual = 0.000156159, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0267552, Final residual = 0.000145856, No Iterations 4
time step continuity errors : sum local = 0.000760272, global = 3.6532e-05, cumulative = -0.295599
smoothSolver: Solving for omega, Initial residual = 0.000442073, Final residual = 3.80773e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.001969, Final residual = 0.000110832, No Iterations 4
ExecutionTime = 92.29 s ClockTime = 93 s
Time = 632
smoothSolver: Solving for Ux, Initial residual = 0.000991717, Final residual = 5.28941e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287837, Final residual = 0.000156174, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0267738, Final residual = 0.000145424, No Iterations 4
time step continuity errors : sum local = 0.000758263, global = 3.56222e-05, cumulative = -0.295563
smoothSolver: Solving for omega, Initial residual = 0.000442028, Final residual = 3.80751e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00196884, Final residual = 0.000110911, No Iterations 4
ExecutionTime = 92.42 s ClockTime = 93 s
Time = 633
smoothSolver: Solving for Ux, Initial residual = 0.000990972, Final residual = 5.28483e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028781, Final residual = 0.000156185, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0269892, Final residual = 0.000144847, No Iterations 4
time step continuity errors : sum local = 0.000755533, global = 3.45466e-05, cumulative = -0.295528
smoothSolver: Solving for omega, Initial residual = 0.000441957, Final residual = 3.80741e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00196872, Final residual = 0.000110995, No Iterations 4
ExecutionTime = 92.55 s ClockTime = 94 s
Time = 634
smoothSolver: Solving for Ux, Initial residual = 0.000990257, Final residual = 5.28019e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287771, Final residual = 0.000156183, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0269912, Final residual = 0.000143584, No Iterations 4
time step continuity errors : sum local = 0.000749384, global = 3.33525e-05, cumulative = -0.295495
smoothSolver: Solving for omega, Initial residual = 0.000441893, Final residual = 3.80732e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0019687, Final residual = 0.000111081, No Iterations 4
ExecutionTime = 92.7 s ClockTime = 94 s
Time = 635
smoothSolver: Solving for Ux, Initial residual = 0.000989528, Final residual = 5.2754e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287722, Final residual = 0.000156171, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0268974, Final residual = 0.000142436, No Iterations 4
time step continuity errors : sum local = 0.000743613, global = 3.22587e-05, cumulative = -0.295463
smoothSolver: Solving for omega, Initial residual = 0.000441838, Final residual = 3.80769e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00196873, Final residual = 0.000111172, No Iterations 4
ExecutionTime = 92.84 s ClockTime = 94 s
Time = 636
smoothSolver: Solving for Ux, Initial residual = 0.000988793, Final residual = 5.27054e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287681, Final residual = 0.000156156, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0268146, Final residual = 0.000141598, No Iterations 4
time step continuity errors : sum local = 0.000739334, global = 3.0917e-05, cumulative = -0.295432
smoothSolver: Solving for omega, Initial residual = 0.000441751, Final residual = 3.80785e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00196876, Final residual = 0.000111268, No Iterations 4
ExecutionTime = 92.99 s ClockTime = 94 s
Time = 637
smoothSolver: Solving for Ux, Initial residual = 0.000988056, Final residual = 5.26565e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287665, Final residual = 0.000156155, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0267827, Final residual = 0.000140807, No Iterations 4
time step continuity errors : sum local = 0.000735337, global = 2.87736e-05, cumulative = -0.295403
smoothSolver: Solving for omega, Initial residual = 0.000441737, Final residual = 3.80828e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00196882, Final residual = 0.000111364, No Iterations 4
ExecutionTime = 93.13 s ClockTime = 94 s
Time = 638
smoothSolver: Solving for Ux, Initial residual = 0.000987329, Final residual = 5.26076e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028766, Final residual = 0.000156152, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0268969, Final residual = 0.00013978, No Iterations 4
time step continuity errors : sum local = 0.000730108, global = 2.58626e-05, cumulative = -0.295377
smoothSolver: Solving for omega, Initial residual = 0.000441719, Final residual = 3.8084e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00196887, Final residual = 0.000111462, No Iterations 4
ExecutionTime = 93.27 s ClockTime = 94 s
Time = 639
smoothSolver: Solving for Ux, Initial residual = 0.000986605, Final residual = 5.25579e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287641, Final residual = 0.000156137, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0270888, Final residual = 0.000138393, No Iterations 4
time step continuity errors : sum local = 0.000723044, global = 2.27931e-05, cumulative = -0.295354
smoothSolver: Solving for omega, Initial residual = 0.000441695, Final residual = 3.80858e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0019689, Final residual = 0.000111562, No Iterations 4
ExecutionTime = 93.41 s ClockTime = 94 s
Time = 640
smoothSolver: Solving for Ux, Initial residual = 0.000985901, Final residual = 5.25079e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287617, Final residual = 0.000156113, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0270168, Final residual = 0.000136708, No Iterations 4
time step continuity errors : sum local = 0.000714535, global = 2.01478e-05, cumulative = -0.295334
smoothSolver: Solving for omega, Initial residual = 0.00044167, Final residual = 3.80896e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00196905, Final residual = 0.000111663, No Iterations 4
ExecutionTime = 93.54 s ClockTime = 95 s
Time = 641
smoothSolver: Solving for Ux, Initial residual = 0.000985189, Final residual = 5.24571e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287595, Final residual = 0.000156086, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0269108, Final residual = 0.000135342, No Iterations 4
time step continuity errors : sum local = 0.000707497, global = 1.80315e-05, cumulative = -0.295316
smoothSolver: Solving for omega, Initial residual = 0.000441626, Final residual = 3.80931e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0019692, Final residual = 0.000111766, No Iterations 4
ExecutionTime = 93.68 s ClockTime = 95 s
Time = 642
smoothSolver: Solving for Ux, Initial residual = 0.000984475, Final residual = 5.24046e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287588, Final residual = 0.000156065, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0267997, Final residual = 0.000134595, No Iterations 4
time step continuity errors : sum local = 0.000703649, global = 1.6262e-05, cumulative = -0.2953
smoothSolver: Solving for omega, Initial residual = 0.000441563, Final residual = 3.80968e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00196931, Final residual = 0.000111871, No Iterations 4
ExecutionTime = 93.83 s ClockTime = 95 s
Time = 643
smoothSolver: Solving for Ux, Initial residual = 0.000983795, Final residual = 5.23526e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287606, Final residual = 0.000156049, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0268056, Final residual = 0.00013422, No Iterations 4
time step continuity errors : sum local = 0.00070168, global = 1.4356e-05, cumulative = -0.295286
smoothSolver: Solving for omega, Initial residual = 0.000441598, Final residual = 3.81033e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00196952, Final residual = 0.000111974, No Iterations 4
ExecutionTime = 93.96 s ClockTime = 95 s
Time = 644
smoothSolver: Solving for Ux, Initial residual = 0.000983113, Final residual = 5.2301e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287617, Final residual = 0.000156024, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0270445, Final residual = 0.000133926, No Iterations 4
time step continuity errors : sum local = 0.000700231, global = 1.25519e-05, cumulative = -0.295273
smoothSolver: Solving for omega, Initial residual = 0.00044162, Final residual = 3.8109e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00196973, Final residual = 0.000112081, No Iterations 4
ExecutionTime = 94.1 s ClockTime = 95 s
Time = 645
smoothSolver: Solving for Ux, Initial residual = 0.000982406, Final residual = 5.22485e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028762, Final residual = 0.000155988, No Iterations 4
GAMG: Solving for p, Initial residual = 0.027082, Final residual = 0.000133075, No Iterations 4
time step continuity errors : sum local = 0.000695971, global = 1.10179e-05, cumulative = -0.295262
smoothSolver: Solving for omega, Initial residual = 0.000441632, Final residual = 3.81151e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00196997, Final residual = 0.000112192, No Iterations 4
ExecutionTime = 94.25 s ClockTime = 95 s
Time = 646
smoothSolver: Solving for Ux, Initial residual = 0.000981691, Final residual = 5.21958e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287621, Final residual = 0.000155947, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0270105, Final residual = 0.000132256, No Iterations 4
time step continuity errors : sum local = 0.000691741, global = 1.00125e-05, cumulative = -0.295252
smoothSolver: Solving for omega, Initial residual = 0.000441612, Final residual = 3.81205e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197027, Final residual = 0.000112302, No Iterations 4
ExecutionTime = 94.38 s ClockTime = 95 s
Time = 647
smoothSolver: Solving for Ux, Initial residual = 0.000980983, Final residual = 5.21413e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287632, Final residual = 0.000155908, No Iterations 4
GAMG: Solving for p, Initial residual = 0.026907, Final residual = 0.000131696, No Iterations 4
time step continuity errors : sum local = 0.000688827, global = 9.27291e-06, cumulative = -0.295243
smoothSolver: Solving for omega, Initial residual = 0.000441556, Final residual = 3.81243e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197054, Final residual = 0.000112411, No Iterations 4
ExecutionTime = 94.52 s ClockTime = 96 s
Time = 648
smoothSolver: Solving for Ux, Initial residual = 0.000980313, Final residual = 5.20873e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287658, Final residual = 0.000155875, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0268851, Final residual = 0.000131318, No Iterations 4
time step continuity errors : sum local = 0.00068692, global = 8.14033e-06, cumulative = -0.295235
smoothSolver: Solving for omega, Initial residual = 0.000441564, Final residual = 3.81305e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0019708, Final residual = 0.000112519, No Iterations 4
ExecutionTime = 94.66 s ClockTime = 96 s
Time = 649
smoothSolver: Solving for Ux, Initial residual = 0.000979655, Final residual = 5.2033e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287691, Final residual = 0.000155836, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0269778, Final residual = 0.00013099, No Iterations 4
time step continuity errors : sum local = 0.000685275, global = 6.65551e-06, cumulative = -0.295228
smoothSolver: Solving for omega, Initial residual = 0.000441598, Final residual = 3.81364e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197103, Final residual = 0.000112627, No Iterations 4
ExecutionTime = 94.81 s ClockTime = 96 s
Time = 650
smoothSolver: Solving for Ux, Initial residual = 0.000978972, Final residual = 5.19785e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287722, Final residual = 0.000155788, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0270625, Final residual = 0.000130291, No Iterations 4
time step continuity errors : sum local = 0.000681743, global = 5.33233e-06, cumulative = -0.295223
smoothSolver: Solving for omega, Initial residual = 0.000441663, Final residual = 3.81457e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197126, Final residual = 0.000112735, No Iterations 4
ExecutionTime = 95.15 s ClockTime = 96 s
Time = 651
smoothSolver: Solving for Ux, Initial residual = 0.000978273, Final residual = 5.19239e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287743, Final residual = 0.000155729, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0270556, Final residual = 0.000129603, No Iterations 4
time step continuity errors : sum local = 0.00067818, global = 4.52292e-06, cumulative = -0.295218
smoothSolver: Solving for omega, Initial residual = 0.000441672, Final residual = 3.81518e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0019715, Final residual = 0.000112839, No Iterations 4
ExecutionTime = 95.29 s ClockTime = 96 s
Time = 652
smoothSolver: Solving for Ux, Initial residual = 0.000977583, Final residual = 5.18683e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028777, Final residual = 0.00015567, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0269851, Final residual = 0.000129171, No Iterations 4
time step continuity errors : sum local = 0.000675842, global = 4.06161e-06, cumulative = -0.295214
smoothSolver: Solving for omega, Initial residual = 0.000441664, Final residual = 3.8156e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197179, Final residual = 0.000112942, No Iterations 4
ExecutionTime = 95.42 s ClockTime = 96 s
Time = 653
smoothSolver: Solving for Ux, Initial residual = 0.000976922, Final residual = 5.18138e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287807, Final residual = 0.000155613, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0269332, Final residual = 0.000128949, No Iterations 4
time step continuity errors : sum local = 0.000674652, global = 3.26138e-06, cumulative = -0.295211
smoothSolver: Solving for omega, Initial residual = 0.000441628, Final residual = 3.8159e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197205, Final residual = 0.00011305, No Iterations 4
ExecutionTime = 95.57 s ClockTime = 97 s
Time = 654
smoothSolver: Solving for Ux, Initial residual = 0.000976271, Final residual = 5.17589e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287855, Final residual = 0.000155558, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0269461, Final residual = 0.000128833, No Iterations 4
time step continuity errors : sum local = 0.000674014, global = 1.68159e-06, cumulative = -0.295209
smoothSolver: Solving for omega, Initial residual = 0.000441642, Final residual = 3.81641e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197229, Final residual = 0.000113153, No Iterations 4
ExecutionTime = 95.7 s ClockTime = 97 s
Time = 655
smoothSolver: Solving for Ux, Initial residual = 0.000975629, Final residual = 5.17031e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287899, Final residual = 0.000155493, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0271168, Final residual = 0.000128804, No Iterations 4
time step continuity errors : sum local = 0.000673887, global = 4.40264e-08, cumulative = -0.295209
smoothSolver: Solving for omega, Initial residual = 0.000441689, Final residual = 3.81715e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197255, Final residual = 0.000113252, No Iterations 4
ExecutionTime = 95.83 s ClockTime = 97 s
Time = 656
smoothSolver: Solving for Ux, Initial residual = 0.000974952, Final residual = 5.16474e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287937, Final residual = 0.00015542, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0270769, Final residual = 0.000128257, No Iterations 4
time step continuity errors : sum local = 0.000671188, global = -1.48032e-06, cumulative = -0.295211
smoothSolver: Solving for omega, Initial residual = 0.000441742, Final residual = 3.81767e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197279, Final residual = 0.000113355, No Iterations 4
ExecutionTime = 95.96 s ClockTime = 97 s
Time = 657
smoothSolver: Solving for Ux, Initial residual = 0.000974276, Final residual = 5.15924e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028797, Final residual = 0.000155342, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0269833, Final residual = 0.000127629, No Iterations 4
time step continuity errors : sum local = 0.000667792, global = -2.29178e-06, cumulative = -0.295213
smoothSolver: Solving for omega, Initial residual = 0.000441744, Final residual = 3.81792e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197304, Final residual = 0.000113454, No Iterations 4
ExecutionTime = 96.1 s ClockTime = 97 s
Time = 658
smoothSolver: Solving for Ux, Initial residual = 0.000973628, Final residual = 5.1538e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288017, Final residual = 0.000155265, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0268726, Final residual = 0.000127048, No Iterations 4
time step continuity errors : sum local = 0.000664591, global = -2.87706e-06, cumulative = -0.295216
smoothSolver: Solving for omega, Initial residual = 0.000441706, Final residual = 3.81806e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197327, Final residual = 0.00011355, No Iterations 4
ExecutionTime = 96.24 s ClockTime = 97 s
Time = 659
smoothSolver: Solving for Ux, Initial residual = 0.000972988, Final residual = 5.1484e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288066, Final residual = 0.000155191, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0269023, Final residual = 0.000126551, No Iterations 4
time step continuity errors : sum local = 0.000661915, global = -4.02635e-06, cumulative = -0.29522
smoothSolver: Solving for omega, Initial residual = 0.000441697, Final residual = 3.81832e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197344, Final residual = 0.000113641, No Iterations 4
ExecutionTime = 96.37 s ClockTime = 97 s
Time = 660
smoothSolver: Solving for Ux, Initial residual = 0.000972362, Final residual = 5.14292e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288126, Final residual = 0.000155118, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0270177, Final residual = 0.000126092, No Iterations 4
time step continuity errors : sum local = 0.000659487, global = -5.52279e-06, cumulative = -0.295225
smoothSolver: Solving for omega, Initial residual = 0.000441723, Final residual = 3.8189e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197358, Final residual = 0.00011373, No Iterations 4
ExecutionTime = 96.51 s ClockTime = 98 s
Time = 661
smoothSolver: Solving for Ux, Initial residual = 0.000971704, Final residual = 5.13744e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288175, Final residual = 0.000155034, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0270681, Final residual = 0.000125188, No Iterations 4
time step continuity errors : sum local = 0.000654817, global = -7.13226e-06, cumulative = -0.295232
smoothSolver: Solving for omega, Initial residual = 0.000441776, Final residual = 3.81934e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197377, Final residual = 0.000113817, No Iterations 4
ExecutionTime = 96.64 s ClockTime = 98 s
Time = 662
smoothSolver: Solving for Ux, Initial residual = 0.000971052, Final residual = 5.13209e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288221, Final residual = 0.000154941, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0270134, Final residual = 0.000123941, No Iterations 4
time step continuity errors : sum local = 0.000648292, global = -8.56067e-06, cumulative = -0.295241
smoothSolver: Solving for omega, Initial residual = 0.000441778, Final residual = 3.81934e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197396, Final residual = 0.000113901, No Iterations 4
ExecutionTime = 96.78 s ClockTime = 98 s
Time = 663
smoothSolver: Solving for Ux, Initial residual = 0.000970425, Final residual = 5.12675e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288271, Final residual = 0.000154847, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0269247, Final residual = 0.00012287, No Iterations 4
time step continuity errors : sum local = 0.000642606, global = -9.59597e-06, cumulative = -0.295251
smoothSolver: Solving for omega, Initial residual = 0.000441759, Final residual = 3.81936e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197415, Final residual = 0.000113981, No Iterations 4
ExecutionTime = 96.92 s ClockTime = 98 s
Time = 664
smoothSolver: Solving for Ux, Initial residual = 0.000969804, Final residual = 5.12148e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028833, Final residual = 0.000154758, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0269012, Final residual = 0.000122196, No Iterations 4
time step continuity errors : sum local = 0.00063888, global = -1.03832e-05, cumulative = -0.295261
smoothSolver: Solving for omega, Initial residual = 0.000441698, Final residual = 3.8193e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197426, Final residual = 0.000114061, No Iterations 4
ExecutionTime = 97.06 s ClockTime = 98 s
Time = 665
smoothSolver: Solving for Ux, Initial residual = 0.000969196, Final residual = 5.11629e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288394, Final residual = 0.000154673, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0269406, Final residual = 0.000121918, No Iterations 4
time step continuity errors : sum local = 0.000637271, global = -1.16167e-05, cumulative = -0.295273
smoothSolver: Solving for omega, Initial residual = 0.000441703, Final residual = 3.81954e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197431, Final residual = 0.000114134, No Iterations 4
ExecutionTime = 97.19 s ClockTime = 98 s
Time = 666
smoothSolver: Solving for Ux, Initial residual = 0.000968562, Final residual = 5.11108e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288451, Final residual = 0.000154579, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0270345, Final residual = 0.000121764, No Iterations 4
time step continuity errors : sum local = 0.000636379, global = -1.26544e-05, cumulative = -0.295285
smoothSolver: Solving for omega, Initial residual = 0.000441751, Final residual = 3.81987e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197434, Final residual = 0.000114203, No Iterations 4
ExecutionTime = 97.32 s ClockTime = 98 s
Time = 667
smoothSolver: Solving for Ux, Initial residual = 0.000967952, Final residual = 5.10595e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288508, Final residual = 0.000154479, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0269511, Final residual = 0.000120987, No Iterations 4
time step continuity errors : sum local = 0.000632367, global = -1.39235e-05, cumulative = -0.295299
smoothSolver: Solving for omega, Initial residual = 0.000441762, Final residual = 3.81952e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197436, Final residual = 0.00011427, No Iterations 4
ExecutionTime = 97.46 s ClockTime = 99 s
Time = 668
smoothSolver: Solving for Ux, Initial residual = 0.000967363, Final residual = 5.10092e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288562, Final residual = 0.000154375, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0268601, Final residual = 0.000120176, No Iterations 4
time step continuity errors : sum local = 0.000628056, global = -1.48674e-05, cumulative = -0.295314
smoothSolver: Solving for omega, Initial residual = 0.000441733, Final residual = 3.81917e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197432, Final residual = 0.000114338, No Iterations 4
ExecutionTime = 97.59 s ClockTime = 99 s
Time = 669
smoothSolver: Solving for Ux, Initial residual = 0.000966767, Final residual = 5.09597e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288626, Final residual = 0.000154268, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0267975, Final residual = 0.000119595, No Iterations 4
time step continuity errors : sum local = 0.000624881, global = -1.54026e-05, cumulative = -0.295329
smoothSolver: Solving for omega, Initial residual = 0.000441671, Final residual = 3.8188e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197431, Final residual = 0.000114403, No Iterations 4
ExecutionTime = 97.72 s ClockTime = 99 s
Time = 670
smoothSolver: Solving for Ux, Initial residual = 0.000966173, Final residual = 5.09107e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028869, Final residual = 0.000154167, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0268162, Final residual = 0.000119351, No Iterations 4
time step continuity errors : sum local = 0.00062347, global = -1.5929e-05, cumulative = -0.295345
smoothSolver: Solving for omega, Initial residual = 0.000441616, Final residual = 3.8187e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197423, Final residual = 0.000114464, No Iterations 4
ExecutionTime = 97.86 s ClockTime = 99 s
Time = 671
smoothSolver: Solving for Ux, Initial residual = 0.000965566, Final residual = 5.08623e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288754, Final residual = 0.000154067, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0268934, Final residual = 0.000119322, No Iterations 4
time step continuity errors : sum local = 0.000623118, global = -1.64685e-05, cumulative = -0.295362
smoothSolver: Solving for omega, Initial residual = 0.000441616, Final residual = 3.81903e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197411, Final residual = 0.000114521, No Iterations 4
ExecutionTime = 97.99 s ClockTime = 99 s
Time = 672
smoothSolver: Solving for Ux, Initial residual = 0.000964969, Final residual = 5.08147e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028881, Final residual = 0.000153958, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0269534, Final residual = 0.000119157, No Iterations 4
time step continuity errors : sum local = 0.000622172, global = -1.71367e-05, cumulative = -0.295379
smoothSolver: Solving for omega, Initial residual = 0.000441609, Final residual = 3.81858e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197398, Final residual = 0.000114574, No Iterations 4
ExecutionTime = 98.13 s ClockTime = 99 s
Time = 673
smoothSolver: Solving for Ux, Initial residual = 0.000964408, Final residual = 5.07676e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288864, Final residual = 0.000153844, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0268356, Final residual = 0.000118681, No Iterations 4
time step continuity errors : sum local = 0.000619611, global = -1.79873e-05, cumulative = -0.295397
smoothSolver: Solving for omega, Initial residual = 0.000441563, Final residual = 3.81773e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197386, Final residual = 0.000114621, No Iterations 4
ExecutionTime = 98.27 s ClockTime = 99 s
Time = 674
smoothSolver: Solving for Ux, Initial residual = 0.000963844, Final residual = 5.07215e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288925, Final residual = 0.000153728, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0266799, Final residual = 0.000118277, No Iterations 4
time step continuity errors : sum local = 0.000617396, global = -1.85038e-05, cumulative = -0.295415
smoothSolver: Solving for omega, Initial residual = 0.000441491, Final residual = 3.81694e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197368, Final residual = 0.000114663, No Iterations 4
ExecutionTime = 98.4 s ClockTime = 100 s
Time = 675
smoothSolver: Solving for Ux, Initial residual = 0.000963245, Final residual = 5.06758e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288987, Final residual = 0.000153614, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0266311, Final residual = 0.00011802, No Iterations 4
time step continuity errors : sum local = 0.000615968, global = -1.87636e-05, cumulative = -0.295434
smoothSolver: Solving for omega, Initial residual = 0.000441401, Final residual = 3.81637e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197343, Final residual = 0.000114701, No Iterations 4
ExecutionTime = 98.54 s ClockTime = 100 s
Time = 676
smoothSolver: Solving for Ux, Initial residual = 0.00096265, Final residual = 5.0631e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028905, Final residual = 0.000153503, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0266942, Final residual = 0.000118036, No Iterations 4
time step continuity errors : sum local = 0.000615894, global = -1.92448e-05, cumulative = -0.295453
smoothSolver: Solving for omega, Initial residual = 0.000441325, Final residual = 3.81609e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197311, Final residual = 0.000114737, No Iterations 4
ExecutionTime = 98.69 s ClockTime = 100 s
Time = 677
smoothSolver: Solving for Ux, Initial residual = 0.000962075, Final residual = 5.05881e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289104, Final residual = 0.000153388, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0268117, Final residual = 0.000118154, No Iterations 4
time step continuity errors : sum local = 0.000616328, global = -1.96998e-05, cumulative = -0.295473
smoothSolver: Solving for omega, Initial residual = 0.000441305, Final residual = 3.81576e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197278, Final residual = 0.000114766, No Iterations 4
ExecutionTime = 98.84 s ClockTime = 100 s
Time = 678
smoothSolver: Solving for Ux, Initial residual = 0.000961529, Final residual = 5.05445e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289159, Final residual = 0.000153265, No Iterations 4
GAMG: Solving for p, Initial residual = 0.026814, Final residual = 0.000117919, No Iterations 4
time step continuity errors : sum local = 0.000614977, global = -2.03599e-05, cumulative = -0.295494
smoothSolver: Solving for omega, Initial residual = 0.000441249, Final residual = 3.81483e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197242, Final residual = 0.000114791, No Iterations 4
ExecutionTime = 98.97 s ClockTime = 100 s
Time = 679
smoothSolver: Solving for Ux, Initial residual = 0.000960979, Final residual = 5.0501e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289207, Final residual = 0.00015314, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0267235, Final residual = 0.000117383, No Iterations 4
time step continuity errors : sum local = 0.000612016, global = -2.11805e-05, cumulative = -0.295515
smoothSolver: Solving for omega, Initial residual = 0.000441167, Final residual = 3.81378e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197202, Final residual = 0.000114815, No Iterations 4
ExecutionTime = 99.11 s ClockTime = 100 s
Time = 680
smoothSolver: Solving for Ux, Initial residual = 0.000960407, Final residual = 5.0459e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289257, Final residual = 0.000153013, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0265507, Final residual = 0.000116722, No Iterations 4
time step continuity errors : sum local = 0.000608406, global = -2.19234e-05, cumulative = -0.295537
smoothSolver: Solving for omega, Initial residual = 0.000441031, Final residual = 3.81269e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197159, Final residual = 0.000114835, No Iterations 4
ExecutionTime = 99.24 s ClockTime = 100 s
Time = 681
smoothSolver: Solving for Ux, Initial residual = 0.000959824, Final residual = 5.04189e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289312, Final residual = 0.000152891, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0264921, Final residual = 0.000116051, No Iterations 4
time step continuity errors : sum local = 0.000604773, global = -2.27333e-05, cumulative = -0.295559
smoothSolver: Solving for omega, Initial residual = 0.000440928, Final residual = 3.81212e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197108, Final residual = 0.00011485, No Iterations 4
ExecutionTime = 99.38 s ClockTime = 101 s
Time = 682
smoothSolver: Solving for Ux, Initial residual = 0.000959271, Final residual = 5.03793e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289367, Final residual = 0.000152767, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0264925, Final residual = 0.000115509, No Iterations 4
time step continuity errors : sum local = 0.000601825, global = -2.3649e-05, cumulative = -0.295583
smoothSolver: Solving for omega, Initial residual = 0.000440824, Final residual = 3.81154e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00197047, Final residual = 0.00011486, No Iterations 4
ExecutionTime = 99.51 s ClockTime = 101 s
Time = 683
smoothSolver: Solving for Ux, Initial residual = 0.000958735, Final residual = 5.03392e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289405, Final residual = 0.000152638, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0265884, Final residual = 0.000114924, No Iterations 4
time step continuity errors : sum local = 0.000598636, global = -2.43567e-05, cumulative = -0.295607
smoothSolver: Solving for omega, Initial residual = 0.000440742, Final residual = 3.81054e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00196982, Final residual = 0.000114868, No Iterations 4
ExecutionTime = 99.65 s ClockTime = 101 s
Time = 684
smoothSolver: Solving for Ux, Initial residual = 0.000958185, Final residual = 5.03001e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289447, Final residual = 0.000152505, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0265297, Final residual = 0.000113959, No Iterations 4
time step continuity errors : sum local = 0.00059348, global = -2.52809e-05, cumulative = -0.295633
smoothSolver: Solving for omega, Initial residual = 0.000440653, Final residual = 3.80936e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00196922, Final residual = 0.000114871, No Iterations 4
ExecutionTime = 99.78 s ClockTime = 101 s
Time = 685
smoothSolver: Solving for Ux, Initial residual = 0.000957643, Final residual = 5.02623e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028949, Final residual = 0.000152372, No Iterations 4
GAMG: Solving for p, Initial residual = 0.026431, Final residual = 0.000112886, No Iterations 4
time step continuity errors : sum local = 0.000587714, global = -2.64326e-05, cumulative = -0.295659
smoothSolver: Solving for omega, Initial residual = 0.00044054, Final residual = 3.80812e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00196861, Final residual = 0.000114868, No Iterations 4
ExecutionTime = 99.92 s ClockTime = 101 s
Time = 686
smoothSolver: Solving for Ux, Initial residual = 0.000957074, Final residual = 5.02254e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289528, Final residual = 0.000152237, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0263358, Final residual = 0.000111938, No Iterations 4
time step continuity errors : sum local = 0.000582543, global = -2.75734e-05, cumulative = -0.295687
smoothSolver: Solving for omega, Initial residual = 0.000440356, Final residual = 3.80685e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00196789, Final residual = 0.000114862, No Iterations 4
ExecutionTime = 100.05 s ClockTime = 101 s
Time = 687
smoothSolver: Solving for Ux, Initial residual = 0.000956537, Final residual = 5.01892e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289559, Final residual = 0.000152104, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0263186, Final residual = 0.000111146, No Iterations 4
time step continuity errors : sum local = 0.000578268, global = -2.85063e-05, cumulative = -0.295715
smoothSolver: Solving for omega, Initial residual = 0.000440188, Final residual = 3.80605e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00196707, Final residual = 0.00011485, No Iterations 4
ExecutionTime = 100.18 s ClockTime = 101 s
Time = 688
smoothSolver: Solving for Ux, Initial residual = 0.000956004, Final residual = 5.01533e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289592, Final residual = 0.000151966, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0263001, Final residual = 0.000110596, No Iterations 4
time step continuity errors : sum local = 0.000575256, global = -2.92608e-05, cumulative = -0.295744
smoothSolver: Solving for omega, Initial residual = 0.000440034, Final residual = 3.80491e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00196618, Final residual = 0.000114833, No Iterations 4
ExecutionTime = 100.32 s ClockTime = 101 s
Time = 689
smoothSolver: Solving for Ux, Initial residual = 0.000955479, Final residual = 5.01177e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028962, Final residual = 0.000151825, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0263353, Final residual = 0.000110185, No Iterations 4
time step continuity errors : sum local = 0.000573011, global = -2.97608e-05, cumulative = -0.295774
smoothSolver: Solving for omega, Initial residual = 0.00043991, Final residual = 3.80345e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00196529, Final residual = 0.000114812, No Iterations 4
ExecutionTime = 100.45 s ClockTime = 102 s
Time = 690
smoothSolver: Solving for Ux, Initial residual = 0.000954926, Final residual = 5.00829e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289648, Final residual = 0.000151685, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0262443, Final residual = 0.000109578, No Iterations 4
time step continuity errors : sum local = 0.000569745, global = -3.06097e-05, cumulative = -0.295805
smoothSolver: Solving for omega, Initial residual = 0.000439754, Final residual = 3.80186e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00196434, Final residual = 0.000114786, No Iterations 4
ExecutionTime = 100.59 s ClockTime = 102 s
Time = 691
smoothSolver: Solving for Ux, Initial residual = 0.000954382, Final residual = 5.00493e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289669, Final residual = 0.000151542, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0261332, Final residual = 0.000109012, No Iterations 4
time step continuity errors : sum local = 0.000566581, global = -3.15828e-05, cumulative = -0.295836
smoothSolver: Solving for omega, Initial residual = 0.000439588, Final residual = 3.80052e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00196337, Final residual = 0.000114756, No Iterations 4
ExecutionTime = 100.75 s ClockTime = 102 s
Time = 692
smoothSolver: Solving for Ux, Initial residual = 0.000953848, Final residual = 5.00159e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289689, Final residual = 0.000151398, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0260187, Final residual = 0.000108464, No Iterations 4
time step continuity errors : sum local = 0.000563473, global = -3.2334e-05, cumulative = -0.295869
smoothSolver: Solving for omega, Initial residual = 0.000439383, Final residual = 3.7993e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00196235, Final residual = 0.000114721, No Iterations 4
ExecutionTime = 100.88 s ClockTime = 102 s
Time = 693
smoothSolver: Solving for Ux, Initial residual = 0.00095331, Final residual = 4.99829e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.002897, Final residual = 0.000151251, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0259617, Final residual = 0.000108681, No Iterations 4
time step continuity errors : sum local = 0.000564462, global = -3.35261e-05, cumulative = -0.295902
smoothSolver: Solving for omega, Initial residual = 0.000439151, Final residual = 3.79806e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0019613, Final residual = 0.000114681, No Iterations 4
ExecutionTime = 101.01 s ClockTime = 102 s
Time = 694
smoothSolver: Solving for Ux, Initial residual = 0.000952771, Final residual = 4.99499e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289707, Final residual = 0.000151106, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0259328, Final residual = 0.000108236, No Iterations 4
time step continuity errors : sum local = 0.000562004, global = -3.40973e-05, cumulative = -0.295936
smoothSolver: Solving for omega, Initial residual = 0.000438945, Final residual = 3.79657e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00196013, Final residual = 0.000114636, No Iterations 4
ExecutionTime = 101.14 s ClockTime = 102 s
Time = 695
smoothSolver: Solving for Ux, Initial residual = 0.000952217, Final residual = 4.99183e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289715, Final residual = 0.000150955, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0259684, Final residual = 0.000107915, No Iterations 4
time step continuity errors : sum local = 0.000560226, global = -3.44878e-05, cumulative = -0.295971
smoothSolver: Solving for omega, Initial residual = 0.000438776, Final residual = 3.79492e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00195891, Final residual = 0.000114588, No Iterations 4
ExecutionTime = 101.28 s ClockTime = 102 s
Time = 696
smoothSolver: Solving for Ux, Initial residual = 0.000951656, Final residual = 4.9887e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289726, Final residual = 0.000150808, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0259134, Final residual = 0.000107544, No Iterations 4
time step continuity errors : sum local = 0.000558262, global = -3.53233e-05, cumulative = -0.296006
smoothSolver: Solving for omega, Initial residual = 0.000438576, Final residual = 3.79299e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00195765, Final residual = 0.000114535, No Iterations 4
ExecutionTime = 101.41 s ClockTime = 103 s
Time = 697
smoothSolver: Solving for Ux, Initial residual = 0.00095112, Final residual = 4.98555e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289728, Final residual = 0.00015066, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0257801, Final residual = 0.000107181, No Iterations 4
time step continuity errors : sum local = 0.000556186, global = -3.65923e-05, cumulative = -0.296043
smoothSolver: Solving for omega, Initial residual = 0.00043834, Final residual = 3.79149e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00195637, Final residual = 0.000114477, No Iterations 4
ExecutionTime = 101.54 s ClockTime = 103 s
Time = 698
smoothSolver: Solving for Ux, Initial residual = 0.000950574, Final residual = 4.98244e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289722, Final residual = 0.000150508, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0257083, Final residual = 0.000106754, No Iterations 4
time step continuity errors : sum local = 0.000553696, global = -3.77433e-05, cumulative = -0.29608
smoothSolver: Solving for omega, Initial residual = 0.000438022, Final residual = 3.78958e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00195501, Final residual = 0.000114414, No Iterations 4
ExecutionTime = 101.68 s ClockTime = 103 s
Time = 699
smoothSolver: Solving for Ux, Initial residual = 0.000950017, Final residual = 4.97938e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289711, Final residual = 0.000150351, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0256599, Final residual = 0.000106319, No Iterations 4
time step continuity errors : sum local = 0.00055124, global = -3.85601e-05, cumulative = -0.296119
smoothSolver: Solving for omega, Initial residual = 0.000437728, Final residual = 3.78792e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00195356, Final residual = 0.000114346, No Iterations 4
ExecutionTime = 101.82 s ClockTime = 103 s
Time = 700
smoothSolver: Solving for Ux, Initial residual = 0.000949458, Final residual = 4.97647e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289698, Final residual = 0.000150195, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0255476, Final residual = 0.000106008, No Iterations 4
time step continuity errors : sum local = 0.000549388, global = -3.92244e-05, cumulative = -0.296158
smoothSolver: Solving for omega, Initial residual = 0.000437469, Final residual = 3.78612e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00195205, Final residual = 0.000114274, No Iterations 4
ExecutionTime = 102.17 s ClockTime = 103 s
Time = 701
smoothSolver: Solving for Ux, Initial residual = 0.000948889, Final residual = 4.97354e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289682, Final residual = 0.000150038, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0255395, Final residual = 0.000105811, No Iterations 4
time step continuity errors : sum local = 0.000548204, global = -3.94475e-05, cumulative = -0.296198
smoothSolver: Solving for omega, Initial residual = 0.000437252, Final residual = 3.78422e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00195054, Final residual = 0.000114198, No Iterations 4
ExecutionTime = 102.3 s ClockTime = 103 s
Time = 702
smoothSolver: Solving for Ux, Initial residual = 0.000948319, Final residual = 4.97053e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289664, Final residual = 0.000149884, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0254676, Final residual = 0.000105668, No Iterations 4
time step continuity errors : sum local = 0.000547392, global = -3.96499e-05, cumulative = -0.296237
smoothSolver: Solving for omega, Initial residual = 0.000437017, Final residual = 3.78251e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00194898, Final residual = 0.000114119, No Iterations 4
ExecutionTime = 102.44 s ClockTime = 104 s
Time = 703
smoothSolver: Solving for Ux, Initial residual = 0.00094775, Final residual = 4.96761e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028964, Final residual = 0.000149732, No Iterations 4
GAMG: Solving for p, Initial residual = 0.025342, Final residual = 0.000105528, No Iterations 4
time step continuity errors : sum local = 0.000546561, global = -4.06883e-05, cumulative = -0.296278
smoothSolver: Solving for omega, Initial residual = 0.000436694, Final residual = 3.78017e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00194738, Final residual = 0.000114032, No Iterations 4
ExecutionTime = 102.58 s ClockTime = 104 s
Time = 704
smoothSolver: Solving for Ux, Initial residual = 0.000947194, Final residual = 4.96476e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289612, Final residual = 0.000149572, No Iterations 4
GAMG: Solving for p, Initial residual = 0.025277, Final residual = 0.000105129, No Iterations 4
time step continuity errors : sum local = 0.000544315, global = -4.18537e-05, cumulative = -0.29632
smoothSolver: Solving for omega, Initial residual = 0.000436309, Final residual = 3.77766e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00194571, Final residual = 0.000113943, No Iterations 4
ExecutionTime = 102.71 s ClockTime = 104 s
Time = 705
smoothSolver: Solving for Ux, Initial residual = 0.000946617, Final residual = 4.96203e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289579, Final residual = 0.000149407, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0253018, Final residual = 0.000104433, No Iterations 4
time step continuity errors : sum local = 0.000540548, global = -4.28061e-05, cumulative = -0.296363
smoothSolver: Solving for omega, Initial residual = 0.000435922, Final residual = 3.77537e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00194395, Final residual = 0.000113849, No Iterations 4
ExecutionTime = 102.85 s ClockTime = 104 s
Time = 706
smoothSolver: Solving for Ux, Initial residual = 0.000946027, Final residual = 4.9593e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289542, Final residual = 0.000149247, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0252206, Final residual = 0.000103826, No Iterations 4
time step continuity errors : sum local = 0.000537114, global = -4.39297e-05, cumulative = -0.296407
smoothSolver: Solving for omega, Initial residual = 0.000435587, Final residual = 3.77289e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00194213, Final residual = 0.000113754, No Iterations 4
ExecutionTime = 102.99 s ClockTime = 104 s
Time = 707
smoothSolver: Solving for Ux, Initial residual = 0.000945444, Final residual = 4.95648e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289502, Final residual = 0.000149086, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0251635, Final residual = 0.000103129, No Iterations 4
time step continuity errors : sum local = 0.000533307, global = -4.46698e-05, cumulative = -0.296451
smoothSolver: Solving for omega, Initial residual = 0.0004353, Final residual = 3.77082e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00194032, Final residual = 0.000113654, No Iterations 4
ExecutionTime = 103.12 s ClockTime = 104 s
Time = 708
smoothSolver: Solving for Ux, Initial residual = 0.000944852, Final residual = 4.95356e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289459, Final residual = 0.000148927, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0251195, Final residual = 0.00010256, No Iterations 4
time step continuity errors : sum local = 0.000530223, global = -4.503e-05, cumulative = -0.296496
smoothSolver: Solving for omega, Initial residual = 0.000434991, Final residual = 3.76844e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0019384, Final residual = 0.000113548, No Iterations 4
ExecutionTime = 103.26 s ClockTime = 104 s
Time = 709
smoothSolver: Solving for Ux, Initial residual = 0.000944252, Final residual = 4.95073e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289416, Final residual = 0.00014877, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0249589, Final residual = 0.000101844, No Iterations 4
time step continuity errors : sum local = 0.00052633, global = -4.5921e-05, cumulative = -0.296542
smoothSolver: Solving for omega, Initial residual = 0.000434618, Final residual = 3.76559e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00193644, Final residual = 0.000113439, No Iterations 4
ExecutionTime = 103.39 s ClockTime = 105 s
Time = 710
smoothSolver: Solving for Ux, Initial residual = 0.000943652, Final residual = 4.94796e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289361, Final residual = 0.000148608, No Iterations 4
GAMG: Solving for p, Initial residual = 0.024838, Final residual = 0.000101063, No Iterations 4
time step continuity errors : sum local = 0.00052218, global = -4.68931e-05, cumulative = -0.296589
smoothSolver: Solving for omega, Initial residual = 0.000434162, Final residual = 3.76269e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00193449, Final residual = 0.000113328, No Iterations 4
ExecutionTime = 103.53 s ClockTime = 105 s
Time = 711
smoothSolver: Solving for Ux, Initial residual = 0.000943032, Final residual = 4.94517e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289299, Final residual = 0.00014844, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0248321, Final residual = 0.000246968, No Iterations 3
time step continuity errors : sum local = 0.00127563, global = 7.36154e-05, cumulative = -0.296516
smoothSolver: Solving for omega, Initial residual = 0.000433697, Final residual = 3.75959e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00193245, Final residual = 0.00011321, No Iterations 4
ExecutionTime = 103.66 s ClockTime = 105 s
Time = 712
smoothSolver: Solving for Ux, Initial residual = 0.000942621, Final residual = 4.9425e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289226, Final residual = 0.000148273, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0247869, Final residual = 0.000102383, No Iterations 4
time step continuity errors : sum local = 0.000528492, global = -4.47148e-05, cumulative = -0.29656
smoothSolver: Solving for omega, Initial residual = 0.000433376, Final residual = 3.7573e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00193034, Final residual = 0.00011309, No Iterations 4
ExecutionTime = 103.8 s ClockTime = 105 s
Time = 713
smoothSolver: Solving for Ux, Initial residual = 0.000941738, Final residual = 4.93947e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289169, Final residual = 0.000148102, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0246137, Final residual = 0.000242175, No Iterations 3
time step continuity errors : sum local = 0.00124973, global = 6.97085e-05, cumulative = -0.296491
smoothSolver: Solving for omega, Initial residual = 0.000432912, Final residual = 3.75426e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00192812, Final residual = 0.000112965, No Iterations 4
ExecutionTime = 103.92 s ClockTime = 105 s
Time = 714
smoothSolver: Solving for Ux, Initial residual = 0.000941183, Final residual = 4.93654e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289095, Final residual = 0.00014794, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0245628, Final residual = 0.000241718, No Iterations 3
time step continuity errors : sum local = 0.00124681, global = 6.98224e-05, cumulative = -0.296421
smoothSolver: Solving for omega, Initial residual = 0.000432498, Final residual = 3.75106e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00192595, Final residual = 0.000112839, No Iterations 4
ExecutionTime = 104.04 s ClockTime = 105 s
Time = 715
smoothSolver: Solving for Ux, Initial residual = 0.000940558, Final residual = 4.93366e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289026, Final residual = 0.000147779, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0244737, Final residual = 0.0002436, No Iterations 3
time step continuity errors : sum local = 0.00125609, global = 6.49461e-05, cumulative = -0.296356
smoothSolver: Solving for omega, Initial residual = 0.000432041, Final residual = 3.74781e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00192373, Final residual = 0.000112709, No Iterations 4
ExecutionTime = 104.17 s ClockTime = 105 s
Time = 716
smoothSolver: Solving for Ux, Initial residual = 0.000939876, Final residual = 4.93089e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288953, Final residual = 0.000147616, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0243625, Final residual = 0.000242286, No Iterations 3
time step continuity errors : sum local = 0.00124895, global = 5.99594e-05, cumulative = -0.296296
smoothSolver: Solving for omega, Initial residual = 0.000431548, Final residual = 3.74448e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00192149, Final residual = 0.000112575, No Iterations 4
ExecutionTime = 104.3 s ClockTime = 105 s
Time = 717
smoothSolver: Solving for Ux, Initial residual = 0.000939174, Final residual = 4.92822e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288876, Final residual = 0.000147452, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0243106, Final residual = 0.000237388, No Iterations 3
time step continuity errors : sum local = 0.00122336, global = 6.00726e-05, cumulative = -0.296236
smoothSolver: Solving for omega, Initial residual = 0.000431042, Final residual = 3.7414e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00191915, Final residual = 0.00011244, No Iterations 4
ExecutionTime = 104.42 s ClockTime = 106 s
Time = 718
smoothSolver: Solving for Ux, Initial residual = 0.000938497, Final residual = 4.92556e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288793, Final residual = 0.00014729, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0242837, Final residual = 0.000233691, No Iterations 3
time step continuity errors : sum local = 0.00120389, global = 6.20599e-05, cumulative = -0.296174
smoothSolver: Solving for omega, Initial residual = 0.00043056, Final residual = 3.7382e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00191676, Final residual = 0.000112299, No Iterations 4
ExecutionTime = 104.55 s ClockTime = 106 s
Time = 719
smoothSolver: Solving for Ux, Initial residual = 0.000937847, Final residual = 4.92282e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288711, Final residual = 0.000147129, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0241935, Final residual = 0.000232453, No Iterations 3
time step continuity errors : sum local = 0.00119682, global = 6.37784e-05, cumulative = -0.29611
smoothSolver: Solving for omega, Initial residual = 0.000430094, Final residual = 3.73474e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00191436, Final residual = 0.000112156, No Iterations 4
ExecutionTime = 104.68 s ClockTime = 106 s
Time = 720
smoothSolver: Solving for Ux, Initial residual = 0.000937192, Final residual = 4.91995e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288623, Final residual = 0.000146965, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0241236, Final residual = 0.000232299, No Iterations 3
time step continuity errors : sum local = 0.00119527, global = 6.45645e-05, cumulative = -0.296045
smoothSolver: Solving for omega, Initial residual = 0.000429591, Final residual = 3.73095e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00191189, Final residual = 0.000112011, No Iterations 4
ExecutionTime = 104.81 s ClockTime = 106 s
Time = 721
smoothSolver: Solving for Ux, Initial residual = 0.000936502, Final residual = 4.91701e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288518, Final residual = 0.000146797, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0240006, Final residual = 0.000231923, No Iterations 3
time step continuity errors : sum local = 0.00119269, global = 6.40745e-05, cumulative = -0.295981
smoothSolver: Solving for omega, Initial residual = 0.00042904, Final residual = 3.72697e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0019094, Final residual = 0.000111864, No Iterations 4
ExecutionTime = 104.94 s ClockTime = 106 s
Time = 722
smoothSolver: Solving for Ux, Initial residual = 0.000935798, Final residual = 4.91411e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288415, Final residual = 0.00014663, No Iterations 4
GAMG: Solving for p, Initial residual = 0.023841, Final residual = 0.000230195, No Iterations 3
time step continuity errors : sum local = 0.0011832, global = 6.3743e-05, cumulative = -0.295918
smoothSolver: Solving for omega, Initial residual = 0.000428492, Final residual = 3.72344e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00190687, Final residual = 0.000111714, No Iterations 4
ExecutionTime = 105.07 s ClockTime = 106 s
Time = 723
smoothSolver: Solving for Ux, Initial residual = 0.000935083, Final residual = 4.91133e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028832, Final residual = 0.000146469, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0237053, Final residual = 0.000227042, No Iterations 3
time step continuity errors : sum local = 0.00116653, global = 6.32591e-05, cumulative = -0.295854
smoothSolver: Solving for omega, Initial residual = 0.000427908, Final residual = 3.71952e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00190434, Final residual = 0.00011156, No Iterations 4
ExecutionTime = 105.2 s ClockTime = 106 s
Time = 724
smoothSolver: Solving for Ux, Initial residual = 0.000934361, Final residual = 4.90866e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288217, Final residual = 0.00014631, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0236849, Final residual = 0.000224421, No Iterations 3
time step continuity errors : sum local = 0.00115256, global = 6.24352e-05, cumulative = -0.295792
smoothSolver: Solving for omega, Initial residual = 0.000427327, Final residual = 3.71513e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00190176, Final residual = 0.000111407, No Iterations 4
ExecutionTime = 105.33 s ClockTime = 107 s
Time = 725
smoothSolver: Solving for Ux, Initial residual = 0.000933644, Final residual = 4.90599e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288108, Final residual = 0.00014615, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0236214, Final residual = 0.000223106, No Iterations 3
time step continuity errors : sum local = 0.00114537, global = 6.1153e-05, cumulative = -0.295731
smoothSolver: Solving for omega, Initial residual = 0.00042674, Final residual = 3.71084e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00189908, Final residual = 0.000111251, No Iterations 4
ExecutionTime = 105.46 s ClockTime = 107 s
Time = 726
smoothSolver: Solving for Ux, Initial residual = 0.000932949, Final residual = 4.90327e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287992, Final residual = 0.000145989, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0234868, Final residual = 0.000222585, No Iterations 3
time step continuity errors : sum local = 0.00114202, global = 5.97193e-05, cumulative = -0.295671
smoothSolver: Solving for omega, Initial residual = 0.000426176, Final residual = 3.70661e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00189638, Final residual = 0.000111092, No Iterations 4
ExecutionTime = 105.59 s ClockTime = 107 s
Time = 727
smoothSolver: Solving for Ux, Initial residual = 0.000932246, Final residual = 4.90051e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287881, Final residual = 0.000145826, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0233973, Final residual = 0.000221884, No Iterations 3
time step continuity errors : sum local = 0.00113782, global = 5.88842e-05, cumulative = -0.295612
smoothSolver: Solving for omega, Initial residual = 0.00042561, Final residual = 3.70239e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00189369, Final residual = 0.00011093, No Iterations 4
ExecutionTime = 105.72 s ClockTime = 107 s
Time = 728
smoothSolver: Solving for Ux, Initial residual = 0.000931522, Final residual = 4.89779e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287764, Final residual = 0.000145667, No Iterations 4
GAMG: Solving for p, Initial residual = 0.023297, Final residual = 0.000220763, No Iterations 3
time step continuity errors : sum local = 0.0011315, global = 5.88246e-05, cumulative = -0.295553
smoothSolver: Solving for omega, Initial residual = 0.000424987, Final residual = 3.69804e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00189092, Final residual = 0.000110766, No Iterations 4
ExecutionTime = 105.85 s ClockTime = 107 s
Time = 729
smoothSolver: Solving for Ux, Initial residual = 0.000930801, Final residual = 4.89512e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287642, Final residual = 0.000145507, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0232535, Final residual = 0.000219348, No Iterations 3
time step continuity errors : sum local = 0.0011236, global = 5.93057e-05, cumulative = -0.295494
smoothSolver: Solving for omega, Initial residual = 0.000424327, Final residual = 3.69348e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00188812, Final residual = 0.000110601, No Iterations 4
ExecutionTime = 105.98 s ClockTime = 107 s
Time = 730
smoothSolver: Solving for Ux, Initial residual = 0.000930063, Final residual = 4.89253e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287523, Final residual = 0.000145353, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0231407, Final residual = 0.00021738, No Iterations 3
time step continuity errors : sum local = 0.00111294, global = 5.94128e-05, cumulative = -0.295435
smoothSolver: Solving for omega, Initial residual = 0.000423652, Final residual = 3.68871e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00188537, Final residual = 0.000110434, No Iterations 4
ExecutionTime = 106.11 s ClockTime = 107 s
Time = 731
smoothSolver: Solving for Ux, Initial residual = 0.000929325, Final residual = 4.88991e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287399, Final residual = 0.000145197, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0230777, Final residual = 0.000215304, No Iterations 3
time step continuity errors : sum local = 0.00110181, global = 5.93115e-05, cumulative = -0.295375
smoothSolver: Solving for omega, Initial residual = 0.000422991, Final residual = 3.6835e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0018826, Final residual = 0.000110268, No Iterations 4
ExecutionTime = 106.23 s ClockTime = 107 s
Time = 732
smoothSolver: Solving for Ux, Initial residual = 0.00092859, Final residual = 4.88732e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287263, Final residual = 0.000145037, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0229816, Final residual = 0.000213281, No Iterations 3
time step continuity errors : sum local = 0.00109094, global = 5.91294e-05, cumulative = -0.295316
smoothSolver: Solving for omega, Initial residual = 0.000422331, Final residual = 3.67856e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00187979, Final residual = 0.000110103, No Iterations 4
ExecutionTime = 106.37 s ClockTime = 108 s
Time = 733
smoothSolver: Solving for Ux, Initial residual = 0.00092785, Final residual = 4.88479e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287125, Final residual = 0.000144882, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0228603, Final residual = 0.000211367, No Iterations 3
time step continuity errors : sum local = 0.00108054, global = 5.85221e-05, cumulative = -0.295258
smoothSolver: Solving for omega, Initial residual = 0.000421663, Final residual = 3.67356e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00187692, Final residual = 0.000109935, No Iterations 4
ExecutionTime = 106.5 s ClockTime = 108 s
Time = 734
smoothSolver: Solving for Ux, Initial residual = 0.000927094, Final residual = 4.88218e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00286995, Final residual = 0.000144731, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0227568, Final residual = 0.00020958, No Iterations 3
time step continuity errors : sum local = 0.0010706, global = 5.75422e-05, cumulative = -0.2952
smoothSolver: Solving for omega, Initial residual = 0.000420959, Final residual = 3.66833e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00187404, Final residual = 0.000109767, No Iterations 4
ExecutionTime = 106.63 s ClockTime = 108 s
Time = 735
smoothSolver: Solving for Ux, Initial residual = 0.00092634, Final residual = 4.87949e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00286865, Final residual = 0.000144578, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0226527, Final residual = 0.000208233, No Iterations 3
time step continuity errors : sum local = 0.00106299, global = 5.61531e-05, cumulative = -0.295144
smoothSolver: Solving for omega, Initial residual = 0.000420214, Final residual = 3.66299e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0018712, Final residual = 0.000109599, No Iterations 4
ExecutionTime = 106.77 s ClockTime = 108 s
Time = 736
smoothSolver: Solving for Ux, Initial residual = 0.000925588, Final residual = 4.87693e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00286719, Final residual = 0.000144426, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0225594, Final residual = 0.000206777, No Iterations 3
time step continuity errors : sum local = 0.00105493, global = 5.66164e-05, cumulative = -0.295087
smoothSolver: Solving for omega, Initial residual = 0.000419473, Final residual = 3.65778e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00186829, Final residual = 0.000109431, No Iterations 4
ExecutionTime = 106.9 s ClockTime = 108 s
Time = 737
smoothSolver: Solving for Ux, Initial residual = 0.000924807, Final residual = 4.87445e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00286572, Final residual = 0.000144275, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0224695, Final residual = 0.000205285, No Iterations 3
time step continuity errors : sum local = 0.0010467, global = 5.74085e-05, cumulative = -0.29503
smoothSolver: Solving for omega, Initial residual = 0.000418769, Final residual = 3.65281e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00186546, Final residual = 0.00010926, No Iterations 4
ExecutionTime = 107.04 s ClockTime = 108 s
Time = 738
smoothSolver: Solving for Ux, Initial residual = 0.000924015, Final residual = 4.87187e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00286429, Final residual = 0.000144128, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0224093, Final residual = 0.000203041, No Iterations 3
time step continuity errors : sum local = 0.00103469, global = 5.74905e-05, cumulative = -0.294972
smoothSolver: Solving for omega, Initial residual = 0.00041804, Final residual = 3.64718e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00186263, Final residual = 0.00010909, No Iterations 4
ExecutionTime = 107.17 s ClockTime = 108 s
Time = 739
smoothSolver: Solving for Ux, Initial residual = 0.000923237, Final residual = 4.86932e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00286279, Final residual = 0.000143981, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0223512, Final residual = 0.000200502, No Iterations 3
time step continuity errors : sum local = 0.00102121, global = 5.75918e-05, cumulative = -0.294915
smoothSolver: Solving for omega, Initial residual = 0.000417287, Final residual = 3.64128e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00185972, Final residual = 0.000108922, No Iterations 4
ExecutionTime = 107.3 s ClockTime = 108 s
Time = 740
smoothSolver: Solving for Ux, Initial residual = 0.000922443, Final residual = 4.86679e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00286122, Final residual = 0.000143834, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0222578, Final residual = 0.000198109, No Iterations 3
time step continuity errors : sum local = 0.00100851, global = 5.75923e-05, cumulative = -0.294857
smoothSolver: Solving for omega, Initial residual = 0.000416502, Final residual = 3.63532e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00185683, Final residual = 0.000108754, No Iterations 4
ExecutionTime = 107.43 s ClockTime = 109 s
Time = 741
smoothSolver: Solving for Ux, Initial residual = 0.000921644, Final residual = 4.86424e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00285968, Final residual = 0.000143689, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0221683, Final residual = 0.000196292, No Iterations 3
time step continuity errors : sum local = 0.00099863, global = 5.69997e-05, cumulative = -0.2948
smoothSolver: Solving for omega, Initial residual = 0.000415716, Final residual = 3.62938e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00185394, Final residual = 0.000108584, No Iterations 4
ExecutionTime = 107.55 s ClockTime = 109 s
Time = 742
smoothSolver: Solving for Ux, Initial residual = 0.000920834, Final residual = 4.8617e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00285814, Final residual = 0.000143546, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0220654, Final residual = 0.000194914, No Iterations 3
time step continuity errors : sum local = 0.000990904, global = 5.60976e-05, cumulative = -0.294744
smoothSolver: Solving for omega, Initial residual = 0.000414946, Final residual = 3.62386e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00185105, Final residual = 0.000108414, No Iterations 4
ExecutionTime = 107.69 s ClockTime = 109 s
Time = 743
smoothSolver: Solving for Ux, Initial residual = 0.000920031, Final residual = 4.85925e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00285656, Final residual = 0.000143405, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0219594, Final residual = 0.000193703, No Iterations 3
time step continuity errors : sum local = 0.000984048, global = 5.51657e-05, cumulative = -0.294689
smoothSolver: Solving for omega, Initial residual = 0.000414154, Final residual = 3.61801e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00184815, Final residual = 0.000108244, No Iterations 4
ExecutionTime = 107.82 s ClockTime = 109 s
Time = 744
smoothSolver: Solving for Ux, Initial residual = 0.00091921, Final residual = 4.85682e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00285493, Final residual = 0.000143264, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0218844, Final residual = 0.000192481, No Iterations 3
time step continuity errors : sum local = 0.000977241, global = 5.47461e-05, cumulative = -0.294634
smoothSolver: Solving for omega, Initial residual = 0.000413323, Final residual = 3.61182e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00184526, Final residual = 0.000108073, No Iterations 4
ExecutionTime = 107.96 s ClockTime = 109 s
Time = 745
smoothSolver: Solving for Ux, Initial residual = 0.000918378, Final residual = 4.85428e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00285329, Final residual = 0.000143126, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0217716, Final residual = 0.00019093, No Iterations 3
time step continuity errors : sum local = 0.00096878, global = 5.5273e-05, cumulative = -0.294579
smoothSolver: Solving for omega, Initial residual = 0.000412484, Final residual = 3.60559e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00184237, Final residual = 0.000107903, No Iterations 4
ExecutionTime = 108.09 s ClockTime = 109 s
Time = 746
smoothSolver: Solving for Ux, Initial residual = 0.00091754, Final residual = 4.85173e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00285161, Final residual = 0.000142991, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0216935, Final residual = 0.000188508, No Iterations 3
time step continuity errors : sum local = 0.000955923, global = 5.6214e-05, cumulative = -0.294523
smoothSolver: Solving for omega, Initial residual = 0.000411653, Final residual = 3.5991e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00183951, Final residual = 0.000107735, No Iterations 4
ExecutionTime = 108.22 s ClockTime = 109 s
Time = 747
smoothSolver: Solving for Ux, Initial residual = 0.000916714, Final residual = 4.84938e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00284988, Final residual = 0.000142857, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0216347, Final residual = 0.000185963, No Iterations 3
time step continuity errors : sum local = 0.000942462, global = 5.74927e-05, cumulative = -0.294465
smoothSolver: Solving for omega, Initial residual = 0.000410838, Final residual = 3.59314e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00183662, Final residual = 0.000107571, No Iterations 4
ExecutionTime = 108.35 s ClockTime = 110 s
Time = 748
smoothSolver: Solving for Ux, Initial residual = 0.000915873, Final residual = 4.84702e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00284821, Final residual = 0.000142727, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0214978, Final residual = 0.000183685, No Iterations 3
time step continuity errors : sum local = 0.000930284, global = 5.88543e-05, cumulative = -0.294406
smoothSolver: Solving for omega, Initial residual = 0.00040999, Final residual = 3.58695e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00183372, Final residual = 0.000107406, No Iterations 4
ExecutionTime = 108.48 s ClockTime = 110 s
Time = 749
smoothSolver: Solving for Ux, Initial residual = 0.000915017, Final residual = 4.84457e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00284649, Final residual = 0.000142597, No Iterations 4
GAMG: Solving for p, Initial residual = 0.021373, Final residual = 0.000181855, No Iterations 3
time step continuity errors : sum local = 0.000920377, global = 6.01843e-05, cumulative = -0.294346
smoothSolver: Solving for omega, Initial residual = 0.000409125, Final residual = 3.58024e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00183084, Final residual = 0.00010724, No Iterations 4
ExecutionTime = 108.61 s ClockTime = 110 s
Time = 750
smoothSolver: Solving for Ux, Initial residual = 0.000914178, Final residual = 4.84223e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00284469, Final residual = 0.000142467, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0212493, Final residual = 0.000180275, No Iterations 3
time step continuity errors : sum local = 0.000911684, global = 6.12319e-05, cumulative = -0.294285
smoothSolver: Solving for omega, Initial residual = 0.000408245, Final residual = 3.57363e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.001828, Final residual = 0.000107075, No Iterations 4
ExecutionTime = 108.95 s ClockTime = 110 s
Time = 751
smoothSolver: Solving for Ux, Initial residual = 0.000913331, Final residual = 4.83999e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028429, Final residual = 0.000142338, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0211629, Final residual = 0.000178863, No Iterations 3
time step continuity errors : sum local = 0.000903799, global = 6.19441e-05, cumulative = -0.294223
smoothSolver: Solving for omega, Initial residual = 0.000407351, Final residual = 3.56702e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00182516, Final residual = 0.000106911, No Iterations 4
ExecutionTime = 109.08 s ClockTime = 110 s
Time = 752
smoothSolver: Solving for Ux, Initial residual = 0.000912475, Final residual = 4.83771e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00284113, Final residual = 0.000142213, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0211033, Final residual = 0.000177494, No Iterations 3
time step continuity errors : sum local = 0.000896279, global = 6.27555e-05, cumulative = -0.29416
smoothSolver: Solving for omega, Initial residual = 0.000406493, Final residual = 3.56061e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00182233, Final residual = 0.000106748, No Iterations 4
ExecutionTime = 109.21 s ClockTime = 110 s
Time = 753
smoothSolver: Solving for Ux, Initial residual = 0.0009116, Final residual = 4.83535e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00283929, Final residual = 0.000142092, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0210159, Final residual = 0.000176207, No Iterations 3
time step continuity errors : sum local = 0.000889146, global = 6.37832e-05, cumulative = -0.294096
smoothSolver: Solving for omega, Initial residual = 0.000405596, Final residual = 3.55376e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00181951, Final residual = 0.000106584, No Iterations 4
ExecutionTime = 109.34 s ClockTime = 111 s
Time = 754
smoothSolver: Solving for Ux, Initial residual = 0.000910755, Final residual = 4.83317e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00283745, Final residual = 0.000141974, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0209689, Final residual = 0.000174939, No Iterations 3
time step continuity errors : sum local = 0.00088209, global = 6.47944e-05, cumulative = -0.294032
smoothSolver: Solving for omega, Initial residual = 0.000404688, Final residual = 3.54678e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00181674, Final residual = 0.000106423, No Iterations 4
ExecutionTime = 109.47 s ClockTime = 111 s
Time = 755
smoothSolver: Solving for Ux, Initial residual = 0.000909889, Final residual = 4.83098e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00283561, Final residual = 0.00014186, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0208959, Final residual = 0.000173683, No Iterations 3
time step continuity errors : sum local = 0.000875151, global = 6.59819e-05, cumulative = -0.293966
smoothSolver: Solving for omega, Initial residual = 0.000403759, Final residual = 3.5398e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00181393, Final residual = 0.000106262, No Iterations 4
ExecutionTime = 109.6 s ClockTime = 111 s
Time = 756
smoothSolver: Solving for Ux, Initial residual = 0.000909006, Final residual = 4.82874e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00283374, Final residual = 0.000141747, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0207951, Final residual = 0.000172582, No Iterations 3
time step continuity errors : sum local = 0.000868997, global = 6.73262e-05, cumulative = -0.293898
smoothSolver: Solving for omega, Initial residual = 0.000402843, Final residual = 3.53297e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00181111, Final residual = 0.000106102, No Iterations 4
ExecutionTime = 109.72 s ClockTime = 111 s
Time = 757
smoothSolver: Solving for Ux, Initial residual = 0.000908151, Final residual = 4.82654e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00283182, Final residual = 0.000141634, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0206809, Final residual = 0.000171609, No Iterations 3
time step continuity errors : sum local = 0.000863445, global = 6.85046e-05, cumulative = -0.29383
smoothSolver: Solving for omega, Initial residual = 0.000401935, Final residual = 3.52603e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00180834, Final residual = 0.000105943, No Iterations 4
ExecutionTime = 109.85 s ClockTime = 111 s
Time = 758
smoothSolver: Solving for Ux, Initial residual = 0.000907291, Final residual = 4.82449e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00282992, Final residual = 0.000141523, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0206095, Final residual = 0.000170695, No Iterations 3
time step continuity errors : sum local = 0.000858164, global = 6.94527e-05, cumulative = -0.29376
smoothSolver: Solving for omega, Initial residual = 0.000400995, Final residual = 3.51915e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00180559, Final residual = 0.000105785, No Iterations 4
ExecutionTime = 109.98 s ClockTime = 111 s
Time = 759
smoothSolver: Solving for Ux, Initial residual = 0.000906408, Final residual = 4.8224e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00282798, Final residual = 0.000141414, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0205364, Final residual = 0.000170431, No Iterations 3
time step continuity errors : sum local = 0.000856171, global = 6.86379e-05, cumulative = -0.293692
smoothSolver: Solving for omega, Initial residual = 0.000400035, Final residual = 3.51194e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00180283, Final residual = 0.000105628, No Iterations 4
ExecutionTime = 110.1 s ClockTime = 111 s
Time = 760
smoothSolver: Solving for Ux, Initial residual = 0.000905526, Final residual = 4.82024e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00282599, Final residual = 0.000141307, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204737, Final residual = 0.000169836, No Iterations 3
time step continuity errors : sum local = 0.000852473, global = 7.0825e-05, cumulative = -0.293621
smoothSolver: Solving for omega, Initial residual = 0.000399051, Final residual = 3.5047e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00180005, Final residual = 0.00010547, No Iterations 4
ExecutionTime = 110.23 s ClockTime = 111 s
Time = 761
smoothSolver: Solving for Ux, Initial residual = 0.000904666, Final residual = 4.81814e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00282405, Final residual = 0.000141202, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0203797, Final residual = 0.00016932, No Iterations 3
time step continuity errors : sum local = 0.00084922, global = 7.22706e-05, cumulative = -0.293549
smoothSolver: Solving for omega, Initial residual = 0.000398114, Final residual = 3.49769e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0017973, Final residual = 0.000105311, No Iterations 4
ExecutionTime = 110.35 s ClockTime = 112 s
Time = 762
smoothSolver: Solving for Ux, Initial residual = 0.000903786, Final residual = 4.81617e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00282208, Final residual = 0.000141105, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0203202, Final residual = 0.000168937, No Iterations 3
time step continuity errors : sum local = 0.000846618, global = 7.28004e-05, cumulative = -0.293476
smoothSolver: Solving for omega, Initial residual = 0.000397166, Final residual = 3.4907e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00179458, Final residual = 0.000105157, No Iterations 4
ExecutionTime = 110.48 s ClockTime = 112 s
Time = 763
smoothSolver: Solving for Ux, Initial residual = 0.000902894, Final residual = 4.81413e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028201, Final residual = 0.000141014, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0203192, Final residual = 0.000168495, No Iterations 3
time step continuity errors : sum local = 0.000843697, global = 7.29823e-05, cumulative = -0.293403
smoothSolver: Solving for omega, Initial residual = 0.000396199, Final residual = 3.4834e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00179185, Final residual = 0.000105003, No Iterations 4
ExecutionTime = 110.6 s ClockTime = 112 s
Time = 764
smoothSolver: Solving for Ux, Initial residual = 0.00090199, Final residual = 4.81196e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00281806, Final residual = 0.000140922, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0202988, Final residual = 0.000167787, No Iterations 3
time step continuity errors : sum local = 0.000839578, global = 7.27159e-05, cumulative = -0.29333
smoothSolver: Solving for omega, Initial residual = 0.000395195, Final residual = 3.476e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00178914, Final residual = 0.000104851, No Iterations 4
ExecutionTime = 110.74 s ClockTime = 112 s
Time = 765
smoothSolver: Solving for Ux, Initial residual = 0.000901121, Final residual = 4.80997e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00281603, Final residual = 0.00014083, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0201795, Final residual = 0.000166869, No Iterations 3
time step continuity errors : sum local = 0.000834352, global = 7.15924e-05, cumulative = -0.293259
smoothSolver: Solving for omega, Initial residual = 0.0003942, Final residual = 3.46843e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00178642, Final residual = 0.000104698, No Iterations 4
ExecutionTime = 110.87 s ClockTime = 112 s
Time = 766
smoothSolver: Solving for Ux, Initial residual = 0.000900243, Final residual = 4.80813e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00281397, Final residual = 0.000140736, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0200792, Final residual = 0.000165891, No Iterations 3
time step continuity errors : sum local = 0.000828775, global = 7.03789e-05, cumulative = -0.293188
smoothSolver: Solving for omega, Initial residual = 0.000393233, Final residual = 3.46132e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00178373, Final residual = 0.000104546, No Iterations 4
ExecutionTime = 111 s ClockTime = 112 s
Time = 767
smoothSolver: Solving for Ux, Initial residual = 0.000899332, Final residual = 4.8062e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00281189, Final residual = 0.000140649, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0200098, Final residual = 0.000165047, No Iterations 3
time step continuity errors : sum local = 0.000823884, global = 6.92821e-05, cumulative = -0.293119
smoothSolver: Solving for omega, Initial residual = 0.000392244, Final residual = 3.45404e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00178105, Final residual = 0.000104397, No Iterations 4
ExecutionTime = 111.14 s ClockTime = 112 s
Time = 768
smoothSolver: Solving for Ux, Initial residual = 0.000898423, Final residual = 4.8042e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028098, Final residual = 0.000140561, No Iterations 4
GAMG: Solving for p, Initial residual = 0.019924, Final residual = 0.000164562, No Iterations 3
time step continuity errors : sum local = 0.000820807, global = 6.84647e-05, cumulative = -0.29305
smoothSolver: Solving for omega, Initial residual = 0.00039119, Final residual = 3.44647e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00177838, Final residual = 0.000104246, No Iterations 4
ExecutionTime = 111.27 s ClockTime = 113 s
Time = 769
smoothSolver: Solving for Ux, Initial residual = 0.000897536, Final residual = 4.80239e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00280773, Final residual = 0.000140481, No Iterations 4
GAMG: Solving for p, Initial residual = 0.019849, Final residual = 0.000164472, No Iterations 3
time step continuity errors : sum local = 0.000819605, global = 6.80252e-05, cumulative = -0.292982
smoothSolver: Solving for omega, Initial residual = 0.000390163, Final residual = 3.43871e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00177573, Final residual = 0.000104099, No Iterations 4
ExecutionTime = 111.4 s ClockTime = 113 s
Time = 770
smoothSolver: Solving for Ux, Initial residual = 0.000896636, Final residual = 4.80062e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00280559, Final residual = 0.000140404, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0197692, Final residual = 0.000164661, No Iterations 3
time step continuity errors : sum local = 0.000819827, global = 6.75627e-05, cumulative = -0.292915
smoothSolver: Solving for omega, Initial residual = 0.000389149, Final residual = 3.43116e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0017731, Final residual = 0.000103952, No Iterations 4
ExecutionTime = 111.53 s ClockTime = 113 s
Time = 771
smoothSolver: Solving for Ux, Initial residual = 0.000895718, Final residual = 4.79872e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00280341, Final residual = 0.000140333, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0197354, Final residual = 0.000164963, No Iterations 3
time step continuity errors : sum local = 0.000820631, global = 6.6678e-05, cumulative = -0.292848
smoothSolver: Solving for omega, Initial residual = 0.000388163, Final residual = 3.42424e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0017705, Final residual = 0.000103805, No Iterations 4
ExecutionTime = 111.67 s ClockTime = 113 s
Time = 772
smoothSolver: Solving for Ux, Initial residual = 0.000894823, Final residual = 4.79686e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00280131, Final residual = 0.000140264, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0197356, Final residual = 0.000165196, No Iterations 3
time step continuity errors : sum local = 0.000821064, global = 6.52369e-05, cumulative = -0.292783
smoothSolver: Solving for omega, Initial residual = 0.000387145, Final residual = 3.41679e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0017679, Final residual = 0.000103661, No Iterations 4
ExecutionTime = 111.79 s ClockTime = 113 s
Time = 773
smoothSolver: Solving for Ux, Initial residual = 0.00089393, Final residual = 4.79521e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00279922, Final residual = 0.000140198, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0197039, Final residual = 0.000165261, No Iterations 3
time step continuity errors : sum local = 0.000820739, global = 6.35036e-05, cumulative = -0.292719
smoothSolver: Solving for omega, Initial residual = 0.000386113, Final residual = 3.40908e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00176532, Final residual = 0.000103521, No Iterations 4
ExecutionTime = 111.92 s ClockTime = 113 s
Time = 774
smoothSolver: Solving for Ux, Initial residual = 0.000893038, Final residual = 4.79353e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00279709, Final residual = 0.000140133, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196157, Final residual = 0.000165134, No Iterations 3
time step continuity errors : sum local = 0.000819391, global = 6.18574e-05, cumulative = -0.292658
smoothSolver: Solving for omega, Initial residual = 0.000385074, Final residual = 3.4015e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00176275, Final residual = 0.000103381, No Iterations 4
ExecutionTime = 112.05 s ClockTime = 113 s
Time = 775
smoothSolver: Solving for Ux, Initial residual = 0.000892144, Final residual = 4.79176e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00279487, Final residual = 0.000140066, No Iterations 4
GAMG: Solving for p, Initial residual = 0.019505, Final residual = 0.000164861, No Iterations 3
time step continuity errors : sum local = 0.000817325, global = 6.03927e-05, cumulative = -0.292597
smoothSolver: Solving for omega, Initial residual = 0.000384072, Final residual = 3.39434e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00176019, Final residual = 0.00010324, No Iterations 4
ExecutionTime = 112.18 s ClockTime = 113 s
Time = 776
smoothSolver: Solving for Ux, Initial residual = 0.000891259, Final residual = 4.7901e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00279264, Final residual = 0.000140007, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0194412, Final residual = 0.000164757, No Iterations 3
time step continuity errors : sum local = 0.000816107, global = 5.90109e-05, cumulative = -0.292538
smoothSolver: Solving for omega, Initial residual = 0.00038307, Final residual = 3.38718e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00175763, Final residual = 0.000103102, No Iterations 4
ExecutionTime = 112.32 s ClockTime = 114 s
Time = 777
smoothSolver: Solving for Ux, Initial residual = 0.000890386, Final residual = 4.78868e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00279044, Final residual = 0.000139951, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0193759, Final residual = 0.000165034, No Iterations 3
time step continuity errors : sum local = 0.000816771, global = 5.72107e-05, cumulative = -0.292481
smoothSolver: Solving for omega, Initial residual = 0.000382055, Final residual = 3.37971e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00175514, Final residual = 0.000102964, No Iterations 4
ExecutionTime = 112.44 s ClockTime = 114 s
Time = 778
smoothSolver: Solving for Ux, Initial residual = 0.000889488, Final residual = 4.78721e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00278815, Final residual = 0.000139894, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0193157, Final residual = 0.000168141, No Iterations 3
time step continuity errors : sum local = 0.000831345, global = 5.06206e-05, cumulative = -0.29243
smoothSolver: Solving for omega, Initial residual = 0.000381007, Final residual = 3.37222e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00175269, Final residual = 0.000102828, No Iterations 4
ExecutionTime = 112.57 s ClockTime = 114 s
Time = 779
smoothSolver: Solving for Ux, Initial residual = 0.000888583, Final residual = 4.78556e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027859, Final residual = 0.000139843, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0192656, Final residual = 0.00016857, No Iterations 3
time step continuity errors : sum local = 0.000832666, global = 4.84413e-05, cumulative = -0.292382
smoothSolver: Solving for omega, Initial residual = 0.000379975, Final residual = 3.36502e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00175024, Final residual = 0.000102695, No Iterations 4
ExecutionTime = 112.69 s ClockTime = 114 s
Time = 780
smoothSolver: Solving for Ux, Initial residual = 0.000887706, Final residual = 4.7841e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00278369, Final residual = 0.000139799, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0192202, Final residual = 0.000169154, No Iterations 3
time step continuity errors : sum local = 0.000834798, global = 4.71095e-05, cumulative = -0.292335
smoothSolver: Solving for omega, Initial residual = 0.000378987, Final residual = 3.35806e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00174778, Final residual = 0.000102563, No Iterations 4
ExecutionTime = 112.83 s ClockTime = 114 s
Time = 781
smoothSolver: Solving for Ux, Initial residual = 0.000886831, Final residual = 4.78283e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00278151, Final residual = 0.000139761, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0192477, Final residual = 0.000169841, No Iterations 3
time step continuity errors : sum local = 0.000837409, global = 4.51935e-05, cumulative = -0.29229
smoothSolver: Solving for omega, Initial residual = 0.000378006, Final residual = 3.35078e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00174535, Final residual = 0.000102432, No Iterations 4
ExecutionTime = 112.96 s ClockTime = 114 s
Time = 782
smoothSolver: Solving for Ux, Initial residual = 0.000885959, Final residual = 4.78149e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00277927, Final residual = 0.000139722, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0192622, Final residual = 0.000170447, No Iterations 3
time step continuity errors : sum local = 0.00083961, global = 4.28361e-05, cumulative = -0.292247
smoothSolver: Solving for omega, Initial residual = 0.000376977, Final residual = 3.34348e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00174295, Final residual = 0.000102305, No Iterations 4
ExecutionTime = 113.09 s ClockTime = 114 s
Time = 783
smoothSolver: Solving for Ux, Initial residual = 0.000885086, Final residual = 4.78011e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00277698, Final residual = 0.000139689, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0192193, Final residual = 0.000171183, No Iterations 3
time step continuity errors : sum local = 0.000842515, global = 4.14037e-05, cumulative = -0.292205
smoothSolver: Solving for omega, Initial residual = 0.000375921, Final residual = 3.33624e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00174057, Final residual = 0.000102179, No Iterations 4
ExecutionTime = 113.22 s ClockTime = 114 s
Time = 784
smoothSolver: Solving for Ux, Initial residual = 0.000884237, Final residual = 4.77901e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00277475, Final residual = 0.000139659, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0191231, Final residual = 0.000171833, No Iterations 3
time step continuity errors : sum local = 0.000844954, global = 4.11708e-05, cumulative = -0.292164
smoothSolver: Solving for omega, Initial residual = 0.000374886, Final residual = 3.32902e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00173822, Final residual = 0.000102054, No Iterations 4
ExecutionTime = 113.35 s ClockTime = 115 s
Time = 785
smoothSolver: Solving for Ux, Initial residual = 0.000883382, Final residual = 4.77791e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00277246, Final residual = 0.00013963, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0190932, Final residual = 0.000172735, No Iterations 3
time step continuity errors : sum local = 0.000848563, global = 4.07304e-05, cumulative = -0.292123
smoothSolver: Solving for omega, Initial residual = 0.000373912, Final residual = 3.32222e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00173588, Final residual = 0.000101931, No Iterations 4
ExecutionTime = 113.48 s ClockTime = 115 s
Time = 786
smoothSolver: Solving for Ux, Initial residual = 0.000882518, Final residual = 4.77678e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00277014, Final residual = 0.000139602, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0190661, Final residual = 0.000174103, No Iterations 3
time step continuity errors : sum local = 0.000854493, global = 3.9449e-05, cumulative = -0.292084
smoothSolver: Solving for omega, Initial residual = 0.000372911, Final residual = 3.31539e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00173361, Final residual = 0.00010181, No Iterations 4
ExecutionTime = 113.6 s ClockTime = 115 s
Time = 787
smoothSolver: Solving for Ux, Initial residual = 0.000881665, Final residual = 4.77571e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00276782, Final residual = 0.000139578, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0190145, Final residual = 0.000175879, No Iterations 3
time step continuity errors : sum local = 0.000862479, global = 3.76611e-05, cumulative = -0.292046
smoothSolver: Solving for omega, Initial residual = 0.000371862, Final residual = 3.30834e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00173137, Final residual = 0.00010169, No Iterations 4
ExecutionTime = 113.74 s ClockTime = 115 s
Time = 788
smoothSolver: Solving for Ux, Initial residual = 0.000880837, Final residual = 4.77486e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00276551, Final residual = 0.000139565, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0189462, Final residual = 0.000177764, No Iterations 3
time step continuity errors : sum local = 0.000870866, global = 3.60953e-05, cumulative = -0.29201
smoothSolver: Solving for omega, Initial residual = 0.000370852, Final residual = 3.30133e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00172914, Final residual = 0.000101574, No Iterations 4
ExecutionTime = 113.87 s ClockTime = 115 s
Time = 789
smoothSolver: Solving for Ux, Initial residual = 0.000880009, Final residual = 4.774e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00276324, Final residual = 0.000139554, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0189043, Final residual = 0.000179524, No Iterations 3
time step continuity errors : sum local = 0.000878609, global = 3.4966e-05, cumulative = -0.291975
smoothSolver: Solving for omega, Initial residual = 0.000369887, Final residual = 3.29466e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00172695, Final residual = 0.00010146, No Iterations 4
ExecutionTime = 114 s ClockTime = 115 s
Time = 790
smoothSolver: Solving for Ux, Initial residual = 0.000879182, Final residual = 4.77308e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00276095, Final residual = 0.000139544, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0188603, Final residual = 0.000180887, No Iterations 3
time step continuity errors : sum local = 0.000884466, global = 3.39388e-05, cumulative = -0.291941
smoothSolver: Solving for omega, Initial residual = 0.000368926, Final residual = 3.28827e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0017248, Final residual = 0.000101346, No Iterations 4
ExecutionTime = 114.13 s ClockTime = 115 s
Time = 791
smoothSolver: Solving for Ux, Initial residual = 0.000878362, Final residual = 4.77224e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00275873, Final residual = 0.000139541, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0188546, Final residual = 0.000182009, No Iterations 3
time step continuity errors : sum local = 0.000889141, global = 3.29075e-05, cumulative = -0.291908
smoothSolver: Solving for omega, Initial residual = 0.000367922, Final residual = 3.28161e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00172266, Final residual = 0.000101236, No Iterations 4
ExecutionTime = 114.25 s ClockTime = 116 s
Time = 792
smoothSolver: Solving for Ux, Initial residual = 0.000877569, Final residual = 4.77166e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00275652, Final residual = 0.000139548, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0188461, Final residual = 0.000183083, No Iterations 3
time step continuity errors : sum local = 0.000893568, global = 3.18692e-05, cumulative = -0.291877
smoothSolver: Solving for omega, Initial residual = 0.000366935, Final residual = 3.27482e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00172057, Final residual = 0.000101128, No Iterations 4
ExecutionTime = 114.38 s ClockTime = 116 s
Time = 793
smoothSolver: Solving for Ux, Initial residual = 0.000876771, Final residual = 4.77104e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00275431, Final residual = 0.000139563, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0188282, Final residual = 0.000184313, No Iterations 3
time step continuity errors : sum local = 0.000898782, global = 3.11189e-05, cumulative = -0.291845
smoothSolver: Solving for omega, Initial residual = 0.000365958, Final residual = 3.26829e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0017185, Final residual = 0.000101022, No Iterations 4
ExecutionTime = 114.52 s ClockTime = 116 s
Time = 794
smoothSolver: Solving for Ux, Initial residual = 0.000875967, Final residual = 4.77033e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027522, Final residual = 0.000139581, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0187699, Final residual = 0.000185781, No Iterations 3
time step continuity errors : sum local = 0.000905165, global = 3.03571e-05, cumulative = -0.291815
smoothSolver: Solving for omega, Initial residual = 0.000364985, Final residual = 3.26238e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00171648, Final residual = 0.000100918, No Iterations 4
ExecutionTime = 114.64 s ClockTime = 116 s
Time = 795
smoothSolver: Solving for Ux, Initial residual = 0.000875194, Final residual = 4.76976e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00275007, Final residual = 0.000139605, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0187297, Final residual = 0.000187237, No Iterations 3
time step continuity errors : sum local = 0.000911444, global = 2.91621e-05, cumulative = -0.291786
smoothSolver: Solving for omega, Initial residual = 0.000363981, Final residual = 3.25605e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00171449, Final residual = 0.000100817, No Iterations 4
ExecutionTime = 114.78 s ClockTime = 116 s
Time = 796
smoothSolver: Solving for Ux, Initial residual = 0.00087443, Final residual = 4.76943e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027481, Final residual = 0.000139637, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0187086, Final residual = 8.38273e-05, No Iterations 4
time step continuity errors : sum local = 0.000407691, global = 4.44547e-05, cumulative = -0.291741
smoothSolver: Solving for omega, Initial residual = 0.000363003, Final residual = 3.24949e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00171257, Final residual = 0.000100717, No Iterations 4
ExecutionTime = 114.91 s ClockTime = 116 s
Time = 797
smoothSolver: Solving for Ux, Initial residual = 0.000873562, Final residual = 4.76902e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027461, Final residual = 0.000139664, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0186961, Final residual = 0.000175466, No Iterations 3
time step continuity errors : sum local = 0.000853065, global = 8.13693e-05, cumulative = -0.29166
smoothSolver: Solving for omega, Initial residual = 0.000362078, Final residual = 3.24316e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00171067, Final residual = 0.00010062, No Iterations 4
ExecutionTime = 115.04 s ClockTime = 116 s
Time = 798
smoothSolver: Solving for Ux, Initial residual = 0.000872965, Final residual = 4.76885e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027442, Final residual = 0.000139723, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0186269, Final residual = 0.000182653, No Iterations 3
time step continuity errors : sum local = 0.000886912, global = 4.68195e-05, cumulative = -0.291613
smoothSolver: Solving for omega, Initial residual = 0.000361154, Final residual = 3.23764e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0017088, Final residual = 0.000100528, No Iterations 4
ExecutionTime = 115.17 s ClockTime = 116 s
Time = 799
smoothSolver: Solving for Ux, Initial residual = 0.000872272, Final residual = 4.76849e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00274239, Final residual = 0.000139784, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0185756, Final residual = 7.89559e-05, No Iterations 4
time step continuity errors : sum local = 0.000382939, global = 6.68109e-05, cumulative = -0.291546
smoothSolver: Solving for omega, Initial residual = 0.00036021, Final residual = 3.23205e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00170703, Final residual = 0.000100436, No Iterations 4
ExecutionTime = 115.31 s ClockTime = 117 s
Time = 800
smoothSolver: Solving for Ux, Initial residual = 0.000871362, Final residual = 4.76806e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00274065, Final residual = 0.000139832, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0185716, Final residual = 8.98345e-05, No Iterations 4
time step continuity errors : sum local = 0.00043537, global = 2.40377e-05, cumulative = -0.291522
smoothSolver: Solving for omega, Initial residual = 0.000359286, Final residual = 3.22602e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00170528, Final residual = 0.000100347, No Iterations 4
ExecutionTime = 115.65 s ClockTime = 117 s
Time = 801
smoothSolver: Solving for Ux, Initial residual = 0.00087056, Final residual = 4.76792e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273897, Final residual = 0.000139891, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0185912, Final residual = 0.000183304, No Iterations 3
time step continuity errors : sum local = 0.000887943, global = 0.000101643, cumulative = -0.291421
smoothSolver: Solving for omega, Initial residual = 0.000358375, Final residual = 3.22021e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00170355, Final residual = 0.000100261, No Iterations 4
ExecutionTime = 115.78 s ClockTime = 117 s
Time = 802
smoothSolver: Solving for Ux, Initial residual = 0.000870054, Final residual = 4.76824e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273729, Final residual = 0.000139982, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0185951, Final residual = 8.58254e-05, No Iterations 4
time step continuity errors : sum local = 0.000415189, global = 4.45102e-05, cumulative = -0.291376
smoothSolver: Solving for omega, Initial residual = 0.000357433, Final residual = 3.2149e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0017019, Final residual = 0.000100178, No Iterations 4
ExecutionTime = 115.93 s ClockTime = 117 s
Time = 803
smoothSolver: Solving for Ux, Initial residual = 0.00086934, Final residual = 4.76814e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273567, Final residual = 0.000140052, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0186293, Final residual = 8.88762e-05, No Iterations 4
time step continuity errors : sum local = 0.000429688, global = 6.93186e-05, cumulative = -0.291307
smoothSolver: Solving for omega, Initial residual = 0.000356547, Final residual = 3.20981e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0017003, Final residual = 0.000100098, No Iterations 4
ExecutionTime = 116.06 s ClockTime = 117 s
Time = 804
smoothSolver: Solving for Ux, Initial residual = 0.000868656, Final residual = 4.76821e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273425, Final residual = 0.000140133, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0186371, Final residual = 9.2278e-05, No Iterations 4
time step continuity errors : sum local = 0.000445783, global = 7.65378e-05, cumulative = -0.29123
smoothSolver: Solving for omega, Initial residual = 0.000355681, Final residual = 3.20456e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00169871, Final residual = 0.00010002, No Iterations 4
ExecutionTime = 116.2 s ClockTime = 117 s
Time = 805
smoothSolver: Solving for Ux, Initial residual = 0.000867979, Final residual = 4.7683e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273289, Final residual = 0.000140226, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0186142, Final residual = 9.46115e-05, No Iterations 4
time step continuity errors : sum local = 0.000456652, global = 8.40603e-05, cumulative = -0.291146
smoothSolver: Solving for omega, Initial residual = 0.000354839, Final residual = 3.19943e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00169722, Final residual = 9.99471e-05, No Iterations 4
ExecutionTime = 116.33 s ClockTime = 118 s
Time = 806
smoothSolver: Solving for Ux, Initial residual = 0.000867313, Final residual = 4.76853e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027316, Final residual = 0.000140327, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0185705, Final residual = 9.40069e-05, No Iterations 4
time step continuity errors : sum local = 0.000453319, global = 9.19652e-05, cumulative = -0.291054
smoothSolver: Solving for omega, Initial residual = 0.000353979, Final residual = 3.19446e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00169578, Final residual = 9.98759e-05, No Iterations 4
ExecutionTime = 116.47 s ClockTime = 118 s
Time = 807
smoothSolver: Solving for Ux, Initial residual = 0.000866689, Final residual = 4.76897e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273037, Final residual = 0.000140432, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0185627, Final residual = 9.1443e-05, No Iterations 4
time step continuity errors : sum local = 0.000440584, global = 8.91003e-05, cumulative = -0.290965
smoothSolver: Solving for omega, Initial residual = 0.000353132, Final residual = 3.18974e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00169436, Final residual = 9.98074e-05, No Iterations 4
ExecutionTime = 116.6 s ClockTime = 118 s
Time = 808
smoothSolver: Solving for Ux, Initial residual = 0.000866065, Final residual = 4.76944e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272919, Final residual = 0.000140538, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0185552, Final residual = 9.48771e-05, No Iterations 4
time step continuity errors : sum local = 0.000456881, global = 5.54119e-05, cumulative = -0.29091
smoothSolver: Solving for omega, Initial residual = 0.00035232, Final residual = 3.18524e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00169299, Final residual = 9.97417e-05, No Iterations 4
ExecutionTime = 116.75 s ClockTime = 118 s
Time = 809
smoothSolver: Solving for Ux, Initial residual = 0.000865456, Final residual = 4.76981e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272807, Final residual = 0.000140645, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0185533, Final residual = 9.7402e-05, No Iterations 4
time step continuity errors : sum local = 0.000468827, global = -3.91623e-05, cumulative = -0.290949
smoothSolver: Solving for omega, Initial residual = 0.000351505, Final residual = 3.18086e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00169168, Final residual = 9.96786e-05, No Iterations 4
ExecutionTime = 116.88 s ClockTime = 118 s
Time = 810
smoothSolver: Solving for Ux, Initial residual = 0.00086491, Final residual = 4.77022e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272712, Final residual = 0.000140766, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0185502, Final residual = 9.77297e-05, No Iterations 4
time step continuity errors : sum local = 0.000470123, global = -6.54571e-05, cumulative = -0.291015
smoothSolver: Solving for omega, Initial residual = 0.000350714, Final residual = 3.17655e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00169042, Final residual = 9.96181e-05, No Iterations 4
ExecutionTime = 117.02 s ClockTime = 118 s
Time = 811
smoothSolver: Solving for Ux, Initial residual = 0.000864398, Final residual = 4.77102e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272641, Final residual = 0.000140903, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0185466, Final residual = 0.000101621, No Iterations 4
time step continuity errors : sum local = 0.000488343, global = -7.77621e-05, cumulative = -0.291092
smoothSolver: Solving for omega, Initial residual = 0.000349949, Final residual = 3.17215e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00168917, Final residual = 9.95592e-05, No Iterations 4
ExecutionTime = 117.16 s ClockTime = 118 s
Time = 812
smoothSolver: Solving for Ux, Initial residual = 0.000863862, Final residual = 4.77186e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272582, Final residual = 0.000141047, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0185721, Final residual = 0.000105651, No Iterations 4
time step continuity errors : sum local = 0.000507227, global = -8.90038e-05, cumulative = -0.291181
smoothSolver: Solving for omega, Initial residual = 0.000349224, Final residual = 3.16828e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00168801, Final residual = 9.95043e-05, No Iterations 4
ExecutionTime = 117.3 s ClockTime = 119 s
Time = 813
smoothSolver: Solving for Ux, Initial residual = 0.00086329, Final residual = 4.77255e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272536, Final residual = 0.000141197, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0185955, Final residual = 0.00010851, No Iterations 4
time step continuity errors : sum local = 0.000520568, global = -9.42011e-05, cumulative = -0.291275
smoothSolver: Solving for omega, Initial residual = 0.000348467, Final residual = 3.16445e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00168685, Final residual = 9.94519e-05, No Iterations 4
ExecutionTime = 117.43 s ClockTime = 119 s
Time = 814
smoothSolver: Solving for Ux, Initial residual = 0.00086273, Final residual = 4.77328e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272498, Final residual = 0.000141349, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0186228, Final residual = 0.000108855, No Iterations 4
time step continuity errors : sum local = 0.000521925, global = -9.33247e-05, cumulative = -0.291369
smoothSolver: Solving for omega, Initial residual = 0.000347732, Final residual = 3.16078e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00168573, Final residual = 9.94013e-05, No Iterations 4
ExecutionTime = 117.57 s ClockTime = 119 s
Time = 815
smoothSolver: Solving for Ux, Initial residual = 0.000862262, Final residual = 4.77431e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272462, Final residual = 0.000141511, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0186714, Final residual = 0.000105334, No Iterations 4
time step continuity errors : sum local = 0.00050482, global = -8.80903e-05, cumulative = -0.291457
smoothSolver: Solving for omega, Initial residual = 0.000346994, Final residual = 3.15691e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00168469, Final residual = 9.93547e-05, No Iterations 4
ExecutionTime = 117.71 s ClockTime = 119 s
Time = 816
smoothSolver: Solving for Ux, Initial residual = 0.000861876, Final residual = 4.77547e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027243, Final residual = 0.000141676, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0186716, Final residual = 0.000101063, No Iterations 4
time step continuity errors : sum local = 0.000484138, global = -7.75943e-05, cumulative = -0.291534
smoothSolver: Solving for omega, Initial residual = 0.000346289, Final residual = 3.15341e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00168368, Final residual = 9.93106e-05, No Iterations 4
ExecutionTime = 117.84 s ClockTime = 119 s
Time = 817
smoothSolver: Solving for Ux, Initial residual = 0.00086148, Final residual = 4.77661e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272416, Final residual = 0.000141845, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0186124, Final residual = 9.74989e-05, No Iterations 4
time step continuity errors : sum local = 0.000466779, global = -6.54303e-05, cumulative = -0.2916
smoothSolver: Solving for omega, Initial residual = 0.000345579, Final residual = 3.15023e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00168267, Final residual = 9.92687e-05, No Iterations 4
ExecutionTime = 117.99 s ClockTime = 119 s
Time = 818
smoothSolver: Solving for Ux, Initial residual = 0.000861056, Final residual = 4.77779e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272408, Final residual = 0.000142016, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0186306, Final residual = 9.62868e-05, No Iterations 4
time step continuity errors : sum local = 0.000460679, global = -5.30633e-05, cumulative = -0.291653
smoothSolver: Solving for omega, Initial residual = 0.000344878, Final residual = 3.14709e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0016817, Final residual = 9.92284e-05, No Iterations 4
ExecutionTime = 118.12 s ClockTime = 119 s
Time = 819
smoothSolver: Solving for Ux, Initial residual = 0.000860607, Final residual = 4.77904e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.002724, Final residual = 0.000142192, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0186271, Final residual = 9.69201e-05, No Iterations 4
time step continuity errors : sum local = 0.000463432, global = -4.74595e-05, cumulative = -0.2917
smoothSolver: Solving for omega, Initial residual = 0.000344213, Final residual = 3.1439e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00168081, Final residual = 9.91913e-05, No Iterations 4
ExecutionTime = 118.26 s ClockTime = 120 s
Time = 820
smoothSolver: Solving for Ux, Initial residual = 0.000860185, Final residual = 4.78032e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272396, Final residual = 0.000142373, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0186057, Final residual = 9.84638e-05, No Iterations 4
time step continuity errors : sum local = 0.000470591, global = -5.38786e-05, cumulative = -0.291754
smoothSolver: Solving for omega, Initial residual = 0.000343568, Final residual = 3.14088e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00167991, Final residual = 9.91548e-05, No Iterations 4
ExecutionTime = 118.4 s ClockTime = 120 s
Time = 821
smoothSolver: Solving for Ux, Initial residual = 0.000859832, Final residual = 4.78171e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272393, Final residual = 0.000142556, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0185997, Final residual = 0.000100436, No Iterations 4
time step continuity errors : sum local = 0.000479791, global = -6.69772e-05, cumulative = -0.291821
smoothSolver: Solving for omega, Initial residual = 0.000342937, Final residual = 3.13828e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00167905, Final residual = 9.91216e-05, No Iterations 4
ExecutionTime = 118.53 s ClockTime = 120 s
Time = 822
smoothSolver: Solving for Ux, Initial residual = 0.00085952, Final residual = 4.78334e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272397, Final residual = 0.000142738, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0186222, Final residual = 0.000102923, No Iterations 4
time step continuity errors : sum local = 0.000491431, global = -7.96744e-05, cumulative = -0.291901
smoothSolver: Solving for omega, Initial residual = 0.000342333, Final residual = 3.13589e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00167826, Final residual = 9.909e-05, No Iterations 4
ExecutionTime = 118.68 s ClockTime = 120 s
Time = 823
smoothSolver: Solving for Ux, Initial residual = 0.000859215, Final residual = 4.78506e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272405, Final residual = 0.000142922, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0186067, Final residual = 0.000105781, No Iterations 4
time step continuity errors : sum local = 0.000504815, global = -8.83129e-05, cumulative = -0.291989
smoothSolver: Solving for omega, Initial residual = 0.00034172, Final residual = 3.13359e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00167749, Final residual = 9.90604e-05, No Iterations 4
ExecutionTime = 118.82 s ClockTime = 120 s
Time = 824
smoothSolver: Solving for Ux, Initial residual = 0.000858915, Final residual = 4.78668e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272417, Final residual = 0.000143113, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0186045, Final residual = 0.000107855, No Iterations 4
time step continuity errors : sum local = 0.000514523, global = -9.21775e-05, cumulative = -0.292081
smoothSolver: Solving for omega, Initial residual = 0.000341101, Final residual = 3.13108e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00167671, Final residual = 9.9034e-05, No Iterations 4
ExecutionTime = 118.96 s ClockTime = 120 s
Time = 825
smoothSolver: Solving for Ux, Initial residual = 0.000858629, Final residual = 4.7884e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272435, Final residual = 0.000143308, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0186759, Final residual = 0.000108919, No Iterations 4
time step continuity errors : sum local = 0.000519391, global = -9.15128e-05, cumulative = -0.292173
smoothSolver: Solving for omega, Initial residual = 0.000340501, Final residual = 3.12907e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00167598, Final residual = 9.90072e-05, No Iterations 4
ExecutionTime = 119.09 s ClockTime = 120 s
Time = 826
smoothSolver: Solving for Ux, Initial residual = 0.000858353, Final residual = 4.79028e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272451, Final residual = 0.000143501, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0187148, Final residual = 0.000108288, No Iterations 4
time step continuity errors : sum local = 0.000516206, global = -8.78413e-05, cumulative = -0.292261
smoothSolver: Solving for omega, Initial residual = 0.000339983, Final residual = 3.12752e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00167529, Final residual = 9.89843e-05, No Iterations 4
ExecutionTime = 119.23 s ClockTime = 121 s
Time = 827
smoothSolver: Solving for Ux, Initial residual = 0.000858112, Final residual = 4.79229e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272468, Final residual = 0.000143695, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0187262, Final residual = 0.000107534, No Iterations 4
time step continuity errors : sum local = 0.000512485, global = -8.10528e-05, cumulative = -0.292342
smoothSolver: Solving for omega, Initial residual = 0.000339456, Final residual = 3.12581e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00167462, Final residual = 9.8962e-05, No Iterations 4
ExecutionTime = 119.37 s ClockTime = 121 s
Time = 828
smoothSolver: Solving for Ux, Initial residual = 0.000857895, Final residual = 4.79424e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272482, Final residual = 0.000143891, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0187135, Final residual = 0.000104926, No Iterations 4
time step continuity errors : sum local = 0.000499943, global = -7.58614e-05, cumulative = -0.292418
smoothSolver: Solving for omega, Initial residual = 0.000338868, Final residual = 3.1241e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00167397, Final residual = 9.89426e-05, No Iterations 4
ExecutionTime = 119.5 s ClockTime = 121 s
Time = 829
smoothSolver: Solving for Ux, Initial residual = 0.000857697, Final residual = 4.79634e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272496, Final residual = 0.000144091, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0187237, Final residual = 0.000103087, No Iterations 4
time step continuity errors : sum local = 0.000491028, global = -7.03904e-05, cumulative = -0.292488
smoothSolver: Solving for omega, Initial residual = 0.000338336, Final residual = 3.12291e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00167337, Final residual = 9.8922e-05, No Iterations 4
ExecutionTime = 119.64 s ClockTime = 121 s
Time = 830
smoothSolver: Solving for Ux, Initial residual = 0.000857516, Final residual = 4.7986e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272522, Final residual = 0.000144285, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0187216, Final residual = 0.000102133, No Iterations 4
time step continuity errors : sum local = 0.00048633, global = -6.65423e-05, cumulative = -0.292555
smoothSolver: Solving for omega, Initial residual = 0.000337888, Final residual = 3.12214e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00167278, Final residual = 9.89046e-05, No Iterations 4
ExecutionTime = 119.77 s ClockTime = 121 s
Time = 831
smoothSolver: Solving for Ux, Initial residual = 0.000857338, Final residual = 4.80091e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272544, Final residual = 0.00014448, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0187296, Final residual = 0.000101967, No Iterations 4
time step continuity errors : sum local = 0.000485406, global = -6.67003e-05, cumulative = -0.292621
smoothSolver: Solving for omega, Initial residual = 0.000337432, Final residual = 3.12094e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00167224, Final residual = 9.88888e-05, No Iterations 4
ExecutionTime = 119.92 s ClockTime = 121 s
Time = 832
smoothSolver: Solving for Ux, Initial residual = 0.000857163, Final residual = 4.80315e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272561, Final residual = 0.000144675, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0187403, Final residual = 0.000102761, No Iterations 4
time step continuity errors : sum local = 0.000489039, global = -7.18292e-05, cumulative = -0.292693
smoothSolver: Solving for omega, Initial residual = 0.000336932, Final residual = 3.12032e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0016717, Final residual = 9.88729e-05, No Iterations 4
ExecutionTime = 120.05 s ClockTime = 121 s
Time = 833
smoothSolver: Solving for Ux, Initial residual = 0.000857015, Final residual = 4.80553e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272576, Final residual = 0.000144871, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0187197, Final residual = 0.000104348, No Iterations 4
time step continuity errors : sum local = 0.00049646, global = -7.96197e-05, cumulative = -0.292773
smoothSolver: Solving for omega, Initial residual = 0.000336501, Final residual = 3.11996e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00167117, Final residual = 9.88589e-05, No Iterations 4
ExecutionTime = 120.19 s ClockTime = 122 s
Time = 834
smoothSolver: Solving for Ux, Initial residual = 0.000856899, Final residual = 4.80804e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272604, Final residual = 0.000145074, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0186924, Final residual = 0.000106865, No Iterations 4
time step continuity errors : sum local = 0.000508243, global = -8.63195e-05, cumulative = -0.292859
smoothSolver: Solving for omega, Initial residual = 0.000336091, Final residual = 3.1197e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00167067, Final residual = 9.88457e-05, No Iterations 4
ExecutionTime = 120.33 s ClockTime = 122 s
Time = 835
smoothSolver: Solving for Ux, Initial residual = 0.0008568, Final residual = 4.81062e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272632, Final residual = 0.000145273, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0187325, Final residual = 0.000108255, No Iterations 4
time step continuity errors : sum local = 0.000514683, global = -9.06625e-05, cumulative = -0.29295
smoothSolver: Solving for omega, Initial residual = 0.000335712, Final residual = 3.11987e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00167018, Final residual = 9.88337e-05, No Iterations 4
ExecutionTime = 120.47 s ClockTime = 122 s
Time = 836
smoothSolver: Solving for Ux, Initial residual = 0.000856711, Final residual = 4.81323e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272652, Final residual = 0.000145468, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0187545, Final residual = 0.000109613, No Iterations 4
time step continuity errors : sum local = 0.000521001, global = -9.1393e-05, cumulative = -0.293041
smoothSolver: Solving for omega, Initial residual = 0.000335332, Final residual = 3.12064e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0016697, Final residual = 9.882e-05, No Iterations 4
ExecutionTime = 120.61 s ClockTime = 122 s
Time = 837
smoothSolver: Solving for Ux, Initial residual = 0.000856629, Final residual = 4.81593e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027268, Final residual = 0.000145665, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0187344, Final residual = 0.000109408, No Iterations 4
time step continuity errors : sum local = 0.000519896, global = -8.90517e-05, cumulative = -0.29313
smoothSolver: Solving for omega, Initial residual = 0.000335038, Final residual = 3.12168e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00166923, Final residual = 9.88094e-05, No Iterations 4
ExecutionTime = 120.75 s ClockTime = 122 s
Time = 838
smoothSolver: Solving for Ux, Initial residual = 0.000856564, Final residual = 4.81875e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272708, Final residual = 0.000145865, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0188152, Final residual = 0.000107893, No Iterations 4
time step continuity errors : sum local = 0.000512554, global = -8.50766e-05, cumulative = -0.293215
smoothSolver: Solving for omega, Initial residual = 0.000334752, Final residual = 3.12277e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00166881, Final residual = 9.87982e-05, No Iterations 4
ExecutionTime = 120.89 s ClockTime = 122 s
Time = 839
smoothSolver: Solving for Ux, Initial residual = 0.00085652, Final residual = 4.82159e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272737, Final residual = 0.000146062, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0188579, Final residual = 0.000106887, No Iterations 4
time step continuity errors : sum local = 0.000507668, global = -7.99506e-05, cumulative = -0.293295
smoothSolver: Solving for omega, Initial residual = 0.000334482, Final residual = 3.12455e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00166836, Final residual = 9.87883e-05, No Iterations 4
ExecutionTime = 121.04 s ClockTime = 122 s
Time = 840
smoothSolver: Solving for Ux, Initial residual = 0.000856497, Final residual = 4.82454e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272773, Final residual = 0.000146261, No Iterations 4
GAMG: Solving for p, Initial residual = 0.018824, Final residual = 0.000105173, No Iterations 4
time step continuity errors : sum local = 0.000499391, global = -7.77785e-05, cumulative = -0.293373
smoothSolver: Solving for omega, Initial residual = 0.00033425, Final residual = 3.12654e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00166792, Final residual = 9.87789e-05, No Iterations 4
ExecutionTime = 121.17 s ClockTime = 123 s
Time = 841
smoothSolver: Solving for Ux, Initial residual = 0.000856484, Final residual = 4.82751e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272811, Final residual = 0.000146456, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0188407, Final residual = 0.000104167, No Iterations 4
time step continuity errors : sum local = 0.000494459, global = -7.77985e-05, cumulative = -0.293451
smoothSolver: Solving for omega, Initial residual = 0.000334046, Final residual = 3.12824e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00166752, Final residual = 9.87687e-05, No Iterations 4
ExecutionTime = 121.3 s ClockTime = 123 s
Time = 842
smoothSolver: Solving for Ux, Initial residual = 0.000856469, Final residual = 4.83057e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272846, Final residual = 0.000146648, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0188909, Final residual = 0.000104146, No Iterations 4
time step continuity errors : sum local = 0.000494241, global = -8.03388e-05, cumulative = -0.293531
smoothSolver: Solving for omega, Initial residual = 0.000333831, Final residual = 3.12996e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00166709, Final residual = 9.87599e-05, No Iterations 4
ExecutionTime = 121.44 s ClockTime = 123 s
Time = 843
smoothSolver: Solving for Ux, Initial residual = 0.000856469, Final residual = 4.83358e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272879, Final residual = 0.000146842, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0189227, Final residual = 0.000104969, No Iterations 4
time step continuity errors : sum local = 0.000498046, global = -8.44035e-05, cumulative = -0.293616
smoothSolver: Solving for omega, Initial residual = 0.000333649, Final residual = 3.13271e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00166668, Final residual = 9.87523e-05, No Iterations 4
ExecutionTime = 121.58 s ClockTime = 123 s
Time = 844
smoothSolver: Solving for Ux, Initial residual = 0.000856489, Final residual = 4.83673e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272923, Final residual = 0.000147037, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0188863, Final residual = 0.000106033, No Iterations 4
time step continuity errors : sum local = 0.000502989, global = -8.78922e-05, cumulative = -0.293703
smoothSolver: Solving for omega, Initial residual = 0.000333492, Final residual = 3.13525e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00166626, Final residual = 9.8743e-05, No Iterations 4
ExecutionTime = 121.72 s ClockTime = 123 s
Time = 845
smoothSolver: Solving for Ux, Initial residual = 0.000856522, Final residual = 4.83996e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272965, Final residual = 0.00014723, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0188523, Final residual = 0.000106068, No Iterations 4
time step continuity errors : sum local = 0.000503041, global = -9.00896e-05, cumulative = -0.293794
smoothSolver: Solving for omega, Initial residual = 0.000333354, Final residual = 3.13757e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00166587, Final residual = 9.87346e-05, No Iterations 4
ExecutionTime = 121.86 s ClockTime = 123 s
Time = 846
smoothSolver: Solving for Ux, Initial residual = 0.00085658, Final residual = 4.84325e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273008, Final residual = 0.00014742, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0188586, Final residual = 0.000106743, No Iterations 4
time step continuity errors : sum local = 0.000506124, global = -8.93819e-05, cumulative = -0.293883
smoothSolver: Solving for omega, Initial residual = 0.00033321, Final residual = 3.1399e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0016655, Final residual = 9.87266e-05, No Iterations 4
ExecutionTime = 121.99 s ClockTime = 123 s
Time = 847
smoothSolver: Solving for Ux, Initial residual = 0.00085665, Final residual = 4.84652e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273062, Final residual = 0.000147613, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0188972, Final residual = 0.000106691, No Iterations 4
time step continuity errors : sum local = 0.000505761, global = -8.68066e-05, cumulative = -0.29397
smoothSolver: Solving for omega, Initial residual = 0.000333086, Final residual = 3.14295e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00166511, Final residual = 9.87186e-05, No Iterations 4
ExecutionTime = 122.12 s ClockTime = 123 s
Time = 848
smoothSolver: Solving for Ux, Initial residual = 0.000856722, Final residual = 4.84983e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273116, Final residual = 0.000147806, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0189181, Final residual = 0.000106805, No Iterations 4
time step continuity errors : sum local = 0.000506184, global = -8.2249e-05, cumulative = -0.294052
smoothSolver: Solving for omega, Initial residual = 0.00033309, Final residual = 3.14633e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00166471, Final residual = 9.87099e-05, No Iterations 4
ExecutionTime = 122.26 s ClockTime = 124 s
Time = 849
smoothSolver: Solving for Ux, Initial residual = 0.000856809, Final residual = 4.85316e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027317, Final residual = 0.000147996, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0189725, Final residual = 0.000106143, No Iterations 4
time step continuity errors : sum local = 0.000502882, global = -8.01569e-05, cumulative = -0.294132
smoothSolver: Solving for omega, Initial residual = 0.000332992, Final residual = 3.149e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00166428, Final residual = 9.87007e-05, No Iterations 4
ExecutionTime = 122.39 s ClockTime = 124 s
Time = 850
smoothSolver: Solving for Ux, Initial residual = 0.000856896, Final residual = 4.85657e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273226, Final residual = 0.000148183, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0189879, Final residual = 0.000106056, No Iterations 4
time step continuity errors : sum local = 0.00050234, global = -7.95448e-05, cumulative = -0.294212
smoothSolver: Solving for omega, Initial residual = 0.000332882, Final residual = 3.15221e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00166392, Final residual = 9.86922e-05, No Iterations 4
ExecutionTime = 122.74 s ClockTime = 124 s
Time = 851
smoothSolver: Solving for Ux, Initial residual = 0.000856995, Final residual = 4.85997e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273282, Final residual = 0.000148374, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0189619, Final residual = 0.000106527, No Iterations 4
time step continuity errors : sum local = 0.000504435, global = -7.96344e-05, cumulative = -0.294291
smoothSolver: Solving for omega, Initial residual = 0.000332837, Final residual = 3.15504e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00166353, Final residual = 9.86822e-05, No Iterations 4
ExecutionTime = 122.89 s ClockTime = 124 s
Time = 852
smoothSolver: Solving for Ux, Initial residual = 0.00085712, Final residual = 4.86343e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273336, Final residual = 0.000148565, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0190067, Final residual = 0.00010643, No Iterations 4
time step continuity errors : sum local = 0.000503825, global = -8.13914e-05, cumulative = -0.294373
smoothSolver: Solving for omega, Initial residual = 0.000332799, Final residual = 3.15841e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00166308, Final residual = 9.86718e-05, No Iterations 4
ExecutionTime = 123.03 s ClockTime = 124 s
Time = 853
smoothSolver: Solving for Ux, Initial residual = 0.000857242, Final residual = 4.86695e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273396, Final residual = 0.000148747, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0190755, Final residual = 0.00010725, No Iterations 4
time step continuity errors : sum local = 0.000507591, global = -8.08457e-05, cumulative = -0.294454
smoothSolver: Solving for omega, Initial residual = 0.000332803, Final residual = 3.16174e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00166265, Final residual = 9.86609e-05, No Iterations 4
ExecutionTime = 123.17 s ClockTime = 125 s
Time = 854
smoothSolver: Solving for Ux, Initial residual = 0.000857371, Final residual = 4.87054e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273463, Final residual = 0.000148928, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0190812, Final residual = 0.000107625, No Iterations 4
time step continuity errors : sum local = 0.000509285, global = -7.91819e-05, cumulative = -0.294533
smoothSolver: Solving for omega, Initial residual = 0.00033273, Final residual = 3.16501e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00166226, Final residual = 9.86483e-05, No Iterations 4
ExecutionTime = 123.31 s ClockTime = 125 s
Time = 855
smoothSolver: Solving for Ux, Initial residual = 0.000857536, Final residual = 4.87413e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273527, Final residual = 0.00014911, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0190131, Final residual = 0.000107718, No Iterations 4
time step continuity errors : sum local = 0.000509609, global = -7.68146e-05, cumulative = -0.29461
smoothSolver: Solving for omega, Initial residual = 0.000332749, Final residual = 3.16814e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0016618, Final residual = 9.86361e-05, No Iterations 4
ExecutionTime = 123.45 s ClockTime = 125 s
Time = 856
smoothSolver: Solving for Ux, Initial residual = 0.000857691, Final residual = 4.87773e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273583, Final residual = 0.000149293, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0190351, Final residual = 0.000107777, No Iterations 4
time step continuity errors : sum local = 0.00050974, global = -7.46743e-05, cumulative = -0.294684
smoothSolver: Solving for omega, Initial residual = 0.000332796, Final residual = 3.17142e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00166137, Final residual = 9.86227e-05, No Iterations 4
ExecutionTime = 123.58 s ClockTime = 125 s
Time = 857
smoothSolver: Solving for Ux, Initial residual = 0.00085785, Final residual = 4.88139e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273645, Final residual = 0.000149471, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0190905, Final residual = 0.000107784, No Iterations 4
time step continuity errors : sum local = 0.000509676, global = -7.30716e-05, cumulative = -0.294757
smoothSolver: Solving for omega, Initial residual = 0.000332821, Final residual = 3.17546e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00166091, Final residual = 9.86078e-05, No Iterations 4
ExecutionTime = 123.72 s ClockTime = 125 s
Time = 858
smoothSolver: Solving for Ux, Initial residual = 0.00085805, Final residual = 4.88502e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273723, Final residual = 0.000149651, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0190746, Final residual = 0.000107616, No Iterations 4
time step continuity errors : sum local = 0.0005088, global = -7.16199e-05, cumulative = -0.294829
smoothSolver: Solving for omega, Initial residual = 0.000332918, Final residual = 3.179e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00166045, Final residual = 9.85932e-05, No Iterations 4
ExecutionTime = 123.86 s ClockTime = 125 s
Time = 859
smoothSolver: Solving for Ux, Initial residual = 0.000858261, Final residual = 4.88873e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273794, Final residual = 0.000149831, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0190497, Final residual = 0.000107095, No Iterations 4
time step continuity errors : sum local = 0.000506226, global = -7.03634e-05, cumulative = -0.294899
smoothSolver: Solving for omega, Initial residual = 0.000332957, Final residual = 3.18249e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00165995, Final residual = 9.85771e-05, No Iterations 4
ExecutionTime = 124.01 s ClockTime = 125 s
Time = 860
smoothSolver: Solving for Ux, Initial residual = 0.000858477, Final residual = 4.89246e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273861, Final residual = 0.000150011, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0190916, Final residual = 0.000106408, No Iterations 4
time step continuity errors : sum local = 0.000502811, global = -6.92362e-05, cumulative = -0.294969
smoothSolver: Solving for omega, Initial residual = 0.000333089, Final residual = 3.18654e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00165947, Final residual = 9.85605e-05, No Iterations 4
ExecutionTime = 124.14 s ClockTime = 126 s
Time = 861
smoothSolver: Solving for Ux, Initial residual = 0.000858717, Final residual = 4.89623e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273934, Final residual = 0.000150189, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0191462, Final residual = 0.000105368, No Iterations 4
time step continuity errors : sum local = 0.000497784, global = -6.73842e-05, cumulative = -0.295036
smoothSolver: Solving for omega, Initial residual = 0.000333234, Final residual = 3.19055e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00165895, Final residual = 9.85406e-05, No Iterations 4
ExecutionTime = 124.28 s ClockTime = 126 s
Time = 862
smoothSolver: Solving for Ux, Initial residual = 0.000858963, Final residual = 4.90001e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00274014, Final residual = 0.000150364, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0191668, Final residual = 0.000104298, No Iterations 4
time step continuity errors : sum local = 0.000492642, global = -6.46622e-05, cumulative = -0.295101
smoothSolver: Solving for omega, Initial residual = 0.000333387, Final residual = 3.19439e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00165843, Final residual = 9.85211e-05, No Iterations 4
ExecutionTime = 124.42 s ClockTime = 126 s
Time = 863
smoothSolver: Solving for Ux, Initial residual = 0.000859223, Final residual = 4.90379e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00274087, Final residual = 0.000150539, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0192145, Final residual = 0.000103776, No Iterations 4
time step continuity errors : sum local = 0.000490037, global = -6.16273e-05, cumulative = -0.295162
smoothSolver: Solving for omega, Initial residual = 0.000333551, Final residual = 3.19819e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00165791, Final residual = 9.8499e-05, No Iterations 4
ExecutionTime = 124.56 s ClockTime = 126 s
Time = 864
smoothSolver: Solving for Ux, Initial residual = 0.000859501, Final residual = 4.90756e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00274159, Final residual = 0.000150716, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0192291, Final residual = 0.000103545, No Iterations 4
time step continuity errors : sum local = 0.000488826, global = -5.89317e-05, cumulative = -0.295221
smoothSolver: Solving for omega, Initial residual = 0.000333674, Final residual = 3.20227e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00165733, Final residual = 9.8476e-05, No Iterations 4
ExecutionTime = 124.71 s ClockTime = 126 s
Time = 865
smoothSolver: Solving for Ux, Initial residual = 0.000859783, Final residual = 4.91138e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00274235, Final residual = 0.00015089, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0191926, Final residual = 0.000103306, No Iterations 4
time step continuity errors : sum local = 0.000487623, global = -5.6864e-05, cumulative = -0.295278
smoothSolver: Solving for omega, Initial residual = 0.000333938, Final residual = 3.20664e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00165677, Final residual = 9.84509e-05, No Iterations 4
ExecutionTime = 124.85 s ClockTime = 126 s
Time = 866
smoothSolver: Solving for Ux, Initial residual = 0.000860081, Final residual = 4.91521e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00274317, Final residual = 0.000151059, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0191902, Final residual = 0.000102919, No Iterations 4
time step continuity errors : sum local = 0.000485685, global = -5.53059e-05, cumulative = -0.295333
smoothSolver: Solving for omega, Initial residual = 0.000334143, Final residual = 3.21062e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00165619, Final residual = 9.84255e-05, No Iterations 4
ExecutionTime = 124.99 s ClockTime = 126 s
Time = 867
smoothSolver: Solving for Ux, Initial residual = 0.000860404, Final residual = 4.919e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00274403, Final residual = 0.000151224, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0191971, Final residual = 0.000102651, No Iterations 4
time step continuity errors : sum local = 0.000484273, global = -5.37616e-05, cumulative = -0.295387
smoothSolver: Solving for omega, Initial residual = 0.000334362, Final residual = 3.21504e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0016556, Final residual = 9.83975e-05, No Iterations 4
ExecutionTime = 125.15 s ClockTime = 127 s
Time = 868
smoothSolver: Solving for Ux, Initial residual = 0.000860739, Final residual = 4.92285e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00274485, Final residual = 0.000151393, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0191885, Final residual = 0.000102273, No Iterations 4
time step continuity errors : sum local = 0.000482395, global = -5.17715e-05, cumulative = -0.295439
smoothSolver: Solving for omega, Initial residual = 0.000334602, Final residual = 3.21878e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00165495, Final residual = 9.83682e-05, No Iterations 4
ExecutionTime = 125.28 s ClockTime = 127 s
Time = 869
smoothSolver: Solving for Ux, Initial residual = 0.000861083, Final residual = 4.92677e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027457, Final residual = 0.000151569, No Iterations 4
GAMG: Solving for p, Initial residual = 0.019202, Final residual = 0.000101622, No Iterations 4
time step continuity errors : sum local = 0.000479214, global = -4.90872e-05, cumulative = -0.295488
smoothSolver: Solving for omega, Initial residual = 0.000334807, Final residual = 3.2227e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0016543, Final residual = 9.83367e-05, No Iterations 4
ExecutionTime = 125.42 s ClockTime = 127 s
Time = 870
smoothSolver: Solving for Ux, Initial residual = 0.000861484, Final residual = 4.9307e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027466, Final residual = 0.000151738, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0192367, Final residual = 0.000100937, No Iterations 4
time step continuity errors : sum local = 0.000475833, global = -4.58847e-05, cumulative = -0.295534
smoothSolver: Solving for omega, Initial residual = 0.000335098, Final residual = 3.22739e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00165363, Final residual = 9.8304e-05, No Iterations 4
ExecutionTime = 125.56 s ClockTime = 127 s
Time = 871
smoothSolver: Solving for Ux, Initial residual = 0.000861915, Final residual = 4.93465e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00274752, Final residual = 0.000151904, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0192371, Final residual = 0.000100001, No Iterations 4
time step continuity errors : sum local = 0.000471264, global = -4.22521e-05, cumulative = -0.295576
smoothSolver: Solving for omega, Initial residual = 0.000335309, Final residual = 3.2316e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00165296, Final residual = 9.82679e-05, No Iterations 4
ExecutionTime = 125.7 s ClockTime = 127 s
Time = 872
smoothSolver: Solving for Ux, Initial residual = 0.00086235, Final residual = 4.93865e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00274843, Final residual = 0.00015207, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0192696, Final residual = 9.87929e-05, No Iterations 4
time step continuity errors : sum local = 0.000465464, global = -3.77718e-05, cumulative = -0.295614
smoothSolver: Solving for omega, Initial residual = 0.000335635, Final residual = 3.23568e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00165225, Final residual = 9.82323e-05, No Iterations 4
ExecutionTime = 125.85 s ClockTime = 127 s
Time = 873
smoothSolver: Solving for Ux, Initial residual = 0.000862805, Final residual = 4.94267e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00274934, Final residual = 0.000152242, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0193672, Final residual = 9.74943e-05, No Iterations 4
time step continuity errors : sum local = 0.000459267, global = -3.22265e-05, cumulative = -0.295646
smoothSolver: Solving for omega, Initial residual = 0.000335937, Final residual = 3.24001e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00165153, Final residual = 9.81924e-05, No Iterations 4
ExecutionTime = 125.98 s ClockTime = 127 s
Time = 874
smoothSolver: Solving for Ux, Initial residual = 0.000863296, Final residual = 4.94674e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00275029, Final residual = 0.00015241, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0193789, Final residual = 9.64885e-05, No Iterations 4
time step continuity errors : sum local = 0.000454387, global = -2.55519e-05, cumulative = -0.295672
smoothSolver: Solving for omega, Initial residual = 0.000336175, Final residual = 3.24451e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00165075, Final residual = 9.81522e-05, No Iterations 4
ExecutionTime = 126.13 s ClockTime = 128 s
Time = 875
smoothSolver: Solving for Ux, Initial residual = 0.000863791, Final residual = 4.95079e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00275129, Final residual = 0.000152572, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0193971, Final residual = 9.53426e-05, No Iterations 4
time step continuity errors : sum local = 0.000448872, global = -1.84002e-05, cumulative = -0.29569
smoothSolver: Solving for omega, Initial residual = 0.000336459, Final residual = 3.24879e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00164997, Final residual = 9.81086e-05, No Iterations 4
ExecutionTime = 126.27 s ClockTime = 128 s
Time = 876
smoothSolver: Solving for Ux, Initial residual = 0.000864286, Final residual = 4.95485e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00275229, Final residual = 0.000152729, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0193874, Final residual = 0.000193019, No Iterations 3
time step continuity errors : sum local = 0.000908505, global = 5.5484e-05, cumulative = -0.295635
smoothSolver: Solving for omega, Initial residual = 0.00033678, Final residual = 3.2529e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00164918, Final residual = 9.80648e-05, No Iterations 4
ExecutionTime = 126.41 s ClockTime = 128 s
Time = 877
smoothSolver: Solving for Ux, Initial residual = 0.000864904, Final residual = 4.95924e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00275335, Final residual = 0.000152901, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0193636, Final residual = 7.42778e-05, No Iterations 4
time step continuity errors : sum local = 0.000349365, global = 8.58434e-05, cumulative = -0.295549
smoothSolver: Solving for omega, Initial residual = 0.000337151, Final residual = 3.25745e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00164836, Final residual = 9.80179e-05, No Iterations 4
ExecutionTime = 126.54 s ClockTime = 128 s
Time = 878
smoothSolver: Solving for Ux, Initial residual = 0.000865344, Final residual = 4.96293e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00275418, Final residual = 0.000153047, No Iterations 4
GAMG: Solving for p, Initial residual = 0.01935, Final residual = 8.24802e-05, No Iterations 4
time step continuity errors : sum local = 0.000387815, global = 9.36696e-05, cumulative = -0.295455
smoothSolver: Solving for omega, Initial residual = 0.000337443, Final residual = 3.26194e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00164748, Final residual = 9.79696e-05, No Iterations 4
ExecutionTime = 126.68 s ClockTime = 128 s
Time = 879
smoothSolver: Solving for Ux, Initial residual = 0.000865819, Final residual = 4.96672e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00275521, Final residual = 0.0001532, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0193616, Final residual = 7.91515e-05, No Iterations 4
time step continuity errors : sum local = 0.000372126, global = 9.19553e-05, cumulative = -0.295363
smoothSolver: Solving for omega, Initial residual = 0.000337813, Final residual = 3.26627e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0016466, Final residual = 9.79189e-05, No Iterations 4
ExecutionTime = 126.82 s ClockTime = 128 s
Time = 880
smoothSolver: Solving for Ux, Initial residual = 0.000866376, Final residual = 4.97084e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00275626, Final residual = 0.00015336, No Iterations 4
GAMG: Solving for p, Initial residual = 0.019372, Final residual = 7.44453e-05, No Iterations 4
time step continuity errors : sum local = 0.000349934, global = 8.46992e-05, cumulative = -0.295278
smoothSolver: Solving for omega, Initial residual = 0.000338147, Final residual = 3.27071e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00164568, Final residual = 9.78661e-05, No Iterations 4
ExecutionTime = 126.97 s ClockTime = 128 s
Time = 881
smoothSolver: Solving for Ux, Initial residual = 0.000867001, Final residual = 4.9752e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00275733, Final residual = 0.000153519, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0193349, Final residual = 0.000190748, No Iterations 3
time step continuity errors : sum local = 0.000896273, global = 1.81011e-05, cumulative = -0.29526
smoothSolver: Solving for omega, Initial residual = 0.00033851, Final residual = 3.27513e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00164475, Final residual = 9.78097e-05, No Iterations 4
ExecutionTime = 127.1 s ClockTime = 129 s
Time = 882
smoothSolver: Solving for Ux, Initial residual = 0.000867644, Final residual = 4.9796e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00275856, Final residual = 0.000153697, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0193794, Final residual = 0.000191003, No Iterations 3
time step continuity errors : sum local = 0.000897027, global = 2.87793e-05, cumulative = -0.295231
smoothSolver: Solving for omega, Initial residual = 0.000338867, Final residual = 3.27993e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00164379, Final residual = 9.77525e-05, No Iterations 4
ExecutionTime = 127.22 s ClockTime = 129 s
Time = 883
smoothSolver: Solving for Ux, Initial residual = 0.000868147, Final residual = 4.98332e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00275966, Final residual = 0.000153854, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0194641, Final residual = 7.01162e-05, No Iterations 4
time step continuity errors : sum local = 0.000329182, global = 7.16569e-05, cumulative = -0.29516
smoothSolver: Solving for omega, Initial residual = 0.000339213, Final residual = 3.28443e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00164278, Final residual = 9.76917e-05, No Iterations 4
ExecutionTime = 127.36 s ClockTime = 129 s
Time = 884
smoothSolver: Solving for Ux, Initial residual = 0.000868591, Final residual = 4.987e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00276059, Final residual = 0.000153981, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0195178, Final residual = 0.000193342, No Iterations 3
time step continuity errors : sum local = 0.000907487, global = -1.97525e-05, cumulative = -0.29518
smoothSolver: Solving for omega, Initial residual = 0.000339658, Final residual = 3.28863e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00164177, Final residual = 9.76285e-05, No Iterations 4
ExecutionTime = 127.49 s ClockTime = 129 s
Time = 885
smoothSolver: Solving for Ux, Initial residual = 0.000869152, Final residual = 4.99113e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00276183, Final residual = 0.000154143, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0195152, Final residual = 0.000188252, No Iterations 3
time step continuity errors : sum local = 0.000883333, global = -8.95859e-06, cumulative = -0.295189
smoothSolver: Solving for omega, Initial residual = 0.000340012, Final residual = 3.2934e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00164072, Final residual = 9.75633e-05, No Iterations 4
ExecutionTime = 127.63 s ClockTime = 129 s
Time = 886
smoothSolver: Solving for Ux, Initial residual = 0.000869758, Final residual = 4.99539e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00276302, Final residual = 0.000154315, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0195167, Final residual = 0.000186911, No Iterations 3
time step continuity errors : sum local = 0.000876809, global = 5.74516e-06, cumulative = -0.295183
smoothSolver: Solving for omega, Initial residual = 0.000340441, Final residual = 3.29808e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0016396, Final residual = 9.74959e-05, No Iterations 4
ExecutionTime = 127.77 s ClockTime = 129 s
Time = 887
smoothSolver: Solving for Ux, Initial residual = 0.000870353, Final residual = 4.99948e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00276418, Final residual = 0.000154476, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0195374, Final residual = 0.000188571, No Iterations 3
time step continuity errors : sum local = 0.000884335, global = 4.81979e-06, cumulative = -0.295178
smoothSolver: Solving for omega, Initial residual = 0.000340823, Final residual = 3.30216e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00163847, Final residual = 9.74243e-05, No Iterations 4
ExecutionTime = 127.89 s ClockTime = 129 s
Time = 888
smoothSolver: Solving for Ux, Initial residual = 0.0008709, Final residual = 5.00347e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00276543, Final residual = 0.000154624, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0195045, Final residual = 0.000190769, No Iterations 3
time step continuity errors : sum local = 0.000894195, global = -6.40063e-06, cumulative = -0.295184
smoothSolver: Solving for omega, Initial residual = 0.000341187, Final residual = 3.30684e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00163729, Final residual = 9.73506e-05, No Iterations 4
ExecutionTime = 128.02 s ClockTime = 129 s
Time = 889
smoothSolver: Solving for Ux, Initial residual = 0.00087144, Final residual = 5.00732e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00276665, Final residual = 0.000154769, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0194668, Final residual = 0.000189622, No Iterations 3
time step continuity errors : sum local = 0.000888475, global = -1.00676e-05, cumulative = -0.295194
smoothSolver: Solving for omega, Initial residual = 0.000341594, Final residual = 3.31176e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00163612, Final residual = 9.72759e-05, No Iterations 4
ExecutionTime = 128.15 s ClockTime = 130 s
Time = 890
smoothSolver: Solving for Ux, Initial residual = 0.00087199, Final residual = 5.0112e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00276793, Final residual = 0.000154929, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0194896, Final residual = 0.00018555, No Iterations 3
time step continuity errors : sum local = 0.000869111, global = -2.99958e-06, cumulative = -0.295197
smoothSolver: Solving for omega, Initial residual = 0.000342083, Final residual = 3.31587e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00163492, Final residual = 9.71978e-05, No Iterations 4
ExecutionTime = 128.29 s ClockTime = 130 s
Time = 891
smoothSolver: Solving for Ux, Initial residual = 0.000872587, Final residual = 5.01534e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00276922, Final residual = 0.000155095, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0194662, Final residual = 0.000182459, No Iterations 3
time step continuity errors : sum local = 0.000854165, global = 4.56156e-06, cumulative = -0.295193
smoothSolver: Solving for omega, Initial residual = 0.0003425, Final residual = 3.32049e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00163365, Final residual = 9.71179e-05, No Iterations 4
ExecutionTime = 128.42 s ClockTime = 130 s
Time = 892
smoothSolver: Solving for Ux, Initial residual = 0.00087316, Final residual = 5.01937e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00277065, Final residual = 0.00015526, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0194946, Final residual = 0.000181975, No Iterations 3
time step continuity errors : sum local = 0.000851399, global = 5.84603e-06, cumulative = -0.295187
smoothSolver: Solving for omega, Initial residual = 0.000342847, Final residual = 3.32557e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00163236, Final residual = 9.70356e-05, No Iterations 4
ExecutionTime = 128.54 s ClockTime = 130 s
Time = 893
smoothSolver: Solving for Ux, Initial residual = 0.000873713, Final residual = 5.02315e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027723, Final residual = 0.000155428, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0195405, Final residual = 0.000182509, No Iterations 3
time step continuity errors : sum local = 0.000853526, global = 3.7756e-06, cumulative = -0.295183
smoothSolver: Solving for omega, Initial residual = 0.000343356, Final residual = 3.32973e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00163106, Final residual = 9.69488e-05, No Iterations 4
ExecutionTime = 128.67 s ClockTime = 130 s
Time = 894
smoothSolver: Solving for Ux, Initial residual = 0.000874253, Final residual = 5.0269e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00277394, Final residual = 0.0001556, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0195979, Final residual = 0.000182529, No Iterations 3
time step continuity errors : sum local = 0.00085324, global = 2.38353e-06, cumulative = -0.295181
smoothSolver: Solving for omega, Initial residual = 0.0003438, Final residual = 3.33414e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00162971, Final residual = 9.68631e-05, No Iterations 4
ExecutionTime = 128.81 s ClockTime = 130 s
Time = 895
smoothSolver: Solving for Ux, Initial residual = 0.000874793, Final residual = 5.03081e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00277557, Final residual = 0.000155779, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196182, Final residual = 0.000181607, No Iterations 3
time step continuity errors : sum local = 0.000848528, global = 3.03498e-06, cumulative = -0.295178
smoothSolver: Solving for omega, Initial residual = 0.00034427, Final residual = 3.33958e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00162832, Final residual = 9.6773e-05, No Iterations 4
ExecutionTime = 128.93 s ClockTime = 130 s
Time = 896
smoothSolver: Solving for Ux, Initial residual = 0.000875339, Final residual = 5.03476e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00277726, Final residual = 0.000155954, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196221, Final residual = 0.000180474, No Iterations 3
time step continuity errors : sum local = 0.000842863, global = 5.1026e-06, cumulative = -0.295173
smoothSolver: Solving for omega, Initial residual = 0.000344681, Final residual = 3.34372e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00162693, Final residual = 9.66804e-05, No Iterations 4
ExecutionTime = 129.07 s ClockTime = 130 s
Time = 897
smoothSolver: Solving for Ux, Initial residual = 0.00087588, Final residual = 5.0386e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00277908, Final residual = 0.00015613, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196224, Final residual = 0.000179177, No Iterations 3
time step continuity errors : sum local = 0.000836424, global = 6.38536e-06, cumulative = -0.295166
smoothSolver: Solving for omega, Initial residual = 0.000345142, Final residual = 3.34772e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0016255, Final residual = 9.65859e-05, No Iterations 4
ExecutionTime = 129.2 s ClockTime = 131 s
Time = 898
smoothSolver: Solving for Ux, Initial residual = 0.000876432, Final residual = 5.04245e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00278097, Final residual = 0.000156313, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0195784, Final residual = 0.000178059, No Iterations 3
time step continuity errors : sum local = 0.000830681, global = 6.9845e-06, cumulative = -0.295159
smoothSolver: Solving for omega, Initial residual = 0.000345582, Final residual = 3.35297e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00162402, Final residual = 9.64881e-05, No Iterations 4
ExecutionTime = 129.33 s ClockTime = 131 s
Time = 899
smoothSolver: Solving for Ux, Initial residual = 0.000876963, Final residual = 5.0463e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00278287, Final residual = 0.0001565, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0195768, Final residual = 0.000177026, No Iterations 3
time step continuity errors : sum local = 0.000825333, global = 8.17826e-06, cumulative = -0.295151
smoothSolver: Solving for omega, Initial residual = 0.000346015, Final residual = 3.35723e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00162254, Final residual = 9.63896e-05, No Iterations 4
ExecutionTime = 129.46 s ClockTime = 131 s
Time = 900
smoothSolver: Solving for Ux, Initial residual = 0.000877471, Final residual = 5.05e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00278489, Final residual = 0.000156693, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0195778, Final residual = 0.00017612, No Iterations 3
time step continuity errors : sum local = 0.000820642, global = 9.59766e-06, cumulative = -0.295142
smoothSolver: Solving for omega, Initial residual = 0.000346468, Final residual = 3.36108e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00162102, Final residual = 9.62873e-05, No Iterations 4
ExecutionTime = 129.79 s ClockTime = 131 s
Time = 901
smoothSolver: Solving for Ux, Initial residual = 0.000877975, Final residual = 5.05368e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00278708, Final residual = 0.00015689, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0195432, Final residual = 0.000175354, No Iterations 3
time step continuity errors : sum local = 0.000816619, global = 1.01589e-05, cumulative = -0.295131
smoothSolver: Solving for omega, Initial residual = 0.000346848, Final residual = 3.36586e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00161943, Final residual = 9.61837e-05, No Iterations 4
ExecutionTime = 129.92 s ClockTime = 131 s
Time = 902
smoothSolver: Solving for Ux, Initial residual = 0.000878475, Final residual = 5.05738e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00278934, Final residual = 0.000157094, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0195402, Final residual = 0.000174425, No Iterations 3
time step continuity errors : sum local = 0.000811714, global = 9.61911e-06, cumulative = -0.295122
smoothSolver: Solving for omega, Initial residual = 0.000347285, Final residual = 3.37014e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00161787, Final residual = 9.60772e-05, No Iterations 4
ExecutionTime = 130.05 s ClockTime = 132 s
Time = 903
smoothSolver: Solving for Ux, Initial residual = 0.000878961, Final residual = 5.06105e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00279166, Final residual = 0.000157308, No Iterations 4
GAMG: Solving for p, Initial residual = 0.019594, Final residual = 0.000173899, No Iterations 3
time step continuity errors : sum local = 0.000808762, global = 9.22889e-06, cumulative = -0.295113
smoothSolver: Solving for omega, Initial residual = 0.000347756, Final residual = 3.37345e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00161629, Final residual = 9.59684e-05, No Iterations 4
ExecutionTime = 130.18 s ClockTime = 132 s
Time = 904
smoothSolver: Solving for Ux, Initial residual = 0.000879453, Final residual = 5.06467e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00279393, Final residual = 0.000157515, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196693, Final residual = 0.000173577, No Iterations 3
time step continuity errors : sum local = 0.000806833, global = 8.81801e-06, cumulative = -0.295104
smoothSolver: Solving for omega, Initial residual = 0.000348099, Final residual = 3.37781e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00161464, Final residual = 9.58581e-05, No Iterations 4
ExecutionTime = 130.31 s ClockTime = 132 s
Time = 905
smoothSolver: Solving for Ux, Initial residual = 0.000879946, Final residual = 5.06833e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00279626, Final residual = 0.000157719, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196898, Final residual = 0.00017268, No Iterations 3
time step continuity errors : sum local = 0.000802155, global = 8.91266e-06, cumulative = -0.295095
smoothSolver: Solving for omega, Initial residual = 0.000348448, Final residual = 3.38166e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00161298, Final residual = 9.57454e-05, No Iterations 4
ExecutionTime = 130.44 s ClockTime = 132 s
Time = 906
smoothSolver: Solving for Ux, Initial residual = 0.000880423, Final residual = 5.07196e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00279861, Final residual = 0.000157921, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196883, Final residual = 0.000171202, No Iterations 3
time step continuity errors : sum local = 0.000794738, global = 9.70913e-06, cumulative = -0.295085
smoothSolver: Solving for omega, Initial residual = 0.000348893, Final residual = 3.38464e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00161132, Final residual = 9.56295e-05, No Iterations 4
ExecutionTime = 130.56 s ClockTime = 132 s
Time = 907
smoothSolver: Solving for Ux, Initial residual = 0.000880876, Final residual = 5.07551e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00280087, Final residual = 0.000158121, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196911, Final residual = 0.000170063, No Iterations 3
time step continuity errors : sum local = 0.000788913, global = 1.00125e-05, cumulative = -0.295075
smoothSolver: Solving for omega, Initial residual = 0.000349281, Final residual = 3.38923e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00160963, Final residual = 9.55137e-05, No Iterations 4
ExecutionTime = 130.69 s ClockTime = 132 s
Time = 908
smoothSolver: Solving for Ux, Initial residual = 0.000881328, Final residual = 5.07902e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00280304, Final residual = 0.000158319, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196471, Final residual = 0.000168944, No Iterations 3
time step continuity errors : sum local = 0.000783112, global = 9.85304e-06, cumulative = -0.295065
smoothSolver: Solving for omega, Initial residual = 0.000349594, Final residual = 3.39286e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00160786, Final residual = 9.53943e-05, No Iterations 4
ExecutionTime = 130.83 s ClockTime = 132 s
Time = 909
smoothSolver: Solving for Ux, Initial residual = 0.000881784, Final residual = 5.08251e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00280521, Final residual = 0.000158513, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196577, Final residual = 0.000167454, No Iterations 3
time step continuity errors : sum local = 0.000775522, global = 8.85951e-06, cumulative = -0.295056
smoothSolver: Solving for omega, Initial residual = 0.000350021, Final residual = 3.39504e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00160611, Final residual = 9.52734e-05, No Iterations 4
ExecutionTime = 130.96 s ClockTime = 132 s
Time = 910
smoothSolver: Solving for Ux, Initial residual = 0.000882222, Final residual = 5.08598e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00280746, Final residual = 0.000158703, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196624, Final residual = 0.000166521, No Iterations 3
time step continuity errors : sum local = 0.00077059, global = 7.33773e-06, cumulative = -0.295049
smoothSolver: Solving for omega, Initial residual = 0.000350389, Final residual = 3.39948e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00160438, Final residual = 9.51521e-05, No Iterations 4
ExecutionTime = 131.09 s ClockTime = 133 s
Time = 911
smoothSolver: Solving for Ux, Initial residual = 0.000882635, Final residual = 5.08942e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00280968, Final residual = 0.000158896, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196022, Final residual = 0.000166153, No Iterations 3
time step continuity errors : sum local = 0.000768289, global = 5.53905e-06, cumulative = -0.295044
smoothSolver: Solving for omega, Initial residual = 0.000350635, Final residual = 3.40282e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0016026, Final residual = 9.50287e-05, No Iterations 4
ExecutionTime = 131.22 s ClockTime = 133 s
Time = 912
smoothSolver: Solving for Ux, Initial residual = 0.00088304, Final residual = 5.09277e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00281185, Final residual = 0.000159093, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196176, Final residual = 0.000165332, No Iterations 3
time step continuity errors : sum local = 0.000763839, global = 3.02771e-06, cumulative = -0.295041
smoothSolver: Solving for omega, Initial residual = 0.000351017, Final residual = 3.40459e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00160079, Final residual = 9.4905e-05, No Iterations 4
ExecutionTime = 131.34 s ClockTime = 133 s
Time = 913
smoothSolver: Solving for Ux, Initial residual = 0.000883451, Final residual = 5.09612e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00281402, Final residual = 0.000159283, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196596, Final residual = 0.000164406, No Iterations 3
time step continuity errors : sum local = 0.000758902, global = -9.07077e-08, cumulative = -0.295041
smoothSolver: Solving for omega, Initial residual = 0.000351397, Final residual = 3.40867e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00159902, Final residual = 9.47805e-05, No Iterations 4
ExecutionTime = 131.46 s ClockTime = 133 s
Time = 914
smoothSolver: Solving for Ux, Initial residual = 0.000883847, Final residual = 5.09945e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00281623, Final residual = 0.000159471, No Iterations 4
GAMG: Solving for p, Initial residual = 0.019646, Final residual = 0.00016429, No Iterations 3
time step continuity errors : sum local = 0.000757803, global = -3.56667e-06, cumulative = -0.295044
smoothSolver: Solving for omega, Initial residual = 0.000351617, Final residual = 3.41231e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00159725, Final residual = 9.46549e-05, No Iterations 4
ExecutionTime = 131.59 s ClockTime = 133 s
Time = 915
smoothSolver: Solving for Ux, Initial residual = 0.000884219, Final residual = 5.10264e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00281833, Final residual = 0.000159659, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196904, Final residual = 0.000164127, No Iterations 3
time step continuity errors : sum local = 0.000756432, global = -7.19321e-06, cumulative = -0.295051
smoothSolver: Solving for omega, Initial residual = 0.000351908, Final residual = 3.4136e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0015954, Final residual = 9.4528e-05, No Iterations 4
ExecutionTime = 131.72 s ClockTime = 133 s
Time = 916
smoothSolver: Solving for Ux, Initial residual = 0.000884594, Final residual = 5.10586e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00282045, Final residual = 0.000159849, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0197523, Final residual = 0.000163219, No Iterations 3
time step continuity errors : sum local = 0.000751531, global = -1.04236e-05, cumulative = -0.295062
smoothSolver: Solving for omega, Initial residual = 0.000352315, Final residual = 3.41666e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00159359, Final residual = 9.43995e-05, No Iterations 4
ExecutionTime = 131.85 s ClockTime = 133 s
Time = 917
smoothSolver: Solving for Ux, Initial residual = 0.000884962, Final residual = 5.10908e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00282264, Final residual = 0.000160035, No Iterations 4
GAMG: Solving for p, Initial residual = 0.019751, Final residual = 0.000162533, No Iterations 3
time step continuity errors : sum local = 0.000747705, global = -1.33211e-05, cumulative = -0.295075
smoothSolver: Solving for omega, Initial residual = 0.000352511, Final residual = 3.42051e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00159178, Final residual = 9.4269e-05, No Iterations 4
ExecutionTime = 131.98 s ClockTime = 133 s
Time = 918
smoothSolver: Solving for Ux, Initial residual = 0.000885303, Final residual = 5.11226e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00282475, Final residual = 0.000160215, No Iterations 4
GAMG: Solving for p, Initial residual = 0.019703, Final residual = 0.000162082, No Iterations 3
time step continuity errors : sum local = 0.000744941, global = -1.60216e-05, cumulative = -0.295091
smoothSolver: Solving for omega, Initial residual = 0.000352694, Final residual = 3.42146e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00158987, Final residual = 9.41393e-05, No Iterations 4
ExecutionTime = 132.1 s ClockTime = 134 s
Time = 919
smoothSolver: Solving for Ux, Initial residual = 0.000885631, Final residual = 5.11535e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00282676, Final residual = 0.000160395, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0197096, Final residual = 0.000160731, No Iterations 3
time step continuity errors : sum local = 0.000737953, global = -1.82104e-05, cumulative = -0.295109
smoothSolver: Solving for omega, Initial residual = 0.000353162, Final residual = 3.42368e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00158799, Final residual = 9.40064e-05, No Iterations 4
ExecutionTime = 132.23 s ClockTime = 134 s
Time = 920
smoothSolver: Solving for Ux, Initial residual = 0.000885966, Final residual = 5.11845e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00282878, Final residual = 0.000160574, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196867, Final residual = 0.000159881, No Iterations 3
time step continuity errors : sum local = 0.000733282, global = -2.10054e-05, cumulative = -0.29513
smoothSolver: Solving for omega, Initial residual = 0.000353362, Final residual = 3.42781e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00158615, Final residual = 9.38708e-05, No Iterations 4
ExecutionTime = 132.36 s ClockTime = 134 s
Time = 921
smoothSolver: Solving for Ux, Initial residual = 0.000886281, Final residual = 5.1215e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00283091, Final residual = 0.000160753, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196318, Final residual = 0.000160005, No Iterations 3
time step continuity errors : sum local = 0.000733034, global = -2.37022e-05, cumulative = -0.295154
smoothSolver: Solving for omega, Initial residual = 0.000353404, Final residual = 3.42822e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00158417, Final residual = 9.37348e-05, No Iterations 4
ExecutionTime = 132.49 s ClockTime = 134 s
Time = 922
smoothSolver: Solving for Ux, Initial residual = 0.000886583, Final residual = 5.12443e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00283301, Final residual = 0.00016093, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196857, Final residual = 0.000159491, No Iterations 3
time step continuity errors : sum local = 0.000729854, global = -2.51665e-05, cumulative = -0.295179
smoothSolver: Solving for omega, Initial residual = 0.000353788, Final residual = 3.42894e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00158212, Final residual = 9.35973e-05, No Iterations 4
ExecutionTime = 132.62 s ClockTime = 134 s
Time = 923
smoothSolver: Solving for Ux, Initial residual = 0.000886867, Final residual = 5.1274e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00283508, Final residual = 0.000161111, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196955, Final residual = 0.00015887, No Iterations 3
time step continuity errors : sum local = 0.000726253, global = -2.57199e-05, cumulative = -0.295205
smoothSolver: Solving for omega, Initial residual = 0.000354084, Final residual = 3.43366e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00158021, Final residual = 9.3457e-05, No Iterations 4
ExecutionTime = 132.75 s ClockTime = 134 s
Time = 924
smoothSolver: Solving for Ux, Initial residual = 0.000887146, Final residual = 5.13032e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00283709, Final residual = 0.000161291, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0197152, Final residual = 0.000158755, No Iterations 3
time step continuity errors : sum local = 0.000724923, global = -2.56171e-05, cumulative = -0.295231
smoothSolver: Solving for omega, Initial residual = 0.000354065, Final residual = 3.43414e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00157819, Final residual = 9.33157e-05, No Iterations 4
ExecutionTime = 132.9 s ClockTime = 134 s
Time = 925
smoothSolver: Solving for Ux, Initial residual = 0.000887407, Final residual = 5.1331e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028392, Final residual = 0.000161463, No Iterations 4
GAMG: Solving for p, Initial residual = 0.019791, Final residual = 0.000158569, No Iterations 3
time step continuity errors : sum local = 0.000723241, global = -2.50025e-05, cumulative = -0.295256
smoothSolver: Solving for omega, Initial residual = 0.000354291, Final residual = 3.43329e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00157606, Final residual = 9.31735e-05, No Iterations 4
ExecutionTime = 133.03 s ClockTime = 134 s
Time = 926
smoothSolver: Solving for Ux, Initial residual = 0.00088765, Final residual = 5.13582e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00284131, Final residual = 0.000161643, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0198328, Final residual = 0.00015837, No Iterations 3
time step continuity errors : sum local = 0.000721504, global = -2.39259e-05, cumulative = -0.295279
smoothSolver: Solving for omega, Initial residual = 0.000354641, Final residual = 3.43815e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00157405, Final residual = 9.30302e-05, No Iterations 4
ExecutionTime = 133.16 s ClockTime = 135 s
Time = 927
smoothSolver: Solving for Ux, Initial residual = 0.00088787, Final residual = 5.13853e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00284342, Final residual = 0.000161821, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0198316, Final residual = 0.000158981, No Iterations 3
time step continuity errors : sum local = 0.00072345, global = -2.357e-05, cumulative = -0.295303
smoothSolver: Solving for omega, Initial residual = 0.000354687, Final residual = 3.43916e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00157198, Final residual = 9.28855e-05, No Iterations 4
ExecutionTime = 133.28 s ClockTime = 135 s
Time = 928
smoothSolver: Solving for Ux, Initial residual = 0.000888101, Final residual = 5.14117e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00284544, Final residual = 0.000161997, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0198743, Final residual = 0.000159727, No Iterations 3
time step continuity errors : sum local = 0.000725915, global = -2.34217e-05, cumulative = -0.295326
smoothSolver: Solving for omega, Initial residual = 0.000354711, Final residual = 3.43734e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00156978, Final residual = 9.2738e-05, No Iterations 4
ExecutionTime = 133.41 s ClockTime = 135 s
Time = 929
smoothSolver: Solving for Ux, Initial residual = 0.000888312, Final residual = 5.14376e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00284749, Final residual = 0.00016217, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0198751, Final residual = 0.000159857, No Iterations 3
time step continuity errors : sum local = 0.000725591, global = -2.37492e-05, cumulative = -0.29535
smoothSolver: Solving for omega, Initial residual = 0.00035509, Final residual = 3.44155e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00156766, Final residual = 9.259e-05, No Iterations 4
ExecutionTime = 133.55 s ClockTime = 135 s
Time = 930
smoothSolver: Solving for Ux, Initial residual = 0.000888489, Final residual = 5.1463e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00284962, Final residual = 0.000162345, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0198537, Final residual = 0.000160452, No Iterations 3
time step continuity errors : sum local = 0.000727413, global = -2.53642e-05, cumulative = -0.295376
smoothSolver: Solving for omega, Initial residual = 0.000355194, Final residual = 3.44284e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00156547, Final residual = 9.24406e-05, No Iterations 4
ExecutionTime = 133.67 s ClockTime = 135 s
Time = 931
smoothSolver: Solving for Ux, Initial residual = 0.000888649, Final residual = 5.14876e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00285169, Final residual = 0.000162517, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0198195, Final residual = 0.000161048, No Iterations 3
time step continuity errors : sum local = 0.000729164, global = -2.78287e-05, cumulative = -0.295403
smoothSolver: Solving for omega, Initial residual = 0.000355139, Final residual = 3.44084e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00156322, Final residual = 9.22882e-05, No Iterations 4
ExecutionTime = 133.8 s ClockTime = 135 s
Time = 932
smoothSolver: Solving for Ux, Initial residual = 0.000888798, Final residual = 5.15111e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00285371, Final residual = 0.000162688, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0197653, Final residual = 0.000161625, No Iterations 3
time step continuity errors : sum local = 0.00073074, global = -3.05162e-05, cumulative = -0.295434
smoothSolver: Solving for omega, Initial residual = 0.000355437, Final residual = 3.44382e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00156097, Final residual = 9.21356e-05, No Iterations 4
ExecutionTime = 133.93 s ClockTime = 135 s
Time = 933
smoothSolver: Solving for Ux, Initial residual = 0.00088894, Final residual = 5.15336e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028559, Final residual = 0.000162863, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0197387, Final residual = 0.000162859, No Iterations 3
time step continuity errors : sum local = 0.00073534, global = -3.41779e-05, cumulative = -0.295468
smoothSolver: Solving for omega, Initial residual = 0.000355577, Final residual = 3.44532e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00155872, Final residual = 9.19815e-05, No Iterations 4
ExecutionTime = 134.06 s ClockTime = 136 s
Time = 934
smoothSolver: Solving for Ux, Initial residual = 0.000889058, Final residual = 5.1555e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00285812, Final residual = 0.000163043, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0197327, Final residual = 0.000164173, No Iterations 3
time step continuity errors : sum local = 0.000740274, global = -3.72678e-05, cumulative = -0.295505
smoothSolver: Solving for omega, Initial residual = 0.000355468, Final residual = 3.44338e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00155639, Final residual = 9.18235e-05, No Iterations 4
ExecutionTime = 134.19 s ClockTime = 136 s
Time = 935
smoothSolver: Solving for Ux, Initial residual = 0.000889157, Final residual = 5.1576e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00286017, Final residual = 0.000163209, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0197401, Final residual = 0.000164901, No Iterations 3
time step continuity errors : sum local = 0.000742422, global = -4.00531e-05, cumulative = -0.295545
smoothSolver: Solving for omega, Initial residual = 0.00035565, Final residual = 3.44488e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00155404, Final residual = 9.16648e-05, No Iterations 4
ExecutionTime = 134.32 s ClockTime = 136 s
Time = 936
smoothSolver: Solving for Ux, Initial residual = 0.000889235, Final residual = 5.15963e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00286223, Final residual = 0.000163383, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0197883, Final residual = 0.000165665, No Iterations 3
time step continuity errors : sum local = 0.000744777, global = -4.32222e-05, cumulative = -0.295589
smoothSolver: Solving for omega, Initial residual = 0.000355804, Final residual = 3.44659e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00155171, Final residual = 9.15091e-05, No Iterations 4
ExecutionTime = 134.44 s ClockTime = 136 s
Time = 937
smoothSolver: Solving for Ux, Initial residual = 0.000889301, Final residual = 5.16154e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00286453, Final residual = 0.00016356, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0198675, Final residual = 0.000166448, No Iterations 3
time step continuity errors : sum local = 0.000747221, global = -4.44841e-05, cumulative = -0.295633
smoothSolver: Solving for omega, Initial residual = 0.000355702, Final residual = 3.44511e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0015493, Final residual = 9.13485e-05, No Iterations 4
ExecutionTime = 134.57 s ClockTime = 136 s
Time = 938
smoothSolver: Solving for Ux, Initial residual = 0.000889348, Final residual = 5.16327e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00286677, Final residual = 0.000163736, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0199041, Final residual = 0.000167274, No Iterations 3
time step continuity errors : sum local = 0.000749799, global = -4.61751e-05, cumulative = -0.295679
smoothSolver: Solving for omega, Initial residual = 0.000355807, Final residual = 3.44547e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00154686, Final residual = 9.11856e-05, No Iterations 4
ExecutionTime = 134.71 s ClockTime = 136 s
Time = 939
smoothSolver: Solving for Ux, Initial residual = 0.000889375, Final residual = 5.165e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00286891, Final residual = 0.000163911, No Iterations 4
GAMG: Solving for p, Initial residual = 0.019937, Final residual = 0.000168052, No Iterations 3
time step continuity errors : sum local = 0.000752173, global = -4.84084e-05, cumulative = -0.295728
smoothSolver: Solving for omega, Initial residual = 0.000355926, Final residual = 3.44709e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00154445, Final residual = 9.10252e-05, No Iterations 4
ExecutionTime = 134.86 s ClockTime = 136 s
Time = 940
smoothSolver: Solving for Ux, Initial residual = 0.00088937, Final residual = 5.16667e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287107, Final residual = 0.000164091, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0199623, Final residual = 0.000169167, No Iterations 3
time step continuity errors : sum local = 0.000756068, global = -5.04454e-05, cumulative = -0.295778
smoothSolver: Solving for omega, Initial residual = 0.000355845, Final residual = 3.44575e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00154202, Final residual = 9.08627e-05, No Iterations 4
ExecutionTime = 134.99 s ClockTime = 136 s
Time = 941
smoothSolver: Solving for Ux, Initial residual = 0.000889372, Final residual = 5.16819e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028734, Final residual = 0.000164266, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0198958, Final residual = 0.000170231, No Iterations 3
time step continuity errors : sum local = 0.000759686, global = -5.30564e-05, cumulative = -0.295831
smoothSolver: Solving for omega, Initial residual = 0.000355779, Final residual = 3.44466e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00153952, Final residual = 9.06945e-05, No Iterations 4
ExecutionTime = 135.12 s ClockTime = 137 s
Time = 942
smoothSolver: Solving for Ux, Initial residual = 0.000889348, Final residual = 5.16962e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287569, Final residual = 0.000164437, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0198955, Final residual = 0.000170978, No Iterations 3
time step continuity errors : sum local = 0.000761834, global = -5.54759e-05, cumulative = -0.295887
smoothSolver: Solving for omega, Initial residual = 0.000355943, Final residual = 3.44583e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00153699, Final residual = 9.05304e-05, No Iterations 4
ExecutionTime = 135.25 s ClockTime = 137 s
Time = 943
smoothSolver: Solving for Ux, Initial residual = 0.000889273, Final residual = 5.17093e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028779, Final residual = 0.000164615, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0199518, Final residual = 0.000172318, No Iterations 3
time step continuity errors : sum local = 0.000766572, global = -5.81573e-05, cumulative = -0.295945
smoothSolver: Solving for omega, Initial residual = 0.000355855, Final residual = 3.44468e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00153448, Final residual = 9.03641e-05, No Iterations 4
ExecutionTime = 135.37 s ClockTime = 137 s
Time = 944
smoothSolver: Solving for Ux, Initial residual = 0.000889194, Final residual = 5.1722e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288021, Final residual = 0.000164796, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0199237, Final residual = 0.000173885, No Iterations 3
time step continuity errors : sum local = 0.000772246, global = -5.99553e-05, cumulative = -0.296005
smoothSolver: Solving for omega, Initial residual = 0.000355631, Final residual = 3.443e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00153196, Final residual = 9.01958e-05, No Iterations 4
ExecutionTime = 135.51 s ClockTime = 137 s
Time = 945
smoothSolver: Solving for Ux, Initial residual = 0.000889107, Final residual = 5.17329e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288267, Final residual = 0.000164974, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0198382, Final residual = 0.000175386, No Iterations 3
time step continuity errors : sum local = 0.000777513, global = -6.02414e-05, cumulative = -0.296065
smoothSolver: Solving for omega, Initial residual = 0.000355842, Final residual = 3.44329e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00152938, Final residual = 9.00275e-05, No Iterations 4
ExecutionTime = 135.63 s ClockTime = 137 s
Time = 946
smoothSolver: Solving for Ux, Initial residual = 0.000888978, Final residual = 5.17424e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288501, Final residual = 0.000165154, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0198968, Final residual = 0.000177095, No Iterations 3
time step continuity errors : sum local = 0.000783678, global = -6.12418e-05, cumulative = -0.296126
smoothSolver: Solving for omega, Initial residual = 0.000355698, Final residual = 3.44224e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00152678, Final residual = 8.98595e-05, No Iterations 4
ExecutionTime = 135.76 s ClockTime = 137 s
Time = 947
smoothSolver: Solving for Ux, Initial residual = 0.000888822, Final residual = 5.1751e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288725, Final residual = 0.000165334, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0198775, Final residual = 0.000178273, No Iterations 3
time step continuity errors : sum local = 0.000787482, global = -6.20401e-05, cumulative = -0.296188
smoothSolver: Solving for omega, Initial residual = 0.000355465, Final residual = 3.44044e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00152418, Final residual = 8.96889e-05, No Iterations 4
ExecutionTime = 135.9 s ClockTime = 137 s
Time = 948
smoothSolver: Solving for Ux, Initial residual = 0.000888659, Final residual = 5.17583e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288968, Final residual = 0.000165511, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0198595, Final residual = 0.000178768, No Iterations 3
time step continuity errors : sum local = 0.000788161, global = -6.11529e-05, cumulative = -0.296249
smoothSolver: Solving for omega, Initial residual = 0.000355544, Final residual = 3.4394e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0015216, Final residual = 8.9518e-05, No Iterations 4
ExecutionTime = 136.02 s ClockTime = 138 s
Time = 949
smoothSolver: Solving for Ux, Initial residual = 0.000888486, Final residual = 5.17644e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289226, Final residual = 0.0001657, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0200096, Final residual = 0.00017913, No Iterations 3
time step continuity errors : sum local = 0.000788334, global = -6.17236e-05, cumulative = -0.296311
smoothSolver: Solving for omega, Initial residual = 0.000355426, Final residual = 3.43835e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00151896, Final residual = 8.9349e-05, No Iterations 4
ExecutionTime = 136.16 s ClockTime = 138 s
Time = 950
smoothSolver: Solving for Ux, Initial residual = 0.00088828, Final residual = 5.177e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028946, Final residual = 0.000165875, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0200518, Final residual = 0.000179824, No Iterations 3
time step continuity errors : sum local = 0.000789958, global = -6.29193e-05, cumulative = -0.296374
smoothSolver: Solving for omega, Initial residual = 0.000355166, Final residual = 3.43657e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00151631, Final residual = 8.91767e-05, No Iterations 4
ExecutionTime = 136.49 s ClockTime = 138 s
Time = 951
smoothSolver: Solving for Ux, Initial residual = 0.000888059, Final residual = 5.17725e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289684, Final residual = 0.000166056, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0200563, Final residual = 0.000180926, No Iterations 3
time step continuity errors : sum local = 0.00079335, global = -6.2526e-05, cumulative = -0.296437
smoothSolver: Solving for omega, Initial residual = 0.000355119, Final residual = 3.43467e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00151369, Final residual = 8.90041e-05, No Iterations 4
ExecutionTime = 136.62 s ClockTime = 138 s
Time = 952
smoothSolver: Solving for Ux, Initial residual = 0.000887816, Final residual = 5.17756e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289941, Final residual = 0.000166242, No Iterations 4
GAMG: Solving for p, Initial residual = 0.020061, Final residual = 0.000182055, No Iterations 3
time step continuity errors : sum local = 0.000796851, global = -6.258e-05, cumulative = -0.296499
smoothSolver: Solving for omega, Initial residual = 0.00035515, Final residual = 3.43376e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00151105, Final residual = 8.88372e-05, No Iterations 4
ExecutionTime = 136.75 s ClockTime = 138 s
Time = 953
smoothSolver: Solving for Ux, Initial residual = 0.000887537, Final residual = 5.17776e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290197, Final residual = 0.000166427, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0200347, Final residual = 0.000184136, No Iterations 3
time step continuity errors : sum local = 0.000804477, global = -6.26823e-05, cumulative = -0.296562
smoothSolver: Solving for omega, Initial residual = 0.00035484, Final residual = 3.43171e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00150839, Final residual = 8.86656e-05, No Iterations 4
ExecutionTime = 136.89 s ClockTime = 138 s
Time = 954
smoothSolver: Solving for Ux, Initial residual = 0.00088725, Final residual = 5.17775e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290428, Final residual = 0.000166605, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0200636, Final residual = 0.000186496, No Iterations 3
time step continuity errors : sum local = 0.000813273, global = -6.04812e-05, cumulative = -0.296622
smoothSolver: Solving for omega, Initial residual = 0.000354575, Final residual = 3.42832e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00150577, Final residual = 8.84902e-05, No Iterations 4
ExecutionTime = 137.01 s ClockTime = 139 s
Time = 955
smoothSolver: Solving for Ux, Initial residual = 0.00088695, Final residual = 5.17753e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290669, Final residual = 0.000166789, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0200245, Final residual = 0.000188737, No Iterations 3
time step continuity errors : sum local = 0.000821423, global = -5.74706e-05, cumulative = -0.29668
smoothSolver: Solving for omega, Initial residual = 0.000354648, Final residual = 3.42722e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00150307, Final residual = 8.83221e-05, No Iterations 4
ExecutionTime = 137.13 s ClockTime = 139 s
Time = 956
smoothSolver: Solving for Ux, Initial residual = 0.000886606, Final residual = 5.17727e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0029093, Final residual = 0.00016698, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0200387, Final residual = 0.000191498, No Iterations 3
time step continuity errors : sum local = 0.000831728, global = -5.36899e-05, cumulative = -0.296734
smoothSolver: Solving for omega, Initial residual = 0.000354316, Final residual = 3.42478e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00150043, Final residual = 8.81533e-05, No Iterations 4
ExecutionTime = 137.26 s ClockTime = 139 s
Time = 957
smoothSolver: Solving for Ux, Initial residual = 0.00088622, Final residual = 5.17698e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00291182, Final residual = 0.000167162, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0201296, Final residual = 0.000194612, No Iterations 3
time step continuity errors : sum local = 0.000843477, global = -4.9217e-05, cumulative = -0.296783
smoothSolver: Solving for omega, Initial residual = 0.000353891, Final residual = 3.42088e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00149782, Final residual = 8.79807e-05, No Iterations 4
ExecutionTime = 137.39 s ClockTime = 139 s
Time = 958
smoothSolver: Solving for Ux, Initial residual = 0.000885838, Final residual = 5.17633e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00291423, Final residual = 0.000167348, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0200988, Final residual = 0.000196181, No Iterations 3
time step continuity errors : sum local = 0.000848522, global = -4.73211e-05, cumulative = -0.29683
smoothSolver: Solving for omega, Initial residual = 0.000353959, Final residual = 3.41929e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00149514, Final residual = 8.78088e-05, No Iterations 4
ExecutionTime = 137.51 s ClockTime = 139 s
Time = 959
smoothSolver: Solving for Ux, Initial residual = 0.000885436, Final residual = 5.17561e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00291667, Final residual = 0.000167538, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0200384, Final residual = 0.00019787, No Iterations 3
time step continuity errors : sum local = 0.00085401, global = -4.54257e-05, cumulative = -0.296876
smoothSolver: Solving for omega, Initial residual = 0.000353708, Final residual = 3.41678e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00149249, Final residual = 8.7643e-05, No Iterations 4
ExecutionTime = 137.64 s ClockTime = 139 s
Time = 960
smoothSolver: Solving for Ux, Initial residual = 0.000884995, Final residual = 5.17489e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00291941, Final residual = 0.000167729, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0200948, Final residual = 0.000200344, No Iterations 3
time step continuity errors : sum local = 0.00086276, global = -4.43659e-05, cumulative = -0.29692
smoothSolver: Solving for omega, Initial residual = 0.00035323, Final residual = 3.41293e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00148986, Final residual = 8.74725e-05, No Iterations 4
ExecutionTime = 137.78 s ClockTime = 139 s
Time = 961
smoothSolver: Solving for Ux, Initial residual = 0.00088453, Final residual = 5.17387e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00292199, Final residual = 0.000167916, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0200642, Final residual = 0.00011143, No Iterations 4
time step continuity errors : sum local = 0.000478873, global = -4.54719e-05, cumulative = -0.296965
smoothSolver: Solving for omega, Initial residual = 0.000353166, Final residual = 3.41065e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00148722, Final residual = 8.73015e-05, No Iterations 4
ExecutionTime = 137.92 s ClockTime = 139 s
Time = 962
smoothSolver: Solving for Ux, Initial residual = 0.000884032, Final residual = 5.17274e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00292451, Final residual = 0.000168116, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0199244, Final residual = 0.000194233, No Iterations 3
time step continuity errors : sum local = 0.00083256, global = -5.53722e-06, cumulative = -0.296971
smoothSolver: Solving for omega, Initial residual = 0.000352985, Final residual = 3.40791e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00148458, Final residual = 8.71361e-05, No Iterations 4
ExecutionTime = 138.04 s ClockTime = 140 s
Time = 963
smoothSolver: Solving for Ux, Initial residual = 0.00088354, Final residual = 5.17151e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0029269, Final residual = 0.000168299, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0200337, Final residual = 0.000194536, No Iterations 3
time step continuity errors : sum local = 0.000832249, global = -2.0977e-05, cumulative = -0.296992
smoothSolver: Solving for omega, Initial residual = 0.000352414, Final residual = 3.40336e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00148198, Final residual = 8.69713e-05, No Iterations 4
ExecutionTime = 138.17 s ClockTime = 140 s
Time = 964
smoothSolver: Solving for Ux, Initial residual = 0.000882998, Final residual = 5.17006e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00292962, Final residual = 0.000168496, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0201536, Final residual = 0.000112394, No Iterations 4
time step continuity errors : sum local = 0.000479969, global = -4.52688e-05, cumulative = -0.297037
smoothSolver: Solving for omega, Initial residual = 0.000352148, Final residual = 3.39965e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00147933, Final residual = 8.68013e-05, No Iterations 4
ExecutionTime = 138.3 s ClockTime = 140 s
Time = 965
smoothSolver: Solving for Ux, Initial residual = 0.000882413, Final residual = 5.16871e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00293246, Final residual = 0.000168703, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0200383, Final residual = 0.000111321, No Iterations 4
time step continuity errors : sum local = 0.000474172, global = -9.12199e-05, cumulative = -0.297128
smoothSolver: Solving for omega, Initial residual = 0.000352037, Final residual = 3.39721e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0014767, Final residual = 8.6638e-05, No Iterations 4
ExecutionTime = 138.44 s ClockTime = 140 s
Time = 966
smoothSolver: Solving for Ux, Initial residual = 0.000881814, Final residual = 5.16709e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00293499, Final residual = 0.000168907, No Iterations 4
GAMG: Solving for p, Initial residual = 0.020102, Final residual = 9.4342e-05, No Iterations 4
time step continuity errors : sum local = 0.000400918, global = -0.000124313, cumulative = -0.297253
smoothSolver: Solving for omega, Initial residual = 0.000351551, Final residual = 3.39274e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00147415, Final residual = 8.64756e-05, No Iterations 4
ExecutionTime = 138.57 s ClockTime = 140 s
Time = 967
smoothSolver: Solving for Ux, Initial residual = 0.000881217, Final residual = 5.16514e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00293778, Final residual = 0.000169112, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0202405, Final residual = 9.44472e-05, No Iterations 4
time step continuity errors : sum local = 0.000400589, global = -0.000133277, cumulative = -0.297386
smoothSolver: Solving for omega, Initial residual = 0.000351046, Final residual = 3.38765e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00147152, Final residual = 8.63095e-05, No Iterations 4
ExecutionTime = 138.71 s ClockTime = 140 s
Time = 968
smoothSolver: Solving for Ux, Initial residual = 0.000880612, Final residual = 5.1634e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00294034, Final residual = 0.000169292, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0202368, Final residual = 9.38693e-05, No Iterations 4
time step continuity errors : sum local = 0.000397293, global = -0.000136917, cumulative = -0.297523
smoothSolver: Solving for omega, Initial residual = 0.000350954, Final residual = 3.38501e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00146891, Final residual = 8.61496e-05, No Iterations 4
ExecutionTime = 138.85 s ClockTime = 140 s
Time = 969
smoothSolver: Solving for Ux, Initial residual = 0.000879968, Final residual = 5.16145e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00294267, Final residual = 0.000169498, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0202793, Final residual = 9.74864e-05, No Iterations 4
time step continuity errors : sum local = 0.000411611, global = -0.00013544, cumulative = -0.297658
smoothSolver: Solving for omega, Initial residual = 0.000350562, Final residual = 3.3804e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0014664, Final residual = 8.59909e-05, No Iterations 4
ExecutionTime = 138.99 s ClockTime = 141 s
Time = 970
smoothSolver: Solving for Ux, Initial residual = 0.000879278, Final residual = 5.15916e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00294557, Final residual = 0.000169713, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204021, Final residual = 0.000116794, No Iterations 4
time step continuity errors : sum local = 0.000491935, global = -0.000131131, cumulative = -0.297789
smoothSolver: Solving for omega, Initial residual = 0.000349919, Final residual = 3.37472e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00146385, Final residual = 8.583e-05, No Iterations 4
ExecutionTime = 139.13 s ClockTime = 141 s
Time = 971
smoothSolver: Solving for Ux, Initial residual = 0.000878554, Final residual = 5.15687e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00294871, Final residual = 0.000169931, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0203333, Final residual = 0.000106638, No Iterations 4
time step continuity errors : sum local = 0.000448058, global = -0.000133598, cumulative = -0.297923
smoothSolver: Solving for omega, Initial residual = 0.000349685, Final residual = 3.37102e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00146129, Final residual = 8.56735e-05, No Iterations 4
ExecutionTime = 139.27 s ClockTime = 141 s
Time = 972
smoothSolver: Solving for Ux, Initial residual = 0.000877808, Final residual = 5.1545e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00295137, Final residual = 0.000170138, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0201859, Final residual = 9.4341e-05, No Iterations 4
time step continuity errors : sum local = 0.000395487, global = -0.00013302, cumulative = -0.298056
smoothSolver: Solving for omega, Initial residual = 0.00034935, Final residual = 3.36666e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00145882, Final residual = 8.55199e-05, No Iterations 4
ExecutionTime = 139.41 s ClockTime = 141 s
Time = 973
smoothSolver: Solving for Ux, Initial residual = 0.000877049, Final residual = 5.15181e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00295375, Final residual = 0.000170342, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0202197, Final residual = 9.31427e-05, No Iterations 4
time step continuity errors : sum local = 0.000389649, global = -0.000135805, cumulative = -0.298192
smoothSolver: Solving for omega, Initial residual = 0.000348752, Final residual = 3.3608e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00145634, Final residual = 8.53653e-05, No Iterations 4
ExecutionTime = 139.54 s ClockTime = 141 s
Time = 974
smoothSolver: Solving for Ux, Initial residual = 0.00087631, Final residual = 5.14924e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00295677, Final residual = 0.000170562, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0202963, Final residual = 9.19939e-05, No Iterations 4
time step continuity errors : sum local = 0.000383969, global = -0.000130831, cumulative = -0.298323
smoothSolver: Solving for omega, Initial residual = 0.000348302, Final residual = 3.356e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00145386, Final residual = 8.52124e-05, No Iterations 4
ExecutionTime = 139.69 s ClockTime = 141 s
Time = 975
smoothSolver: Solving for Ux, Initial residual = 0.000875539, Final residual = 5.14662e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00295966, Final residual = 0.000170772, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0201954, Final residual = 9.30055e-05, No Iterations 4
time step continuity errors : sum local = 0.000387167, global = -0.000131629, cumulative = -0.298454
smoothSolver: Solving for omega, Initial residual = 0.000347982, Final residual = 3.3518e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00145146, Final residual = 8.50661e-05, No Iterations 4
ExecutionTime = 139.83 s ClockTime = 141 s
Time = 976
smoothSolver: Solving for Ux, Initial residual = 0.000874705, Final residual = 5.14361e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00296231, Final residual = 0.000170997, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0202011, Final residual = 0.000100088, No Iterations 4
time step continuity errors : sum local = 0.000415507, global = -0.000145117, cumulative = -0.298599
smoothSolver: Solving for omega, Initial residual = 0.000347451, Final residual = 3.34581e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00144906, Final residual = 8.49181e-05, No Iterations 4
ExecutionTime = 139.97 s ClockTime = 142 s
Time = 977
smoothSolver: Solving for Ux, Initial residual = 0.000873841, Final residual = 5.1404e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00296521, Final residual = 0.000171222, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0203012, Final residual = 0.000101617, No Iterations 4
time step continuity errors : sum local = 0.000420733, global = -0.000149064, cumulative = -0.298749
smoothSolver: Solving for omega, Initial residual = 0.000346784, Final residual = 3.33944e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00144667, Final residual = 8.47715e-05, No Iterations 4
ExecutionTime = 140.1 s ClockTime = 142 s
Time = 978
smoothSolver: Solving for Ux, Initial residual = 0.00087299, Final residual = 5.13728e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00296829, Final residual = 0.000171441, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0203192, Final residual = 9.09188e-05, No Iterations 4
time step continuity errors : sum local = 0.00037546, global = -0.000138401, cumulative = -0.298887
smoothSolver: Solving for omega, Initial residual = 0.000346459, Final residual = 3.33527e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00144438, Final residual = 8.46312e-05, No Iterations 4
ExecutionTime = 140.24 s ClockTime = 142 s
Time = 979
smoothSolver: Solving for Ux, Initial residual = 0.000872118, Final residual = 5.13404e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.002971, Final residual = 0.000171658, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0202896, Final residual = 8.85768e-05, No Iterations 4
time step continuity errors : sum local = 0.00036485, global = -0.000128219, cumulative = -0.299015
smoothSolver: Solving for omega, Initial residual = 0.000345966, Final residual = 3.32923e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00144209, Final residual = 8.44922e-05, No Iterations 4
ExecutionTime = 140.38 s ClockTime = 142 s
Time = 980
smoothSolver: Solving for Ux, Initial residual = 0.000871225, Final residual = 5.13068e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00297351, Final residual = 0.000171883, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0203096, Final residual = 8.9996e-05, No Iterations 4
time step continuity errors : sum local = 0.000369739, global = -0.000124736, cumulative = -0.29914
smoothSolver: Solving for omega, Initial residual = 0.000345284, Final residual = 3.32229e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00143979, Final residual = 8.43523e-05, No Iterations 4
ExecutionTime = 140.52 s ClockTime = 142 s
Time = 981
smoothSolver: Solving for Ux, Initial residual = 0.000870307, Final residual = 5.1273e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00297665, Final residual = 0.000172115, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0203709, Final residual = 9.16013e-05, No Iterations 4
time step continuity errors : sum local = 0.00037529, global = -0.000130432, cumulative = -0.29927
smoothSolver: Solving for omega, Initial residual = 0.000344732, Final residual = 3.31715e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0014376, Final residual = 8.42203e-05, No Iterations 4
ExecutionTime = 140.65 s ClockTime = 142 s
Time = 982
smoothSolver: Solving for Ux, Initial residual = 0.000869346, Final residual = 5.12362e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00297977, Final residual = 0.000172346, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0203097, Final residual = 9.11949e-05, No Iterations 4
time step continuity errors : sum local = 0.000372589, global = -0.000133311, cumulative = -0.299404
smoothSolver: Solving for omega, Initial residual = 0.000344272, Final residual = 3.31173e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00143543, Final residual = 8.40906e-05, No Iterations 4
ExecutionTime = 140.79 s ClockTime = 142 s
Time = 983
smoothSolver: Solving for Ux, Initial residual = 0.000868374, Final residual = 5.11985e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00298235, Final residual = 0.000172578, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0203229, Final residual = 9.02093e-05, No Iterations 4
time step continuity errors : sum local = 0.000367598, global = -0.00013155, cumulative = -0.299535
smoothSolver: Solving for omega, Initial residual = 0.000343648, Final residual = 3.30464e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00143325, Final residual = 8.39604e-05, No Iterations 4
ExecutionTime = 140.93 s ClockTime = 142 s
Time = 984
smoothSolver: Solving for Ux, Initial residual = 0.00086741, Final residual = 5.11624e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00298513, Final residual = 0.000172799, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204715, Final residual = 9.00203e-05, No Iterations 4
time step continuity errors : sum local = 0.000365847, global = -0.000124808, cumulative = -0.29966
smoothSolver: Solving for omega, Initial residual = 0.00034294, Final residual = 3.29867e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00143117, Final residual = 8.38385e-05, No Iterations 4
ExecutionTime = 141.08 s ClockTime = 143 s
Time = 985
smoothSolver: Solving for Ux, Initial residual = 0.000866427, Final residual = 5.11246e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00298817, Final residual = 0.000173025, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0205035, Final residual = 9.10572e-05, No Iterations 4
time step continuity errors : sum local = 0.000369104, global = -0.000118298, cumulative = -0.299778
smoothSolver: Solving for omega, Initial residual = 0.000342491, Final residual = 3.29333e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00142915, Final residual = 8.37217e-05, No Iterations 4
ExecutionTime = 141.22 s ClockTime = 143 s
Time = 986
smoothSolver: Solving for Ux, Initial residual = 0.000865416, Final residual = 5.10834e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00299102, Final residual = 0.000173256, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204047, Final residual = 9.16639e-05, No Iterations 4
time step continuity errors : sum local = 0.000370574, global = -0.000118183, cumulative = -0.299896
smoothSolver: Solving for omega, Initial residual = 0.000341978, Final residual = 3.28661e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00142711, Final residual = 8.36028e-05, No Iterations 4
ExecutionTime = 141.35 s ClockTime = 143 s
Time = 987
smoothSolver: Solving for Ux, Initial residual = 0.000864376, Final residual = 5.10444e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00299381, Final residual = 0.000173493, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204697, Final residual = 9.14383e-05, No Iterations 4
time step continuity errors : sum local = 0.00036861, global = -0.000120801, cumulative = -0.300017
smoothSolver: Solving for omega, Initial residual = 0.000341304, Final residual = 3.27947e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00142522, Final residual = 8.34948e-05, No Iterations 4
ExecutionTime = 141.49 s ClockTime = 143 s
Time = 988
smoothSolver: Solving for Ux, Initial residual = 0.000863304, Final residual = 5.10039e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00299696, Final residual = 0.000173738, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204742, Final residual = 9.12049e-05, No Iterations 4
time step continuity errors : sum local = 0.00036666, global = -0.000120363, cumulative = -0.300138
smoothSolver: Solving for omega, Initial residual = 0.000340656, Final residual = 3.27409e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0014234, Final residual = 8.3392e-05, No Iterations 4
ExecutionTime = 141.63 s ClockTime = 143 s
Time = 989
smoothSolver: Solving for Ux, Initial residual = 0.000862231, Final residual = 5.09599e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.003, Final residual = 0.000173972, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0203617, Final residual = 9.18911e-05, No Iterations 4
time step continuity errors : sum local = 0.000368454, global = -0.000116423, cumulative = -0.300254
smoothSolver: Solving for omega, Initial residual = 0.000340096, Final residual = 3.26742e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00142157, Final residual = 8.32839e-05, No Iterations 4
ExecutionTime = 141.77 s ClockTime = 143 s
Time = 990
smoothSolver: Solving for Ux, Initial residual = 0.000861176, Final residual = 5.09165e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0030027, Final residual = 0.00017421, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0203829, Final residual = 9.28755e-05, No Iterations 4
time step continuity errors : sum local = 0.000371407, global = -0.000112915, cumulative = -0.300367
smoothSolver: Solving for omega, Initial residual = 0.00033932, Final residual = 3.26042e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00141984, Final residual = 8.31798e-05, No Iterations 4
ExecutionTime = 141.9 s ClockTime = 143 s
Time = 991
smoothSolver: Solving for Ux, Initial residual = 0.000860104, Final residual = 5.08736e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00300574, Final residual = 0.000174454, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0203943, Final residual = 9.31393e-05, No Iterations 4
time step continuity errors : sum local = 0.000371403, global = -0.000110529, cumulative = -0.300477
smoothSolver: Solving for omega, Initial residual = 0.000338565, Final residual = 3.25384e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0014181, Final residual = 8.30813e-05, No Iterations 4
ExecutionTime = 142.04 s ClockTime = 144 s
Time = 992
smoothSolver: Solving for Ux, Initial residual = 0.00085898, Final residual = 5.08287e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00300916, Final residual = 0.000174705, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0203048, Final residual = 9.3153e-05, No Iterations 4
time step continuity errors : sum local = 0.000370499, global = -0.000109776, cumulative = -0.300587
smoothSolver: Solving for omega, Initial residual = 0.000337968, Final residual = 3.24747e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00141633, Final residual = 8.29788e-05, No Iterations 4
ExecutionTime = 142.18 s ClockTime = 144 s
Time = 993
smoothSolver: Solving for Ux, Initial residual = 0.000857834, Final residual = 5.0782e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00301231, Final residual = 0.000174967, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0202841, Final residual = 9.32315e-05, No Iterations 4
time step continuity errors : sum local = 0.000369839, global = -0.00010975, cumulative = -0.300697
smoothSolver: Solving for omega, Initial residual = 0.000337279, Final residual = 3.23969e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00141468, Final residual = 8.28772e-05, No Iterations 4
ExecutionTime = 142.32 s ClockTime = 144 s
Time = 994
smoothSolver: Solving for Ux, Initial residual = 0.000856693, Final residual = 5.07352e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00301543, Final residual = 0.00017523, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0202741, Final residual = 9.33051e-05, No Iterations 4
time step continuity errors : sum local = 0.000369067, global = -0.000108793, cumulative = -0.300806
smoothSolver: Solving for omega, Initial residual = 0.000336556, Final residual = 3.23217e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00141301, Final residual = 8.27825e-05, No Iterations 4
ExecutionTime = 142.45 s ClockTime = 144 s
Time = 995
smoothSolver: Solving for Ux, Initial residual = 0.000855533, Final residual = 5.06872e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00301901, Final residual = 0.000175501, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0202228, Final residual = 9.36139e-05, No Iterations 4
time step continuity errors : sum local = 0.000369216, global = -0.000108278, cumulative = -0.300914
smoothSolver: Solving for omega, Initial residual = 0.000335821, Final residual = 3.22545e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00141132, Final residual = 8.26863e-05, No Iterations 4
ExecutionTime = 142.59 s ClockTime = 144 s
Time = 996
smoothSolver: Solving for Ux, Initial residual = 0.000854367, Final residual = 5.06391e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00302253, Final residual = 0.000175774, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0202279, Final residual = 9.42834e-05, No Iterations 4
time step continuity errors : sum local = 0.000370847, global = -0.000107975, cumulative = -0.301022
smoothSolver: Solving for omega, Initial residual = 0.000335174, Final residual = 3.21854e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00140974, Final residual = 8.25912e-05, No Iterations 4
ExecutionTime = 142.73 s ClockTime = 144 s
Time = 997
smoothSolver: Solving for Ux, Initial residual = 0.00085319, Final residual = 5.05911e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00302581, Final residual = 0.000176054, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0202556, Final residual = 9.4468e-05, No Iterations 4
time step continuity errors : sum local = 0.00037049, global = -0.000108016, cumulative = -0.30113
smoothSolver: Solving for omega, Initial residual = 0.00033447, Final residual = 3.21079e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00140818, Final residual = 8.25012e-05, No Iterations 4
ExecutionTime = 142.87 s ClockTime = 144 s
Time = 998
smoothSolver: Solving for Ux, Initial residual = 0.000851978, Final residual = 5.0541e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00302968, Final residual = 0.000176347, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0202839, Final residual = 9.43749e-05, No Iterations 4
time step continuity errors : sum local = 0.00036904, global = -0.000108277, cumulative = -0.301238
smoothSolver: Solving for omega, Initial residual = 0.000333716, Final residual = 3.20194e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00140656, Final residual = 8.24095e-05, No Iterations 4
ExecutionTime = 143.01 s ClockTime = 145 s
Time = 999
smoothSolver: Solving for Ux, Initial residual = 0.000850746, Final residual = 5.04892e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00303377, Final residual = 0.000176652, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0203519, Final residual = 9.47287e-05, No Iterations 4
time step continuity errors : sum local = 0.000369375, global = -0.000108478, cumulative = -0.301347
smoothSolver: Solving for omega, Initial residual = 0.000332965, Final residual = 3.1951e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00140507, Final residual = 8.23198e-05, No Iterations 4
ExecutionTime = 143.15 s ClockTime = 145 s
Time = 1000
smoothSolver: Solving for Ux, Initial residual = 0.000849501, Final residual = 5.04373e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00303748, Final residual = 0.000176962, No Iterations 4
GAMG: Solving for p, Initial residual = 0.020417, Final residual = 9.5251e-05, No Iterations 4
time step continuity errors : sum local = 0.000370351, global = -0.000108073, cumulative = -0.301455
smoothSolver: Solving for omega, Initial residual = 0.000332224, Final residual = 3.18739e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00140355, Final residual = 8.22353e-05, No Iterations 4
ExecutionTime = 143.5 s ClockTime = 145 s
Time = 1001
smoothSolver: Solving for Ux, Initial residual = 0.000848256, Final residual = 5.03855e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0030415, Final residual = 0.00017728, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204587, Final residual = 9.54293e-05, No Iterations 4
time step continuity errors : sum local = 0.000369951, global = -0.000107955, cumulative = -0.301563
smoothSolver: Solving for omega, Initial residual = 0.000331497, Final residual = 3.17822e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00140199, Final residual = 8.21475e-05, No Iterations 4
ExecutionTime = 143.64 s ClockTime = 145 s
Time = 1002
smoothSolver: Solving for Ux, Initial residual = 0.000846984, Final residual = 5.0332e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00304599, Final residual = 0.000177608, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204386, Final residual = 9.55504e-05, No Iterations 4
time step continuity errors : sum local = 0.000369391, global = -0.000108405, cumulative = -0.301671
smoothSolver: Solving for omega, Initial residual = 0.000330698, Final residual = 3.17026e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00140052, Final residual = 8.20611e-05, No Iterations 4
ExecutionTime = 143.77 s ClockTime = 145 s
Time = 1003
smoothSolver: Solving for Ux, Initial residual = 0.000845695, Final residual = 5.02768e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00305031, Final residual = 0.000177943, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204569, Final residual = 9.58107e-05, No Iterations 4
time step continuity errors : sum local = 0.000369355, global = -0.000108281, cumulative = -0.30178
smoothSolver: Solving for omega, Initial residual = 0.000329947, Final residual = 3.16239e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00139912, Final residual = 8.19806e-05, No Iterations 4
ExecutionTime = 143.91 s ClockTime = 145 s
Time = 1004
smoothSolver: Solving for Ux, Initial residual = 0.000844397, Final residual = 5.02223e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00305472, Final residual = 0.000178291, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0205021, Final residual = 9.59111e-05, No Iterations 4
time step continuity errors : sum local = 0.000368662, global = -0.000108157, cumulative = -0.301888
smoothSolver: Solving for omega, Initial residual = 0.000329192, Final residual = 3.15336e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00139764, Final residual = 8.18999e-05, No Iterations 4
ExecutionTime = 144.06 s ClockTime = 146 s
Time = 1005
smoothSolver: Solving for Ux, Initial residual = 0.000843066, Final residual = 5.01669e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00305968, Final residual = 0.000178643, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204913, Final residual = 9.58294e-05, No Iterations 4
time step continuity errors : sum local = 0.000367286, global = -0.000109109, cumulative = -0.301997
smoothSolver: Solving for omega, Initial residual = 0.00032843, Final residual = 3.14486e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00139624, Final residual = 8.18194e-05, No Iterations 4
ExecutionTime = 144.19 s ClockTime = 146 s
Time = 1006
smoothSolver: Solving for Ux, Initial residual = 0.000841722, Final residual = 5.01097e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00306439, Final residual = 0.000179002, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0205883, Final residual = 9.58907e-05, No Iterations 4
time step continuity errors : sum local = 0.000366503, global = -0.000109651, cumulative = -0.302106
smoothSolver: Solving for omega, Initial residual = 0.000327642, Final residual = 3.13707e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00139494, Final residual = 8.17444e-05, No Iterations 4
ExecutionTime = 144.33 s ClockTime = 146 s
Time = 1007
smoothSolver: Solving for Ux, Initial residual = 0.000840373, Final residual = 5.00508e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00306896, Final residual = 0.000179356, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0206212, Final residual = 9.62386e-05, No Iterations 4
time step continuity errors : sum local = 0.000366779, global = -0.00010937, cumulative = -0.302216
smoothSolver: Solving for omega, Initial residual = 0.000326823, Final residual = 3.12756e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00139358, Final residual = 8.16705e-05, No Iterations 4
ExecutionTime = 144.47 s ClockTime = 146 s
Time = 1008
smoothSolver: Solving for Ux, Initial residual = 0.000839007, Final residual = 4.99933e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00307389, Final residual = 0.000179725, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0205499, Final residual = 9.68292e-05, No Iterations 4
time step continuity errors : sum local = 0.000367959, global = -0.000109486, cumulative = -0.302325
smoothSolver: Solving for omega, Initial residual = 0.000326113, Final residual = 3.11936e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00139229, Final residual = 8.15972e-05, No Iterations 4
ExecutionTime = 144.6 s ClockTime = 146 s
Time = 1009
smoothSolver: Solving for Ux, Initial residual = 0.000837631, Final residual = 4.99349e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00307892, Final residual = 0.000180086, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0205877, Final residual = 9.72011e-05, No Iterations 4
time step continuity errors : sum local = 0.00036836, global = -0.000110147, cumulative = -0.302435
smoothSolver: Solving for omega, Initial residual = 0.000325301, Final residual = 3.11108e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00139104, Final residual = 8.15253e-05, No Iterations 4
ExecutionTime = 144.74 s ClockTime = 146 s
Time = 1010
smoothSolver: Solving for Ux, Initial residual = 0.000836253, Final residual = 4.98754e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00308349, Final residual = 0.000180447, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0206071, Final residual = 9.73803e-05, No Iterations 4
time step continuity errors : sum local = 0.000368008, global = -0.000110591, cumulative = -0.302546
smoothSolver: Solving for omega, Initial residual = 0.000324538, Final residual = 3.10167e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00138981, Final residual = 8.14554e-05, No Iterations 4
ExecutionTime = 144.89 s ClockTime = 146 s
Time = 1011
smoothSolver: Solving for Ux, Initial residual = 0.000834841, Final residual = 4.98157e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00308835, Final residual = 0.000180808, No Iterations 4
GAMG: Solving for p, Initial residual = 0.020578, Final residual = 9.77982e-05, No Iterations 4
time step continuity errors : sum local = 0.000368542, global = -0.000111043, cumulative = -0.302657
smoothSolver: Solving for omega, Initial residual = 0.000323711, Final residual = 3.09304e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00138857, Final residual = 8.13877e-05, No Iterations 4
ExecutionTime = 145.03 s ClockTime = 147 s
Time = 1012
smoothSolver: Solving for Ux, Initial residual = 0.000833432, Final residual = 4.97547e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00309366, Final residual = 0.00018118, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0205549, Final residual = 9.82052e-05, No Iterations 4
time step continuity errors : sum local = 0.000369038, global = -0.000111853, cumulative = -0.302769
smoothSolver: Solving for omega, Initial residual = 0.000322866, Final residual = 3.08489e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00138742, Final residual = 8.13222e-05, No Iterations 4
ExecutionTime = 145.18 s ClockTime = 147 s
Time = 1013
smoothSolver: Solving for Ux, Initial residual = 0.000832025, Final residual = 4.96943e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0030983, Final residual = 0.000181541, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0205495, Final residual = 9.82469e-05, No Iterations 4
time step continuity errors : sum local = 0.000368173, global = -0.000112034, cumulative = -0.302881
smoothSolver: Solving for omega, Initial residual = 0.000322064, Final residual = 3.07579e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00138619, Final residual = 8.12559e-05, No Iterations 4
ExecutionTime = 145.32 s ClockTime = 147 s
Time = 1014
smoothSolver: Solving for Ux, Initial residual = 0.000830585, Final residual = 4.96335e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00310311, Final residual = 0.000181897, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0205719, Final residual = 9.83948e-05, No Iterations 4
time step continuity errors : sum local = 0.000367704, global = -0.000111775, cumulative = -0.302993
smoothSolver: Solving for omega, Initial residual = 0.000321149, Final residual = 3.06543e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00138505, Final residual = 8.11898e-05, No Iterations 4
ExecutionTime = 145.45 s ClockTime = 147 s
Time = 1015
smoothSolver: Solving for Ux, Initial residual = 0.00082913, Final residual = 4.95719e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00310847, Final residual = 0.000182286, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0205486, Final residual = 9.8841e-05, No Iterations 4
time step continuity errors : sum local = 0.000368331, global = -0.000111609, cumulative = -0.303104
smoothSolver: Solving for omega, Initial residual = 0.000320285, Final residual = 3.05748e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00138397, Final residual = 8.11306e-05, No Iterations 4
ExecutionTime = 145.59 s ClockTime = 147 s
Time = 1016
smoothSolver: Solving for Ux, Initial residual = 0.000827693, Final residual = 4.95094e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00311341, Final residual = 0.000182655, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0205353, Final residual = 9.91429e-05, No Iterations 4
time step continuity errors : sum local = 0.000368447, global = -0.000111884, cumulative = -0.303216
smoothSolver: Solving for omega, Initial residual = 0.000319446, Final residual = 3.04834e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00138286, Final residual = 8.10689e-05, No Iterations 4
ExecutionTime = 145.74 s ClockTime = 147 s
Time = 1017
smoothSolver: Solving for Ux, Initial residual = 0.000826254, Final residual = 4.94475e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00311809, Final residual = 0.000183011, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0205731, Final residual = 9.95155e-05, No Iterations 4
time step continuity errors : sum local = 0.000368789, global = -0.000111915, cumulative = -0.303328
smoothSolver: Solving for omega, Initial residual = 0.000318512, Final residual = 3.03758e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00138174, Final residual = 8.10113e-05, No Iterations 4
ExecutionTime = 145.87 s ClockTime = 147 s
Time = 1018
smoothSolver: Solving for Ux, Initial residual = 0.000824774, Final residual = 4.9385e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00312341, Final residual = 0.000183395, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0206232, Final residual = 9.98733e-05, No Iterations 4
time step continuity errors : sum local = 0.000369059, global = -0.000111702, cumulative = -0.30344
smoothSolver: Solving for omega, Initial residual = 0.000317566, Final residual = 3.02894e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0013807, Final residual = 8.09531e-05, No Iterations 4
ExecutionTime = 146.01 s ClockTime = 148 s
Time = 1019
smoothSolver: Solving for Ux, Initial residual = 0.000823298, Final residual = 4.93232e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00312856, Final residual = 0.000183766, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0205549, Final residual = 9.9939e-05, No Iterations 4
time step continuity errors : sum local = 0.00036825, global = -0.000111392, cumulative = -0.303551
smoothSolver: Solving for omega, Initial residual = 0.000316753, Final residual = 3.01987e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00137966, Final residual = 8.08983e-05, No Iterations 4
ExecutionTime = 146.14 s ClockTime = 148 s
Time = 1020
smoothSolver: Solving for Ux, Initial residual = 0.000821838, Final residual = 4.92609e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0031331, Final residual = 0.000184112, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0205402, Final residual = 9.99844e-05, No Iterations 4
time step continuity errors : sum local = 0.000367361, global = -0.00011166, cumulative = -0.303663
smoothSolver: Solving for omega, Initial residual = 0.000315979, Final residual = 3.00998e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0013786, Final residual = 8.08444e-05, No Iterations 4
ExecutionTime = 146.29 s ClockTime = 148 s
Time = 1021
smoothSolver: Solving for Ux, Initial residual = 0.000820351, Final residual = 4.91977e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00313815, Final residual = 0.000184478, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204653, Final residual = 0.000100415, No Iterations 4
time step continuity errors : sum local = 0.000367886, global = -0.000111193, cumulative = -0.303774
smoothSolver: Solving for omega, Initial residual = 0.000315068, Final residual = 3.00008e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00137761, Final residual = 8.0795e-05, No Iterations 4
ExecutionTime = 146.43 s ClockTime = 148 s
Time = 1022
smoothSolver: Solving for Ux, Initial residual = 0.000818868, Final residual = 4.91355e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00314338, Final residual = 0.000184852, No Iterations 4
GAMG: Solving for p, Initial residual = 0.020337, Final residual = 0.000100879, No Iterations 4
time step continuity errors : sum local = 0.000368473, global = -0.000110309, cumulative = -0.303884
smoothSolver: Solving for omega, Initial residual = 0.000314061, Final residual = 2.99096e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0013766, Final residual = 8.07423e-05, No Iterations 4
ExecutionTime = 146.57 s ClockTime = 148 s
Time = 1023
smoothSolver: Solving for Ux, Initial residual = 0.000817414, Final residual = 4.90745e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00314781, Final residual = 0.000185184, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0203575, Final residual = 0.000101235, No Iterations 4
time step continuity errors : sum local = 0.0003687, global = -0.000110397, cumulative = -0.303995
smoothSolver: Solving for omega, Initial residual = 0.000313274, Final residual = 2.98154e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00137564, Final residual = 8.06931e-05, No Iterations 4
ExecutionTime = 146.71 s ClockTime = 148 s
Time = 1024
smoothSolver: Solving for Ux, Initial residual = 0.000815936, Final residual = 4.90113e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00315257, Final residual = 0.000185526, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0203951, Final residual = 0.000102044, No Iterations 4
time step continuity errors : sum local = 0.000370567, global = -0.000110667, cumulative = -0.304105
smoothSolver: Solving for omega, Initial residual = 0.000312434, Final residual = 2.97121e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00137471, Final residual = 8.06498e-05, No Iterations 4
ExecutionTime = 146.85 s ClockTime = 148 s
Time = 1025
smoothSolver: Solving for Ux, Initial residual = 0.000814452, Final residual = 4.89485e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00315776, Final residual = 0.000185896, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204317, Final residual = 0.00010296, No Iterations 4
time step continuity errors : sum local = 0.000372804, global = -0.000110249, cumulative = -0.304216
smoothSolver: Solving for omega, Initial residual = 0.000311428, Final residual = 2.96124e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00137378, Final residual = 8.06049e-05, No Iterations 4
ExecutionTime = 146.99 s ClockTime = 149 s
Time = 1026
smoothSolver: Solving for Ux, Initial residual = 0.000812997, Final residual = 4.88876e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00316227, Final residual = 0.00018622, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0203956, Final residual = 0.000102895, No Iterations 4
time step continuity errors : sum local = 0.000371528, global = -0.000109613, cumulative = -0.304325
smoothSolver: Solving for omega, Initial residual = 0.000310505, Final residual = 2.95247e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00137289, Final residual = 8.05628e-05, No Iterations 4
ExecutionTime = 147.13 s ClockTime = 149 s
Time = 1027
smoothSolver: Solving for Ux, Initial residual = 0.000811534, Final residual = 4.88268e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00316683, Final residual = 0.000186536, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204393, Final residual = 0.000103098, No Iterations 4
time step continuity errors : sum local = 0.000371215, global = -0.0001092, cumulative = -0.304435
smoothSolver: Solving for omega, Initial residual = 0.000309654, Final residual = 2.94254e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00137199, Final residual = 8.05245e-05, No Iterations 4
ExecutionTime = 147.26 s ClockTime = 149 s
Time = 1028
smoothSolver: Solving for Ux, Initial residual = 0.000810051, Final residual = 4.87657e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00317181, Final residual = 0.000186901, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204535, Final residual = 0.00010341, No Iterations 4
time step continuity errors : sum local = 0.000371283, global = -0.000108546, cumulative = -0.304543
smoothSolver: Solving for omega, Initial residual = 0.0003087, Final residual = 2.93209e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00137114, Final residual = 8.04874e-05, No Iterations 4
ExecutionTime = 147.4 s ClockTime = 149 s
Time = 1029
smoothSolver: Solving for Ux, Initial residual = 0.000808611, Final residual = 4.87056e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00317619, Final residual = 0.000187221, No Iterations 4
GAMG: Solving for p, Initial residual = 0.020337, Final residual = 0.000103595, No Iterations 4
time step continuity errors : sum local = 0.000370892, global = -0.000107568, cumulative = -0.304651
smoothSolver: Solving for omega, Initial residual = 0.000307743, Final residual = 2.92287e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00137029, Final residual = 8.04516e-05, No Iterations 4
ExecutionTime = 147.54 s ClockTime = 149 s
Time = 1030
smoothSolver: Solving for Ux, Initial residual = 0.000807146, Final residual = 4.86454e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0031804, Final residual = 0.000187521, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0203684, Final residual = 0.000103588, No Iterations 4
time step continuity errors : sum local = 0.000369797, global = -0.000106798, cumulative = -0.304757
smoothSolver: Solving for omega, Initial residual = 0.000306744, Final residual = 2.91354e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136947, Final residual = 8.04228e-05, No Iterations 4
ExecutionTime = 147.69 s ClockTime = 149 s
Time = 1031
smoothSolver: Solving for Ux, Initial residual = 0.000805702, Final residual = 4.85858e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00318514, Final residual = 0.00018787, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204602, Final residual = 0.000103601, No Iterations 4
time step continuity errors : sum local = 0.000368754, global = -0.000105608, cumulative = -0.304863
smoothSolver: Solving for omega, Initial residual = 0.00030579, Final residual = 2.90345e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136863, Final residual = 8.03924e-05, No Iterations 4
ExecutionTime = 147.82 s ClockTime = 149 s
Time = 1032
smoothSolver: Solving for Ux, Initial residual = 0.000804282, Final residual = 4.85276e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00318994, Final residual = 0.000188192, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204916, Final residual = 0.000103534, No Iterations 4
time step continuity errors : sum local = 0.000367466, global = -0.000104048, cumulative = -0.304967
smoothSolver: Solving for omega, Initial residual = 0.000304842, Final residual = 2.89328e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136785, Final residual = 8.03627e-05, No Iterations 4
ExecutionTime = 147.96 s ClockTime = 150 s
Time = 1033
smoothSolver: Solving for Ux, Initial residual = 0.00080283, Final residual = 4.84681e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00319447, Final residual = 0.000188489, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0203985, Final residual = 0.000103456, No Iterations 4
time step continuity errors : sum local = 0.000366083, global = -0.000102626, cumulative = -0.30507
smoothSolver: Solving for omega, Initial residual = 0.000303833, Final residual = 2.88411e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136711, Final residual = 8.03419e-05, No Iterations 4
ExecutionTime = 148.11 s ClockTime = 150 s
Time = 1034
smoothSolver: Solving for Ux, Initial residual = 0.000801372, Final residual = 4.84096e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00319879, Final residual = 0.000188813, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204146, Final residual = 0.000103354, No Iterations 4
time step continuity errors : sum local = 0.000364659, global = -0.000101327, cumulative = -0.305171
smoothSolver: Solving for omega, Initial residual = 0.000302836, Final residual = 2.87418e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136634, Final residual = 8.03218e-05, No Iterations 4
ExecutionTime = 148.26 s ClockTime = 150 s
Time = 1035
smoothSolver: Solving for Ux, Initial residual = 0.000799974, Final residual = 4.83525e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00320347, Final residual = 0.000189127, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0203997, Final residual = 0.000103554, No Iterations 4
time step continuity errors : sum local = 0.000364328, global = -9.97244e-05, cumulative = -0.305271
smoothSolver: Solving for omega, Initial residual = 0.000301821, Final residual = 2.8644e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136562, Final residual = 8.03009e-05, No Iterations 4
ExecutionTime = 148.4 s ClockTime = 150 s
Time = 1036
smoothSolver: Solving for Ux, Initial residual = 0.000798572, Final residual = 4.82949e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00320776, Final residual = 0.000189415, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0203771, Final residual = 0.000103952, No Iterations 4
time step continuity errors : sum local = 0.000364635, global = -9.82099e-05, cumulative = -0.305369
smoothSolver: Solving for omega, Initial residual = 0.000300854, Final residual = 2.85461e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136498, Final residual = 8.02868e-05, No Iterations 4
ExecutionTime = 148.55 s ClockTime = 150 s
Time = 1037
smoothSolver: Solving for Ux, Initial residual = 0.000797148, Final residual = 4.82371e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00321177, Final residual = 0.000189707, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204147, Final residual = 0.00010436, No Iterations 4
time step continuity errors : sum local = 0.000364986, global = -9.6856e-05, cumulative = -0.305466
smoothSolver: Solving for omega, Initial residual = 0.000299829, Final residual = 2.84514e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136428, Final residual = 8.02781e-05, No Iterations 4
ExecutionTime = 148.69 s ClockTime = 150 s
Time = 1038
smoothSolver: Solving for Ux, Initial residual = 0.000795747, Final residual = 4.81798e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00321619, Final residual = 0.000189999, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204265, Final residual = 0.000104902, No Iterations 4
time step continuity errors : sum local = 0.000365793, global = -9.53279e-05, cumulative = -0.305561
smoothSolver: Solving for omega, Initial residual = 0.000298858, Final residual = 2.836e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0013636, Final residual = 8.02676e-05, No Iterations 4
ExecutionTime = 148.84 s ClockTime = 150 s
Time = 1039
smoothSolver: Solving for Ux, Initial residual = 0.000794361, Final residual = 4.81233e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00322046, Final residual = 0.000190266, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204085, Final residual = 0.000105344, No Iterations 4
time step continuity errors : sum local = 0.000366227, global = -9.38367e-05, cumulative = -0.305655
smoothSolver: Solving for omega, Initial residual = 0.000297862, Final residual = 2.82558e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.001363, Final residual = 8.02624e-05, No Iterations 4
ExecutionTime = 148.98 s ClockTime = 151 s
Time = 1040
smoothSolver: Solving for Ux, Initial residual = 0.000792961, Final residual = 4.80676e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0032243, Final residual = 0.000190526, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0203218, Final residual = 0.000105601, No Iterations 4
time step continuity errors : sum local = 0.000365962, global = -9.24212e-05, cumulative = -0.305747
smoothSolver: Solving for omega, Initial residual = 0.000296867, Final residual = 2.8157e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136239, Final residual = 8.02628e-05, No Iterations 4
ExecutionTime = 149.12 s ClockTime = 151 s
Time = 1041
smoothSolver: Solving for Ux, Initial residual = 0.000791594, Final residual = 4.80118e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00322832, Final residual = 0.000190797, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204436, Final residual = 0.000106075, No Iterations 4
time step continuity errors : sum local = 0.000366435, global = -9.11724e-05, cumulative = -0.305839
smoothSolver: Solving for omega, Initial residual = 0.000295878, Final residual = 2.8067e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136176, Final residual = 8.02638e-05, No Iterations 4
ExecutionTime = 149.25 s ClockTime = 151 s
Time = 1042
smoothSolver: Solving for Ux, Initial residual = 0.000790207, Final residual = 4.79553e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00323235, Final residual = 0.000191043, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204525, Final residual = 0.000106798, No Iterations 4
time step continuity errors : sum local = 0.000367724, global = -8.99095e-05, cumulative = -0.305929
smoothSolver: Solving for omega, Initial residual = 0.000294903, Final residual = 2.79659e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136124, Final residual = 8.02672e-05, No Iterations 4
ExecutionTime = 149.39 s ClockTime = 151 s
Time = 1043
smoothSolver: Solving for Ux, Initial residual = 0.000788816, Final residual = 4.79e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00323592, Final residual = 0.000191276, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204674, Final residual = 0.00010718, No Iterations 4
time step continuity errors : sum local = 0.000367807, global = -8.85989e-05, cumulative = -0.306017
smoothSolver: Solving for omega, Initial residual = 0.000293923, Final residual = 2.78697e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136074, Final residual = 8.02777e-05, No Iterations 4
ExecutionTime = 149.53 s ClockTime = 151 s
Time = 1044
smoothSolver: Solving for Ux, Initial residual = 0.000787429, Final residual = 4.78435e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00323976, Final residual = 0.000191531, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0205237, Final residual = 0.000107366, No Iterations 4
time step continuity errors : sum local = 0.000367207, global = -8.72277e-05, cumulative = -0.306104
smoothSolver: Solving for omega, Initial residual = 0.000292943, Final residual = 2.77675e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136017, Final residual = 8.02895e-05, No Iterations 4
ExecutionTime = 149.67 s ClockTime = 151 s
Time = 1045
smoothSolver: Solving for Ux, Initial residual = 0.000786063, Final residual = 4.77881e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00324357, Final residual = 0.000191751, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0205397, Final residual = 0.00010755, No Iterations 4
time step continuity errors : sum local = 0.000366601, global = -8.56784e-05, cumulative = -0.30619
smoothSolver: Solving for omega, Initial residual = 0.000291986, Final residual = 2.76764e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135965, Final residual = 8.03008e-05, No Iterations 4
ExecutionTime = 149.81 s ClockTime = 151 s
Time = 1046
smoothSolver: Solving for Ux, Initial residual = 0.000784711, Final residual = 4.77347e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00324689, Final residual = 0.000191952, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0205341, Final residual = 0.000107447, No Iterations 4
time step continuity errors : sum local = 0.000365074, global = -8.4082e-05, cumulative = -0.306274
smoothSolver: Solving for omega, Initial residual = 0.000290989, Final residual = 2.75817e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135924, Final residual = 8.03213e-05, No Iterations 4
ExecutionTime = 149.94 s ClockTime = 152 s
Time = 1047
smoothSolver: Solving for Ux, Initial residual = 0.00078336, Final residual = 4.76801e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00325031, Final residual = 0.000192182, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0206063, Final residual = 0.000107612, No Iterations 4
time step continuity errors : sum local = 0.000364486, global = -8.22696e-05, cumulative = -0.306356
smoothSolver: Solving for omega, Initial residual = 0.000290038, Final residual = 2.7483e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135878, Final residual = 8.03446e-05, No Iterations 4
ExecutionTime = 150.08 s ClockTime = 152 s
Time = 1048
smoothSolver: Solving for Ux, Initial residual = 0.000782002, Final residual = 4.76254e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00325409, Final residual = 0.000192389, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0206225, Final residual = 0.000108197, No Iterations 4
time step continuity errors : sum local = 0.000365307, global = -8.098e-05, cumulative = -0.306437
smoothSolver: Solving for omega, Initial residual = 0.000289099, Final residual = 2.73895e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135835, Final residual = 8.0371e-05, No Iterations 4
ExecutionTime = 150.21 s ClockTime = 152 s
Time = 1049
smoothSolver: Solving for Ux, Initial residual = 0.000780652, Final residual = 4.7571e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00325728, Final residual = 0.000192578, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0206187, Final residual = 0.00010889, No Iterations 4
time step continuity errors : sum local = 0.000366514, global = -7.98443e-05, cumulative = -0.306517
smoothSolver: Solving for omega, Initial residual = 0.000288131, Final residual = 2.72971e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135798, Final residual = 8.03984e-05, No Iterations 4
ExecutionTime = 150.34 s ClockTime = 152 s
Time = 1050
smoothSolver: Solving for Ux, Initial residual = 0.000779297, Final residual = 4.75161e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0032602, Final residual = 0.000192792, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0206219, Final residual = 0.000109379, No Iterations 4
time step continuity errors : sum local = 0.000367025, global = -7.87963e-05, cumulative = -0.306596
smoothSolver: Solving for omega, Initial residual = 0.000287108, Final residual = 2.72033e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135761, Final residual = 8.04308e-05, No Iterations 4
ExecutionTime = 150.7 s ClockTime = 152 s
Time = 1051
smoothSolver: Solving for Ux, Initial residual = 0.000777998, Final residual = 4.74644e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326375, Final residual = 0.000192982, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0206493, Final residual = 0.0001101, No Iterations 4
time step continuity errors : sum local = 0.000368355, global = -7.7638e-05, cumulative = -0.306674
smoothSolver: Solving for omega, Initial residual = 0.000286071, Final residual = 2.71071e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135729, Final residual = 8.04704e-05, No Iterations 4
ExecutionTime = 150.83 s ClockTime = 152 s
Time = 1052
smoothSolver: Solving for Ux, Initial residual = 0.000776693, Final residual = 4.7411e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326675, Final residual = 0.000193159, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0206531, Final residual = 0.000110818, No Iterations 4
time step continuity errors : sum local = 0.000369675, global = -7.63993e-05, cumulative = -0.30675
smoothSolver: Solving for omega, Initial residual = 0.000285136, Final residual = 2.70176e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135699, Final residual = 8.05089e-05, No Iterations 4
ExecutionTime = 150.98 s ClockTime = 153 s
Time = 1053
smoothSolver: Solving for Ux, Initial residual = 0.00077536, Final residual = 4.7356e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326933, Final residual = 0.000193365, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0206253, Final residual = 0.000111674, No Iterations 4
time step continuity errors : sum local = 0.00037146, global = -7.52648e-05, cumulative = -0.306825
smoothSolver: Solving for omega, Initial residual = 0.000284166, Final residual = 2.6926e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135678, Final residual = 8.05568e-05, No Iterations 4
ExecutionTime = 151.11 s ClockTime = 153 s
Time = 1054
smoothSolver: Solving for Ux, Initial residual = 0.000774012, Final residual = 4.73031e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00327282, Final residual = 0.000193554, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0206592, Final residual = 0.000112516, No Iterations 4
time step continuity errors : sum local = 0.000373216, global = -7.44017e-05, cumulative = -0.3069
smoothSolver: Solving for omega, Initial residual = 0.000283168, Final residual = 2.68371e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135656, Final residual = 8.06071e-05, No Iterations 4
ExecutionTime = 151.26 s ClockTime = 153 s
Time = 1055
smoothSolver: Solving for Ux, Initial residual = 0.000772731, Final residual = 4.72494e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00327573, Final residual = 0.000193721, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0206826, Final residual = 0.000113202, No Iterations 4
time step continuity errors : sum local = 0.000374444, global = -7.35477e-05, cumulative = -0.306973
smoothSolver: Solving for omega, Initial residual = 0.000282221, Final residual = 2.67433e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135634, Final residual = 8.06619e-05, No Iterations 4
ExecutionTime = 151.39 s ClockTime = 153 s
Time = 1056
smoothSolver: Solving for Ux, Initial residual = 0.000771447, Final residual = 4.71971e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00327783, Final residual = 0.000193909, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0206759, Final residual = 0.000113649, No Iterations 4
time step continuity errors : sum local = 0.000374877, global = -7.25282e-05, cumulative = -0.307046
smoothSolver: Solving for omega, Initial residual = 0.000281283, Final residual = 2.66535e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135621, Final residual = 8.07229e-05, No Iterations 4
ExecutionTime = 151.53 s ClockTime = 153 s
Time = 1057
smoothSolver: Solving for Ux, Initial residual = 0.000770135, Final residual = 4.71455e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00328095, Final residual = 0.000194099, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0207252, Final residual = 0.000114083, No Iterations 4
time step continuity errors : sum local = 0.000375208, global = -7.14295e-05, cumulative = -0.307117
smoothSolver: Solving for omega, Initial residual = 0.000280226, Final residual = 2.65649e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135616, Final residual = 8.07873e-05, No Iterations 4
ExecutionTime = 151.66 s ClockTime = 153 s
Time = 1058
smoothSolver: Solving for Ux, Initial residual = 0.000768822, Final residual = 4.70913e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00328375, Final residual = 0.00019427, No Iterations 4
GAMG: Solving for p, Initial residual = 0.020768, Final residual = 0.000114554, No Iterations 4
time step continuity errors : sum local = 0.000375644, global = -7.03764e-05, cumulative = -0.307188
smoothSolver: Solving for omega, Initial residual = 0.000279247, Final residual = 2.64745e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135609, Final residual = 8.08596e-05, No Iterations 4
ExecutionTime = 151.8 s ClockTime = 153 s
Time = 1059
smoothSolver: Solving for Ux, Initial residual = 0.000767508, Final residual = 4.70359e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00328561, Final residual = 0.000194442, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0207994, Final residual = 0.000115069, No Iterations 4
time step continuity errors : sum local = 0.00037623, global = -6.95397e-05, cumulative = -0.307257
smoothSolver: Solving for omega, Initial residual = 0.000278248, Final residual = 2.63844e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135608, Final residual = 8.09341e-05, No Iterations 4
ExecutionTime = 151.94 s ClockTime = 154 s
Time = 1060
smoothSolver: Solving for Ux, Initial residual = 0.000766204, Final residual = 4.69841e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00328824, Final residual = 0.000194631, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0208662, Final residual = 0.000115764, No Iterations 4
time step continuity errors : sum local = 0.000377391, global = -6.89315e-05, cumulative = -0.307326
smoothSolver: Solving for omega, Initial residual = 0.00027729, Final residual = 2.62933e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135617, Final residual = 8.10142e-05, No Iterations 4
ExecutionTime = 152.08 s ClockTime = 154 s
Time = 1061
smoothSolver: Solving for Ux, Initial residual = 0.000764941, Final residual = 4.69312e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00329094, Final residual = 0.00019479, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0208846, Final residual = 0.000116651, No Iterations 4
time step continuity errors : sum local = 0.000379157, global = -6.84411e-05, cumulative = -0.307394
smoothSolver: Solving for omega, Initial residual = 0.000276312, Final residual = 2.62086e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135623, Final residual = 8.10971e-05, No Iterations 4
ExecutionTime = 152.22 s ClockTime = 154 s
Time = 1062
smoothSolver: Solving for Ux, Initial residual = 0.000763655, Final residual = 4.68771e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00329268, Final residual = 0.000194939, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0209024, Final residual = 0.000117464, No Iterations 4
time step continuity errors : sum local = 0.000380684, global = -6.78084e-05, cumulative = -0.307462
smoothSolver: Solving for omega, Initial residual = 0.000275343, Final residual = 2.61205e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135635, Final residual = 8.119e-05, No Iterations 4
ExecutionTime = 152.36 s ClockTime = 154 s
Time = 1063
smoothSolver: Solving for Ux, Initial residual = 0.000762342, Final residual = 4.68248e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00329478, Final residual = 0.00019512, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0209064, Final residual = 0.000118072, No Iterations 4
time step continuity errors : sum local = 0.000381552, global = -6.69119e-05, cumulative = -0.307529
smoothSolver: Solving for omega, Initial residual = 0.000274402, Final residual = 2.60337e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135656, Final residual = 8.12833e-05, No Iterations 4
ExecutionTime = 152.49 s ClockTime = 154 s
Time = 1064
smoothSolver: Solving for Ux, Initial residual = 0.000761085, Final residual = 4.67717e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00329728, Final residual = 0.000195271, No Iterations 4
GAMG: Solving for p, Initial residual = 0.020937, Final residual = 0.000118607, No Iterations 4
time step continuity errors : sum local = 0.000382167, global = -6.5952e-05, cumulative = -0.307595
smoothSolver: Solving for omega, Initial residual = 0.000273444, Final residual = 2.59457e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135678, Final residual = 8.13789e-05, No Iterations 4
ExecutionTime = 152.63 s ClockTime = 154 s
Time = 1065
smoothSolver: Solving for Ux, Initial residual = 0.000759831, Final residual = 4.6719e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00329876, Final residual = 0.000195398, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0209784, Final residual = 0.000119214, No Iterations 4
time step continuity errors : sum local = 0.00038305, global = -6.50974e-05, cumulative = -0.30766
smoothSolver: Solving for omega, Initial residual = 0.000272521, Final residual = 2.58632e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135701, Final residual = 8.14847e-05, No Iterations 4
ExecutionTime = 152.77 s ClockTime = 154 s
Time = 1066
smoothSolver: Solving for Ux, Initial residual = 0.000758567, Final residual = 4.66675e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00329997, Final residual = 0.000195543, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0209841, Final residual = 0.000120123, No Iterations 4
time step continuity errors : sum local = 0.000384878, global = -6.45258e-05, cumulative = -0.307725
smoothSolver: Solving for omega, Initial residual = 0.000271594, Final residual = 2.57768e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135734, Final residual = 8.15917e-05, No Iterations 4
ExecutionTime = 152.92 s ClockTime = 155 s
Time = 1067
smoothSolver: Solving for Ux, Initial residual = 0.000757286, Final residual = 4.66148e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00330232, Final residual = 0.000195677, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0210162, Final residual = 0.000121252, No Iterations 4
time step continuity errors : sum local = 0.000387395, global = -6.42842e-05, cumulative = -0.307789
smoothSolver: Solving for omega, Initial residual = 0.000270656, Final residual = 2.56943e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135764, Final residual = 8.16986e-05, No Iterations 4
ExecutionTime = 153.06 s ClockTime = 155 s
Time = 1068
smoothSolver: Solving for Ux, Initial residual = 0.000756056, Final residual = 4.65615e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00330373, Final residual = 0.000195783, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0210902, Final residual = 0.000122325, No Iterations 4
time step continuity errors : sum local = 0.000389741, global = -6.40786e-05, cumulative = -0.307853
smoothSolver: Solving for omega, Initial residual = 0.000269755, Final residual = 2.56106e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135799, Final residual = 8.18095e-05, No Iterations 4
ExecutionTime = 153.2 s ClockTime = 155 s
Time = 1069
smoothSolver: Solving for Ux, Initial residual = 0.000754821, Final residual = 4.65094e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00330439, Final residual = 0.000195888, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0211311, Final residual = 0.000123368, No Iterations 4
time step continuity errors : sum local = 0.000391985, global = -6.37895e-05, cumulative = -0.307917
smoothSolver: Solving for omega, Initial residual = 0.000268878, Final residual = 2.55344e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135836, Final residual = 8.19253e-05, No Iterations 4
ExecutionTime = 153.34 s ClockTime = 155 s
Time = 1070
smoothSolver: Solving for Ux, Initial residual = 0.000753582, Final residual = 4.64574e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00330621, Final residual = 0.00019601, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0211096, Final residual = 0.000124515, No Iterations 4
time step continuity errors : sum local = 0.000394495, global = -6.35252e-05, cumulative = -0.30798
smoothSolver: Solving for omega, Initial residual = 0.000267992, Final residual = 2.54577e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135872, Final residual = 8.20361e-05, No Iterations 4
ExecutionTime = 153.48 s ClockTime = 155 s
Time = 1071
smoothSolver: Solving for Ux, Initial residual = 0.000752364, Final residual = 4.64055e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00330759, Final residual = 0.000196106, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0211432, Final residual = 0.000125851, No Iterations 4
time step continuity errors : sum local = 0.000397606, global = -6.34853e-05, cumulative = -0.308044
smoothSolver: Solving for omega, Initial residual = 0.00026716, Final residual = 2.53842e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135913, Final residual = 8.21497e-05, No Iterations 4
ExecutionTime = 153.62 s ClockTime = 155 s
Time = 1072
smoothSolver: Solving for Ux, Initial residual = 0.000751136, Final residual = 4.63536e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00330813, Final residual = 0.000196184, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0211892, Final residual = 0.000127223, No Iterations 4
time step continuity errors : sum local = 0.000400834, global = -6.37165e-05, cumulative = -0.308108
smoothSolver: Solving for omega, Initial residual = 0.000266316, Final residual = 2.5311e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135954, Final residual = 8.22656e-05, No Iterations 4
ExecutionTime = 153.75 s ClockTime = 155 s
Time = 1073
smoothSolver: Solving for Ux, Initial residual = 0.00074996, Final residual = 4.63016e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00330924, Final residual = 0.000196294, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0212151, Final residual = 0.00012806, No Iterations 4
time step continuity errors : sum local = 0.000402365, global = -6.34061e-05, cumulative = -0.308171
smoothSolver: Solving for omega, Initial residual = 0.000265504, Final residual = 2.52434e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135992, Final residual = 8.23819e-05, No Iterations 4
ExecutionTime = 153.89 s ClockTime = 156 s
Time = 1074
smoothSolver: Solving for Ux, Initial residual = 0.000748796, Final residual = 4.62506e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00331067, Final residual = 0.000196376, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0212057, Final residual = 0.000128923, No Iterations 4
time step continuity errors : sum local = 0.000403957, global = -6.32152e-05, cumulative = -0.308234
smoothSolver: Solving for omega, Initial residual = 0.000264723, Final residual = 2.51738e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136026, Final residual = 8.24945e-05, No Iterations 4
ExecutionTime = 154.03 s ClockTime = 156 s
Time = 1075
smoothSolver: Solving for Ux, Initial residual = 0.000747599, Final residual = 4.61986e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00331116, Final residual = 0.000196435, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0212462, Final residual = 0.000129633, No Iterations 4
time step continuity errors : sum local = 0.000405063, global = -6.27317e-05, cumulative = -0.308297
smoothSolver: Solving for omega, Initial residual = 0.000263939, Final residual = 2.51086e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136072, Final residual = 8.26118e-05, No Iterations 4
ExecutionTime = 154.16 s ClockTime = 156 s
Time = 1076
smoothSolver: Solving for Ux, Initial residual = 0.000746418, Final residual = 4.61471e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00331173, Final residual = 0.000196518, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0212404, Final residual = 0.00013046, No Iterations 4
time step continuity errors : sum local = 0.000406538, global = -6.22152e-05, cumulative = -0.308359
smoothSolver: Solving for omega, Initial residual = 0.000263206, Final residual = 2.50411e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0013611, Final residual = 8.27301e-05, No Iterations 4
ExecutionTime = 154.31 s ClockTime = 156 s
Time = 1077
smoothSolver: Solving for Ux, Initial residual = 0.000745325, Final residual = 4.60961e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00331314, Final residual = 0.000196597, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0212527, Final residual = 0.000131455, No Iterations 4
time step continuity errors : sum local = 0.000408542, global = -6.18308e-05, cumulative = -0.308421
smoothSolver: Solving for omega, Initial residual = 0.000262459, Final residual = 2.49793e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136145, Final residual = 8.28435e-05, No Iterations 4
ExecutionTime = 154.44 s ClockTime = 156 s
Time = 1078
smoothSolver: Solving for Ux, Initial residual = 0.000744228, Final residual = 4.60461e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00331367, Final residual = 0.000196653, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0213058, Final residual = 0.00013242, No Iterations 4
time step continuity errors : sum local = 0.000410398, global = -6.14755e-05, cumulative = -0.308483
smoothSolver: Solving for omega, Initial residual = 0.000261751, Final residual = 2.49169e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136179, Final residual = 8.2961e-05, No Iterations 4
ExecutionTime = 154.58 s ClockTime = 156 s
Time = 1079
smoothSolver: Solving for Ux, Initial residual = 0.000743082, Final residual = 4.59939e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00331394, Final residual = 0.000196696, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0213071, Final residual = 0.000133211, No Iterations 4
time step continuity errors : sum local = 0.00041172, global = -6.12411e-05, cumulative = -0.308544
smoothSolver: Solving for omega, Initial residual = 0.000261039, Final residual = 2.48573e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136217, Final residual = 8.30733e-05, No Iterations 4
ExecutionTime = 154.71 s ClockTime = 156 s
Time = 1080
smoothSolver: Solving for Ux, Initial residual = 0.000742018, Final residual = 4.59427e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00331474, Final residual = 0.000196769, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0213082, Final residual = 0.000133627, No Iterations 4
time step continuity errors : sum local = 0.000411898, global = -6.10458e-05, cumulative = -0.308605
smoothSolver: Solving for omega, Initial residual = 0.000260388, Final residual = 2.47981e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136246, Final residual = 8.31852e-05, No Iterations 4
ExecutionTime = 154.85 s ClockTime = 157 s
Time = 1081
smoothSolver: Solving for Ux, Initial residual = 0.000740932, Final residual = 4.5892e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00331559, Final residual = 0.000196828, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0213439, Final residual = 0.000134142, No Iterations 4
time step continuity errors : sum local = 0.000412356, global = -6.07455e-05, cumulative = -0.308666
smoothSolver: Solving for omega, Initial residual = 0.00025972, Final residual = 2.47397e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136273, Final residual = 8.32947e-05, No Iterations 4
ExecutionTime = 154.99 s ClockTime = 157 s
Time = 1082
smoothSolver: Solving for Ux, Initial residual = 0.000739871, Final residual = 4.58406e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00331585, Final residual = 0.000196863, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0213524, Final residual = 0.000134912, No Iterations 4
time step continuity errors : sum local = 0.000413604, global = -6.04132e-05, cumulative = -0.308726
smoothSolver: Solving for omega, Initial residual = 0.000259107, Final residual = 2.46838e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136305, Final residual = 8.34057e-05, No Iterations 4
ExecutionTime = 155.14 s ClockTime = 157 s
Time = 1083
smoothSolver: Solving for Ux, Initial residual = 0.000738839, Final residual = 4.57919e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00331613, Final residual = 0.000196904, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0213295, Final residual = 0.000135852, No Iterations 4
time step continuity errors : sum local = 0.000415382, global = -6.01455e-05, cumulative = -0.308786
smoothSolver: Solving for omega, Initial residual = 0.000258475, Final residual = 2.4631e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136329, Final residual = 8.35093e-05, No Iterations 4
ExecutionTime = 155.27 s ClockTime = 157 s
Time = 1084
smoothSolver: Solving for Ux, Initial residual = 0.0007378, Final residual = 4.57409e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00331706, Final residual = 0.000196962, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0213722, Final residual = 0.00013642, No Iterations 4
time step continuity errors : sum local = 0.000416007, global = -5.97191e-05, cumulative = -0.308846
smoothSolver: Solving for omega, Initial residual = 0.000257891, Final residual = 2.45766e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136341, Final residual = 8.36124e-05, No Iterations 4
ExecutionTime = 155.42 s ClockTime = 157 s
Time = 1085
smoothSolver: Solving for Ux, Initial residual = 0.000736709, Final residual = 4.5688e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00331749, Final residual = 0.000196998, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0213725, Final residual = 0.000136532, No Iterations 4
time step continuity errors : sum local = 0.000415228, global = -5.90954e-05, cumulative = -0.308905
smoothSolver: Solving for omega, Initial residual = 0.000257312, Final residual = 2.45249e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136355, Final residual = 8.37149e-05, No Iterations 4
ExecutionTime = 155.55 s ClockTime = 157 s
Time = 1086
smoothSolver: Solving for Ux, Initial residual = 0.000735668, Final residual = 4.56381e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0033178, Final residual = 0.000197023, No Iterations 4
GAMG: Solving for p, Initial residual = 0.021347, Final residual = 0.00013612, No Iterations 4
time step continuity errors : sum local = 0.000412832, global = -5.82879e-05, cumulative = -0.308963
smoothSolver: Solving for omega, Initial residual = 0.000256736, Final residual = 2.44755e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136374, Final residual = 8.38145e-05, No Iterations 4
ExecutionTime = 155.68 s ClockTime = 157 s
Time = 1087
smoothSolver: Solving for Ux, Initial residual = 0.000734727, Final residual = 4.55887e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00331819, Final residual = 0.000197067, No Iterations 4
GAMG: Solving for p, Initial residual = 0.021335, Final residual = 0.000135336, No Iterations 4
time step continuity errors : sum local = 0.000409324, global = -5.74129e-05, cumulative = -0.309021
smoothSolver: Solving for omega, Initial residual = 0.000256175, Final residual = 2.44247e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136379, Final residual = 8.39072e-05, No Iterations 4
ExecutionTime = 155.83 s ClockTime = 158 s
Time = 1088
smoothSolver: Solving for Ux, Initial residual = 0.000733734, Final residual = 4.5538e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00331875, Final residual = 0.000197097, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0214293, Final residual = 0.00013485, No Iterations 4
time step continuity errors : sum local = 0.000406711, global = -5.67328e-05, cumulative = -0.309077
smoothSolver: Solving for omega, Initial residual = 0.000255659, Final residual = 2.4377e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136377, Final residual = 8.39986e-05, No Iterations 4
ExecutionTime = 155.96 s ClockTime = 158 s
Time = 1089
smoothSolver: Solving for Ux, Initial residual = 0.000732713, Final residual = 4.54882e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00331907, Final residual = 0.000197113, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0213965, Final residual = 0.000134751, No Iterations 4
time step continuity errors : sum local = 0.000405273, global = -5.62122e-05, cumulative = -0.309134
smoothSolver: Solving for omega, Initial residual = 0.000255143, Final residual = 2.4331e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136378, Final residual = 8.40917e-05, No Iterations 4
ExecutionTime = 156.1 s ClockTime = 158 s
Time = 1090
smoothSolver: Solving for Ux, Initial residual = 0.000731711, Final residual = 4.54378e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00331949, Final residual = 0.000197131, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0213558, Final residual = 0.000135081, No Iterations 4
time step continuity errors : sum local = 0.000405127, global = -5.574e-05, cumulative = -0.309189
smoothSolver: Solving for omega, Initial residual = 0.000254629, Final residual = 2.42862e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0013638, Final residual = 8.41754e-05, No Iterations 4
ExecutionTime = 156.23 s ClockTime = 158 s
Time = 1091
smoothSolver: Solving for Ux, Initial residual = 0.000730725, Final residual = 4.53848e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00332005, Final residual = 0.000197175, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0214001, Final residual = 0.000135506, No Iterations 4
time step continuity errors : sum local = 0.000405253, global = -5.52352e-05, cumulative = -0.309245
smoothSolver: Solving for omega, Initial residual = 0.000254137, Final residual = 2.42423e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136369, Final residual = 8.4254e-05, No Iterations 4
ExecutionTime = 156.37 s ClockTime = 158 s
Time = 1092
smoothSolver: Solving for Ux, Initial residual = 0.000729779, Final residual = 4.53351e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00332055, Final residual = 0.000197185, No Iterations 4
GAMG: Solving for p, Initial residual = 0.021443, Final residual = 0.000135555, No Iterations 4
time step continuity errors : sum local = 0.000404264, global = -5.46501e-05, cumulative = -0.309299
smoothSolver: Solving for omega, Initial residual = 0.000253651, Final residual = 2.41998e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136353, Final residual = 8.43363e-05, No Iterations 4
ExecutionTime = 156.51 s ClockTime = 158 s
Time = 1093
smoothSolver: Solving for Ux, Initial residual = 0.000728821, Final residual = 4.52865e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00332086, Final residual = 0.000197181, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0213754, Final residual = 0.000134593, No Iterations 4
time step continuity errors : sum local = 0.000400257, global = -5.36274e-05, cumulative = -0.309353
smoothSolver: Solving for omega, Initial residual = 0.000253231, Final residual = 2.41588e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136339, Final residual = 8.4412e-05, No Iterations 4
ExecutionTime = 156.64 s ClockTime = 158 s
Time = 1094
smoothSolver: Solving for Ux, Initial residual = 0.000727864, Final residual = 4.52355e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00332119, Final residual = 0.000197199, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0213622, Final residual = 0.000133981, No Iterations 4
time step continuity errors : sum local = 0.000397271, global = -5.27651e-05, cumulative = -0.309406
smoothSolver: Solving for omega, Initial residual = 0.000252785, Final residual = 2.41208e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136323, Final residual = 8.44819e-05, No Iterations 4
ExecutionTime = 156.78 s ClockTime = 158 s
Time = 1095
smoothSolver: Solving for Ux, Initial residual = 0.000726891, Final residual = 4.51836e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00332179, Final residual = 0.000197238, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0213491, Final residual = 0.000134379, No Iterations 4
time step continuity errors : sum local = 0.0003973, global = -5.21411e-05, cumulative = -0.309458
smoothSolver: Solving for omega, Initial residual = 0.000252356, Final residual = 2.40826e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136292, Final residual = 8.45461e-05, No Iterations 4
ExecutionTime = 156.92 s ClockTime = 159 s
Time = 1096
smoothSolver: Solving for Ux, Initial residual = 0.000725928, Final residual = 4.51321e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00332224, Final residual = 0.000197248, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0213568, Final residual = 0.000135074, No Iterations 4
time step continuity errors : sum local = 0.000398212, global = -5.17152e-05, cumulative = -0.309509
smoothSolver: Solving for omega, Initial residual = 0.000251942, Final residual = 2.40462e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136256, Final residual = 8.46137e-05, No Iterations 4
ExecutionTime = 157.07 s ClockTime = 159 s
Time = 1097
smoothSolver: Solving for Ux, Initial residual = 0.000725047, Final residual = 4.50829e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00332251, Final residual = 0.000197247, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0213398, Final residual = 0.000135822, No Iterations 4
time step continuity errors : sum local = 0.000399284, global = -5.14377e-05, cumulative = -0.309561
smoothSolver: Solving for omega, Initial residual = 0.000251538, Final residual = 2.40106e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136224, Final residual = 8.46745e-05, No Iterations 4
ExecutionTime = 157.21 s ClockTime = 159 s
Time = 1098
smoothSolver: Solving for Ux, Initial residual = 0.000724128, Final residual = 4.50326e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00332283, Final residual = 0.000197284, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0213468, Final residual = 0.00013613, No Iterations 4
time step continuity errors : sum local = 0.000399074, global = -5.09698e-05, cumulative = -0.309612
smoothSolver: Solving for omega, Initial residual = 0.000251166, Final residual = 2.39772e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136189, Final residual = 8.47283e-05, No Iterations 4
ExecutionTime = 157.34 s ClockTime = 159 s
Time = 1099
smoothSolver: Solving for Ux, Initial residual = 0.00072319, Final residual = 4.49835e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00332362, Final residual = 0.000197333, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0213037, Final residual = 0.000136033, No Iterations 4
time step continuity errors : sum local = 0.000397704, global = -5.01053e-05, cumulative = -0.309662
smoothSolver: Solving for omega, Initial residual = 0.000250809, Final residual = 2.39458e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0013614, Final residual = 8.47759e-05, No Iterations 4
ExecutionTime = 157.47 s ClockTime = 159 s
Time = 1100
smoothSolver: Solving for Ux, Initial residual = 0.000722242, Final residual = 4.49322e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00332444, Final residual = 0.000197368, No Iterations 4
GAMG: Solving for p, Initial residual = 0.021356, Final residual = 0.000136098, No Iterations 4
time step continuity errors : sum local = 0.000396824, global = -4.91467e-05, cumulative = -0.309711
smoothSolver: Solving for omega, Initial residual = 0.000250447, Final residual = 2.39143e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00136083, Final residual = 8.48272e-05, No Iterations 4
ExecutionTime = 157.82 s ClockTime = 160 s
Time = 1101
smoothSolver: Solving for Ux, Initial residual = 0.000721349, Final residual = 4.4878e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00332517, Final residual = 0.000197401, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0213521, Final residual = 0.000136512, No Iterations 4
time step continuity errors : sum local = 0.000396925, global = -4.83479e-05, cumulative = -0.309759
smoothSolver: Solving for omega, Initial residual = 0.000250108, Final residual = 2.38838e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0013603, Final residual = 8.48697e-05, No Iterations 4
ExecutionTime = 157.96 s ClockTime = 160 s
Time = 1102
smoothSolver: Solving for Ux, Initial residual = 0.000720457, Final residual = 4.48276e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00332601, Final residual = 0.00019747, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0212766, Final residual = 0.000137216, No Iterations 4
time step continuity errors : sum local = 0.000397871, global = -4.77158e-05, cumulative = -0.309807
smoothSolver: Solving for omega, Initial residual = 0.000249784, Final residual = 2.38572e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135975, Final residual = 8.49059e-05, No Iterations 4
ExecutionTime = 158.1 s ClockTime = 160 s
Time = 1103
smoothSolver: Solving for Ux, Initial residual = 0.000719566, Final residual = 4.47803e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00332733, Final residual = 0.00019754, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0211933, Final residual = 0.000138377, No Iterations 4
time step continuity errors : sum local = 0.000400137, global = -4.72631e-05, cumulative = -0.309854
smoothSolver: Solving for omega, Initial residual = 0.0002495, Final residual = 2.38302e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135905, Final residual = 8.49387e-05, No Iterations 4
ExecutionTime = 158.24 s ClockTime = 160 s
Time = 1104
smoothSolver: Solving for Ux, Initial residual = 0.000718662, Final residual = 4.473e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00332866, Final residual = 0.0001976, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0212227, Final residual = 0.000139678, No Iterations 4
time step continuity errors : sum local = 0.000402795, global = -4.69565e-05, cumulative = -0.309901
smoothSolver: Solving for omega, Initial residual = 0.000249204, Final residual = 2.38042e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135833, Final residual = 8.49722e-05, No Iterations 4
ExecutionTime = 158.38 s ClockTime = 160 s
Time = 1105
smoothSolver: Solving for Ux, Initial residual = 0.000717807, Final residual = 4.46778e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00332991, Final residual = 0.000197671, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0212247, Final residual = 0.000141482, No Iterations 4
time step continuity errors : sum local = 0.000406903, global = -4.67414e-05, cumulative = -0.309948
smoothSolver: Solving for omega, Initial residual = 0.000248934, Final residual = 2.37814e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135759, Final residual = 8.49974e-05, No Iterations 4
ExecutionTime = 158.52 s ClockTime = 160 s
Time = 1106
smoothSolver: Solving for Ux, Initial residual = 0.000716951, Final residual = 4.46262e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00333122, Final residual = 0.000197763, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0211275, Final residual = 0.000143546, No Iterations 4
time step continuity errors : sum local = 0.000411754, global = -4.64077e-05, cumulative = -0.309995
smoothSolver: Solving for omega, Initial residual = 0.00024868, Final residual = 2.37598e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135682, Final residual = 8.50161e-05, No Iterations 4
ExecutionTime = 158.66 s ClockTime = 160 s
Time = 1107
smoothSolver: Solving for Ux, Initial residual = 0.000716085, Final residual = 4.45765e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00333288, Final residual = 0.000197848, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0211259, Final residual = 0.000145884, No Iterations 4
time step continuity errors : sum local = 0.000417349, global = -4.58316e-05, cumulative = -0.31004
smoothSolver: Solving for omega, Initial residual = 0.000248468, Final residual = 2.3738e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135592, Final residual = 8.50307e-05, No Iterations 4
ExecutionTime = 158.8 s ClockTime = 161 s
Time = 1108
smoothSolver: Solving for Ux, Initial residual = 0.000715264, Final residual = 4.45292e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00333466, Final residual = 0.000197931, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0211556, Final residual = 0.000148158, No Iterations 4
time step continuity errors : sum local = 0.00042268, global = -4.49931e-05, cumulative = -0.310085
smoothSolver: Solving for omega, Initial residual = 0.000248216, Final residual = 2.37186e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135497, Final residual = 8.50467e-05, No Iterations 4
ExecutionTime = 158.94 s ClockTime = 161 s
Time = 1109
smoothSolver: Solving for Ux, Initial residual = 0.000714434, Final residual = 4.44806e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00333637, Final residual = 0.000198029, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0211018, Final residual = 0.000149908, No Iterations 4
time step continuity errors : sum local = 0.000426516, global = -4.40764e-05, cumulative = -0.310129
smoothSolver: Solving for omega, Initial residual = 0.000247999, Final residual = 2.36999e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135403, Final residual = 8.50552e-05, No Iterations 4
ExecutionTime = 159.07 s ClockTime = 161 s
Time = 1110
smoothSolver: Solving for Ux, Initial residual = 0.000713606, Final residual = 4.44319e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00333798, Final residual = 0.000198141, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0209813, Final residual = 0.000151154, No Iterations 4
time step continuity errors : sum local = 0.000428914, global = -4.31878e-05, cumulative = -0.310173
smoothSolver: Solving for omega, Initial residual = 0.00024783, Final residual = 2.36839e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0013531, Final residual = 8.50557e-05, No Iterations 4
ExecutionTime = 159.22 s ClockTime = 161 s
Time = 1111
smoothSolver: Solving for Ux, Initial residual = 0.000712772, Final residual = 4.43813e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00333999, Final residual = 0.000198247, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0209337, Final residual = 0.000152679, No Iterations 4
time step continuity errors : sum local = 0.00043206, global = -4.2211e-05, cumulative = -0.310215
smoothSolver: Solving for omega, Initial residual = 0.000247669, Final residual = 2.36685e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135203, Final residual = 8.5053e-05, No Iterations 4
ExecutionTime = 159.36 s ClockTime = 161 s
Time = 1112
smoothSolver: Solving for Ux, Initial residual = 0.00071197, Final residual = 4.43306e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00334201, Final residual = 0.000198357, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0209416, Final residual = 0.00015504, No Iterations 4
time step continuity errors : sum local = 0.000437567, global = -4.1067e-05, cumulative = -0.310256
smoothSolver: Solving for omega, Initial residual = 0.000247507, Final residual = 2.36557e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00135087, Final residual = 8.50523e-05, No Iterations 4
ExecutionTime = 159.49 s ClockTime = 161 s
Time = 1113
smoothSolver: Solving for Ux, Initial residual = 0.00071118, Final residual = 4.42855e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00334407, Final residual = 0.000198479, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0208759, Final residual = 0.00015694, No Iterations 4
time step continuity errors : sum local = 0.00044178, global = -3.9663e-05, cumulative = -0.310296
smoothSolver: Solving for omega, Initial residual = 0.000247366, Final residual = 2.36426e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00134971, Final residual = 8.50427e-05, No Iterations 4
ExecutionTime = 159.63 s ClockTime = 161 s
Time = 1114
smoothSolver: Solving for Ux, Initial residual = 0.000710394, Final residual = 4.42396e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00334614, Final residual = 0.000198613, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0207984, Final residual = 0.000159887, No Iterations 4
time step continuity errors : sum local = 0.000448917, global = -3.81384e-05, cumulative = -0.310334
smoothSolver: Solving for omega, Initial residual = 0.000247226, Final residual = 2.3631e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00134859, Final residual = 8.50265e-05, No Iterations 4
ExecutionTime = 159.77 s ClockTime = 162 s
Time = 1115
smoothSolver: Solving for Ux, Initial residual = 0.000709596, Final residual = 4.41906e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00334858, Final residual = 0.000198737, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0207504, Final residual = 0.000163558, No Iterations 4
time step continuity errors : sum local = 0.000457958, global = -3.64151e-05, cumulative = -0.31037
smoothSolver: Solving for omega, Initial residual = 0.000247136, Final residual = 2.36197e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00134737, Final residual = 8.50063e-05, No Iterations 4
ExecutionTime = 159.9 s ClockTime = 162 s
Time = 1116
smoothSolver: Solving for Ux, Initial residual = 0.000708807, Final residual = 4.41405e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00335096, Final residual = 0.00019886, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0207434, Final residual = 0.000167371, No Iterations 4
time step continuity errors : sum local = 0.000467344, global = -3.47045e-05, cumulative = -0.310405
smoothSolver: Solving for omega, Initial residual = 0.00024703, Final residual = 2.361e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00134603, Final residual = 8.49894e-05, No Iterations 4
ExecutionTime = 160.04 s ClockTime = 162 s
Time = 1117
smoothSolver: Solving for Ux, Initial residual = 0.000708043, Final residual = 4.40927e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00335323, Final residual = 0.000198983, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0207143, Final residual = 0.000170751, No Iterations 4
time step continuity errors : sum local = 0.000475521, global = -3.31933e-05, cumulative = -0.310438
smoothSolver: Solving for omega, Initial residual = 0.000246911, Final residual = 2.36005e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00134467, Final residual = 8.49635e-05, No Iterations 4
ExecutionTime = 160.18 s ClockTime = 162 s
Time = 1118
smoothSolver: Solving for Ux, Initial residual = 0.000707268, Final residual = 4.4047e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00335561, Final residual = 0.000199125, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0206535, Final residual = 0.000173676, No Iterations 4
time step continuity errors : sum local = 0.000482388, global = -3.15017e-05, cumulative = -0.31047
smoothSolver: Solving for omega, Initial residual = 0.000246822, Final residual = 2.35922e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00134339, Final residual = 8.49299e-05, No Iterations 4
ExecutionTime = 160.32 s ClockTime = 162 s
Time = 1119
smoothSolver: Solving for Ux, Initial residual = 0.000706492, Final residual = 4.39999e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00335824, Final residual = 0.000199261, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0205922, Final residual = 0.000176512, No Iterations 4
time step continuity errors : sum local = 0.00048894, global = -2.93902e-05, cumulative = -0.310499
smoothSolver: Solving for omega, Initial residual = 0.00024677, Final residual = 2.35848e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.001342, Final residual = 8.48942e-05, No Iterations 4
ExecutionTime = 160.45 s ClockTime = 162 s
Time = 1120
smoothSolver: Solving for Ux, Initial residual = 0.000705742, Final residual = 4.39514e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00336089, Final residual = 0.000199395, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0205543, Final residual = 0.000179185, No Iterations 4
time step continuity errors : sum local = 0.000495034, global = -2.65619e-05, cumulative = -0.310525
smoothSolver: Solving for omega, Initial residual = 0.000246668, Final residual = 2.3577e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00134051, Final residual = 8.48611e-05, No Iterations 4
ExecutionTime = 160.59 s ClockTime = 162 s
Time = 1121
smoothSolver: Solving for Ux, Initial residual = 0.000704988, Final residual = 4.39049e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00336334, Final residual = 0.000199527, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204689, Final residual = 0.0001815, No Iterations 4
time step continuity errors : sum local = 0.000500114, global = -2.3438e-05, cumulative = -0.310549
smoothSolver: Solving for omega, Initial residual = 0.000246584, Final residual = 2.35698e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.001339, Final residual = 8.48214e-05, No Iterations 4
ExecutionTime = 160.73 s ClockTime = 162 s
Time = 1122
smoothSolver: Solving for Ux, Initial residual = 0.00070425, Final residual = 4.38573e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00336586, Final residual = 0.000199671, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204025, Final residual = 0.000183961, No Iterations 4
time step continuity errors : sum local = 0.000505481, global = -2.06137e-05, cumulative = -0.31057
smoothSolver: Solving for omega, Initial residual = 0.000246512, Final residual = 2.35646e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00133758, Final residual = 8.47751e-05, No Iterations 4
ExecutionTime = 160.88 s ClockTime = 163 s
Time = 1123
smoothSolver: Solving for Ux, Initial residual = 0.000703491, Final residual = 4.38088e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00336864, Final residual = 0.000199818, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0203514, Final residual = 0.000186769, No Iterations 4
time step continuity errors : sum local = 0.000511749, global = -1.80613e-05, cumulative = -0.310588
smoothSolver: Solving for omega, Initial residual = 0.000246451, Final residual = 2.35575e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00133607, Final residual = 8.47234e-05, No Iterations 4
ExecutionTime = 161.01 s ClockTime = 163 s
Time = 1124
smoothSolver: Solving for Ux, Initial residual = 0.000702756, Final residual = 4.37625e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00337143, Final residual = 0.000199964, No Iterations 4
GAMG: Solving for p, Initial residual = 0.020305, Final residual = 0.000189448, No Iterations 4
time step continuity errors : sum local = 0.000517678, global = -1.5992e-05, cumulative = -0.310604
smoothSolver: Solving for omega, Initial residual = 0.00024637, Final residual = 2.35523e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00133448, Final residual = 8.46757e-05, No Iterations 4
ExecutionTime = 161.15 s ClockTime = 163 s
Time = 1125
smoothSolver: Solving for Ux, Initial residual = 0.000702041, Final residual = 4.37178e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00337414, Final residual = 0.000200107, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0202808, Final residual = 0.000191513, No Iterations 4
time step continuity errors : sum local = 0.000521937, global = -1.41556e-05, cumulative = -0.310618
smoothSolver: Solving for omega, Initial residual = 0.000246313, Final residual = 2.35478e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00133288, Final residual = 8.46272e-05, No Iterations 4
ExecutionTime = 161.29 s ClockTime = 163 s
Time = 1126
smoothSolver: Solving for Ux, Initial residual = 0.00070132, Final residual = 4.36717e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0033769, Final residual = 0.000200256, No Iterations 4
GAMG: Solving for p, Initial residual = 0.020247, Final residual = 0.000193512, No Iterations 4
time step continuity errors : sum local = 0.000525978, global = -1.22884e-05, cumulative = -0.31063
smoothSolver: Solving for omega, Initial residual = 0.000246245, Final residual = 2.35434e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00133138, Final residual = 8.45709e-05, No Iterations 4
ExecutionTime = 161.43 s ClockTime = 163 s
Time = 1127
smoothSolver: Solving for Ux, Initial residual = 0.000700579, Final residual = 4.36235e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00337985, Final residual = 0.000200418, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0202187, Final residual = 0.000194977, No Iterations 4
time step continuity errors : sum local = 0.000528554, global = -9.7156e-06, cumulative = -0.31064
smoothSolver: Solving for omega, Initial residual = 0.000246179, Final residual = 2.35387e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00132985, Final residual = 8.45069e-05, No Iterations 4
ExecutionTime = 161.57 s ClockTime = 163 s
Time = 1128
smoothSolver: Solving for Ux, Initial residual = 0.000699886, Final residual = 4.35762e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00338296, Final residual = 0.000200583, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0201326, Final residual = 0.000195842, No Iterations 4
time step continuity errors : sum local = 0.00052948, global = -6.14194e-06, cumulative = -0.310646
smoothSolver: Solving for omega, Initial residual = 0.000246093, Final residual = 2.35354e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00132822, Final residual = 8.44465e-05, No Iterations 4
ExecutionTime = 161.71 s ClockTime = 163 s
Time = 1129
smoothSolver: Solving for Ux, Initial residual = 0.000699171, Final residual = 4.35312e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00338599, Final residual = 0.000200747, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0200477, Final residual = 0.000197223, No Iterations 4
time step continuity errors : sum local = 0.0005318, global = -2.75386e-06, cumulative = -0.310649
smoothSolver: Solving for omega, Initial residual = 0.000246067, Final residual = 2.3533e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00132656, Final residual = 8.43897e-05, No Iterations 4
ExecutionTime = 161.85 s ClockTime = 164 s
Time = 1130
smoothSolver: Solving for Ux, Initial residual = 0.000698478, Final residual = 4.3486e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00338909, Final residual = 0.000200909, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0200265, Final residual = 0.000198756, No Iterations 4
time step continuity errors : sum local = 0.00053447, global = -2.40131e-07, cumulative = -0.310649
smoothSolver: Solving for omega, Initial residual = 0.000246043, Final residual = 2.35292e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00132492, Final residual = 8.43236e-05, No Iterations 4
ExecutionTime = 161.98 s ClockTime = 164 s
Time = 1131
smoothSolver: Solving for Ux, Initial residual = 0.000697763, Final residual = 4.34391e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00339225, Final residual = 0.000201089, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0200943, Final residual = 0.000199663, No Iterations 4
time step continuity errors : sum local = 0.000535416, global = 2.17801e-06, cumulative = -0.310647
smoothSolver: Solving for omega, Initial residual = 0.000245984, Final residual = 2.35264e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00132334, Final residual = 8.42511e-05, No Iterations 4
ExecutionTime = 162.11 s ClockTime = 164 s
Time = 1132
smoothSolver: Solving for Ux, Initial residual = 0.000697069, Final residual = 4.33929e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00339566, Final residual = 0.00020128, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0200432, Final residual = 0.000199515, No Iterations 4
time step continuity errors : sum local = 0.000533593, global = 4.90731e-06, cumulative = -0.310642
smoothSolver: Solving for omega, Initial residual = 0.000245902, Final residual = 2.35223e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00132168, Final residual = 8.41747e-05, No Iterations 4
ExecutionTime = 162.25 s ClockTime = 164 s
Time = 1133
smoothSolver: Solving for Ux, Initial residual = 0.000696401, Final residual = 4.33493e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.003399, Final residual = 0.000201464, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0199301, Final residual = 0.000198722, No Iterations 4
time step continuity errors : sum local = 0.000530089, global = 7.60648e-06, cumulative = -0.310634
smoothSolver: Solving for omega, Initial residual = 0.000245865, Final residual = 2.35198e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00131993, Final residual = 8.41082e-05, No Iterations 4
ExecutionTime = 162.38 s ClockTime = 164 s
Time = 1134
smoothSolver: Solving for Ux, Initial residual = 0.000695734, Final residual = 4.33038e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00340214, Final residual = 0.000201632, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0198397, Final residual = 0.000197642, No Iterations 4
time step continuity errors : sum local = 0.000525835, global = 1.05596e-05, cumulative = -0.310624
smoothSolver: Solving for omega, Initial residual = 0.000245847, Final residual = 2.35174e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00131813, Final residual = 8.40354e-05, No Iterations 4
ExecutionTime = 162.52 s ClockTime = 164 s
Time = 1135
smoothSolver: Solving for Ux, Initial residual = 0.00069505, Final residual = 4.32573e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00340515, Final residual = 0.000201796, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0198348, Final residual = 0.000196327, No Iterations 4
time step continuity errors : sum local = 0.000520911, global = 1.48857e-05, cumulative = -0.310609
smoothSolver: Solving for omega, Initial residual = 0.000245763, Final residual = 2.35133e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00131649, Final residual = 8.39539e-05, No Iterations 4
ExecutionTime = 162.66 s ClockTime = 164 s
Time = 1136
smoothSolver: Solving for Ux, Initial residual = 0.000694356, Final residual = 4.32108e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00340818, Final residual = 0.000201963, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0197946, Final residual = 0.000194783, No Iterations 4
time step continuity errors : sum local = 0.000515445, global = 2.06504e-05, cumulative = -0.310588
smoothSolver: Solving for omega, Initial residual = 0.00024569, Final residual = 2.35097e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00131481, Final residual = 8.38669e-05, No Iterations 4
ExecutionTime = 162.79 s ClockTime = 165 s
Time = 1137
smoothSolver: Solving for Ux, Initial residual = 0.000693668, Final residual = 4.31669e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00341108, Final residual = 0.000202123, No Iterations 4
GAMG: Solving for p, Initial residual = 0.019728, Final residual = 0.000193619, No Iterations 4
time step continuity errors : sum local = 0.000511024, global = 2.69417e-05, cumulative = -0.310561
smoothSolver: Solving for omega, Initial residual = 0.000245648, Final residual = 2.35061e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00131298, Final residual = 8.37879e-05, No Iterations 4
ExecutionTime = 162.93 s ClockTime = 165 s
Time = 1138
smoothSolver: Solving for Ux, Initial residual = 0.000693007, Final residual = 4.31225e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00341377, Final residual = 0.000202264, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196968, Final residual = 0.000193346, No Iterations 4
time step continuity errors : sum local = 0.000508965, global = 3.32902e-05, cumulative = -0.310528
smoothSolver: Solving for omega, Initial residual = 0.000245603, Final residual = 2.35017e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00131108, Final residual = 8.37097e-05, No Iterations 4
ExecutionTime = 163.06 s ClockTime = 165 s
Time = 1139
smoothSolver: Solving for Ux, Initial residual = 0.000692339, Final residual = 4.30776e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00341624, Final residual = 0.000202397, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0197287, Final residual = 0.00019337, No Iterations 4
time step continuity errors : sum local = 0.000507728, global = 3.91898e-05, cumulative = -0.310489
smoothSolver: Solving for omega, Initial residual = 0.000245519, Final residual = 2.34976e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00130933, Final residual = 8.36215e-05, No Iterations 4
ExecutionTime = 163.2 s ClockTime = 165 s
Time = 1140
smoothSolver: Solving for Ux, Initial residual = 0.000691673, Final residual = 4.30314e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00341866, Final residual = 0.00020253, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196987, Final residual = 0.000193749, No Iterations 4
time step continuity errors : sum local = 0.000507424, global = 4.36009e-05, cumulative = -0.310445
smoothSolver: Solving for omega, Initial residual = 0.000245461, Final residual = 2.34929e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00130761, Final residual = 8.35275e-05, No Iterations 4
ExecutionTime = 163.35 s ClockTime = 165 s
Time = 1141
smoothSolver: Solving for Ux, Initial residual = 0.000691011, Final residual = 4.29877e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00342098, Final residual = 0.000202659, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196364, Final residual = 0.000195681, No Iterations 4
time step continuity errors : sum local = 0.000511134, global = 4.6587e-05, cumulative = -0.310399
smoothSolver: Solving for omega, Initial residual = 0.000245393, Final residual = 2.34885e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00130577, Final residual = 8.34327e-05, No Iterations 4
ExecutionTime = 163.49 s ClockTime = 165 s
Time = 1142
smoothSolver: Solving for Ux, Initial residual = 0.000690364, Final residual = 4.29433e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00342308, Final residual = 0.000202768, No Iterations 4
GAMG: Solving for p, Initial residual = 0.019616, Final residual = 0.000101355, No Iterations 5
time step continuity errors : sum local = 0.00026403, global = -1.12933e-05, cumulative = -0.31041
smoothSolver: Solving for omega, Initial residual = 0.000245336, Final residual = 2.34842e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00130386, Final residual = 8.33503e-05, No Iterations 4
ExecutionTime = 163.64 s ClockTime = 165 s
Time = 1143
smoothSolver: Solving for Ux, Initial residual = 0.000689678, Final residual = 4.28984e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00342532, Final residual = 0.000202876, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0195772, Final residual = 0.000189862, No Iterations 4
time step continuity errors : sum local = 0.000493348, global = 3.93907e-05, cumulative = -0.31037
smoothSolver: Solving for omega, Initial residual = 0.000245249, Final residual = 2.34784e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00130193, Final residual = 8.32583e-05, No Iterations 4
ExecutionTime = 163.77 s ClockTime = 166 s
Time = 1144
smoothSolver: Solving for Ux, Initial residual = 0.000688994, Final residual = 4.28543e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0034267, Final residual = 0.000202959, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0195907, Final residual = 0.000101, No Iterations 5
time step continuity errors : sum local = 0.000261716, global = -6.60774e-06, cumulative = -0.310377
smoothSolver: Solving for omega, Initial residual = 0.000245191, Final residual = 2.3473e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0013002, Final residual = 8.31615e-05, No Iterations 4
ExecutionTime = 163.92 s ClockTime = 166 s
Time = 1145
smoothSolver: Solving for Ux, Initial residual = 0.000688338, Final residual = 4.28121e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0034286, Final residual = 0.00020306, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196185, Final residual = 0.000104034, No Iterations 5
time step continuity errors : sum local = 0.000268872, global = -7.9464e-06, cumulative = -0.310385
smoothSolver: Solving for omega, Initial residual = 0.000245125, Final residual = 2.34682e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00129837, Final residual = 8.30597e-05, No Iterations 4
ExecutionTime = 164.07 s ClockTime = 166 s
Time = 1146
smoothSolver: Solving for Ux, Initial residual = 0.000687737, Final residual = 4.27685e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0034301, Final residual = 0.000203141, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196113, Final residual = 0.000106702, No Iterations 5
time step continuity errors : sum local = 0.000275041, global = -1.0209e-05, cumulative = -0.310395
smoothSolver: Solving for omega, Initial residual = 0.000245065, Final residual = 2.34634e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00129648, Final residual = 8.2963e-05, No Iterations 4
ExecutionTime = 164.22 s ClockTime = 166 s
Time = 1147
smoothSolver: Solving for Ux, Initial residual = 0.000687092, Final residual = 4.27234e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00343139, Final residual = 0.0002032, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0195784, Final residual = 0.000110143, No Iterations 5
time step continuity errors : sum local = 0.000283168, global = -1.20762e-05, cumulative = -0.310407
smoothSolver: Solving for omega, Initial residual = 0.000244986, Final residual = 2.34566e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00129453, Final residual = 8.28713e-05, No Iterations 4
ExecutionTime = 164.36 s ClockTime = 166 s
Time = 1148
smoothSolver: Solving for Ux, Initial residual = 0.000686402, Final residual = 4.26785e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00343245, Final residual = 0.000203257, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0195546, Final residual = 0.00011385, No Iterations 5
time step continuity errors : sum local = 0.000291937, global = -1.30431e-05, cumulative = -0.31042
smoothSolver: Solving for omega, Initial residual = 0.00024492, Final residual = 2.34513e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00129265, Final residual = 8.27717e-05, No Iterations 4
ExecutionTime = 164.51 s ClockTime = 166 s
Time = 1149
smoothSolver: Solving for Ux, Initial residual = 0.000685727, Final residual = 4.26344e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0034335, Final residual = 0.000203306, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0195164, Final residual = 0.000117312, No Iterations 5
time step continuity errors : sum local = 0.000300019, global = -1.31286e-05, cumulative = -0.310433
smoothSolver: Solving for omega, Initial residual = 0.000244874, Final residual = 2.34458e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0012909, Final residual = 8.2667e-05, No Iterations 4
ExecutionTime = 164.66 s ClockTime = 166 s
Time = 1150
smoothSolver: Solving for Ux, Initial residual = 0.000685084, Final residual = 4.25935e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00343427, Final residual = 0.000203346, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0195301, Final residual = 0.000120406, No Iterations 5
time step continuity errors : sum local = 0.000307122, global = -1.30238e-05, cumulative = -0.310446
smoothSolver: Solving for omega, Initial residual = 0.000244794, Final residual = 2.34386e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00128906, Final residual = 8.25596e-05, No Iterations 4
ExecutionTime = 165.01 s ClockTime = 167 s
Time = 1151
smoothSolver: Solving for Ux, Initial residual = 0.000684458, Final residual = 4.2553e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00343487, Final residual = 0.000203366, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0195545, Final residual = 0.000122453, No Iterations 5
time step continuity errors : sum local = 0.000311513, global = -1.35103e-05, cumulative = -0.31046
smoothSolver: Solving for omega, Initial residual = 0.000244716, Final residual = 2.34318e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00128712, Final residual = 8.24618e-05, No Iterations 4
ExecutionTime = 165.16 s ClockTime = 167 s
Time = 1152
smoothSolver: Solving for Ux, Initial residual = 0.000683833, Final residual = 4.25097e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00343529, Final residual = 0.000203381, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196015, Final residual = 0.000123901, No Iterations 5
time step continuity errors : sum local = 0.000314402, global = -1.43074e-05, cumulative = -0.310474
smoothSolver: Solving for omega, Initial residual = 0.000244604, Final residual = 2.34243e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00128516, Final residual = 8.23649e-05, No Iterations 4
ExecutionTime = 165.31 s ClockTime = 167 s
Time = 1153
smoothSolver: Solving for Ux, Initial residual = 0.00068321, Final residual = 4.24678e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00343565, Final residual = 0.000203388, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196171, Final residual = 0.000125178, No Iterations 5
time step continuity errors : sum local = 0.000316858, global = -1.5203e-05, cumulative = -0.310489
smoothSolver: Solving for omega, Initial residual = 0.000244538, Final residual = 2.34177e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00128342, Final residual = 8.22606e-05, No Iterations 4
ExecutionTime = 165.46 s ClockTime = 167 s
Time = 1154
smoothSolver: Solving for Ux, Initial residual = 0.000682596, Final residual = 4.24284e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00343572, Final residual = 0.000203388, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196307, Final residual = 0.000126569, No Iterations 5
time step continuity errors : sum local = 0.000319557, global = -1.61836e-05, cumulative = -0.310506
smoothSolver: Solving for omega, Initial residual = 0.000244438, Final residual = 2.34094e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00128164, Final residual = 8.2149e-05, No Iterations 4
ExecutionTime = 165.61 s ClockTime = 167 s
Time = 1155
smoothSolver: Solving for Ux, Initial residual = 0.000681985, Final residual = 4.2386e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0034355, Final residual = 0.000203366, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196291, Final residual = 0.000128266, No Iterations 5
time step continuity errors : sum local = 0.000322974, global = -1.72542e-05, cumulative = -0.310523
smoothSolver: Solving for omega, Initial residual = 0.000244352, Final residual = 2.34014e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00127975, Final residual = 8.2037e-05, No Iterations 4
ExecutionTime = 165.75 s ClockTime = 168 s
Time = 1156
smoothSolver: Solving for Ux, Initial residual = 0.000681337, Final residual = 4.23432e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00343517, Final residual = 0.000203332, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196526, Final residual = 0.00013032, No Iterations 5
time step continuity errors : sum local = 0.000327297, global = -1.87143e-05, cumulative = -0.310542
smoothSolver: Solving for omega, Initial residual = 0.000244254, Final residual = 2.33926e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0012778, Final residual = 8.19388e-05, No Iterations 4
ExecutionTime = 165.89 s ClockTime = 168 s
Time = 1157
smoothSolver: Solving for Ux, Initial residual = 0.000680707, Final residual = 4.23025e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00343462, Final residual = 0.000203295, No Iterations 4
GAMG: Solving for p, Initial residual = 0.019693, Final residual = 0.000131869, No Iterations 5
time step continuity errors : sum local = 0.00033037, global = -2.06559e-05, cumulative = -0.310562
smoothSolver: Solving for omega, Initial residual = 0.000244171, Final residual = 2.33842e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00127587, Final residual = 8.18358e-05, No Iterations 4
ExecutionTime = 166.04 s ClockTime = 168 s
Time = 1158
smoothSolver: Solving for Ux, Initial residual = 0.000680103, Final residual = 4.22625e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00343408, Final residual = 0.000203245, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0197289, Final residual = 0.000132773, No Iterations 5
time step continuity errors : sum local = 0.000331823, global = -2.23541e-05, cumulative = -0.310585
smoothSolver: Solving for omega, Initial residual = 0.000244084, Final residual = 2.33755e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00127414, Final residual = 8.17251e-05, No Iterations 4
ExecutionTime = 166.19 s ClockTime = 168 s
Time = 1159
smoothSolver: Solving for Ux, Initial residual = 0.000679516, Final residual = 4.22221e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00343306, Final residual = 0.000203181, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0197719, Final residual = 0.000133292, No Iterations 5
time step continuity errors : sum local = 0.000332301, global = -2.37156e-05, cumulative = -0.310608
smoothSolver: Solving for omega, Initial residual = 0.000243982, Final residual = 2.33646e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0012723, Final residual = 8.16092e-05, No Iterations 4
ExecutionTime = 166.34 s ClockTime = 168 s
Time = 1160
smoothSolver: Solving for Ux, Initial residual = 0.000678893, Final residual = 4.21809e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00343188, Final residual = 0.000203099, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0197416, Final residual = 0.000133174, No Iterations 5
time step continuity errors : sum local = 0.000331171, global = -2.45932e-05, cumulative = -0.310633
smoothSolver: Solving for omega, Initial residual = 0.000243879, Final residual = 2.33547e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00127043, Final residual = 8.14973e-05, No Iterations 4
ExecutionTime = 166.49 s ClockTime = 168 s
Time = 1161
smoothSolver: Solving for Ux, Initial residual = 0.000678249, Final residual = 4.21404e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00343048, Final residual = 0.00020301, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0197014, Final residual = 0.000132612, No Iterations 5
time step continuity errors : sum local = 0.000328958, global = -2.4911e-05, cumulative = -0.310658
smoothSolver: Solving for omega, Initial residual = 0.000243812, Final residual = 2.33463e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00126848, Final residual = 8.13963e-05, No Iterations 4
ExecutionTime = 166.63 s ClockTime = 168 s
Time = 1162
smoothSolver: Solving for Ux, Initial residual = 0.000677595, Final residual = 4.21004e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00342904, Final residual = 0.000202912, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0197021, Final residual = 0.000131733, No Iterations 5
time step continuity errors : sum local = 0.000325947, global = -2.52615e-05, cumulative = -0.310683
smoothSolver: Solving for omega, Initial residual = 0.000243712, Final residual = 2.33365e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00126653, Final residual = 8.12867e-05, No Iterations 4
ExecutionTime = 166.78 s ClockTime = 169 s
Time = 1163
smoothSolver: Solving for Ux, Initial residual = 0.000676971, Final residual = 4.20614e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00342729, Final residual = 0.000202797, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0197499, Final residual = 0.000130604, No Iterations 5
time step continuity errors : sum local = 0.000322337, global = -2.57688e-05, cumulative = -0.310709
smoothSolver: Solving for omega, Initial residual = 0.000243594, Final residual = 2.33249e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00126478, Final residual = 8.11742e-05, No Iterations 4
ExecutionTime = 166.93 s ClockTime = 169 s
Time = 1164
smoothSolver: Solving for Ux, Initial residual = 0.000676338, Final residual = 4.20246e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0034252, Final residual = 0.000202666, No Iterations 4
GAMG: Solving for p, Initial residual = 0.019727, Final residual = 0.00012939, No Iterations 5
time step continuity errors : sum local = 0.000318544, global = -2.6021e-05, cumulative = -0.310735
smoothSolver: Solving for omega, Initial residual = 0.000243475, Final residual = 2.33129e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00126301, Final residual = 8.10579e-05, No Iterations 4
ExecutionTime = 167.07 s ClockTime = 169 s
Time = 1165
smoothSolver: Solving for Ux, Initial residual = 0.000675741, Final residual = 4.19894e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00342293, Final residual = 0.00020252, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0197483, Final residual = 0.000128459, No Iterations 5
time step continuity errors : sum local = 0.000315497, global = -2.57579e-05, cumulative = -0.310761
smoothSolver: Solving for omega, Initial residual = 0.000243383, Final residual = 2.33026e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00126112, Final residual = 8.09444e-05, No Iterations 4
ExecutionTime = 167.22 s ClockTime = 169 s
Time = 1166
smoothSolver: Solving for Ux, Initial residual = 0.000675154, Final residual = 4.19553e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00342039, Final residual = 0.000202367, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0197812, Final residual = 0.000127265, No Iterations 5
time step continuity errors : sum local = 0.000311851, global = -2.51298e-05, cumulative = -0.310786
smoothSolver: Solving for omega, Initial residual = 0.000243245, Final residual = 2.32895e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00125914, Final residual = 8.08399e-05, No Iterations 4
ExecutionTime = 167.36 s ClockTime = 169 s
Time = 1167
smoothSolver: Solving for Ux, Initial residual = 0.000674663, Final residual = 4.1924e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0034179, Final residual = 0.000202195, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0198351, Final residual = 0.000125804, No Iterations 5
time step continuity errors : sum local = 0.000307541, global = -2.44518e-05, cumulative = -0.31081
smoothSolver: Solving for omega, Initial residual = 0.000243123, Final residual = 2.32755e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00125722, Final residual = 8.07331e-05, No Iterations 4
ExecutionTime = 167.51 s ClockTime = 169 s
Time = 1168
smoothSolver: Solving for Ux, Initial residual = 0.000674179, Final residual = 4.18905e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00341488, Final residual = 0.000202005, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0199305, Final residual = 0.000124345, No Iterations 5
time step continuity errors : sum local = 0.00030326, global = -2.41306e-05, cumulative = -0.310834
smoothSolver: Solving for omega, Initial residual = 0.000242998, Final residual = 2.32618e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00125555, Final residual = 8.062e-05, No Iterations 4
ExecutionTime = 167.66 s ClockTime = 169 s
Time = 1169
smoothSolver: Solving for Ux, Initial residual = 0.000673662, Final residual = 4.18539e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00341157, Final residual = 0.000201798, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0199493, Final residual = 0.000122659, No Iterations 5
time step continuity errors : sum local = 0.00029844, global = -2.42766e-05, cumulative = -0.310859
smoothSolver: Solving for omega, Initial residual = 0.000242876, Final residual = 2.32492e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00125377, Final residual = 8.05029e-05, No Iterations 4
ExecutionTime = 167.8 s ClockTime = 170 s
Time = 1170
smoothSolver: Solving for Ux, Initial residual = 0.000673092, Final residual = 4.18174e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00340806, Final residual = 0.000201579, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0200069, Final residual = 0.000120541, No Iterations 5
time step continuity errors : sum local = 0.000292647, global = -2.44426e-05, cumulative = -0.310883
smoothSolver: Solving for omega, Initial residual = 0.000242753, Final residual = 2.32355e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0012519, Final residual = 8.03911e-05, No Iterations 4
ExecutionTime = 167.95 s ClockTime = 170 s
Time = 1171
smoothSolver: Solving for Ux, Initial residual = 0.000672578, Final residual = 4.17821e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00340433, Final residual = 0.000201348, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0200453, Final residual = 0.000118004, No Iterations 5
time step continuity errors : sum local = 0.000285867, global = -2.41898e-05, cumulative = -0.310907
smoothSolver: Solving for omega, Initial residual = 0.000242599, Final residual = 2.32194e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00124998, Final residual = 8.02903e-05, No Iterations 4
ExecutionTime = 168.09 s ClockTime = 170 s
Time = 1172
smoothSolver: Solving for Ux, Initial residual = 0.000672087, Final residual = 4.17462e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0034005, Final residual = 0.000201087, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0201162, Final residual = 0.00011528, No Iterations 5
time step continuity errors : sum local = 0.000278675, global = -2.35482e-05, cumulative = -0.310931
smoothSolver: Solving for omega, Initial residual = 0.00024246, Final residual = 2.32038e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0012482, Final residual = 8.01854e-05, No Iterations 4
ExecutionTime = 168.24 s ClockTime = 170 s
Time = 1173
smoothSolver: Solving for Ux, Initial residual = 0.000671502, Final residual = 4.17089e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00339622, Final residual = 0.000200816, No Iterations 4
GAMG: Solving for p, Initial residual = 0.020111, Final residual = 0.000112323, No Iterations 5
time step continuity errors : sum local = 0.000270933, global = -2.23866e-05, cumulative = -0.310953
smoothSolver: Solving for omega, Initial residual = 0.000242321, Final residual = 2.31888e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00124656, Final residual = 8.00748e-05, No Iterations 4
ExecutionTime = 168.39 s ClockTime = 170 s
Time = 1174
smoothSolver: Solving for Ux, Initial residual = 0.000670905, Final residual = 4.16701e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00339151, Final residual = 0.000200521, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0200711, Final residual = 0.000109943, No Iterations 5
time step continuity errors : sum local = 0.000264624, global = -2.0613e-05, cumulative = -0.310974
smoothSolver: Solving for omega, Initial residual = 0.000242135, Final residual = 2.3172e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00124484, Final residual = 7.99623e-05, No Iterations 4
ExecutionTime = 168.54 s ClockTime = 170 s
Time = 1175
smoothSolver: Solving for Ux, Initial residual = 0.000670247, Final residual = 4.1633e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00338659, Final residual = 0.000200215, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0200861, Final residual = 0.000108134, No Iterations 5
time step continuity errors : sum local = 0.000259751, global = -1.82331e-05, cumulative = -0.310992
smoothSolver: Solving for omega, Initial residual = 0.000241962, Final residual = 2.31535e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00124307, Final residual = 7.98566e-05, No Iterations 4
ExecutionTime = 168.68 s ClockTime = 171 s
Time = 1176
smoothSolver: Solving for Ux, Initial residual = 0.000669633, Final residual = 4.15987e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00338158, Final residual = 0.000199897, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0201657, Final residual = 0.000105806, No Iterations 5
time step continuity errors : sum local = 0.000253661, global = -1.58485e-05, cumulative = -0.311008
smoothSolver: Solving for omega, Initial residual = 0.000241788, Final residual = 2.31353e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00124128, Final residual = 7.9762e-05, No Iterations 4
ExecutionTime = 168.83 s ClockTime = 171 s
Time = 1177
smoothSolver: Solving for Ux, Initial residual = 0.000669016, Final residual = 4.15619e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00337629, Final residual = 0.000199539, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0202592, Final residual = 0.000103115, No Iterations 5
time step continuity errors : sum local = 0.000246748, global = -1.3453e-05, cumulative = -0.311021
smoothSolver: Solving for omega, Initial residual = 0.000241597, Final residual = 2.31163e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00123961, Final residual = 7.96628e-05, No Iterations 4
ExecutionTime = 168.98 s ClockTime = 171 s
Time = 1178
smoothSolver: Solving for Ux, Initial residual = 0.000668356, Final residual = 4.15215e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00337059, Final residual = 0.000199176, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0202572, Final residual = 0.000202232, No Iterations 4
time step continuity errors : sum local = 0.000483037, global = 4.04246e-05, cumulative = -0.310981
smoothSolver: Solving for omega, Initial residual = 0.000241384, Final residual = 2.30965e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00123807, Final residual = 7.95601e-05, No Iterations 4
ExecutionTime = 169.12 s ClockTime = 171 s
Time = 1179
smoothSolver: Solving for Ux, Initial residual = 0.000667689, Final residual = 4.148e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00336413, Final residual = 0.000198772, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0202687, Final residual = 0.000103348, No Iterations 5
time step continuity errors : sum local = 0.000246356, global = -1.10882e-05, cumulative = -0.310992
smoothSolver: Solving for omega, Initial residual = 0.000241235, Final residual = 2.30771e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0012365, Final residual = 7.94579e-05, No Iterations 4
ExecutionTime = 169.26 s ClockTime = 171 s
Time = 1180
smoothSolver: Solving for Ux, Initial residual = 0.000666928, Final residual = 4.14355e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0033581, Final residual = 0.000198382, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0202875, Final residual = 0.000198587, No Iterations 4
time step continuity errors : sum local = 0.000472678, global = 3.39961e-05, cumulative = -0.310958
smoothSolver: Solving for omega, Initial residual = 0.000241069, Final residual = 2.30569e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0012349, Final residual = 7.93591e-05, No Iterations 4
ExecutionTime = 169.4 s ClockTime = 171 s
Time = 1181
smoothSolver: Solving for Ux, Initial residual = 0.000666272, Final residual = 4.13935e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00335137, Final residual = 0.000197957, No Iterations 4
GAMG: Solving for p, Initial residual = 0.020392, Final residual = 0.000195657, No Iterations 4
time step continuity errors : sum local = 0.000464863, global = 3.03696e-05, cumulative = -0.310928
smoothSolver: Solving for omega, Initial residual = 0.000240879, Final residual = 2.3035e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00123329, Final residual = 7.92728e-05, No Iterations 4
ExecutionTime = 169.54 s ClockTime = 171 s
Time = 1182
smoothSolver: Solving for Ux, Initial residual = 0.000665578, Final residual = 4.13477e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00334445, Final residual = 0.000197494, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204765, Final residual = 0.000192906, No Iterations 4
time step continuity errors : sum local = 0.000457566, global = 2.60801e-05, cumulative = -0.310902
smoothSolver: Solving for omega, Initial residual = 0.000240689, Final residual = 2.30133e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00123173, Final residual = 7.9186e-05, No Iterations 4
ExecutionTime = 169.67 s ClockTime = 172 s
Time = 1183
smoothSolver: Solving for Ux, Initial residual = 0.000664831, Final residual = 4.12972e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00333733, Final residual = 0.000197028, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204705, Final residual = 0.000189129, No Iterations 4
time step continuity errors : sum local = 0.000447898, global = 2.0895e-05, cumulative = -0.310881
smoothSolver: Solving for omega, Initial residual = 0.000240479, Final residual = 2.29906e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00123035, Final residual = 7.90971e-05, No Iterations 4
ExecutionTime = 169.82 s ClockTime = 172 s
Time = 1184
smoothSolver: Solving for Ux, Initial residual = 0.000664086, Final residual = 4.12434e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00332973, Final residual = 0.00019654, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204479, Final residual = 0.000186141, No Iterations 4
time step continuity errors : sum local = 0.000440196, global = 1.56633e-05, cumulative = -0.310865
smoothSolver: Solving for omega, Initial residual = 0.00024026, Final residual = 2.29671e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.001229, Final residual = 7.90062e-05, No Iterations 4
ExecutionTime = 169.96 s ClockTime = 172 s
Time = 1185
smoothSolver: Solving for Ux, Initial residual = 0.000663297, Final residual = 4.11865e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00332171, Final residual = 0.000196036, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204777, Final residual = 0.000185254, No Iterations 4
time step continuity errors : sum local = 0.000437505, global = 1.1177e-05, cumulative = -0.310854
smoothSolver: Solving for omega, Initial residual = 0.00024004, Final residual = 2.29429e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0012276, Final residual = 7.89209e-05, No Iterations 4
ExecutionTime = 170.09 s ClockTime = 172 s
Time = 1186
smoothSolver: Solving for Ux, Initial residual = 0.000662517, Final residual = 4.11254e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00331365, Final residual = 0.000195515, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0205504, Final residual = 0.000187072, No Iterations 4
time step continuity errors : sum local = 0.000441198, global = 7.76638e-06, cumulative = -0.310846
smoothSolver: Solving for omega, Initial residual = 0.0002398, Final residual = 2.29172e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00122616, Final residual = 7.88458e-05, No Iterations 4
ExecutionTime = 170.22 s ClockTime = 172 s
Time = 1187
smoothSolver: Solving for Ux, Initial residual = 0.000661676, Final residual = 4.10601e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00330529, Final residual = 0.000194952, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0205589, Final residual = 0.000190605, No Iterations 4
time step continuity errors : sum local = 0.000448924, global = 4.59318e-06, cumulative = -0.310841
smoothSolver: Solving for omega, Initial residual = 0.000239557, Final residual = 2.28905e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00122479, Final residual = 7.87747e-05, No Iterations 4
ExecutionTime = 170.37 s ClockTime = 172 s
Time = 1188
smoothSolver: Solving for Ux, Initial residual = 0.00066072, Final residual = 4.09901e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00329665, Final residual = 0.000194382, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0205086, Final residual = 0.000193783, No Iterations 4
time step continuity errors : sum local = 0.000455803, global = 6.64121e-07, cumulative = -0.310841
smoothSolver: Solving for omega, Initial residual = 0.000239297, Final residual = 2.28648e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0012236, Final residual = 7.87e-05, No Iterations 4
ExecutionTime = 170.5 s ClockTime = 172 s
Time = 1189
smoothSolver: Solving for Ux, Initial residual = 0.000659716, Final residual = 4.09173e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00328742, Final residual = 0.000193786, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204521, Final residual = 0.000195937, No Iterations 4
time step continuity errors : sum local = 0.000460331, global = -3.50646e-06, cumulative = -0.310844
smoothSolver: Solving for omega, Initial residual = 0.000239044, Final residual = 2.2838e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00122247, Final residual = 7.86229e-05, No Iterations 4
ExecutionTime = 170.64 s ClockTime = 172 s
Time = 1190
smoothSolver: Solving for Ux, Initial residual = 0.000658674, Final residual = 4.08392e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00327781, Final residual = 0.000193172, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0205013, Final residual = 0.00019687, No Iterations 4
time step continuity errors : sum local = 0.000462043, global = -7.72546e-06, cumulative = -0.310852
smoothSolver: Solving for omega, Initial residual = 0.000238805, Final residual = 2.28105e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00122127, Final residual = 7.85476e-05, No Iterations 4
ExecutionTime = 170.78 s ClockTime = 173 s
Time = 1191
smoothSolver: Solving for Ux, Initial residual = 0.000657601, Final residual = 4.07572e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326818, Final residual = 0.000192552, No Iterations 4
GAMG: Solving for p, Initial residual = 0.020636, Final residual = 0.000197981, No Iterations 4
time step continuity errors : sum local = 0.000464246, global = -1.30636e-05, cumulative = -0.310865
smoothSolver: Solving for omega, Initial residual = 0.000238566, Final residual = 2.27817e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00122004, Final residual = 7.84797e-05, No Iterations 4
ExecutionTime = 170.92 s ClockTime = 173 s
Time = 1192
smoothSolver: Solving for Ux, Initial residual = 0.000656462, Final residual = 4.06709e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00325814, Final residual = 0.000191893, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0206656, Final residual = 0.00020017, No Iterations 4
time step continuity errors : sum local = 0.000468972, global = -1.96532e-05, cumulative = -0.310885
smoothSolver: Solving for omega, Initial residual = 0.000238295, Final residual = 2.2753e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00121884, Final residual = 7.84235e-05, No Iterations 4
ExecutionTime = 171.06 s ClockTime = 173 s
Time = 1193
smoothSolver: Solving for Ux, Initial residual = 0.000655229, Final residual = 4.05805e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00324783, Final residual = 0.000191212, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0205909, Final residual = 0.000202298, No Iterations 4
time step continuity errors : sum local = 0.000473606, global = -2.56544e-05, cumulative = -0.31091
smoothSolver: Solving for omega, Initial residual = 0.000238015, Final residual = 2.27236e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00121774, Final residual = 7.83633e-05, No Iterations 4
ExecutionTime = 171.2 s ClockTime = 173 s
Time = 1194
smoothSolver: Solving for Ux, Initial residual = 0.00065394, Final residual = 4.04862e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0032372, Final residual = 0.000190516, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204848, Final residual = 0.000203716, No Iterations 4
time step continuity errors : sum local = 0.000476579, global = -3.01759e-05, cumulative = -0.310941
smoothSolver: Solving for omega, Initial residual = 0.000237737, Final residual = 2.26924e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00121678, Final residual = 7.82989e-05, No Iterations 4
ExecutionTime = 171.34 s ClockTime = 173 s
Time = 1195
smoothSolver: Solving for Ux, Initial residual = 0.000652598, Final residual = 4.03856e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0032263, Final residual = 0.000189817, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204561, Final residual = 0.000203552, No Iterations 4
time step continuity errors : sum local = 0.00047588, global = -3.33892e-05, cumulative = -0.310974
smoothSolver: Solving for omega, Initial residual = 0.000237446, Final residual = 2.26604e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00121577, Final residual = 7.82358e-05, No Iterations 4
ExecutionTime = 171.49 s ClockTime = 173 s
Time = 1196
smoothSolver: Solving for Ux, Initial residual = 0.000651207, Final residual = 4.02808e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0032153, Final residual = 0.000189121, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0205002, Final residual = 0.000203027, No Iterations 4
time step continuity errors : sum local = 0.000474429, global = -3.60675e-05, cumulative = -0.31101
smoothSolver: Solving for omega, Initial residual = 0.000237129, Final residual = 2.2627e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00121472, Final residual = 7.81761e-05, No Iterations 4
ExecutionTime = 171.62 s ClockTime = 173 s
Time = 1197
smoothSolver: Solving for Ux, Initial residual = 0.000649772, Final residual = 4.01733e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00320387, Final residual = 0.000188388, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0205054, Final residual = 0.000202943, No Iterations 4
time step continuity errors : sum local = 0.0004741, global = -3.83181e-05, cumulative = -0.311048
smoothSolver: Solving for omega, Initial residual = 0.000236805, Final residual = 2.25918e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0012137, Final residual = 7.81268e-05, No Iterations 4
ExecutionTime = 171.76 s ClockTime = 174 s
Time = 1198
smoothSolver: Solving for Ux, Initial residual = 0.000648242, Final residual = 4.00618e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00319269, Final residual = 0.000187632, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204692, Final residual = 0.00020358, No Iterations 4
time step continuity errors : sum local = 0.000475426, global = -4.04189e-05, cumulative = -0.311089
smoothSolver: Solving for omega, Initial residual = 0.000236487, Final residual = 2.25568e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00121269, Final residual = 7.80746e-05, No Iterations 4
ExecutionTime = 171.9 s ClockTime = 174 s
Time = 1199
smoothSolver: Solving for Ux, Initial residual = 0.000646643, Final residual = 3.99436e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00318105, Final residual = 0.000186867, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0204054, Final residual = 9.58296e-05, No Iterations 5
time step continuity errors : sum local = 0.00022371, global = 2.74163e-05, cumulative = -0.311061
smoothSolver: Solving for omega, Initial residual = 0.000236148, Final residual = 2.25209e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00121181, Final residual = 7.80165e-05, No Iterations 4
ExecutionTime = 172.04 s ClockTime = 174 s
Time = 1200
smoothSolver: Solving for Ux, Initial residual = 0.000644995, Final residual = 3.98209e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00316893, Final residual = 0.000186087, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0203049, Final residual = 0.0001961, No Iterations 4
time step continuity errors : sum local = 0.000457644, global = -4.12398e-05, cumulative = -0.311103
smoothSolver: Solving for omega, Initial residual = 0.000235817, Final residual = 2.24841e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00121089, Final residual = 7.79567e-05, No Iterations 4
ExecutionTime = 172.39 s ClockTime = 174 s
Time = 1201
smoothSolver: Solving for Ux, Initial residual = 0.000643311, Final residual = 3.96937e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00315608, Final residual = 0.000185301, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0202298, Final residual = 0.000198407, No Iterations 4
time step continuity errors : sum local = 0.000462934, global = -4.22007e-05, cumulative = -0.311145
smoothSolver: Solving for omega, Initial residual = 0.000235446, Final residual = 2.24457e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00120993, Final residual = 7.78952e-05, No Iterations 4
ExecutionTime = 172.52 s ClockTime = 174 s
Time = 1202
smoothSolver: Solving for Ux, Initial residual = 0.000641548, Final residual = 3.95624e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00314376, Final residual = 0.000184509, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0202493, Final residual = 9.70608e-05, No Iterations 5
time step continuity errors : sum local = 0.000226454, global = 2.76591e-05, cumulative = -0.311117
smoothSolver: Solving for omega, Initial residual = 0.000235084, Final residual = 2.24056e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00120891, Final residual = 7.78368e-05, No Iterations 4
ExecutionTime = 172.66 s ClockTime = 175 s
Time = 1203
smoothSolver: Solving for Ux, Initial residual = 0.00063971, Final residual = 3.94281e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00313199, Final residual = 0.000183705, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0202087, Final residual = 0.000196321, No Iterations 4
time step continuity errors : sum local = 0.00045808, global = -4.47654e-05, cumulative = -0.311162
smoothSolver: Solving for omega, Initial residual = 0.000234735, Final residual = 2.23644e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00120781, Final residual = 7.77738e-05, No Iterations 4
ExecutionTime = 172.8 s ClockTime = 175 s
Time = 1204
smoothSolver: Solving for Ux, Initial residual = 0.000637813, Final residual = 3.92869e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00311927, Final residual = 0.000182878, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0201104, Final residual = 0.000195469, No Iterations 4
time step continuity errors : sum local = 0.000456221, global = -4.56798e-05, cumulative = -0.311208
smoothSolver: Solving for omega, Initial residual = 0.000234342, Final residual = 2.23218e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00120674, Final residual = 7.77007e-05, No Iterations 4
ExecutionTime = 172.95 s ClockTime = 175 s
Time = 1205
smoothSolver: Solving for Ux, Initial residual = 0.000635844, Final residual = 3.91404e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00310621, Final residual = 0.000182055, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0200331, Final residual = 0.000195359, No Iterations 4
time step continuity errors : sum local = 0.000456075, global = -4.6642e-05, cumulative = -0.311254
smoothSolver: Solving for omega, Initial residual = 0.000233977, Final residual = 2.22778e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0012057, Final residual = 7.76165e-05, No Iterations 4
ExecutionTime = 173.08 s ClockTime = 175 s
Time = 1206
smoothSolver: Solving for Ux, Initial residual = 0.000633835, Final residual = 3.89908e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00309355, Final residual = 0.000181281, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0199573, Final residual = 0.000193131, No Iterations 4
time step continuity errors : sum local = 0.000451026, global = -4.70349e-05, cumulative = -0.311301
smoothSolver: Solving for omega, Initial residual = 0.000233575, Final residual = 2.2233e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00120448, Final residual = 7.75182e-05, No Iterations 4
ExecutionTime = 173.23 s ClockTime = 175 s
Time = 1207
smoothSolver: Solving for Ux, Initial residual = 0.000631754, Final residual = 3.88373e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00308088, Final residual = 0.000180498, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0199287, Final residual = 0.000188107, No Iterations 4
time step continuity errors : sum local = 0.000439528, global = -4.66749e-05, cumulative = -0.311348
smoothSolver: Solving for omega, Initial residual = 0.000233148, Final residual = 2.21862e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00120307, Final residual = 7.7405e-05, No Iterations 4
ExecutionTime = 173.37 s ClockTime = 175 s
Time = 1208
smoothSolver: Solving for Ux, Initial residual = 0.000629647, Final residual = 3.86795e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00306874, Final residual = 0.000179698, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0198575, Final residual = 0.000182151, No Iterations 4
time step continuity errors : sum local = 0.000425826, global = -4.61161e-05, cumulative = -0.311394
smoothSolver: Solving for omega, Initial residual = 0.000232715, Final residual = 2.21373e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00120151, Final residual = 7.72787e-05, No Iterations 4
ExecutionTime = 173.5 s ClockTime = 175 s
Time = 1209
smoothSolver: Solving for Ux, Initial residual = 0.000627454, Final residual = 3.85166e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00305654, Final residual = 0.000178899, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0198031, Final residual = 0.000176692, No Iterations 4
time step continuity errors : sum local = 0.000413282, global = -4.56182e-05, cumulative = -0.31144
smoothSolver: Solving for omega, Initial residual = 0.000232254, Final residual = 2.20869e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00119974, Final residual = 7.71381e-05, No Iterations 4
ExecutionTime = 173.64 s ClockTime = 176 s
Time = 1210
smoothSolver: Solving for Ux, Initial residual = 0.000625163, Final residual = 3.83481e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00304388, Final residual = 0.000178091, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0197036, Final residual = 0.000172551, No Iterations 4
time step continuity errors : sum local = 0.000403856, global = -4.54021e-05, cumulative = -0.311485
smoothSolver: Solving for omega, Initial residual = 0.000231785, Final residual = 2.20347e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00119779, Final residual = 7.69815e-05, No Iterations 4
ExecutionTime = 173.79 s ClockTime = 176 s
Time = 1211
smoothSolver: Solving for Ux, Initial residual = 0.00062286, Final residual = 3.8177e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0030308, Final residual = 0.000177307, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0196028, Final residual = 0.000168889, No Iterations 4
time step continuity errors : sum local = 0.000395541, global = -4.55713e-05, cumulative = -0.311531
smoothSolver: Solving for omega, Initial residual = 0.00023132, Final residual = 2.19819e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00119563, Final residual = 7.68091e-05, No Iterations 4
ExecutionTime = 173.92 s ClockTime = 176 s
Time = 1212
smoothSolver: Solving for Ux, Initial residual = 0.000620493, Final residual = 3.80044e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00301803, Final residual = 0.000176562, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0195289, Final residual = 0.000165309, No Iterations 4
time step continuity errors : sum local = 0.000387449, global = -4.61544e-05, cumulative = -0.311577
smoothSolver: Solving for omega, Initial residual = 0.000230841, Final residual = 2.19277e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00119324, Final residual = 7.66206e-05, No Iterations 4
ExecutionTime = 174.06 s ClockTime = 176 s
Time = 1213
smoothSolver: Solving for Ux, Initial residual = 0.000618086, Final residual = 3.78256e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00300617, Final residual = 0.000175837, No Iterations 4
GAMG: Solving for p, Initial residual = 0.019404, Final residual = 0.000162429, No Iterations 4
time step continuity errors : sum local = 0.000381096, global = -4.72204e-05, cumulative = -0.311624
smoothSolver: Solving for omega, Initial residual = 0.000230353, Final residual = 2.18714e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00119064, Final residual = 7.64177e-05, No Iterations 4
ExecutionTime = 174.2 s ClockTime = 176 s
Time = 1214
smoothSolver: Solving for Ux, Initial residual = 0.000615617, Final residual = 3.76421e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00299503, Final residual = 0.00017514, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0192089, Final residual = 0.00016005, No Iterations 4
time step continuity errors : sum local = 0.000375967, global = -4.8459e-05, cumulative = -0.311672
smoothSolver: Solving for omega, Initial residual = 0.000229846, Final residual = 2.18136e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00118784, Final residual = 7.61976e-05, No Iterations 4
ExecutionTime = 174.33 s ClockTime = 176 s
Time = 1215
smoothSolver: Solving for Ux, Initial residual = 0.000613046, Final residual = 3.74556e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00298419, Final residual = 0.000174505, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0190197, Final residual = 0.000157672, No Iterations 4
time step continuity errors : sum local = 0.000370866, global = -4.94328e-05, cumulative = -0.311722
smoothSolver: Solving for omega, Initial residual = 0.000229323, Final residual = 2.17534e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00118482, Final residual = 7.59599e-05, No Iterations 4
ExecutionTime = 174.47 s ClockTime = 176 s
Time = 1216
smoothSolver: Solving for Ux, Initial residual = 0.000610468, Final residual = 3.72678e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00297398, Final residual = 0.000173963, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0188658, Final residual = 0.000155209, No Iterations 4
time step continuity errors : sum local = 0.000365596, global = -4.99783e-05, cumulative = -0.311772
smoothSolver: Solving for omega, Initial residual = 0.0002288, Final residual = 2.16914e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00118155, Final residual = 7.57042e-05, No Iterations 4
ExecutionTime = 174.61 s ClockTime = 177 s
Time = 1217
smoothSolver: Solving for Ux, Initial residual = 0.00060787, Final residual = 3.70783e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00296577, Final residual = 0.000173436, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0187084, Final residual = 0.000152315, No Iterations 4
time step continuity errors : sum local = 0.000359324, global = -4.99093e-05, cumulative = -0.311822
smoothSolver: Solving for omega, Initial residual = 0.000228266, Final residual = 2.16292e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00117802, Final residual = 7.5432e-05, No Iterations 4
ExecutionTime = 174.75 s ClockTime = 177 s
Time = 1218
smoothSolver: Solving for Ux, Initial residual = 0.000605232, Final residual = 3.68853e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00295788, Final residual = 0.000172912, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0185826, Final residual = 0.000148956, No Iterations 4
time step continuity errors : sum local = 0.000351992, global = -4.91952e-05, cumulative = -0.311871
smoothSolver: Solving for omega, Initial residual = 0.000227733, Final residual = 2.15641e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00117427, Final residual = 7.51438e-05, No Iterations 4
ExecutionTime = 174.89 s ClockTime = 177 s
Time = 1219
smoothSolver: Solving for Ux, Initial residual = 0.000602543, Final residual = 3.66878e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00295012, Final residual = 0.000172399, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0184195, Final residual = 0.00014599, No Iterations 4
time step continuity errors : sum local = 0.000345603, global = -4.8378e-05, cumulative = -0.311919
smoothSolver: Solving for omega, Initial residual = 0.000227165, Final residual = 2.14966e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0011703, Final residual = 7.48399e-05, No Iterations 4
ExecutionTime = 175.03 s ClockTime = 177 s
Time = 1220
smoothSolver: Solving for Ux, Initial residual = 0.000599775, Final residual = 3.64883e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00294249, Final residual = 0.000171911, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0182882, Final residual = 0.000143203, No Iterations 4
time step continuity errors : sum local = 0.000339621, global = -4.73187e-05, cumulative = -0.311967
smoothSolver: Solving for omega, Initial residual = 0.000226581, Final residual = 2.14273e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0011661, Final residual = 7.45179e-05, No Iterations 4
ExecutionTime = 175.18 s ClockTime = 177 s
Time = 1221
smoothSolver: Solving for Ux, Initial residual = 0.000596958, Final residual = 3.62901e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00293482, Final residual = 0.000171456, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0181487, Final residual = 0.000140826, No Iterations 4
time step continuity errors : sum local = 0.000334627, global = -4.62056e-05, cumulative = -0.312013
smoothSolver: Solving for omega, Initial residual = 0.000225993, Final residual = 2.13563e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00116165, Final residual = 7.41785e-05, No Iterations 4
ExecutionTime = 175.31 s ClockTime = 177 s
Time = 1222
smoothSolver: Solving for Ux, Initial residual = 0.000594168, Final residual = 3.60903e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00292717, Final residual = 0.000171064, No Iterations 4
GAMG: Solving for p, Initial residual = 0.017941, Final residual = 0.000138689, No Iterations 4
time step continuity errors : sum local = 0.000330179, global = -4.52505e-05, cumulative = -0.312058
smoothSolver: Solving for omega, Initial residual = 0.000225389, Final residual = 2.12842e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00115696, Final residual = 7.38247e-05, No Iterations 4
ExecutionTime = 175.45 s ClockTime = 177 s
Time = 1223
smoothSolver: Solving for Ux, Initial residual = 0.000591345, Final residual = 3.58891e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00291948, Final residual = 0.000170745, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0177453, Final residual = 0.000136349, No Iterations 4
time step continuity errors : sum local = 0.00032522, global = -4.43311e-05, cumulative = -0.312102
smoothSolver: Solving for omega, Initial residual = 0.000224742, Final residual = 2.12109e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00115205, Final residual = 7.34578e-05, No Iterations 4
ExecutionTime = 175.58 s ClockTime = 177 s
Time = 1224
smoothSolver: Solving for Ux, Initial residual = 0.000588498, Final residual = 3.56865e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00291187, Final residual = 0.000170468, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0175903, Final residual = 0.000134372, No Iterations 4
time step continuity errors : sum local = 0.00032117, global = -4.34613e-05, cumulative = -0.312146
smoothSolver: Solving for omega, Initial residual = 0.000224085, Final residual = 2.11361e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00114696, Final residual = 7.30767e-05, No Iterations 4
ExecutionTime = 175.72 s ClockTime = 178 s
Time = 1225
smoothSolver: Solving for Ux, Initial residual = 0.000585618, Final residual = 3.54828e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290532, Final residual = 0.000170217, No Iterations 4
GAMG: Solving for p, Initial residual = 0.017362, Final residual = 0.000133058, No Iterations 4
time step continuity errors : sum local = 0.000318756, global = -4.28639e-05, cumulative = -0.312189
smoothSolver: Solving for omega, Initial residual = 0.000223439, Final residual = 2.106e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00114166, Final residual = 7.26833e-05, No Iterations 4
ExecutionTime = 175.86 s ClockTime = 178 s
Time = 1226
smoothSolver: Solving for Ux, Initial residual = 0.000582725, Final residual = 3.52834e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290011, Final residual = 0.000169987, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0170575, Final residual = 0.000132399, No Iterations 4
time step continuity errors : sum local = 0.000317917, global = -4.26134e-05, cumulative = -0.312231
smoothSolver: Solving for omega, Initial residual = 0.00022277, Final residual = 2.09835e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00113616, Final residual = 7.22788e-05, No Iterations 4
ExecutionTime = 175.99 s ClockTime = 178 s
Time = 1227
smoothSolver: Solving for Ux, Initial residual = 0.000579878, Final residual = 3.50864e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289532, Final residual = 0.000169777, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0168207, Final residual = 0.000131763, No Iterations 4
time step continuity errors : sum local = 0.000317178, global = -4.24412e-05, cumulative = -0.312274
smoothSolver: Solving for omega, Initial residual = 0.000222092, Final residual = 2.09058e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00113046, Final residual = 7.1867e-05, No Iterations 4
ExecutionTime = 176.13 s ClockTime = 178 s
Time = 1228
smoothSolver: Solving for Ux, Initial residual = 0.000577079, Final residual = 3.48904e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289049, Final residual = 0.000169562, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0165587, Final residual = 0.000130393, No Iterations 4
time step continuity errors : sum local = 0.000314668, global = -4.23101e-05, cumulative = -0.312316
smoothSolver: Solving for omega, Initial residual = 0.000221405, Final residual = 2.08272e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00112465, Final residual = 7.14483e-05, No Iterations 4
ExecutionTime = 176.27 s ClockTime = 178 s
Time = 1229
smoothSolver: Solving for Ux, Initial residual = 0.000574271, Final residual = 3.46961e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028856, Final residual = 0.000169349, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0163272, Final residual = 0.000127738, No Iterations 4
time step continuity errors : sum local = 0.000309038, global = -4.1601e-05, cumulative = -0.312358
smoothSolver: Solving for omega, Initial residual = 0.000220713, Final residual = 2.07485e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00111871, Final residual = 7.10241e-05, No Iterations 4
ExecutionTime = 176.4 s ClockTime = 178 s
Time = 1230
smoothSolver: Solving for Ux, Initial residual = 0.000571468, Final residual = 3.45051e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288105, Final residual = 0.000169154, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0161987, Final residual = 0.000123304, No Iterations 4
time step continuity errors : sum local = 0.000299102, global = -3.98638e-05, cumulative = -0.312398
smoothSolver: Solving for omega, Initial residual = 0.000220031, Final residual = 2.067e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00111267, Final residual = 7.05972e-05, No Iterations 4
ExecutionTime = 176.54 s ClockTime = 178 s
Time = 1231
smoothSolver: Solving for Ux, Initial residual = 0.000568697, Final residual = 3.43193e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287676, Final residual = 0.000168961, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0160683, Final residual = 0.000117095, No Iterations 4
time step continuity errors : sum local = 0.000284813, global = -3.6672e-05, cumulative = -0.312434
smoothSolver: Solving for omega, Initial residual = 0.000219343, Final residual = 2.05915e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00110653, Final residual = 7.01693e-05, No Iterations 4
ExecutionTime = 176.67 s ClockTime = 179 s
Time = 1232
smoothSolver: Solving for Ux, Initial residual = 0.000566017, Final residual = 3.41361e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287278, Final residual = 0.000168777, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0159046, Final residual = 0.000108904, No Iterations 4
time step continuity errors : sum local = 0.000265608, global = -3.11531e-05, cumulative = -0.312465
smoothSolver: Solving for omega, Initial residual = 0.000218641, Final residual = 2.05124e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00110033, Final residual = 6.9744e-05, No Iterations 4
ExecutionTime = 176.81 s ClockTime = 179 s
Time = 1233
smoothSolver: Solving for Ux, Initial residual = 0.000563346, Final residual = 3.39563e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00286902, Final residual = 0.000168579, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0156547, Final residual = 9.93989e-05, No Iterations 4
time step continuity errors : sum local = 0.000243081, global = -2.07376e-05, cumulative = -0.312486
smoothSolver: Solving for omega, Initial residual = 0.000217939, Final residual = 2.04338e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00109413, Final residual = 6.93225e-05, No Iterations 4
ExecutionTime = 176.95 s ClockTime = 179 s
Time = 1234
smoothSolver: Solving for Ux, Initial residual = 0.00056073, Final residual = 3.37795e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00286513, Final residual = 0.000168361, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0153616, Final residual = 8.77975e-05, No Iterations 4
time step continuity errors : sum local = 0.000215267, global = 8.27862e-06, cumulative = -0.312478
smoothSolver: Solving for omega, Initial residual = 0.000217234, Final residual = 2.03556e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00108795, Final residual = 6.89064e-05, No Iterations 4
ExecutionTime = 177.1 s ClockTime = 179 s
Time = 1235
smoothSolver: Solving for Ux, Initial residual = 0.000558135, Final residual = 3.36067e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028612, Final residual = 0.000168138, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0151059, Final residual = 0.000105048, No Iterations 4
time step continuity errors : sum local = 0.000258229, global = 3.553e-05, cumulative = -0.312442
smoothSolver: Solving for omega, Initial residual = 0.000216531, Final residual = 2.02781e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00108177, Final residual = 6.84971e-05, No Iterations 4
ExecutionTime = 177.23 s ClockTime = 179 s
Time = 1236
smoothSolver: Solving for Ux, Initial residual = 0.000555579, Final residual = 3.34389e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00285697, Final residual = 0.000167895, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0149625, Final residual = 0.000124565, No Iterations 4
time step continuity errors : sum local = 0.000306986, global = 4.12016e-05, cumulative = -0.312401
smoothSolver: Solving for omega, Initial residual = 0.000215854, Final residual = 2.02027e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00107564, Final residual = 6.80968e-05, No Iterations 4
ExecutionTime = 177.37 s ClockTime = 179 s
Time = 1237
smoothSolver: Solving for Ux, Initial residual = 0.000553068, Final residual = 3.32744e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00285264, Final residual = 0.000167659, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0148222, Final residual = 0.000138861, No Iterations 4
time step continuity errors : sum local = 0.000343148, global = 4.99141e-05, cumulative = -0.312351
smoothSolver: Solving for omega, Initial residual = 0.000215149, Final residual = 2.01282e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00106959, Final residual = 6.77083e-05, No Iterations 4
ExecutionTime = 177.51 s ClockTime = 179 s
Time = 1238
smoothSolver: Solving for Ux, Initial residual = 0.000550583, Final residual = 3.31142e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00284837, Final residual = 0.000167424, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0147035, Final residual = 7.32194e-05, No Iterations 5
time step continuity errors : sum local = 0.000181432, global = -3.45529e-05, cumulative = -0.312386
smoothSolver: Solving for omega, Initial residual = 0.000214462, Final residual = 2.00542e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00106368, Final residual = 6.73326e-05, No Iterations 4
ExecutionTime = 177.66 s ClockTime = 180 s
Time = 1239
smoothSolver: Solving for Ux, Initial residual = 0.000548123, Final residual = 3.2958e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00284446, Final residual = 0.000167205, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0145068, Final residual = 7.03339e-05, No Iterations 5
time step continuity errors : sum local = 0.000174786, global = -2.99553e-05, cumulative = -0.312416
smoothSolver: Solving for omega, Initial residual = 0.000213756, Final residual = 1.99821e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00105792, Final residual = 6.69692e-05, No Iterations 4
ExecutionTime = 177.8 s ClockTime = 180 s
Time = 1240
smoothSolver: Solving for Ux, Initial residual = 0.00054574, Final residual = 3.28091e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00283987, Final residual = 0.000166972, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0143067, Final residual = 7.15216e-05, No Iterations 5
time step continuity errors : sum local = 0.00017816, global = -2.71657e-05, cumulative = -0.312443
smoothSolver: Solving for omega, Initial residual = 0.00021306, Final residual = 1.9911e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00105229, Final residual = 6.66191e-05, No Iterations 4
ExecutionTime = 177.94 s ClockTime = 180 s
Time = 1241
smoothSolver: Solving for Ux, Initial residual = 0.000543429, Final residual = 3.26676e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00283483, Final residual = 0.000166721, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0141965, Final residual = 7.67e-05, No Iterations 5
time step continuity errors : sum local = 0.000191463, global = -2.9625e-05, cumulative = -0.312473
smoothSolver: Solving for omega, Initial residual = 0.000212369, Final residual = 1.98413e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00104682, Final residual = 6.6283e-05, No Iterations 4
ExecutionTime = 178.09 s ClockTime = 180 s
Time = 1242
smoothSolver: Solving for Ux, Initial residual = 0.000541179, Final residual = 3.25284e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00282986, Final residual = 0.000166464, No Iterations 4
GAMG: Solving for p, Initial residual = 0.014144, Final residual = 8.2121e-05, No Iterations 5
time step continuity errors : sum local = 0.000205429, global = -3.47882e-05, cumulative = -0.312507
smoothSolver: Solving for omega, Initial residual = 0.000211699, Final residual = 1.97735e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00104152, Final residual = 6.59642e-05, No Iterations 4
ExecutionTime = 178.24 s ClockTime = 180 s
Time = 1243
smoothSolver: Solving for Ux, Initial residual = 0.000538984, Final residual = 3.23918e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00282541, Final residual = 0.000166222, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0140524, Final residual = 8.48116e-05, No Iterations 5
time step continuity errors : sum local = 0.000212626, global = -3.86596e-05, cumulative = -0.312546
smoothSolver: Solving for omega, Initial residual = 0.000211045, Final residual = 1.97063e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00103645, Final residual = 6.56596e-05, No Iterations 4
ExecutionTime = 178.39 s ClockTime = 180 s
Time = 1244
smoothSolver: Solving for Ux, Initial residual = 0.000536846, Final residual = 3.22605e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00282101, Final residual = 0.000165977, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0139222, Final residual = 8.29026e-05, No Iterations 5
time step continuity errors : sum local = 0.000208308, global = -3.8665e-05, cumulative = -0.312585
smoothSolver: Solving for omega, Initial residual = 0.000210399, Final residual = 1.9641e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00103158, Final residual = 6.53692e-05, No Iterations 4
ExecutionTime = 178.53 s ClockTime = 180 s
Time = 1245
smoothSolver: Solving for Ux, Initial residual = 0.000534774, Final residual = 3.21361e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00281613, Final residual = 0.000165723, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0137791, Final residual = 7.85252e-05, No Iterations 5
time step continuity errors : sum local = 0.000197726, global = -3.6079e-05, cumulative = -0.312621
smoothSolver: Solving for omega, Initial residual = 0.000209773, Final residual = 1.9577e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0010269, Final residual = 6.50937e-05, No Iterations 4
ExecutionTime = 178.68 s ClockTime = 181 s
Time = 1246
smoothSolver: Solving for Ux, Initial residual = 0.000532781, Final residual = 3.20183e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00281102, Final residual = 0.000165456, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0136613, Final residual = 7.57084e-05, No Iterations 5
time step continuity errors : sum local = 0.000190986, global = -3.37364e-05, cumulative = -0.312655
smoothSolver: Solving for omega, Initial residual = 0.000209152, Final residual = 1.95151e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00102244, Final residual = 6.48323e-05, No Iterations 4
ExecutionTime = 178.83 s ClockTime = 181 s
Time = 1247
smoothSolver: Solving for Ux, Initial residual = 0.000530872, Final residual = 3.19028e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00280576, Final residual = 0.00016518, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0135604, Final residual = 7.56382e-05, No Iterations 5
time step continuity errors : sum local = 0.000191125, global = -3.33747e-05, cumulative = -0.312688
smoothSolver: Solving for omega, Initial residual = 0.000208539, Final residual = 1.94546e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00101817, Final residual = 6.45858e-05, No Iterations 4
ExecutionTime = 178.98 s ClockTime = 181 s
Time = 1248
smoothSolver: Solving for Ux, Initial residual = 0.000529013, Final residual = 3.17897e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00280064, Final residual = 0.000164916, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0134826, Final residual = 7.66474e-05, No Iterations 5
time step continuity errors : sum local = 0.000193973, global = -3.47067e-05, cumulative = -0.312723
smoothSolver: Solving for omega, Initial residual = 0.000207925, Final residual = 1.93951e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00101411, Final residual = 6.43525e-05, No Iterations 4
ExecutionTime = 179.13 s ClockTime = 181 s
Time = 1249
smoothSolver: Solving for Ux, Initial residual = 0.000527185, Final residual = 3.16805e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00279561, Final residual = 0.000164656, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0133571, Final residual = 7.74834e-05, No Iterations 5
time step continuity errors : sum local = 0.000196354, global = -3.6421e-05, cumulative = -0.312759
smoothSolver: Solving for omega, Initial residual = 0.000207316, Final residual = 1.93371e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00101027, Final residual = 6.41308e-05, No Iterations 4
ExecutionTime = 179.27 s ClockTime = 181 s
Time = 1250
smoothSolver: Solving for Ux, Initial residual = 0.000525399, Final residual = 3.15762e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027905, Final residual = 0.000164404, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0132233, Final residual = 7.79115e-05, No Iterations 5
time step continuity errors : sum local = 0.000197695, global = -3.74211e-05, cumulative = -0.312796
smoothSolver: Solving for omega, Initial residual = 0.000206719, Final residual = 1.92804e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00100661, Final residual = 6.39202e-05, No Iterations 4
ExecutionTime = 179.63 s ClockTime = 182 s
Time = 1251
smoothSolver: Solving for Ux, Initial residual = 0.000523685, Final residual = 3.14774e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00278539, Final residual = 0.00016415, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0131008, Final residual = 7.80378e-05, No Iterations 5
time step continuity errors : sum local = 0.000198253, global = -3.74764e-05, cumulative = -0.312834
smoothSolver: Solving for omega, Initial residual = 0.000206131, Final residual = 1.92245e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00100312, Final residual = 6.37196e-05, No Iterations 4
ExecutionTime = 179.77 s ClockTime = 182 s
Time = 1252
smoothSolver: Solving for Ux, Initial residual = 0.000522032, Final residual = 3.13826e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00278026, Final residual = 0.000163885, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0129728, Final residual = 7.8293e-05, No Iterations 5
time step continuity errors : sum local = 0.000199093, global = -3.71594e-05, cumulative = -0.312871
smoothSolver: Solving for omega, Initial residual = 0.000205549, Final residual = 1.91693e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000999776, Final residual = 6.35303e-05, No Iterations 4
ExecutionTime = 179.91 s ClockTime = 182 s
Time = 1253
smoothSolver: Solving for Ux, Initial residual = 0.000520437, Final residual = 3.12908e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00277512, Final residual = 0.000163641, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0128547, Final residual = 7.86053e-05, No Iterations 5
time step continuity errors : sum local = 0.000200054, global = -3.7018e-05, cumulative = -0.312908
smoothSolver: Solving for omega, Initial residual = 0.000204986, Final residual = 1.91156e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0009966, Final residual = 6.33521e-05, No Iterations 4
ExecutionTime = 180.05 s ClockTime = 182 s
Time = 1254
smoothSolver: Solving for Ux, Initial residual = 0.000518867, Final residual = 3.12021e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00277013, Final residual = 0.000163404, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0127726, Final residual = 7.85315e-05, No Iterations 5
time step continuity errors : sum local = 0.000200025, global = -3.70607e-05, cumulative = -0.312945
smoothSolver: Solving for omega, Initial residual = 0.000204438, Final residual = 1.90629e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000993602, Final residual = 6.31836e-05, No Iterations 4
ExecutionTime = 180.2 s ClockTime = 182 s
Time = 1255
smoothSolver: Solving for Ux, Initial residual = 0.00051733, Final residual = 3.11158e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00276516, Final residual = 0.000163167, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0126712, Final residual = 7.78658e-05, No Iterations 5
time step continuity errors : sum local = 0.000198458, global = -3.70092e-05, cumulative = -0.312982
smoothSolver: Solving for omega, Initial residual = 0.000203899, Final residual = 1.90114e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000990741, Final residual = 6.30235e-05, No Iterations 4
ExecutionTime = 180.34 s ClockTime = 182 s
Time = 1256
smoothSolver: Solving for Ux, Initial residual = 0.000515847, Final residual = 3.10341e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00276035, Final residual = 0.000162948, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0125641, Final residual = 7.68696e-05, No Iterations 5
time step continuity errors : sum local = 0.000196039, global = -3.66932e-05, cumulative = -0.313019
smoothSolver: Solving for omega, Initial residual = 0.000203368, Final residual = 1.89606e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000988017, Final residual = 6.28712e-05, No Iterations 4
ExecutionTime = 180.48 s ClockTime = 182 s
Time = 1257
smoothSolver: Solving for Ux, Initial residual = 0.000514418, Final residual = 3.09581e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00275567, Final residual = 0.000162735, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0124804, Final residual = 7.59614e-05, No Iterations 5
time step continuity errors : sum local = 0.000193842, global = -3.62254e-05, cumulative = -0.313055
smoothSolver: Solving for omega, Initial residual = 0.00020284, Final residual = 1.89104e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000985422, Final residual = 6.27284e-05, No Iterations 4
ExecutionTime = 180.63 s ClockTime = 183 s
Time = 1258
smoothSolver: Solving for Ux, Initial residual = 0.00051305, Final residual = 3.08852e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00275091, Final residual = 0.000162525, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0124104, Final residual = 7.53738e-05, No Iterations 5
time step continuity errors : sum local = 0.000192448, global = -3.59172e-05, cumulative = -0.313091
smoothSolver: Solving for omega, Initial residual = 0.000202318, Final residual = 1.88613e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00098295, Final residual = 6.25955e-05, No Iterations 4
ExecutionTime = 180.77 s ClockTime = 183 s
Time = 1259
smoothSolver: Solving for Ux, Initial residual = 0.000511719, Final residual = 3.0815e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027462, Final residual = 0.00016233, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0123166, Final residual = 7.5025e-05, No Iterations 5
time step continuity errors : sum local = 0.000191624, global = -3.59995e-05, cumulative = -0.313127
smoothSolver: Solving for omega, Initial residual = 0.000201807, Final residual = 1.88133e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000980639, Final residual = 6.24706e-05, No Iterations 4
ExecutionTime = 180.91 s ClockTime = 183 s
Time = 1260
smoothSolver: Solving for Ux, Initial residual = 0.000510443, Final residual = 3.07474e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00274178, Final residual = 0.000162146, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0122511, Final residual = 7.46114e-05, No Iterations 5
time step continuity errors : sum local = 0.000190624, global = -3.63056e-05, cumulative = -0.313163
smoothSolver: Solving for omega, Initial residual = 0.000201299, Final residual = 1.87664e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000978451, Final residual = 6.23531e-05, No Iterations 4
ExecutionTime = 181.06 s ClockTime = 183 s
Time = 1261
smoothSolver: Solving for Ux, Initial residual = 0.000509218, Final residual = 3.06819e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027375, Final residual = 0.000161972, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0121887, Final residual = 7.39252e-05, No Iterations 5
time step continuity errors : sum local = 0.000188917, global = -3.65084e-05, cumulative = -0.3132
smoothSolver: Solving for omega, Initial residual = 0.0002008, Final residual = 1.87205e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000976377, Final residual = 6.22435e-05, No Iterations 4
ExecutionTime = 181.21 s ClockTime = 183 s
Time = 1262
smoothSolver: Solving for Ux, Initial residual = 0.000508025, Final residual = 3.0622e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273341, Final residual = 0.000161825, No Iterations 4
GAMG: Solving for p, Initial residual = 0.012106, Final residual = 7.3009e-05, No Iterations 5
time step continuity errors : sum local = 0.000186608, global = -3.63725e-05, cumulative = -0.313236
smoothSolver: Solving for omega, Initial residual = 0.000200307, Final residual = 1.86749e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000974423, Final residual = 6.21402e-05, No Iterations 4
ExecutionTime = 181.36 s ClockTime = 183 s
Time = 1263
smoothSolver: Solving for Ux, Initial residual = 0.00050688, Final residual = 3.05678e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272953, Final residual = 0.000161687, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0120268, Final residual = 7.20558e-05, No Iterations 5
time step continuity errors : sum local = 0.000184191, global = -3.59049e-05, cumulative = -0.313272
smoothSolver: Solving for omega, Initial residual = 0.00019982, Final residual = 1.86299e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000972576, Final residual = 6.20461e-05, No Iterations 4
ExecutionTime = 181.51 s ClockTime = 183 s
Time = 1264
smoothSolver: Solving for Ux, Initial residual = 0.000505815, Final residual = 3.05153e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272572, Final residual = 0.000161553, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0119667, Final residual = 7.10992e-05, No Iterations 5
time step continuity errors : sum local = 0.000181761, global = -3.52694e-05, cumulative = -0.313307
smoothSolver: Solving for omega, Initial residual = 0.000199344, Final residual = 1.85862e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000970856, Final residual = 6.1959e-05, No Iterations 4
ExecutionTime = 181.66 s ClockTime = 184 s
Time = 1265
smoothSolver: Solving for Ux, Initial residual = 0.000504794, Final residual = 3.04647e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272224, Final residual = 0.000161437, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0119029, Final residual = 7.02071e-05, No Iterations 5
time step continuity errors : sum local = 0.000179488, global = -3.47171e-05, cumulative = -0.313342
smoothSolver: Solving for omega, Initial residual = 0.000198867, Final residual = 1.85432e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00096926, Final residual = 6.18793e-05, No Iterations 4
ExecutionTime = 181.8 s ClockTime = 184 s
Time = 1266
smoothSolver: Solving for Ux, Initial residual = 0.000503798, Final residual = 3.04166e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00271894, Final residual = 0.000161345, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0117901, Final residual = 6.93976e-05, No Iterations 5
time step continuity errors : sum local = 0.000177402, global = -3.4405e-05, cumulative = -0.313376
smoothSolver: Solving for omega, Initial residual = 0.000198399, Final residual = 1.85015e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000967761, Final residual = 6.18051e-05, No Iterations 4
ExecutionTime = 181.94 s ClockTime = 184 s
Time = 1267
smoothSolver: Solving for Ux, Initial residual = 0.00050283, Final residual = 3.03728e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00271595, Final residual = 0.000161275, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0117044, Final residual = 6.86217e-05, No Iterations 5
time step continuity errors : sum local = 0.000175399, global = -3.42714e-05, cumulative = -0.313411
smoothSolver: Solving for omega, Initial residual = 0.000197937, Final residual = 1.84604e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000966371, Final residual = 6.17366e-05, No Iterations 4
ExecutionTime = 182.1 s ClockTime = 184 s
Time = 1268
smoothSolver: Solving for Ux, Initial residual = 0.000501921, Final residual = 3.03319e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00271324, Final residual = 0.000161212, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0116352, Final residual = 6.78864e-05, No Iterations 5
time step continuity errors : sum local = 0.000173498, global = -3.4163e-05, cumulative = -0.313445
smoothSolver: Solving for omega, Initial residual = 0.000197488, Final residual = 1.842e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000965061, Final residual = 6.16745e-05, No Iterations 4
ExecutionTime = 182.25 s ClockTime = 184 s
Time = 1269
smoothSolver: Solving for Ux, Initial residual = 0.000501042, Final residual = 3.02921e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00271073, Final residual = 0.000161162, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0115421, Final residual = 6.71581e-05, No Iterations 5
time step continuity errors : sum local = 0.000171608, global = -3.39521e-05, cumulative = -0.313479
smoothSolver: Solving for omega, Initial residual = 0.00019704, Final residual = 1.83808e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000963848, Final residual = 6.16198e-05, No Iterations 4
ExecutionTime = 182.4 s ClockTime = 184 s
Time = 1270
smoothSolver: Solving for Ux, Initial residual = 0.000500192, Final residual = 3.02528e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00270851, Final residual = 0.000161133, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0114423, Final residual = 6.64163e-05, No Iterations 5
time step continuity errors : sum local = 0.000169687, global = -3.36044e-05, cumulative = -0.313512
smoothSolver: Solving for omega, Initial residual = 0.000196593, Final residual = 1.83423e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000962763, Final residual = 6.15705e-05, No Iterations 4
ExecutionTime = 182.54 s ClockTime = 185 s
Time = 1271
smoothSolver: Solving for Ux, Initial residual = 0.000499348, Final residual = 3.02156e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00270652, Final residual = 0.000161129, No Iterations 4
GAMG: Solving for p, Initial residual = 0.011368, Final residual = 6.56309e-05, No Iterations 5
time step continuity errors : sum local = 0.000167642, global = -3.31508e-05, cumulative = -0.313546
smoothSolver: Solving for omega, Initial residual = 0.000196155, Final residual = 1.83041e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000961757, Final residual = 6.15261e-05, No Iterations 4
ExecutionTime = 182.69 s ClockTime = 185 s
Time = 1272
smoothSolver: Solving for Ux, Initial residual = 0.000498532, Final residual = 3.01812e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00270475, Final residual = 0.000161141, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0112945, Final residual = 6.48435e-05, No Iterations 5
time step continuity errors : sum local = 0.000165588, global = -3.26536e-05, cumulative = -0.313578
smoothSolver: Solving for omega, Initial residual = 0.000195724, Final residual = 1.82666e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000960842, Final residual = 6.14868e-05, No Iterations 4
ExecutionTime = 182.83 s ClockTime = 185 s
Time = 1273
smoothSolver: Solving for Ux, Initial residual = 0.000497747, Final residual = 3.01487e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00270346, Final residual = 0.000161162, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0111897, Final residual = 6.41133e-05, No Iterations 5
time step continuity errors : sum local = 0.000163668, global = -3.22186e-05, cumulative = -0.31361
smoothSolver: Solving for omega, Initial residual = 0.000195303, Final residual = 1.82308e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000959994, Final residual = 6.14505e-05, No Iterations 4
ExecutionTime = 182.98 s ClockTime = 185 s
Time = 1274
smoothSolver: Solving for Ux, Initial residual = 0.000496996, Final residual = 3.01173e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00270235, Final residual = 0.000161194, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0110901, Final residual = 6.34332e-05, No Iterations 5
time step continuity errors : sum local = 0.000161872, global = -3.18451e-05, cumulative = -0.313642
smoothSolver: Solving for omega, Initial residual = 0.000194888, Final residual = 1.81957e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000959221, Final residual = 6.14203e-05, No Iterations 4
ExecutionTime = 183.12 s ClockTime = 185 s
Time = 1275
smoothSolver: Solving for Ux, Initial residual = 0.000496262, Final residual = 3.00878e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00270145, Final residual = 0.000161258, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0110145, Final residual = 6.27948e-05, No Iterations 5
time step continuity errors : sum local = 0.000160185, global = -3.15311e-05, cumulative = -0.313674
smoothSolver: Solving for omega, Initial residual = 0.000194478, Final residual = 1.8161e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000958508, Final residual = 6.13947e-05, No Iterations 4
ExecutionTime = 183.27 s ClockTime = 185 s
Time = 1276
smoothSolver: Solving for Ux, Initial residual = 0.00049556, Final residual = 3.00617e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00270095, Final residual = 0.000161341, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0109289, Final residual = 6.21795e-05, No Iterations 5
time step continuity errors : sum local = 0.000158559, global = -3.11835e-05, cumulative = -0.313705
smoothSolver: Solving for omega, Initial residual = 0.000194071, Final residual = 1.81271e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000957898, Final residual = 6.13732e-05, No Iterations 4
ExecutionTime = 183.42 s ClockTime = 185 s
Time = 1277
smoothSolver: Solving for Ux, Initial residual = 0.000494881, Final residual = 3.00376e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00270071, Final residual = 0.000161432, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0108282, Final residual = 6.15999e-05, No Iterations 5
time step continuity errors : sum local = 0.000157026, global = -3.08514e-05, cumulative = -0.313736
smoothSolver: Solving for omega, Initial residual = 0.000193667, Final residual = 1.8093e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000957343, Final residual = 6.13549e-05, No Iterations 4
ExecutionTime = 183.56 s ClockTime = 186 s
Time = 1278
smoothSolver: Solving for Ux, Initial residual = 0.000494242, Final residual = 3.00146e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00270063, Final residual = 0.000161533, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0107495, Final residual = 6.10246e-05, No Iterations 5
time step continuity errors : sum local = 0.000155507, global = -3.04924e-05, cumulative = -0.313766
smoothSolver: Solving for omega, Initial residual = 0.000193272, Final residual = 1.80599e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000956846, Final residual = 6.13396e-05, No Iterations 4
ExecutionTime = 183.71 s ClockTime = 186 s
Time = 1279
smoothSolver: Solving for Ux, Initial residual = 0.00049364, Final residual = 2.99919e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00270098, Final residual = 0.000161648, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0106745, Final residual = 6.04429e-05, No Iterations 5
time step continuity errors : sum local = 0.00015397, global = -3.01042e-05, cumulative = -0.313796
smoothSolver: Solving for omega, Initial residual = 0.000192885, Final residual = 1.80275e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0009564, Final residual = 6.13276e-05, No Iterations 4
ExecutionTime = 183.85 s ClockTime = 186 s
Time = 1280
smoothSolver: Solving for Ux, Initial residual = 0.000493078, Final residual = 2.99695e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027015, Final residual = 0.000161794, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0105886, Final residual = 5.98586e-05, No Iterations 5
time step continuity errors : sum local = 0.000152419, global = -2.97364e-05, cumulative = -0.313826
smoothSolver: Solving for omega, Initial residual = 0.000192505, Final residual = 1.79956e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000955984, Final residual = 6.13187e-05, No Iterations 4
ExecutionTime = 183.99 s ClockTime = 186 s
Time = 1281
smoothSolver: Solving for Ux, Initial residual = 0.000492527, Final residual = 2.99487e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00270221, Final residual = 0.000161952, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0104869, Final residual = 5.92855e-05, No Iterations 5
time step continuity errors : sum local = 0.000150886, global = -2.94044e-05, cumulative = -0.313856
smoothSolver: Solving for omega, Initial residual = 0.000192132, Final residual = 1.79644e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000955631, Final residual = 6.13145e-05, No Iterations 4
ExecutionTime = 184.14 s ClockTime = 186 s
Time = 1282
smoothSolver: Solving for Ux, Initial residual = 0.000491992, Final residual = 2.99277e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00270343, Final residual = 0.000162121, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0104208, Final residual = 5.87452e-05, No Iterations 5
time step continuity errors : sum local = 0.000149447, global = -2.90873e-05, cumulative = -0.313885
smoothSolver: Solving for omega, Initial residual = 0.000191756, Final residual = 1.79332e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000955329, Final residual = 6.13122e-05, No Iterations 4
ExecutionTime = 184.27 s ClockTime = 186 s
Time = 1283
smoothSolver: Solving for Ux, Initial residual = 0.000491452, Final residual = 2.99063e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00270468, Final residual = 0.000162299, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0103481, Final residual = 5.82528e-05, No Iterations 5
time step continuity errors : sum local = 0.000148129, global = -2.87739e-05, cumulative = -0.313913
smoothSolver: Solving for omega, Initial residual = 0.000191389, Final residual = 1.79029e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000955087, Final residual = 6.13128e-05, No Iterations 4
ExecutionTime = 184.42 s ClockTime = 186 s
Time = 1284
smoothSolver: Solving for Ux, Initial residual = 0.000490911, Final residual = 2.98849e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00270622, Final residual = 0.000162496, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0102534, Final residual = 5.77814e-05, No Iterations 5
time step continuity errors : sum local = 0.000146865, global = -2.84638e-05, cumulative = -0.313942
smoothSolver: Solving for omega, Initial residual = 0.000191024, Final residual = 1.78731e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000954884, Final residual = 6.13153e-05, No Iterations 4
ExecutionTime = 184.57 s ClockTime = 187 s
Time = 1285
smoothSolver: Solving for Ux, Initial residual = 0.000490366, Final residual = 2.98632e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00270806, Final residual = 0.000162716, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0101875, Final residual = 5.73054e-05, No Iterations 5
time step continuity errors : sum local = 0.000145598, global = -2.81679e-05, cumulative = -0.31397
smoothSolver: Solving for omega, Initial residual = 0.000190666, Final residual = 1.7844e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000954705, Final residual = 6.13199e-05, No Iterations 4
ExecutionTime = 184.71 s ClockTime = 187 s
Time = 1286
smoothSolver: Solving for Ux, Initial residual = 0.000489813, Final residual = 2.98419e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00271017, Final residual = 0.000162945, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0101266, Final residual = 5.68156e-05, No Iterations 5
time step continuity errors : sum local = 0.000144297, global = -2.78689e-05, cumulative = -0.313998
smoothSolver: Solving for omega, Initial residual = 0.00019031, Final residual = 1.78149e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000954557, Final residual = 6.13266e-05, No Iterations 4
ExecutionTime = 184.86 s ClockTime = 187 s
Time = 1287
smoothSolver: Solving for Ux, Initial residual = 0.00048926, Final residual = 2.98216e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00271244, Final residual = 0.000163181, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0100667, Final residual = 5.633e-05, No Iterations 5
time step continuity errors : sum local = 0.000143005, global = -2.75698e-05, cumulative = -0.314026
smoothSolver: Solving for omega, Initial residual = 0.000189957, Final residual = 1.77858e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000954432, Final residual = 6.13363e-05, No Iterations 4
ExecutionTime = 185.01 s ClockTime = 187 s
Time = 1288
smoothSolver: Solving for Ux, Initial residual = 0.000488713, Final residual = 2.98017e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00271512, Final residual = 0.000163431, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00999318, Final residual = 5.58876e-05, No Iterations 5
time step continuity errors : sum local = 0.000141811, global = -2.7336e-05, cumulative = -0.314053
smoothSolver: Solving for omega, Initial residual = 0.00018961, Final residual = 1.77576e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000954356, Final residual = 6.13477e-05, No Iterations 4
ExecutionTime = 185.15 s ClockTime = 187 s
Time = 1289
smoothSolver: Solving for Ux, Initial residual = 0.000488173, Final residual = 2.97807e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00271806, Final residual = 0.000163697, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0099308, Final residual = 5.54634e-05, No Iterations 5
time step continuity errors : sum local = 0.00014066, global = -2.7129e-05, cumulative = -0.31408
smoothSolver: Solving for omega, Initial residual = 0.000189272, Final residual = 1.77305e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00095431, Final residual = 6.13607e-05, No Iterations 4
ExecutionTime = 185.31 s ClockTime = 187 s
Time = 1290
smoothSolver: Solving for Ux, Initial residual = 0.000487654, Final residual = 2.97592e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272118, Final residual = 0.000163981, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00987698, Final residual = 5.50431e-05, No Iterations 5
time step continuity errors : sum local = 0.000139526, global = -2.69352e-05, cumulative = -0.314107
smoothSolver: Solving for omega, Initial residual = 0.000188934, Final residual = 1.77041e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000954287, Final residual = 6.13744e-05, No Iterations 4
ExecutionTime = 185.45 s ClockTime = 187 s
Time = 1291
smoothSolver: Solving for Ux, Initial residual = 0.000487122, Final residual = 2.97371e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272429, Final residual = 0.000164272, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00979317, Final residual = 5.46269e-05, No Iterations 5
time step continuity errors : sum local = 0.000138401, global = -2.67485e-05, cumulative = -0.314134
smoothSolver: Solving for omega, Initial residual = 0.000188597, Final residual = 1.7678e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000954288, Final residual = 6.13902e-05, No Iterations 4
ExecutionTime = 185.59 s ClockTime = 188 s
Time = 1292
smoothSolver: Solving for Ux, Initial residual = 0.000486582, Final residual = 2.97144e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272764, Final residual = 0.000164573, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00971555, Final residual = 5.41937e-05, No Iterations 5
time step continuity errors : sum local = 0.000137236, global = -2.65253e-05, cumulative = -0.31416
smoothSolver: Solving for omega, Initial residual = 0.00018826, Final residual = 1.76514e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000954296, Final residual = 6.14083e-05, No Iterations 4
ExecutionTime = 185.74 s ClockTime = 188 s
Time = 1293
smoothSolver: Solving for Ux, Initial residual = 0.000486041, Final residual = 2.9691e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273136, Final residual = 0.000164899, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00966814, Final residual = 5.37038e-05, No Iterations 5
time step continuity errors : sum local = 0.000135937, global = -2.62595e-05, cumulative = -0.314187
smoothSolver: Solving for omega, Initial residual = 0.000187928, Final residual = 1.76255e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000954334, Final residual = 6.14275e-05, No Iterations 4
ExecutionTime = 185.89 s ClockTime = 188 s
Time = 1294
smoothSolver: Solving for Ux, Initial residual = 0.000485485, Final residual = 2.9667e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273527, Final residual = 0.000165235, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00963025, Final residual = 5.31675e-05, No Iterations 5
time step continuity errors : sum local = 0.000134524, global = -2.59516e-05, cumulative = -0.314212
smoothSolver: Solving for omega, Initial residual = 0.000187602, Final residual = 1.76001e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000954397, Final residual = 6.14478e-05, No Iterations 4
ExecutionTime = 186.03 s ClockTime = 188 s
Time = 1295
smoothSolver: Solving for Ux, Initial residual = 0.000484916, Final residual = 2.96427e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027396, Final residual = 0.000165574, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00958586, Final residual = 5.25977e-05, No Iterations 5
time step continuity errors : sum local = 0.000133022, global = -2.56151e-05, cumulative = -0.314238
smoothSolver: Solving for omega, Initial residual = 0.000187274, Final residual = 1.75741e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000954476, Final residual = 6.14687e-05, No Iterations 4
ExecutionTime = 186.17 s ClockTime = 188 s
Time = 1296
smoothSolver: Solving for Ux, Initial residual = 0.000484343, Final residual = 2.96178e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00274434, Final residual = 0.000165931, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00953032, Final residual = 5.19652e-05, No Iterations 5
time step continuity errors : sum local = 0.000131352, global = -2.5295e-05, cumulative = -0.314263
smoothSolver: Solving for omega, Initial residual = 0.000186957, Final residual = 1.75491e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000954575, Final residual = 6.14912e-05, No Iterations 4
ExecutionTime = 186.32 s ClockTime = 188 s
Time = 1297
smoothSolver: Solving for Ux, Initial residual = 0.000483769, Final residual = 2.95924e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00274913, Final residual = 0.000166294, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00947546, Final residual = 9.45238e-05, No Iterations 4
time step continuity errors : sum local = 0.000238794, global = 4.03979e-05, cumulative = -0.314223
smoothSolver: Solving for omega, Initial residual = 0.000186644, Final residual = 1.75242e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000954674, Final residual = 6.15131e-05, No Iterations 4
ExecutionTime = 186.46 s ClockTime = 188 s
Time = 1298
smoothSolver: Solving for Ux, Initial residual = 0.000483231, Final residual = 2.95683e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00275389, Final residual = 0.000166653, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00946506, Final residual = 5.97841e-05, No Iterations 5
time step continuity errors : sum local = 0.00015094, global = -2.95845e-05, cumulative = -0.314253
smoothSolver: Solving for omega, Initial residual = 0.00018631, Final residual = 1.74991e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000954777, Final residual = 6.15359e-05, No Iterations 4
ExecutionTime = 186.6 s ClockTime = 189 s
Time = 1299
smoothSolver: Solving for Ux, Initial residual = 0.000482577, Final residual = 2.95395e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00275918, Final residual = 0.000167047, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00940068, Final residual = 5.52759e-05, No Iterations 5
time step continuity errors : sum local = 0.000139505, global = -2.78927e-05, cumulative = -0.31428
smoothSolver: Solving for omega, Initial residual = 0.000185993, Final residual = 1.74744e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000954898, Final residual = 6.15601e-05, No Iterations 4
ExecutionTime = 186.74 s ClockTime = 189 s
Time = 1300
smoothSolver: Solving for Ux, Initial residual = 0.000481941, Final residual = 2.95119e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00276423, Final residual = 0.000167435, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00934967, Final residual = 8.67536e-05, No Iterations 4
time step continuity errors : sum local = 0.000218858, global = 3.55929e-05, cumulative = -0.314245
smoothSolver: Solving for omega, Initial residual = 0.000185693, Final residual = 1.745e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000955006, Final residual = 6.15839e-05, No Iterations 4
ExecutionTime = 187.1 s ClockTime = 189 s
Time = 1301
smoothSolver: Solving for Ux, Initial residual = 0.00048139, Final residual = 2.94875e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00276878, Final residual = 0.000167805, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0093512, Final residual = 5.25495e-05, No Iterations 5
time step continuity errors : sum local = 0.000132496, global = -2.57153e-05, cumulative = -0.314271
smoothSolver: Solving for omega, Initial residual = 0.000185369, Final residual = 1.74253e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000955122, Final residual = 6.16089e-05, No Iterations 4
ExecutionTime = 187.24 s ClockTime = 189 s
Time = 1302
smoothSolver: Solving for Ux, Initial residual = 0.000480759, Final residual = 2.94591e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00277399, Final residual = 0.000168201, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00933035, Final residual = 9.27857e-05, No Iterations 4
time step continuity errors : sum local = 0.00023386, global = 3.95702e-05, cumulative = -0.314231
smoothSolver: Solving for omega, Initial residual = 0.000185061, Final residual = 1.74004e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000955241, Final residual = 6.16341e-05, No Iterations 4
ExecutionTime = 187.38 s ClockTime = 189 s
Time = 1303
smoothSolver: Solving for Ux, Initial residual = 0.000480173, Final residual = 2.94325e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027791, Final residual = 0.000168576, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00933833, Final residual = 5.62686e-05, No Iterations 5
time step continuity errors : sum local = 0.000141747, global = -2.72726e-05, cumulative = -0.314258
smoothSolver: Solving for omega, Initial residual = 0.000184734, Final residual = 1.73758e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000955361, Final residual = 6.16593e-05, No Iterations 4
ExecutionTime = 187.52 s ClockTime = 190 s
Time = 1304
smoothSolver: Solving for Ux, Initial residual = 0.000479495, Final residual = 2.94026e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00278491, Final residual = 0.000168958, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00929204, Final residual = 9.08137e-05, No Iterations 4
time step continuity errors : sum local = 0.000228687, global = 3.82012e-05, cumulative = -0.31422
smoothSolver: Solving for omega, Initial residual = 0.000184432, Final residual = 1.73516e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000955483, Final residual = 6.1685e-05, No Iterations 4
ExecutionTime = 187.66 s ClockTime = 190 s
Time = 1305
smoothSolver: Solving for Ux, Initial residual = 0.000478891, Final residual = 2.93755e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00279017, Final residual = 0.000169323, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00924824, Final residual = 5.16012e-05, No Iterations 5
time step continuity errors : sum local = 0.000129865, global = -2.54249e-05, cumulative = -0.314245
smoothSolver: Solving for omega, Initial residual = 0.000184111, Final residual = 1.73281e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000955606, Final residual = 6.17112e-05, No Iterations 4
ExecutionTime = 187.81 s ClockTime = 190 s
Time = 1306
smoothSolver: Solving for Ux, Initial residual = 0.000478238, Final residual = 2.93459e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00279577, Final residual = 0.000169694, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00922546, Final residual = 8.34051e-05, No Iterations 4
time step continuity errors : sum local = 0.000209828, global = 3.33189e-05, cumulative = -0.314212
smoothSolver: Solving for omega, Initial residual = 0.000183817, Final residual = 1.73045e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000955733, Final residual = 6.1738e-05, No Iterations 4
ExecutionTime = 187.94 s ClockTime = 190 s
Time = 1307
smoothSolver: Solving for Ux, Initial residual = 0.000477635, Final residual = 2.93186e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00280068, Final residual = 0.000170027, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00924179, Final residual = 9.08277e-05, No Iterations 4
time step continuity errors : sum local = 0.000228377, global = 3.7813e-05, cumulative = -0.314174
smoothSolver: Solving for omega, Initial residual = 0.000183509, Final residual = 1.72806e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000955861, Final residual = 6.17648e-05, No Iterations 4
ExecutionTime = 188.08 s ClockTime = 190 s
Time = 1308
smoothSolver: Solving for Ux, Initial residual = 0.000477008, Final residual = 2.92902e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00280558, Final residual = 0.000170363, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00927332, Final residual = 5.51582e-05, No Iterations 5
time step continuity errors : sum local = 0.000138626, global = -2.67763e-05, cumulative = -0.314201
smoothSolver: Solving for omega, Initial residual = 0.000183193, Final residual = 1.72568e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000955981, Final residual = 6.17922e-05, No Iterations 4
ExecutionTime = 188.23 s ClockTime = 190 s
Time = 1309
smoothSolver: Solving for Ux, Initial residual = 0.000476311, Final residual = 2.92592e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00281096, Final residual = 0.000170716, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00926399, Final residual = 8.41083e-05, No Iterations 4
time step continuity errors : sum local = 0.000211332, global = 3.31341e-05, cumulative = -0.314168
smoothSolver: Solving for omega, Initial residual = 0.000182895, Final residual = 1.72336e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000956126, Final residual = 6.18201e-05, No Iterations 4
ExecutionTime = 188.36 s ClockTime = 190 s
Time = 1310
smoothSolver: Solving for Ux, Initial residual = 0.000475684, Final residual = 2.92309e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00281559, Final residual = 0.000171029, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00927762, Final residual = 8.41995e-05, No Iterations 4
time step continuity errors : sum local = 0.000211471, global = 3.30757e-05, cumulative = -0.314135
smoothSolver: Solving for omega, Initial residual = 0.000182592, Final residual = 1.72103e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000956257, Final residual = 6.18479e-05, No Iterations 4
ExecutionTime = 188.5 s ClockTime = 191 s
Time = 1311
smoothSolver: Solving for Ux, Initial residual = 0.000475057, Final residual = 2.92022e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00282007, Final residual = 0.000171335, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00930525, Final residual = 9.02695e-05, No Iterations 4
time step continuity errors : sum local = 0.000226612, global = 3.65856e-05, cumulative = -0.314098
smoothSolver: Solving for omega, Initial residual = 0.000182287, Final residual = 1.71871e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000956383, Final residual = 6.18763e-05, No Iterations 4
ExecutionTime = 188.64 s ClockTime = 191 s
Time = 1312
smoothSolver: Solving for Ux, Initial residual = 0.00047441, Final residual = 2.91726e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00282456, Final residual = 0.000171639, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00931674, Final residual = 5.13595e-05, No Iterations 5
time step continuity errors : sum local = 0.000128879, global = -2.40753e-05, cumulative = -0.314122
smoothSolver: Solving for omega, Initial residual = 0.000181978, Final residual = 1.71639e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000956526, Final residual = 6.19052e-05, No Iterations 4
ExecutionTime = 188.77 s ClockTime = 191 s
Time = 1313
smoothSolver: Solving for Ux, Initial residual = 0.000473713, Final residual = 2.91417e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00282931, Final residual = 0.000171951, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00929688, Final residual = 7.45028e-05, No Iterations 4
time step continuity errors : sum local = 0.000186897, global = 2.7517e-05, cumulative = -0.314095
smoothSolver: Solving for omega, Initial residual = 0.000181679, Final residual = 1.71409e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000956658, Final residual = 6.19342e-05, No Iterations 4
ExecutionTime = 188.92 s ClockTime = 191 s
Time = 1314
smoothSolver: Solving for Ux, Initial residual = 0.000473081, Final residual = 2.91138e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00283327, Final residual = 0.000172222, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00933129, Final residual = 7.46343e-05, No Iterations 4
time step continuity errors : sum local = 0.000187137, global = 2.75558e-05, cumulative = -0.314067
smoothSolver: Solving for omega, Initial residual = 0.000181386, Final residual = 1.71183e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000956806, Final residual = 6.1964e-05, No Iterations 4
ExecutionTime = 189.07 s ClockTime = 191 s
Time = 1315
smoothSolver: Solving for Ux, Initial residual = 0.00047245, Final residual = 2.90855e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00283715, Final residual = 0.000172493, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00937124, Final residual = 8.36573e-05, No Iterations 4
time step continuity errors : sum local = 0.000209664, global = 3.15292e-05, cumulative = -0.314036
smoothSolver: Solving for omega, Initial residual = 0.000181092, Final residual = 1.70961e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000956942, Final residual = 6.19939e-05, No Iterations 4
ExecutionTime = 189.2 s ClockTime = 191 s
Time = 1316
smoothSolver: Solving for Ux, Initial residual = 0.000471811, Final residual = 2.9056e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00284102, Final residual = 0.000172757, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00939257, Final residual = 9.01447e-05, No Iterations 4
time step continuity errors : sum local = 0.000225833, global = 3.45889e-05, cumulative = -0.314001
smoothSolver: Solving for omega, Initial residual = 0.000180793, Final residual = 1.70737e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000957079, Final residual = 6.20238e-05, No Iterations 4
ExecutionTime = 189.33 s ClockTime = 191 s
Time = 1317
smoothSolver: Solving for Ux, Initial residual = 0.000471149, Final residual = 2.90255e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028449, Final residual = 0.000173017, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00941963, Final residual = 8.89979e-05, No Iterations 4
time step continuity errors : sum local = 0.000222896, global = 3.34126e-05, cumulative = -0.313968
smoothSolver: Solving for omega, Initial residual = 0.000180497, Final residual = 1.70513e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00095723, Final residual = 6.20549e-05, No Iterations 4
ExecutionTime = 189.48 s ClockTime = 192 s
Time = 1318
smoothSolver: Solving for Ux, Initial residual = 0.000470482, Final residual = 2.89959e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00284872, Final residual = 0.000173273, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00944549, Final residual = 8.22076e-05, No Iterations 4
time step continuity errors : sum local = 0.000205835, global = 2.95452e-05, cumulative = -0.313938
smoothSolver: Solving for omega, Initial residual = 0.000180204, Final residual = 1.70289e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000957367, Final residual = 6.20857e-05, No Iterations 4
ExecutionTime = 189.61 s ClockTime = 192 s
Time = 1319
smoothSolver: Solving for Ux, Initial residual = 0.000469824, Final residual = 2.89675e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00285223, Final residual = 0.000173516, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00946143, Final residual = 7.51949e-05, No Iterations 4
time step continuity errors : sum local = 0.000188217, global = 2.65198e-05, cumulative = -0.313912
smoothSolver: Solving for omega, Initial residual = 0.000179916, Final residual = 1.70062e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000957526, Final residual = 6.21173e-05, No Iterations 4
ExecutionTime = 189.74 s ClockTime = 192 s
Time = 1320
smoothSolver: Solving for Ux, Initial residual = 0.000469186, Final residual = 2.8939e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00285546, Final residual = 0.000173739, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00948672, Final residual = 7.24333e-05, No Iterations 4
time step continuity errors : sum local = 0.000181242, global = 2.56237e-05, cumulative = -0.313886
smoothSolver: Solving for omega, Initial residual = 0.000179622, Final residual = 1.69837e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000957687, Final residual = 6.215e-05, No Iterations 4
ExecutionTime = 189.88 s ClockTime = 192 s
Time = 1321
smoothSolver: Solving for Ux, Initial residual = 0.00046856, Final residual = 2.89106e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00285851, Final residual = 0.000173951, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00949455, Final residual = 7.36949e-05, No Iterations 4
time step continuity errors : sum local = 0.000184319, global = 2.57502e-05, cumulative = -0.31386
smoothSolver: Solving for omega, Initial residual = 0.000179328, Final residual = 1.69617e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000957835, Final residual = 6.21821e-05, No Iterations 4
ExecutionTime = 190.02 s ClockTime = 192 s
Time = 1322
smoothSolver: Solving for Ux, Initial residual = 0.000467931, Final residual = 2.88816e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00286148, Final residual = 0.000174162, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00950554, Final residual = 7.53612e-05, No Iterations 4
time step continuity errors : sum local = 0.000188412, global = 2.58285e-05, cumulative = -0.313835
smoothSolver: Solving for omega, Initial residual = 0.000179036, Final residual = 1.69396e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000957995, Final residual = 6.22143e-05, No Iterations 4
ExecutionTime = 190.16 s ClockTime = 192 s
Time = 1323
smoothSolver: Solving for Ux, Initial residual = 0.000467292, Final residual = 2.88526e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00286442, Final residual = 0.000174365, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00951608, Final residual = 7.47337e-05, No Iterations 4
time step continuity errors : sum local = 0.000186782, global = 2.53451e-05, cumulative = -0.313809
smoothSolver: Solving for omega, Initial residual = 0.00017874, Final residual = 1.69171e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000958153, Final residual = 6.22477e-05, No Iterations 4
ExecutionTime = 190.29 s ClockTime = 192 s
Time = 1324
smoothSolver: Solving for Ux, Initial residual = 0.000466651, Final residual = 2.88242e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00286736, Final residual = 0.000174562, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00952665, Final residual = 7.16986e-05, No Iterations 4
time step continuity errors : sum local = 0.000179146, global = 2.4479e-05, cumulative = -0.313785
smoothSolver: Solving for omega, Initial residual = 0.000178444, Final residual = 1.68945e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000958294, Final residual = 6.228e-05, No Iterations 4
ExecutionTime = 190.42 s ClockTime = 192 s
Time = 1325
smoothSolver: Solving for Ux, Initial residual = 0.000466026, Final residual = 2.87961e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287002, Final residual = 0.00017475, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00956284, Final residual = 6.79356e-05, No Iterations 4
time step continuity errors : sum local = 0.0001697, global = 2.38528e-05, cumulative = -0.313761
smoothSolver: Solving for omega, Initial residual = 0.000178154, Final residual = 1.68721e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000958449, Final residual = 6.23123e-05, No Iterations 4
ExecutionTime = 190.56 s ClockTime = 193 s
Time = 1326
smoothSolver: Solving for Ux, Initial residual = 0.000465413, Final residual = 2.87683e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287243, Final residual = 0.000174924, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00958877, Final residual = 6.52181e-05, No Iterations 4
time step continuity errors : sum local = 0.000162866, global = 2.37428e-05, cumulative = -0.313737
smoothSolver: Solving for omega, Initial residual = 0.000177865, Final residual = 1.685e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000958598, Final residual = 6.23452e-05, No Iterations 4
ExecutionTime = 190.69 s ClockTime = 193 s
Time = 1327
smoothSolver: Solving for Ux, Initial residual = 0.000464801, Final residual = 2.8741e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287474, Final residual = 0.000175085, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00959924, Final residual = 6.40307e-05, No Iterations 4
time step continuity errors : sum local = 0.000159853, global = 2.38356e-05, cumulative = -0.313713
smoothSolver: Solving for omega, Initial residual = 0.000177575, Final residual = 1.68275e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000958738, Final residual = 6.23774e-05, No Iterations 4
ExecutionTime = 190.83 s ClockTime = 193 s
Time = 1328
smoothSolver: Solving for Ux, Initial residual = 0.000464189, Final residual = 2.87134e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287696, Final residual = 0.000175243, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00961573, Final residual = 6.36893e-05, No Iterations 4
time step continuity errors : sum local = 0.000158958, global = 2.38769e-05, cumulative = -0.313689
smoothSolver: Solving for omega, Initial residual = 0.000177288, Final residual = 1.68047e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000958868, Final residual = 6.24088e-05, No Iterations 4
ExecutionTime = 190.97 s ClockTime = 193 s
Time = 1329
smoothSolver: Solving for Ux, Initial residual = 0.000463573, Final residual = 2.86862e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287904, Final residual = 0.000175394, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00962824, Final residual = 6.30965e-05, No Iterations 4
time step continuity errors : sum local = 0.000157431, global = 2.38717e-05, cumulative = -0.313666
smoothSolver: Solving for omega, Initial residual = 0.000176999, Final residual = 1.67818e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000958988, Final residual = 6.24402e-05, No Iterations 4
ExecutionTime = 191.11 s ClockTime = 193 s
Time = 1330
smoothSolver: Solving for Ux, Initial residual = 0.000462969, Final residual = 2.86595e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288106, Final residual = 0.000175535, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00961768, Final residual = 6.16587e-05, No Iterations 4
time step continuity errors : sum local = 0.000153793, global = 2.38822e-05, cumulative = -0.313642
smoothSolver: Solving for omega, Initial residual = 0.000176708, Final residual = 1.67594e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000959107, Final residual = 6.24709e-05, No Iterations 4
ExecutionTime = 191.24 s ClockTime = 193 s
Time = 1331
smoothSolver: Solving for Ux, Initial residual = 0.000462377, Final residual = 2.86331e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288301, Final residual = 0.000175671, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0096251, Final residual = 5.95145e-05, No Iterations 4
time step continuity errors : sum local = 0.000148407, global = 2.39388e-05, cumulative = -0.313618
smoothSolver: Solving for omega, Initial residual = 0.000176421, Final residual = 1.67373e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000959209, Final residual = 6.25004e-05, No Iterations 4
ExecutionTime = 191.38 s ClockTime = 193 s
Time = 1332
smoothSolver: Solving for Ux, Initial residual = 0.000461806, Final residual = 2.86078e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288476, Final residual = 0.0001758, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00963626, Final residual = 5.70791e-05, No Iterations 4
time step continuity errors : sum local = 0.000142299, global = 2.40013e-05, cumulative = -0.313594
smoothSolver: Solving for omega, Initial residual = 0.000176137, Final residual = 1.67152e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000959287, Final residual = 6.2529e-05, No Iterations 4
ExecutionTime = 191.52 s ClockTime = 194 s
Time = 1333
smoothSolver: Solving for Ux, Initial residual = 0.000461253, Final residual = 2.85836e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288637, Final residual = 0.000175918, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00964289, Final residual = 5.49401e-05, No Iterations 4
time step continuity errors : sum local = 0.000136926, global = 2.36443e-05, cumulative = -0.31357
smoothSolver: Solving for omega, Initial residual = 0.00017585, Final residual = 1.66929e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000959368, Final residual = 6.25572e-05, No Iterations 4
ExecutionTime = 191.66 s ClockTime = 194 s
Time = 1334
smoothSolver: Solving for Ux, Initial residual = 0.000460709, Final residual = 2.85607e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288796, Final residual = 0.000176027, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00965742, Final residual = 5.305e-05, No Iterations 4
time step continuity errors : sum local = 0.000132186, global = 2.30078e-05, cumulative = -0.313547
smoothSolver: Solving for omega, Initial residual = 0.000175567, Final residual = 1.66706e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000959431, Final residual = 6.25844e-05, No Iterations 4
ExecutionTime = 191.8 s ClockTime = 194 s
Time = 1335
smoothSolver: Solving for Ux, Initial residual = 0.000460189, Final residual = 2.85389e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288938, Final residual = 0.000176133, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00966658, Final residual = 5.11221e-05, No Iterations 4
time step continuity errors : sum local = 0.000127356, global = 2.15899e-05, cumulative = -0.313525
smoothSolver: Solving for omega, Initial residual = 0.000175287, Final residual = 1.66486e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000959466, Final residual = 6.26105e-05, No Iterations 4
ExecutionTime = 191.93 s ClockTime = 194 s
Time = 1336
smoothSolver: Solving for Ux, Initial residual = 0.000459683, Final residual = 2.85174e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289069, Final residual = 0.00017623, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00968529, Final residual = 4.8732e-05, No Iterations 4
time step continuity errors : sum local = 0.000121379, global = 1.87029e-05, cumulative = -0.313507
smoothSolver: Solving for omega, Initial residual = 0.000175013, Final residual = 1.66264e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000959496, Final residual = 6.26353e-05, No Iterations 4
ExecutionTime = 192.08 s ClockTime = 194 s
Time = 1337
smoothSolver: Solving for Ux, Initial residual = 0.000459185, Final residual = 2.84963e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289191, Final residual = 0.000176322, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00970255, Final residual = 4.61492e-05, No Iterations 4
time step continuity errors : sum local = 0.000114924, global = 1.15946e-05, cumulative = -0.313495
smoothSolver: Solving for omega, Initial residual = 0.00017474, Final residual = 1.66046e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000959512, Final residual = 6.26602e-05, No Iterations 4
ExecutionTime = 192.22 s ClockTime = 194 s
Time = 1338
smoothSolver: Solving for Ux, Initial residual = 0.000458687, Final residual = 2.84756e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289313, Final residual = 0.000176409, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00968779, Final residual = 4.65481e-05, No Iterations 4
time step continuity errors : sum local = 0.000115895, global = 1.17118e-06, cumulative = -0.313494
smoothSolver: Solving for omega, Initial residual = 0.000174465, Final residual = 1.65827e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000959497, Final residual = 6.2683e-05, No Iterations 4
ExecutionTime = 192.36 s ClockTime = 194 s
Time = 1339
smoothSolver: Solving for Ux, Initial residual = 0.000458194, Final residual = 2.84553e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289413, Final residual = 0.000176485, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00965779, Final residual = 4.85928e-05, No Iterations 4
time step continuity errors : sum local = 0.000120959, global = -6.47833e-06, cumulative = -0.3135
smoothSolver: Solving for omega, Initial residual = 0.000174189, Final residual = 1.65608e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000959464, Final residual = 6.27047e-05, No Iterations 4
ExecutionTime = 192.5 s ClockTime = 195 s
Time = 1340
smoothSolver: Solving for Ux, Initial residual = 0.000457705, Final residual = 2.84358e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289498, Final residual = 0.000176553, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00963728, Final residual = 5.15301e-05, No Iterations 4
time step continuity errors : sum local = 0.000128239, global = -1.11185e-05, cumulative = -0.313512
smoothSolver: Solving for omega, Initial residual = 0.000173912, Final residual = 1.65389e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000959429, Final residual = 6.27258e-05, No Iterations 4
ExecutionTime = 192.63 s ClockTime = 195 s
Time = 1341
smoothSolver: Solving for Ux, Initial residual = 0.000457215, Final residual = 2.84165e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289583, Final residual = 0.00017662, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00963217, Final residual = 5.4179e-05, No Iterations 4
time step continuity errors : sum local = 0.000134797, global = -1.40842e-05, cumulative = -0.313526
smoothSolver: Solving for omega, Initial residual = 0.000173642, Final residual = 1.65172e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000959371, Final residual = 6.2746e-05, No Iterations 4
ExecutionTime = 192.78 s ClockTime = 195 s
Time = 1342
smoothSolver: Solving for Ux, Initial residual = 0.000456731, Final residual = 2.83976e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289671, Final residual = 0.000176686, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00965031, Final residual = 5.63543e-05, No Iterations 4
time step continuity errors : sum local = 0.000140179, global = -1.57661e-05, cumulative = -0.313541
smoothSolver: Solving for omega, Initial residual = 0.000173371, Final residual = 1.64954e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00095929, Final residual = 6.27643e-05, No Iterations 4
ExecutionTime = 192.91 s ClockTime = 195 s
Time = 1343
smoothSolver: Solving for Ux, Initial residual = 0.000456252, Final residual = 2.83787e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289743, Final residual = 0.000176741, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00966404, Final residual = 5.82171e-05, No Iterations 4
time step continuity errors : sum local = 0.000144792, global = -1.64526e-05, cumulative = -0.313558
smoothSolver: Solving for omega, Initial residual = 0.000173098, Final residual = 1.64734e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000959195, Final residual = 6.27821e-05, No Iterations 4
ExecutionTime = 193.06 s ClockTime = 195 s
Time = 1344
smoothSolver: Solving for Ux, Initial residual = 0.000455785, Final residual = 2.83604e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289799, Final residual = 0.000176791, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00966512, Final residual = 5.97158e-05, No Iterations 4
time step continuity errors : sum local = 0.000148502, global = -1.6551e-05, cumulative = -0.313574
smoothSolver: Solving for omega, Initial residual = 0.000172823, Final residual = 1.64513e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000959083, Final residual = 6.27981e-05, No Iterations 4
ExecutionTime = 193.2 s ClockTime = 195 s
Time = 1345
smoothSolver: Solving for Ux, Initial residual = 0.000455341, Final residual = 2.83417e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289852, Final residual = 0.000176838, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0096653, Final residual = 6.07165e-05, No Iterations 4
time step continuity errors : sum local = 0.000150978, global = -1.64629e-05, cumulative = -0.313591
smoothSolver: Solving for omega, Initial residual = 0.000172544, Final residual = 1.64287e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000958951, Final residual = 6.28133e-05, No Iterations 4
ExecutionTime = 193.33 s ClockTime = 195 s
Time = 1346
smoothSolver: Solving for Ux, Initial residual = 0.000454899, Final residual = 2.83224e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289901, Final residual = 0.000176877, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00965565, Final residual = 6.12215e-05, No Iterations 4
time step continuity errors : sum local = 0.000152211, global = -1.65299e-05, cumulative = -0.313607
smoothSolver: Solving for omega, Initial residual = 0.00017227, Final residual = 1.64059e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000958802, Final residual = 6.28275e-05, No Iterations 4
ExecutionTime = 193.47 s ClockTime = 196 s
Time = 1347
smoothSolver: Solving for Ux, Initial residual = 0.000454448, Final residual = 2.83027e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289933, Final residual = 0.000176911, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00961962, Final residual = 6.15893e-05, No Iterations 4
time step continuity errors : sum local = 0.000153096, global = -1.68957e-05, cumulative = -0.313624
smoothSolver: Solving for omega, Initial residual = 0.000171998, Final residual = 1.63832e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000958631, Final residual = 6.28398e-05, No Iterations 4
ExecutionTime = 193.6 s ClockTime = 196 s
Time = 1348
smoothSolver: Solving for Ux, Initial residual = 0.00045399, Final residual = 2.82822e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289967, Final residual = 0.000176943, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00957684, Final residual = 6.22913e-05, No Iterations 4
time step continuity errors : sum local = 0.000154809, global = -1.7484e-05, cumulative = -0.313642
smoothSolver: Solving for omega, Initial residual = 0.000171725, Final residual = 1.63609e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000958445, Final residual = 6.28506e-05, No Iterations 4
ExecutionTime = 193.74 s ClockTime = 196 s
Time = 1349
smoothSolver: Solving for Ux, Initial residual = 0.000453524, Final residual = 2.82613e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0029, Final residual = 0.000176972, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00955272, Final residual = 6.365e-05, No Iterations 4
time step continuity errors : sum local = 0.000158162, global = -1.81184e-05, cumulative = -0.31366
smoothSolver: Solving for omega, Initial residual = 0.000171448, Final residual = 1.63384e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000958246, Final residual = 6.2861e-05, No Iterations 4
ExecutionTime = 193.88 s ClockTime = 196 s
Time = 1350
smoothSolver: Solving for Ux, Initial residual = 0.000453051, Final residual = 2.82397e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290017, Final residual = 0.000176993, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00954819, Final residual = 6.55354e-05, No Iterations 4
time step continuity errors : sum local = 0.000162826, global = -1.88136e-05, cumulative = -0.313679
smoothSolver: Solving for omega, Initial residual = 0.000171172, Final residual = 1.63156e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000958012, Final residual = 6.28691e-05, No Iterations 4
ExecutionTime = 194.22 s ClockTime = 196 s
Time = 1351
smoothSolver: Solving for Ux, Initial residual = 0.000452571, Final residual = 2.82178e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290021, Final residual = 0.000177012, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00954643, Final residual = 6.67693e-05, No Iterations 4
time step continuity errors : sum local = 0.000165874, global = -1.90416e-05, cumulative = -0.313698
smoothSolver: Solving for omega, Initial residual = 0.000170893, Final residual = 1.62926e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000957765, Final residual = 6.28757e-05, No Iterations 4
ExecutionTime = 194.36 s ClockTime = 196 s
Time = 1352
smoothSolver: Solving for Ux, Initial residual = 0.000452085, Final residual = 2.81957e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290036, Final residual = 0.000177029, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00954363, Final residual = 6.73743e-05, No Iterations 4
time step continuity errors : sum local = 0.000167363, global = -1.91645e-05, cumulative = -0.313717
smoothSolver: Solving for omega, Initial residual = 0.000170619, Final residual = 1.62696e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000957507, Final residual = 6.28813e-05, No Iterations 4
ExecutionTime = 194.49 s ClockTime = 197 s
Time = 1353
smoothSolver: Solving for Ux, Initial residual = 0.000451597, Final residual = 2.81733e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0029004, Final residual = 0.000177042, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00953089, Final residual = 6.73476e-05, No Iterations 4
time step continuity errors : sum local = 0.000167275, global = -1.92132e-05, cumulative = -0.313736
smoothSolver: Solving for omega, Initial residual = 0.000170344, Final residual = 1.62467e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000957215, Final residual = 6.28843e-05, No Iterations 4
ExecutionTime = 194.63 s ClockTime = 197 s
Time = 1354
smoothSolver: Solving for Ux, Initial residual = 0.000451104, Final residual = 2.81504e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290037, Final residual = 0.000177051, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00950421, Final residual = 6.69351e-05, No Iterations 4
time step continuity errors : sum local = 0.000166231, global = -1.92013e-05, cumulative = -0.313755
smoothSolver: Solving for omega, Initial residual = 0.000170066, Final residual = 1.62235e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000956916, Final residual = 6.28861e-05, No Iterations 4
ExecutionTime = 194.76 s ClockTime = 197 s
Time = 1355
smoothSolver: Solving for Ux, Initial residual = 0.000450605, Final residual = 2.81266e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0029002, Final residual = 0.000177053, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00948606, Final residual = 6.66116e-05, No Iterations 4
time step continuity errors : sum local = 0.000165411, global = -1.91759e-05, cumulative = -0.313775
smoothSolver: Solving for omega, Initial residual = 0.000169783, Final residual = 1.61998e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000956596, Final residual = 6.28871e-05, No Iterations 4
ExecutionTime = 194.9 s ClockTime = 197 s
Time = 1356
smoothSolver: Solving for Ux, Initial residual = 0.000450109, Final residual = 2.81024e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0029001, Final residual = 0.000177055, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00947614, Final residual = 6.66152e-05, No Iterations 4
time step continuity errors : sum local = 0.000165404, global = -1.91611e-05, cumulative = -0.313794
smoothSolver: Solving for omega, Initial residual = 0.000169501, Final residual = 1.61757e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000956236, Final residual = 6.28854e-05, No Iterations 4
ExecutionTime = 195.04 s ClockTime = 197 s
Time = 1357
smoothSolver: Solving for Ux, Initial residual = 0.000449609, Final residual = 2.80774e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289989, Final residual = 0.000177054, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00944222, Final residual = 6.6867e-05, No Iterations 4
time step continuity errors : sum local = 0.000166008, global = -1.91522e-05, cumulative = -0.313813
smoothSolver: Solving for omega, Initial residual = 0.000169221, Final residual = 1.61514e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000955869, Final residual = 6.28825e-05, No Iterations 4
ExecutionTime = 195.17 s ClockTime = 197 s
Time = 1358
smoothSolver: Solving for Ux, Initial residual = 0.000449097, Final residual = 2.80517e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289967, Final residual = 0.000177052, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00940706, Final residual = 6.70848e-05, No Iterations 4
time step continuity errors : sum local = 0.000166532, global = -1.91422e-05, cumulative = -0.313832
smoothSolver: Solving for omega, Initial residual = 0.000168942, Final residual = 1.61274e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000955479, Final residual = 6.28785e-05, No Iterations 4
ExecutionTime = 195.31 s ClockTime = 197 s
Time = 1359
smoothSolver: Solving for Ux, Initial residual = 0.000448575, Final residual = 2.80254e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028994, Final residual = 0.000177045, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00938017, Final residual = 6.70978e-05, No Iterations 4
time step continuity errors : sum local = 0.000166538, global = -1.91443e-05, cumulative = -0.313851
smoothSolver: Solving for omega, Initial residual = 0.000168656, Final residual = 1.61032e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000955054, Final residual = 6.2872e-05, No Iterations 4
ExecutionTime = 195.44 s ClockTime = 198 s
Time = 1360
smoothSolver: Solving for Ux, Initial residual = 0.000448049, Final residual = 2.79983e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289919, Final residual = 0.00017704, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00935227, Final residual = 6.68662e-05, No Iterations 4
time step continuity errors : sum local = 0.000165939, global = -1.91535e-05, cumulative = -0.31387
smoothSolver: Solving for omega, Initial residual = 0.00016837, Final residual = 1.60786e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000954618, Final residual = 6.28646e-05, No Iterations 4
ExecutionTime = 195.57 s ClockTime = 198 s
Time = 1361
smoothSolver: Solving for Ux, Initial residual = 0.000447518, Final residual = 2.79708e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028989, Final residual = 0.000177035, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00933384, Final residual = 6.64741e-05, No Iterations 4
time step continuity errors : sum local = 0.00016495, global = -1.91427e-05, cumulative = -0.313889
smoothSolver: Solving for omega, Initial residual = 0.000168082, Final residual = 1.60533e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000954173, Final residual = 6.28561e-05, No Iterations 4
ExecutionTime = 195.71 s ClockTime = 198 s
Time = 1362
smoothSolver: Solving for Ux, Initial residual = 0.000446982, Final residual = 2.79429e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289859, Final residual = 0.000177026, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00932173, Final residual = 6.59974e-05, No Iterations 4
time step continuity errors : sum local = 0.000163755, global = -1.90925e-05, cumulative = -0.313909
smoothSolver: Solving for omega, Initial residual = 0.000167795, Final residual = 1.60277e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000953692, Final residual = 6.28454e-05, No Iterations 4
ExecutionTime = 195.86 s ClockTime = 198 s
Time = 1363
smoothSolver: Solving for Ux, Initial residual = 0.000446441, Final residual = 2.79145e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289823, Final residual = 0.000177013, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00930976, Final residual = 6.55399e-05, No Iterations 4
time step continuity errors : sum local = 0.000162609, global = -1.89953e-05, cumulative = -0.313928
smoothSolver: Solving for omega, Initial residual = 0.000167506, Final residual = 1.60021e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000953188, Final residual = 6.28333e-05, No Iterations 4
ExecutionTime = 195.99 s ClockTime = 198 s
Time = 1364
smoothSolver: Solving for Ux, Initial residual = 0.000445894, Final residual = 2.78856e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289795, Final residual = 0.000177004, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00928965, Final residual = 6.51324e-05, No Iterations 4
time step continuity errors : sum local = 0.000161586, global = -1.88689e-05, cumulative = -0.313946
smoothSolver: Solving for omega, Initial residual = 0.000167212, Final residual = 1.59763e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000952683, Final residual = 6.282e-05, No Iterations 4
ExecutionTime = 196.14 s ClockTime = 198 s
Time = 1365
smoothSolver: Solving for Ux, Initial residual = 0.000445343, Final residual = 2.78562e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0028976, Final residual = 0.000176996, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00925956, Final residual = 6.47084e-05, No Iterations 4
time step continuity errors : sum local = 0.000160513, global = -1.87303e-05, cumulative = -0.313965
smoothSolver: Solving for omega, Initial residual = 0.000166919, Final residual = 1.59501e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000952139, Final residual = 6.28052e-05, No Iterations 4
ExecutionTime = 196.27 s ClockTime = 198 s
Time = 1366
smoothSolver: Solving for Ux, Initial residual = 0.000444787, Final residual = 2.78262e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289729, Final residual = 0.000176986, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00921486, Final residual = 6.42411e-05, No Iterations 4
time step continuity errors : sum local = 0.000159327, global = -1.85942e-05, cumulative = -0.313984
smoothSolver: Solving for omega, Initial residual = 0.000166626, Final residual = 1.59235e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000951584, Final residual = 6.27887e-05, No Iterations 4
ExecutionTime = 196.4 s ClockTime = 199 s
Time = 1367
smoothSolver: Solving for Ux, Initial residual = 0.000444229, Final residual = 2.77959e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289696, Final residual = 0.000176972, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00916352, Final residual = 6.36776e-05, No Iterations 4
time step continuity errors : sum local = 0.000157899, global = -1.84415e-05, cumulative = -0.314002
smoothSolver: Solving for omega, Initial residual = 0.000166333, Final residual = 1.58965e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000951015, Final residual = 6.27712e-05, No Iterations 4
ExecutionTime = 196.54 s ClockTime = 199 s
Time = 1368
smoothSolver: Solving for Ux, Initial residual = 0.000443666, Final residual = 2.7765e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289668, Final residual = 0.000176964, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00912189, Final residual = 6.30126e-05, No Iterations 4
time step continuity errors : sum local = 0.000156226, global = -1.82722e-05, cumulative = -0.31402
smoothSolver: Solving for omega, Initial residual = 0.000166041, Final residual = 1.58697e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000950427, Final residual = 6.27523e-05, No Iterations 4
ExecutionTime = 196.67 s ClockTime = 199 s
Time = 1369
smoothSolver: Solving for Ux, Initial residual = 0.0004431, Final residual = 2.77337e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289639, Final residual = 0.000176958, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00909933, Final residual = 6.23492e-05, No Iterations 4
time step continuity errors : sum local = 0.000154557, global = -1.80919e-05, cumulative = -0.314039
smoothSolver: Solving for omega, Initial residual = 0.00016574, Final residual = 1.58426e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000949822, Final residual = 6.27317e-05, No Iterations 4
ExecutionTime = 196.8 s ClockTime = 199 s
Time = 1370
smoothSolver: Solving for Ux, Initial residual = 0.000442533, Final residual = 2.77021e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289616, Final residual = 0.000176955, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00908147, Final residual = 6.1728e-05, No Iterations 4
time step continuity errors : sum local = 0.000152997, global = -1.79215e-05, cumulative = -0.314056
smoothSolver: Solving for omega, Initial residual = 0.000165445, Final residual = 1.58153e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000949196, Final residual = 6.271e-05, No Iterations 4
ExecutionTime = 196.95 s ClockTime = 199 s
Time = 1371
smoothSolver: Solving for Ux, Initial residual = 0.000441962, Final residual = 2.767e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289599, Final residual = 0.000176949, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00906369, Final residual = 6.10218e-05, No Iterations 4
time step continuity errors : sum local = 0.000151223, global = -1.77465e-05, cumulative = -0.314074
smoothSolver: Solving for omega, Initial residual = 0.000165149, Final residual = 1.57878e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000948557, Final residual = 6.26871e-05, No Iterations 4
ExecutionTime = 197.09 s ClockTime = 199 s
Time = 1372
smoothSolver: Solving for Ux, Initial residual = 0.000441391, Final residual = 2.76378e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289582, Final residual = 0.000176947, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00904272, Final residual = 6.02731e-05, No Iterations 4
time step continuity errors : sum local = 0.00014934, global = -1.75701e-05, cumulative = -0.314092
smoothSolver: Solving for omega, Initial residual = 0.000164851, Final residual = 1.57598e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000947904, Final residual = 6.2663e-05, No Iterations 4
ExecutionTime = 197.23 s ClockTime = 199 s
Time = 1373
smoothSolver: Solving for Ux, Initial residual = 0.000440817, Final residual = 2.7605e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289561, Final residual = 0.000176945, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00901375, Final residual = 5.92431e-05, No Iterations 4
time step continuity errors : sum local = 0.000146761, global = -1.70709e-05, cumulative = -0.314109
smoothSolver: Solving for omega, Initial residual = 0.00016455, Final residual = 1.57315e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000947237, Final residual = 6.26374e-05, No Iterations 4
ExecutionTime = 197.37 s ClockTime = 200 s
Time = 1374
smoothSolver: Solving for Ux, Initial residual = 0.00044024, Final residual = 2.75721e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289546, Final residual = 0.000176946, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00898659, Final residual = 5.83819e-05, No Iterations 4
time step continuity errors : sum local = 0.000144602, global = -1.67632e-05, cumulative = -0.314126
smoothSolver: Solving for omega, Initial residual = 0.000164247, Final residual = 1.57029e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000946559, Final residual = 6.26114e-05, No Iterations 4
ExecutionTime = 197.51 s ClockTime = 200 s
Time = 1375
smoothSolver: Solving for Ux, Initial residual = 0.000439663, Final residual = 2.75389e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289537, Final residual = 0.000176945, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00894086, Final residual = 5.75392e-05, No Iterations 4
time step continuity errors : sum local = 0.000142491, global = -1.64365e-05, cumulative = -0.314142
smoothSolver: Solving for omega, Initial residual = 0.000163946, Final residual = 1.56741e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000945864, Final residual = 6.25838e-05, No Iterations 4
ExecutionTime = 197.64 s ClockTime = 200 s
Time = 1376
smoothSolver: Solving for Ux, Initial residual = 0.000439087, Final residual = 2.75054e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289536, Final residual = 0.00017695, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00890596, Final residual = 5.67423e-05, No Iterations 4
time step continuity errors : sum local = 0.000140495, global = -1.61168e-05, cumulative = -0.314158
smoothSolver: Solving for omega, Initial residual = 0.000163644, Final residual = 1.56452e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000945153, Final residual = 6.25546e-05, No Iterations 4
ExecutionTime = 197.78 s ClockTime = 200 s
Time = 1377
smoothSolver: Solving for Ux, Initial residual = 0.000438508, Final residual = 2.7472e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289537, Final residual = 0.000176959, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00886395, Final residual = 5.59812e-05, No Iterations 4
time step continuity errors : sum local = 0.00013858, global = -1.58209e-05, cumulative = -0.314174
smoothSolver: Solving for omega, Initial residual = 0.000163341, Final residual = 1.56161e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00094444, Final residual = 6.25253e-05, No Iterations 4
ExecutionTime = 197.92 s ClockTime = 200 s
Time = 1378
smoothSolver: Solving for Ux, Initial residual = 0.000437931, Final residual = 2.74382e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289541, Final residual = 0.000176971, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0087979, Final residual = 5.51988e-05, No Iterations 4
time step continuity errors : sum local = 0.000136605, global = -1.55327e-05, cumulative = -0.31419
smoothSolver: Solving for omega, Initial residual = 0.000163038, Final residual = 1.55866e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000943705, Final residual = 6.24948e-05, No Iterations 4
ExecutionTime = 198.05 s ClockTime = 200 s
Time = 1379
smoothSolver: Solving for Ux, Initial residual = 0.000437352, Final residual = 2.74045e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289547, Final residual = 0.000176983, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00873416, Final residual = 5.43717e-05, No Iterations 4
time step continuity errors : sum local = 0.000134524, global = -1.52452e-05, cumulative = -0.314205
smoothSolver: Solving for omega, Initial residual = 0.00016273, Final residual = 1.5557e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000942968, Final residual = 6.24631e-05, No Iterations 4
ExecutionTime = 198.19 s ClockTime = 200 s
Time = 1380
smoothSolver: Solving for Ux, Initial residual = 0.000436777, Final residual = 2.73705e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289561, Final residual = 0.000176998, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00869354, Final residual = 5.34577e-05, No Iterations 4
time step continuity errors : sum local = 0.000132231, global = -1.49353e-05, cumulative = -0.31422
smoothSolver: Solving for omega, Initial residual = 0.000162427, Final residual = 1.55272e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000942226, Final residual = 6.24305e-05, No Iterations 4
ExecutionTime = 198.33 s ClockTime = 200 s
Time = 1381
smoothSolver: Solving for Ux, Initial residual = 0.000436201, Final residual = 2.7336e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289586, Final residual = 0.000177018, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00867997, Final residual = 5.24876e-05, No Iterations 4
time step continuity errors : sum local = 0.000129802, global = -1.45918e-05, cumulative = -0.314234
smoothSolver: Solving for omega, Initial residual = 0.000162122, Final residual = 1.54974e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000941466, Final residual = 6.23973e-05, No Iterations 4
ExecutionTime = 198.47 s ClockTime = 201 s
Time = 1382
smoothSolver: Solving for Ux, Initial residual = 0.000435627, Final residual = 2.73017e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289614, Final residual = 0.000177043, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00867916, Final residual = 5.14773e-05, No Iterations 4
time step continuity errors : sum local = 0.00012728, global = -1.41995e-05, cumulative = -0.314248
smoothSolver: Solving for omega, Initial residual = 0.000161818, Final residual = 1.54673e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000940695, Final residual = 6.23629e-05, No Iterations 4
ExecutionTime = 198.6 s ClockTime = 201 s
Time = 1383
smoothSolver: Solving for Ux, Initial residual = 0.000435054, Final residual = 2.72674e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289643, Final residual = 0.000177072, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00866898, Final residual = 5.06077e-05, No Iterations 4
time step continuity errors : sum local = 0.000125097, global = -1.38332e-05, cumulative = -0.314262
smoothSolver: Solving for omega, Initial residual = 0.000161511, Final residual = 1.54371e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000939922, Final residual = 6.23274e-05, No Iterations 4
ExecutionTime = 198.73 s ClockTime = 201 s
Time = 1384
smoothSolver: Solving for Ux, Initial residual = 0.000434484, Final residual = 2.7233e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289682, Final residual = 0.000177103, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00863886, Final residual = 4.99899e-05, No Iterations 4
time step continuity errors : sum local = 0.000123535, global = -1.33926e-05, cumulative = -0.314276
smoothSolver: Solving for omega, Initial residual = 0.000161201, Final residual = 1.54063e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000939139, Final residual = 6.22918e-05, No Iterations 4
ExecutionTime = 198.87 s ClockTime = 201 s
Time = 1385
smoothSolver: Solving for Ux, Initial residual = 0.000433916, Final residual = 2.71984e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289731, Final residual = 0.000177137, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00860009, Final residual = 4.93186e-05, No Iterations 4
time step continuity errors : sum local = 0.000121842, global = -1.30615e-05, cumulative = -0.314289
smoothSolver: Solving for omega, Initial residual = 0.000160895, Final residual = 1.53756e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000938349, Final residual = 6.22556e-05, No Iterations 4
ExecutionTime = 199.02 s ClockTime = 201 s
Time = 1386
smoothSolver: Solving for Ux, Initial residual = 0.000433352, Final residual = 2.71636e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289786, Final residual = 0.000177174, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00856562, Final residual = 4.86933e-05, No Iterations 4
time step continuity errors : sum local = 0.000120262, global = -1.27338e-05, cumulative = -0.314302
smoothSolver: Solving for omega, Initial residual = 0.000160589, Final residual = 1.53447e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000937553, Final residual = 6.22182e-05, No Iterations 4
ExecutionTime = 199.16 s ClockTime = 201 s
Time = 1387
smoothSolver: Solving for Ux, Initial residual = 0.000432789, Final residual = 2.71292e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289844, Final residual = 0.000177218, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00853147, Final residual = 4.80977e-05, No Iterations 4
time step continuity errors : sum local = 0.000118758, global = -1.23992e-05, cumulative = -0.314314
smoothSolver: Solving for omega, Initial residual = 0.000160281, Final residual = 1.53137e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000936756, Final residual = 6.21802e-05, No Iterations 4
ExecutionTime = 199.3 s ClockTime = 201 s
Time = 1388
smoothSolver: Solving for Ux, Initial residual = 0.000432229, Final residual = 2.70948e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289912, Final residual = 0.000177271, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00850392, Final residual = 4.75544e-05, No Iterations 4
time step continuity errors : sum local = 0.000117385, global = -1.20338e-05, cumulative = -0.314326
smoothSolver: Solving for omega, Initial residual = 0.000159972, Final residual = 1.52825e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000935947, Final residual = 6.21418e-05, No Iterations 4
ExecutionTime = 199.44 s ClockTime = 202 s
Time = 1389
smoothSolver: Solving for Ux, Initial residual = 0.000431676, Final residual = 2.70602e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289996, Final residual = 0.000177328, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00845844, Final residual = 4.70515e-05, No Iterations 4
time step continuity errors : sum local = 0.000116104, global = -1.16065e-05, cumulative = -0.314338
smoothSolver: Solving for omega, Initial residual = 0.000159669, Final residual = 1.52514e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00093513, Final residual = 6.21026e-05, No Iterations 4
ExecutionTime = 199.57 s ClockTime = 202 s
Time = 1390
smoothSolver: Solving for Ux, Initial residual = 0.000431128, Final residual = 2.70258e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290093, Final residual = 0.000177389, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00840475, Final residual = 4.66218e-05, No Iterations 4
time step continuity errors : sum local = 0.000115002, global = -1.11176e-05, cumulative = -0.314349
smoothSolver: Solving for omega, Initial residual = 0.000159367, Final residual = 1.52201e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000934314, Final residual = 6.20626e-05, No Iterations 4
ExecutionTime = 199.71 s ClockTime = 202 s
Time = 1391
smoothSolver: Solving for Ux, Initial residual = 0.000430584, Final residual = 2.69917e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290204, Final residual = 0.00017745, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00835641, Final residual = 4.62808e-05, No Iterations 4
time step continuity errors : sum local = 0.000114122, global = -1.06074e-05, cumulative = -0.314359
smoothSolver: Solving for omega, Initial residual = 0.000159066, Final residual = 1.51887e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000933497, Final residual = 6.20226e-05, No Iterations 4
ExecutionTime = 199.85 s ClockTime = 202 s
Time = 1392
smoothSolver: Solving for Ux, Initial residual = 0.000430046, Final residual = 2.69578e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290319, Final residual = 0.000177522, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00834589, Final residual = 4.60051e-05, No Iterations 4
time step continuity errors : sum local = 0.000113404, global = -1.00881e-05, cumulative = -0.314369
smoothSolver: Solving for omega, Initial residual = 0.000158763, Final residual = 1.51574e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000932674, Final residual = 6.19817e-05, No Iterations 4
ExecutionTime = 199.99 s ClockTime = 202 s
Time = 1393
smoothSolver: Solving for Ux, Initial residual = 0.000429514, Final residual = 2.69239e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290446, Final residual = 0.000177599, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00835802, Final residual = 4.57442e-05, No Iterations 4
time step continuity errors : sum local = 0.000112726, global = -9.52471e-06, cumulative = -0.314379
smoothSolver: Solving for omega, Initial residual = 0.000158457, Final residual = 1.5126e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000931842, Final residual = 6.194e-05, No Iterations 4
ExecutionTime = 200.13 s ClockTime = 202 s
Time = 1394
smoothSolver: Solving for Ux, Initial residual = 0.000428987, Final residual = 2.68902e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290579, Final residual = 0.000177683, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0083358, Final residual = 4.55397e-05, No Iterations 4
time step continuity errors : sum local = 0.000112189, global = -8.97032e-06, cumulative = -0.314388
smoothSolver: Solving for omega, Initial residual = 0.000158159, Final residual = 1.50946e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000931011, Final residual = 6.18976e-05, No Iterations 4
ExecutionTime = 200.26 s ClockTime = 202 s
Time = 1395
smoothSolver: Solving for Ux, Initial residual = 0.000428463, Final residual = 2.68566e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290723, Final residual = 0.000177768, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00830629, Final residual = 4.54093e-05, No Iterations 4
time step continuity errors : sum local = 0.000111824, global = -8.43304e-06, cumulative = -0.314396
smoothSolver: Solving for omega, Initial residual = 0.000157859, Final residual = 1.50629e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000930178, Final residual = 6.18558e-05, No Iterations 4
ExecutionTime = 200.4 s ClockTime = 203 s
Time = 1396
smoothSolver: Solving for Ux, Initial residual = 0.000427942, Final residual = 2.68232e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290866, Final residual = 0.000177854, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00827594, Final residual = 4.52998e-05, No Iterations 4
time step continuity errors : sum local = 0.000111511, global = -7.83768e-06, cumulative = -0.314404
smoothSolver: Solving for omega, Initial residual = 0.00015756, Final residual = 1.5031e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000929342, Final residual = 6.18129e-05, No Iterations 4
ExecutionTime = 200.53 s ClockTime = 203 s
Time = 1397
smoothSolver: Solving for Ux, Initial residual = 0.000427431, Final residual = 2.67901e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00291016, Final residual = 0.000177941, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00824655, Final residual = 4.52098e-05, No Iterations 4
time step continuity errors : sum local = 0.000111245, global = -7.15129e-06, cumulative = -0.314411
smoothSolver: Solving for omega, Initial residual = 0.000157265, Final residual = 1.49991e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000928499, Final residual = 6.17692e-05, No Iterations 4
ExecutionTime = 200.66 s ClockTime = 203 s
Time = 1398
smoothSolver: Solving for Ux, Initial residual = 0.000426927, Final residual = 2.67573e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0029117, Final residual = 0.000178033, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00822011, Final residual = 4.51266e-05, No Iterations 4
time step continuity errors : sum local = 0.000110996, global = -6.38366e-06, cumulative = -0.314418
smoothSolver: Solving for omega, Initial residual = 0.000156969, Final residual = 1.49672e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000927668, Final residual = 6.17257e-05, No Iterations 4
ExecutionTime = 200.8 s ClockTime = 203 s
Time = 1399
smoothSolver: Solving for Ux, Initial residual = 0.000426423, Final residual = 2.67247e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00291335, Final residual = 0.00017813, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0081983, Final residual = 4.50645e-05, No Iterations 4
time step continuity errors : sum local = 0.000110801, global = -5.53742e-06, cumulative = -0.314423
smoothSolver: Solving for omega, Initial residual = 0.000156677, Final residual = 1.49355e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000926825, Final residual = 6.16818e-05, No Iterations 4
ExecutionTime = 200.94 s ClockTime = 203 s
Time = 1400
smoothSolver: Solving for Ux, Initial residual = 0.000425926, Final residual = 2.66922e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00291506, Final residual = 0.00017823, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00816958, Final residual = 4.50413e-05, No Iterations 4
time step continuity errors : sum local = 0.000110698, global = -4.77561e-06, cumulative = -0.314428
smoothSolver: Solving for omega, Initial residual = 0.000156387, Final residual = 1.49036e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000925979, Final residual = 6.16372e-05, No Iterations 4
ExecutionTime = 201.29 s ClockTime = 203 s
Time = 1401
smoothSolver: Solving for Ux, Initial residual = 0.000425438, Final residual = 2.66601e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00291687, Final residual = 0.000178329, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00814159, Final residual = 4.48035e-05, No Iterations 4
time step continuity errors : sum local = 0.000110063, global = -3.84745e-06, cumulative = -0.314432
smoothSolver: Solving for omega, Initial residual = 0.000156099, Final residual = 1.48713e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000925132, Final residual = 6.15919e-05, No Iterations 4
ExecutionTime = 201.43 s ClockTime = 204 s
Time = 1402
smoothSolver: Solving for Ux, Initial residual = 0.000424955, Final residual = 2.66283e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00291868, Final residual = 0.000178429, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00810907, Final residual = 4.46475e-05, No Iterations 4
time step continuity errors : sum local = 0.000109632, global = -2.68737e-06, cumulative = -0.314435
smoothSolver: Solving for omega, Initial residual = 0.000155811, Final residual = 1.48391e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000924299, Final residual = 6.15477e-05, No Iterations 4
ExecutionTime = 201.56 s ClockTime = 204 s
Time = 1403
smoothSolver: Solving for Ux, Initial residual = 0.000424477, Final residual = 2.65967e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00292057, Final residual = 0.000178529, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00807317, Final residual = 4.42183e-05, No Iterations 4
time step continuity errors : sum local = 0.000108529, global = -1.52577e-06, cumulative = -0.314436
smoothSolver: Solving for omega, Initial residual = 0.000155525, Final residual = 1.4807e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000923453, Final residual = 6.15026e-05, No Iterations 4
ExecutionTime = 201.7 s ClockTime = 204 s
Time = 1404
smoothSolver: Solving for Ux, Initial residual = 0.000424004, Final residual = 2.65653e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00292247, Final residual = 0.000178633, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00804133, Final residual = 4.38283e-05, No Iterations 4
time step continuity errors : sum local = 0.000107523, global = -2.35452e-07, cumulative = -0.314436
smoothSolver: Solving for omega, Initial residual = 0.000155246, Final residual = 1.47751e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000922608, Final residual = 6.14567e-05, No Iterations 4
ExecutionTime = 201.84 s ClockTime = 204 s
Time = 1405
smoothSolver: Solving for Ux, Initial residual = 0.000423538, Final residual = 2.65342e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00292443, Final residual = 0.000178741, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00802396, Final residual = 4.36031e-05, No Iterations 4
time step continuity errors : sum local = 0.000106925, global = 9.61219e-07, cumulative = -0.314435
smoothSolver: Solving for omega, Initial residual = 0.000154967, Final residual = 1.47433e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000921763, Final residual = 6.14109e-05, No Iterations 4
ExecutionTime = 201.98 s ClockTime = 204 s
Time = 1406
smoothSolver: Solving for Ux, Initial residual = 0.000423081, Final residual = 2.65035e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00292651, Final residual = 0.000178849, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00801414, Final residual = 4.35159e-05, No Iterations 4
time step continuity errors : sum local = 0.000106659, global = 2.47018e-06, cumulative = -0.314433
smoothSolver: Solving for omega, Initial residual = 0.000154687, Final residual = 1.47113e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000920928, Final residual = 6.13654e-05, No Iterations 4
ExecutionTime = 202.12 s ClockTime = 204 s
Time = 1407
smoothSolver: Solving for Ux, Initial residual = 0.000422631, Final residual = 2.6473e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0029286, Final residual = 0.000178956, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00800046, Final residual = 4.3496e-05, No Iterations 4
time step continuity errors : sum local = 0.000106559, global = 3.86973e-06, cumulative = -0.314429
smoothSolver: Solving for omega, Initial residual = 0.000154407, Final residual = 1.46791e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000920085, Final residual = 6.13195e-05, No Iterations 4
ExecutionTime = 202.26 s ClockTime = 204 s
Time = 1408
smoothSolver: Solving for Ux, Initial residual = 0.000422186, Final residual = 2.64431e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00293064, Final residual = 0.000179063, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00799001, Final residual = 4.3554e-05, No Iterations 4
time step continuity errors : sum local = 0.000106651, global = 5.236e-06, cumulative = -0.314424
smoothSolver: Solving for omega, Initial residual = 0.000154132, Final residual = 1.46472e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000919246, Final residual = 6.12729e-05, No Iterations 4
ExecutionTime = 202.39 s ClockTime = 205 s
Time = 1409
smoothSolver: Solving for Ux, Initial residual = 0.00042175, Final residual = 2.64136e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00293271, Final residual = 0.000179172, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00797674, Final residual = 4.36754e-05, No Iterations 4
time step continuity errors : sum local = 0.000106899, global = 6.62001e-06, cumulative = -0.314417
smoothSolver: Solving for omega, Initial residual = 0.000153858, Final residual = 1.46153e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000918416, Final residual = 6.12268e-05, No Iterations 4
ExecutionTime = 202.52 s ClockTime = 205 s
Time = 1410
smoothSolver: Solving for Ux, Initial residual = 0.00042132, Final residual = 2.63842e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00293481, Final residual = 0.000179285, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00796862, Final residual = 4.41571e-05, No Iterations 4
time step continuity errors : sum local = 0.000108028, global = 7.84155e-06, cumulative = -0.314409
smoothSolver: Solving for omega, Initial residual = 0.00015358, Final residual = 1.45833e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00091759, Final residual = 6.11809e-05, No Iterations 4
ExecutionTime = 202.67 s ClockTime = 205 s
Time = 1411
smoothSolver: Solving for Ux, Initial residual = 0.000420896, Final residual = 2.63552e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00293702, Final residual = 0.000179398, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00795001, Final residual = 4.46629e-05, No Iterations 4
time step continuity errors : sum local = 0.000109211, global = 8.92257e-06, cumulative = -0.3144
smoothSolver: Solving for omega, Initial residual = 0.000153307, Final residual = 1.45514e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00091676, Final residual = 6.11349e-05, No Iterations 4
ExecutionTime = 202.8 s ClockTime = 205 s
Time = 1412
smoothSolver: Solving for Ux, Initial residual = 0.000420481, Final residual = 2.63266e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00293923, Final residual = 0.00017951, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00793475, Final residual = 4.53545e-05, No Iterations 4
time step continuity errors : sum local = 0.000110841, global = 9.74343e-06, cumulative = -0.314391
smoothSolver: Solving for omega, Initial residual = 0.000153037, Final residual = 1.45193e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000915933, Final residual = 6.10887e-05, No Iterations 4
ExecutionTime = 202.94 s ClockTime = 205 s
Time = 1413
smoothSolver: Solving for Ux, Initial residual = 0.000420073, Final residual = 2.62985e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00294141, Final residual = 0.000179623, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00790775, Final residual = 4.61335e-05, No Iterations 4
time step continuity errors : sum local = 0.000112684, global = 1.02827e-05, cumulative = -0.31438
smoothSolver: Solving for omega, Initial residual = 0.000152771, Final residual = 1.44873e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000915116, Final residual = 6.10425e-05, No Iterations 4
ExecutionTime = 203.09 s ClockTime = 205 s
Time = 1414
smoothSolver: Solving for Ux, Initial residual = 0.000419674, Final residual = 2.62707e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00294357, Final residual = 0.000179737, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0078906, Final residual = 4.69226e-05, No Iterations 4
time step continuity errors : sum local = 0.00011455, global = 1.06053e-05, cumulative = -0.31437
smoothSolver: Solving for omega, Initial residual = 0.000152505, Final residual = 1.44553e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000914305, Final residual = 6.09967e-05, No Iterations 4
ExecutionTime = 203.23 s ClockTime = 205 s
Time = 1415
smoothSolver: Solving for Ux, Initial residual = 0.000419282, Final residual = 2.62432e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00294581, Final residual = 0.000179852, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00788013, Final residual = 4.76481e-05, No Iterations 4
time step continuity errors : sum local = 0.000116261, global = 1.07724e-05, cumulative = -0.314359
smoothSolver: Solving for omega, Initial residual = 0.000152239, Final residual = 1.44233e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000913499, Final residual = 6.09511e-05, No Iterations 4
ExecutionTime = 203.37 s ClockTime = 206 s
Time = 1416
smoothSolver: Solving for Ux, Initial residual = 0.000418899, Final residual = 2.62163e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00294812, Final residual = 0.000179971, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00786571, Final residual = 4.83331e-05, No Iterations 4
time step continuity errors : sum local = 0.000117873, global = 1.09058e-05, cumulative = -0.314348
smoothSolver: Solving for omega, Initial residual = 0.000151977, Final residual = 1.43915e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000912696, Final residual = 6.09054e-05, No Iterations 4
ExecutionTime = 203.5 s ClockTime = 206 s
Time = 1417
smoothSolver: Solving for Ux, Initial residual = 0.000418522, Final residual = 2.61899e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00295049, Final residual = 0.00018009, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00785151, Final residual = 4.89955e-05, No Iterations 4
time step continuity errors : sum local = 0.000119422, global = 1.11121e-05, cumulative = -0.314337
smoothSolver: Solving for omega, Initial residual = 0.000151719, Final residual = 1.436e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000911896, Final residual = 6.08595e-05, No Iterations 4
ExecutionTime = 203.64 s ClockTime = 206 s
Time = 1418
smoothSolver: Solving for Ux, Initial residual = 0.000418153, Final residual = 2.61637e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00295281, Final residual = 0.00018021, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00784531, Final residual = 4.96797e-05, No Iterations 4
time step continuity errors : sum local = 0.000121021, global = 1.14177e-05, cumulative = -0.314326
smoothSolver: Solving for omega, Initial residual = 0.000151462, Final residual = 1.43282e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000911103, Final residual = 6.08139e-05, No Iterations 4
ExecutionTime = 203.78 s ClockTime = 206 s
Time = 1419
smoothSolver: Solving for Ux, Initial residual = 0.000417793, Final residual = 2.61379e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00295514, Final residual = 0.00018033, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00783081, Final residual = 5.04063e-05, No Iterations 4
time step continuity errors : sum local = 0.000122723, global = 1.17915e-05, cumulative = -0.314314
smoothSolver: Solving for omega, Initial residual = 0.000151208, Final residual = 1.42966e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000910325, Final residual = 6.07694e-05, No Iterations 4
ExecutionTime = 203.91 s ClockTime = 206 s
Time = 1420
smoothSolver: Solving for Ux, Initial residual = 0.000417439, Final residual = 2.61126e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00295751, Final residual = 0.00018045, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00780622, Final residual = 5.11217e-05, No Iterations 4
time step continuity errors : sum local = 0.000124398, global = 1.21769e-05, cumulative = -0.314302
smoothSolver: Solving for omega, Initial residual = 0.000150952, Final residual = 1.42652e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000909548, Final residual = 6.07247e-05, No Iterations 4
ExecutionTime = 204.06 s ClockTime = 206 s
Time = 1421
smoothSolver: Solving for Ux, Initial residual = 0.000417093, Final residual = 2.60876e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00295996, Final residual = 0.000180576, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00781243, Final residual = 5.17999e-05, No Iterations 4
time step continuity errors : sum local = 0.000125982, global = 1.25158e-05, cumulative = -0.314289
smoothSolver: Solving for omega, Initial residual = 0.000150699, Final residual = 1.42341e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000908773, Final residual = 6.06798e-05, No Iterations 4
ExecutionTime = 204.2 s ClockTime = 206 s
Time = 1422
smoothSolver: Solving for Ux, Initial residual = 0.000416755, Final residual = 2.60633e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00296248, Final residual = 0.000180706, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00782348, Final residual = 5.243e-05, No Iterations 4
time step continuity errors : sum local = 0.000127446, global = 1.27858e-05, cumulative = -0.314276
smoothSolver: Solving for omega, Initial residual = 0.000150454, Final residual = 1.42032e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000908005, Final residual = 6.0635e-05, No Iterations 4
ExecutionTime = 204.34 s ClockTime = 207 s
Time = 1423
smoothSolver: Solving for Ux, Initial residual = 0.000416424, Final residual = 2.60394e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00296496, Final residual = 0.000180838, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00782929, Final residual = 5.30201e-05, No Iterations 4
time step continuity errors : sum local = 0.000128808, global = 1.29939e-05, cumulative = -0.314263
smoothSolver: Solving for omega, Initial residual = 0.000150208, Final residual = 1.41715e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000907252, Final residual = 6.05907e-05, No Iterations 4
ExecutionTime = 204.48 s ClockTime = 207 s
Time = 1424
smoothSolver: Solving for Ux, Initial residual = 0.000416102, Final residual = 2.60158e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0029674, Final residual = 0.000180969, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00781292, Final residual = 5.359e-05, No Iterations 4
time step continuity errors : sum local = 0.00013012, global = 1.31805e-05, cumulative = -0.31425
smoothSolver: Solving for omega, Initial residual = 0.00014996, Final residual = 1.41394e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000906504, Final residual = 6.05464e-05, No Iterations 4
ExecutionTime = 204.62 s ClockTime = 207 s
Time = 1425
smoothSolver: Solving for Ux, Initial residual = 0.00041579, Final residual = 2.59927e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00296983, Final residual = 0.0001811, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00780195, Final residual = 5.41691e-05, No Iterations 4
time step continuity errors : sum local = 0.000131452, global = 1.338e-05, cumulative = -0.314237
smoothSolver: Solving for omega, Initial residual = 0.000149715, Final residual = 1.41076e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000905761, Final residual = 6.05016e-05, No Iterations 4
ExecutionTime = 204.75 s ClockTime = 207 s
Time = 1426
smoothSolver: Solving for Ux, Initial residual = 0.000415482, Final residual = 2.59701e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00297229, Final residual = 0.000181233, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00779876, Final residual = 5.47897e-05, No Iterations 4
time step continuity errors : sum local = 0.000132884, global = 1.36284e-05, cumulative = -0.314223
smoothSolver: Solving for omega, Initial residual = 0.000149474, Final residual = 1.40759e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000905021, Final residual = 6.04568e-05, No Iterations 4
ExecutionTime = 204.89 s ClockTime = 207 s
Time = 1427
smoothSolver: Solving for Ux, Initial residual = 0.000415182, Final residual = 2.59481e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00297485, Final residual = 0.000181372, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00779915, Final residual = 5.54609e-05, No Iterations 4
time step continuity errors : sum local = 0.000134438, global = 1.39435e-05, cumulative = -0.314209
smoothSolver: Solving for omega, Initial residual = 0.000149234, Final residual = 1.40444e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000904275, Final residual = 6.0412e-05, No Iterations 4
ExecutionTime = 205.03 s ClockTime = 207 s
Time = 1428
smoothSolver: Solving for Ux, Initial residual = 0.000414894, Final residual = 2.59265e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00297739, Final residual = 0.000181516, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00778481, Final residual = 5.6158e-05, No Iterations 4
time step continuity errors : sum local = 0.000136044, global = 1.43186e-05, cumulative = -0.314195
smoothSolver: Solving for omega, Initial residual = 0.000148996, Final residual = 1.40128e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00090353, Final residual = 6.03668e-05, No Iterations 4
ExecutionTime = 205.17 s ClockTime = 207 s
Time = 1429
smoothSolver: Solving for Ux, Initial residual = 0.000414611, Final residual = 2.59053e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00297993, Final residual = 0.000181662, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00776617, Final residual = 5.68162e-05, No Iterations 4
time step continuity errors : sum local = 0.000137556, global = 1.46944e-05, cumulative = -0.31418
smoothSolver: Solving for omega, Initial residual = 0.000148763, Final residual = 1.39813e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000902797, Final residual = 6.0322e-05, No Iterations 4
ExecutionTime = 205.31 s ClockTime = 208 s
Time = 1430
smoothSolver: Solving for Ux, Initial residual = 0.000414336, Final residual = 2.58846e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00298247, Final residual = 0.000181806, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00774653, Final residual = 5.74475e-05, No Iterations 4
time step continuity errors : sum local = 0.000139002, global = 1.50555e-05, cumulative = -0.314165
smoothSolver: Solving for omega, Initial residual = 0.000148529, Final residual = 1.395e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000902063, Final residual = 6.02773e-05, No Iterations 4
ExecutionTime = 205.45 s ClockTime = 208 s
Time = 1431
smoothSolver: Solving for Ux, Initial residual = 0.000414069, Final residual = 2.58643e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.002985, Final residual = 0.000181955, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00773321, Final residual = 5.80375e-05, No Iterations 4
time step continuity errors : sum local = 0.000140348, global = 1.53862e-05, cumulative = -0.31415
smoothSolver: Solving for omega, Initial residual = 0.0001483, Final residual = 1.39189e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000901327, Final residual = 6.02325e-05, No Iterations 4
ExecutionTime = 205.59 s ClockTime = 208 s
Time = 1432
smoothSolver: Solving for Ux, Initial residual = 0.000413811, Final residual = 2.58446e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00298763, Final residual = 0.000182107, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00772252, Final residual = 5.86023e-05, No Iterations 4
time step continuity errors : sum local = 0.000141634, global = 1.57045e-05, cumulative = -0.314134
smoothSolver: Solving for omega, Initial residual = 0.000148071, Final residual = 1.38879e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000900589, Final residual = 6.0187e-05, No Iterations 4
ExecutionTime = 205.72 s ClockTime = 208 s
Time = 1433
smoothSolver: Solving for Ux, Initial residual = 0.000413563, Final residual = 2.58255e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00299031, Final residual = 0.000182264, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00769719, Final residual = 5.91755e-05, No Iterations 4
time step continuity errors : sum local = 0.000142934, global = 1.6032e-05, cumulative = -0.314118
smoothSolver: Solving for omega, Initial residual = 0.000147848, Final residual = 1.38572e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000899861, Final residual = 6.0142e-05, No Iterations 4
ExecutionTime = 205.86 s ClockTime = 208 s
Time = 1434
smoothSolver: Solving for Ux, Initial residual = 0.000413324, Final residual = 2.58068e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00299297, Final residual = 0.000182426, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00768328, Final residual = 5.97918e-05, No Iterations 4
time step continuity errors : sum local = 0.000144336, global = 1.6401e-05, cumulative = -0.314102
smoothSolver: Solving for omega, Initial residual = 0.000147627, Final residual = 1.38268e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000899128, Final residual = 6.00968e-05, No Iterations 4
ExecutionTime = 205.99 s ClockTime = 208 s
Time = 1435
smoothSolver: Solving for Ux, Initial residual = 0.000413091, Final residual = 2.57885e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00299565, Final residual = 0.000182592, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00767067, Final residual = 6.04353e-05, No Iterations 4
time step continuity errors : sum local = 0.000145805, global = 1.68238e-05, cumulative = -0.314085
smoothSolver: Solving for omega, Initial residual = 0.000147406, Final residual = 1.37961e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000898399, Final residual = 6.00519e-05, No Iterations 4
ExecutionTime = 206.12 s ClockTime = 208 s
Time = 1436
smoothSolver: Solving for Ux, Initial residual = 0.000412867, Final residual = 2.57709e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00299833, Final residual = 0.000182759, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00765597, Final residual = 6.10212e-05, No Iterations 4
time step continuity errors : sum local = 0.000147134, global = 1.72477e-05, cumulative = -0.314067
smoothSolver: Solving for omega, Initial residual = 0.000147187, Final residual = 1.37658e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000897675, Final residual = 6.00071e-05, No Iterations 4
ExecutionTime = 206.26 s ClockTime = 209 s
Time = 1437
smoothSolver: Solving for Ux, Initial residual = 0.000412653, Final residual = 2.57539e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0030011, Final residual = 0.000182931, No Iterations 4
GAMG: Solving for p, Initial residual = 0.007648, Final residual = 6.15681e-05, No Iterations 4
time step continuity errors : sum local = 0.000148374, global = 1.76729e-05, cumulative = -0.31405
smoothSolver: Solving for omega, Initial residual = 0.000146968, Final residual = 1.37356e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00089696, Final residual = 5.99625e-05, No Iterations 4
ExecutionTime = 206.39 s ClockTime = 209 s
Time = 1438
smoothSolver: Solving for Ux, Initial residual = 0.000412446, Final residual = 2.57374e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00300396, Final residual = 0.000183108, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0076377, Final residual = 6.21094e-05, No Iterations 4
time step continuity errors : sum local = 0.0001496, global = 1.81028e-05, cumulative = -0.314032
smoothSolver: Solving for omega, Initial residual = 0.000146754, Final residual = 1.37057e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000896239, Final residual = 5.99175e-05, No Iterations 4
ExecutionTime = 206.54 s ClockTime = 209 s
Time = 1439
smoothSolver: Solving for Ux, Initial residual = 0.000412245, Final residual = 2.57214e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00300683, Final residual = 0.000183293, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00762409, Final residual = 6.26524e-05, No Iterations 4
time step continuity errors : sum local = 0.000150821, global = 1.85362e-05, cumulative = -0.314013
smoothSolver: Solving for omega, Initial residual = 0.00014654, Final residual = 1.36761e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00089552, Final residual = 5.98726e-05, No Iterations 4
ExecutionTime = 206.68 s ClockTime = 209 s
Time = 1440
smoothSolver: Solving for Ux, Initial residual = 0.000412052, Final residual = 2.57057e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00300972, Final residual = 0.000183481, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00760482, Final residual = 6.31981e-05, No Iterations 4
time step continuity errors : sum local = 0.00015205, global = 1.89631e-05, cumulative = -0.313994
smoothSolver: Solving for omega, Initial residual = 0.000146329, Final residual = 1.36465e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000894808, Final residual = 5.98283e-05, No Iterations 4
ExecutionTime = 206.81 s ClockTime = 209 s
Time = 1441
smoothSolver: Solving for Ux, Initial residual = 0.000411867, Final residual = 2.56906e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00301265, Final residual = 0.000183673, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00759278, Final residual = 6.37192e-05, No Iterations 4
time step continuity errors : sum local = 0.000153221, global = 1.93596e-05, cumulative = -0.313975
smoothSolver: Solving for omega, Initial residual = 0.000146115, Final residual = 1.36168e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000894098, Final residual = 5.97839e-05, No Iterations 4
ExecutionTime = 206.95 s ClockTime = 209 s
Time = 1442
smoothSolver: Solving for Ux, Initial residual = 0.00041169, Final residual = 2.5676e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00301563, Final residual = 0.000183868, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00758993, Final residual = 6.42073e-05, No Iterations 4
time step continuity errors : sum local = 0.000154313, global = 1.9737e-05, cumulative = -0.313955
smoothSolver: Solving for omega, Initial residual = 0.000145903, Final residual = 1.35874e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000893391, Final residual = 5.97393e-05, No Iterations 4
ExecutionTime = 207.09 s ClockTime = 209 s
Time = 1443
smoothSolver: Solving for Ux, Initial residual = 0.000411518, Final residual = 2.56617e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00301871, Final residual = 0.000184071, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0075826, Final residual = 6.46561e-05, No Iterations 4
time step continuity errors : sum local = 0.000155313, global = 2.01146e-05, cumulative = -0.313935
smoothSolver: Solving for omega, Initial residual = 0.000145699, Final residual = 1.35583e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000892685, Final residual = 5.9695e-05, No Iterations 4
ExecutionTime = 207.22 s ClockTime = 209 s
Time = 1444
smoothSolver: Solving for Ux, Initial residual = 0.000411355, Final residual = 2.56477e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00302185, Final residual = 0.000184281, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00755824, Final residual = 6.50466e-05, No Iterations 4
time step continuity errors : sum local = 0.000156163, global = 2.0495e-05, cumulative = -0.313914
smoothSolver: Solving for omega, Initial residual = 0.000145494, Final residual = 1.35294e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000891987, Final residual = 5.96513e-05, No Iterations 4
ExecutionTime = 207.37 s ClockTime = 210 s
Time = 1445
smoothSolver: Solving for Ux, Initial residual = 0.000411194, Final residual = 2.56341e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00302503, Final residual = 0.000184498, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00754459, Final residual = 6.53816e-05, No Iterations 4
time step continuity errors : sum local = 0.000156881, global = 2.08801e-05, cumulative = -0.313894
smoothSolver: Solving for omega, Initial residual = 0.00014529, Final residual = 1.35005e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000891291, Final residual = 5.96075e-05, No Iterations 4
ExecutionTime = 207.51 s ClockTime = 210 s
Time = 1446
smoothSolver: Solving for Ux, Initial residual = 0.000411038, Final residual = 2.56209e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00302824, Final residual = 0.000184718, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00753656, Final residual = 6.56777e-05, No Iterations 4
time step continuity errors : sum local = 0.000157509, global = 2.12543e-05, cumulative = -0.313872
smoothSolver: Solving for omega, Initial residual = 0.000145085, Final residual = 1.34715e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000890596, Final residual = 5.95636e-05, No Iterations 4
ExecutionTime = 207.64 s ClockTime = 210 s
Time = 1447
smoothSolver: Solving for Ux, Initial residual = 0.000410888, Final residual = 2.5608e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0030315, Final residual = 0.000184943, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00752249, Final residual = 6.59622e-05, No Iterations 4
time step continuity errors : sum local = 0.000158108, global = 2.16201e-05, cumulative = -0.313851
smoothSolver: Solving for omega, Initial residual = 0.000144882, Final residual = 1.34427e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000889911, Final residual = 5.95201e-05, No Iterations 4
ExecutionTime = 207.78 s ClockTime = 210 s
Time = 1448
smoothSolver: Solving for Ux, Initial residual = 0.000410744, Final residual = 2.55954e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00303486, Final residual = 0.000185173, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00750268, Final residual = 6.6259e-05, No Iterations 4
time step continuity errors : sum local = 0.00015874, global = 2.19788e-05, cumulative = -0.313829
smoothSolver: Solving for omega, Initial residual = 0.000144678, Final residual = 1.34141e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000889228, Final residual = 5.94771e-05, No Iterations 4
ExecutionTime = 207.93 s ClockTime = 210 s
Time = 1449
smoothSolver: Solving for Ux, Initial residual = 0.000410605, Final residual = 2.55834e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00303834, Final residual = 0.000185411, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00748095, Final residual = 6.65601e-05, No Iterations 4
time step continuity errors : sum local = 0.000159378, global = 2.23155e-05, cumulative = -0.313806
smoothSolver: Solving for omega, Initial residual = 0.000144474, Final residual = 1.33855e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000888546, Final residual = 5.94338e-05, No Iterations 4
ExecutionTime = 208.07 s ClockTime = 210 s
Time = 1450
smoothSolver: Solving for Ux, Initial residual = 0.000410471, Final residual = 2.55714e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00304185, Final residual = 0.000185657, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00746388, Final residual = 6.68545e-05, No Iterations 4
time step continuity errors : sum local = 0.000159998, global = 2.26327e-05, cumulative = -0.313784
smoothSolver: Solving for omega, Initial residual = 0.000144274, Final residual = 1.33573e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000887873, Final residual = 5.93909e-05, No Iterations 4
ExecutionTime = 208.41 s ClockTime = 211 s
Time = 1451
smoothSolver: Solving for Ux, Initial residual = 0.00041034, Final residual = 2.55598e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00304542, Final residual = 0.000185911, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00744789, Final residual = 6.71291e-05, No Iterations 4
time step continuity errors : sum local = 0.000160573, global = 2.29593e-05, cumulative = -0.313761
smoothSolver: Solving for omega, Initial residual = 0.000144073, Final residual = 1.33289e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000887208, Final residual = 5.93486e-05, No Iterations 4
ExecutionTime = 208.54 s ClockTime = 211 s
Time = 1452
smoothSolver: Solving for Ux, Initial residual = 0.000410212, Final residual = 2.55486e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00304905, Final residual = 0.000186167, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00743022, Final residual = 6.73689e-05, No Iterations 4
time step continuity errors : sum local = 0.000161066, global = 2.32897e-05, cumulative = -0.313738
smoothSolver: Solving for omega, Initial residual = 0.000143872, Final residual = 1.33005e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000886542, Final residual = 5.93065e-05, No Iterations 4
ExecutionTime = 208.68 s ClockTime = 211 s
Time = 1453
smoothSolver: Solving for Ux, Initial residual = 0.000410087, Final residual = 2.55376e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00305279, Final residual = 0.000186431, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00741839, Final residual = 6.75466e-05, No Iterations 4
time step continuity errors : sum local = 0.000161413, global = 2.36112e-05, cumulative = -0.313714
smoothSolver: Solving for omega, Initial residual = 0.000143674, Final residual = 1.32722e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000885883, Final residual = 5.92644e-05, No Iterations 4
ExecutionTime = 208.81 s ClockTime = 211 s
Time = 1454
smoothSolver: Solving for Ux, Initial residual = 0.000409968, Final residual = 2.55271e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0030566, Final residual = 0.000186702, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00740826, Final residual = 6.76777e-05, No Iterations 4
time step continuity errors : sum local = 0.00016165, global = 2.39081e-05, cumulative = -0.31369
smoothSolver: Solving for omega, Initial residual = 0.000143476, Final residual = 1.32442e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000885231, Final residual = 5.92226e-05, No Iterations 4
ExecutionTime = 208.95 s ClockTime = 211 s
Time = 1455
smoothSolver: Solving for Ux, Initial residual = 0.000409853, Final residual = 2.55167e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00306044, Final residual = 0.000186981, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00738958, Final residual = 6.7796e-05, No Iterations 4
time step continuity errors : sum local = 0.000161852, global = 2.41803e-05, cumulative = -0.313666
smoothSolver: Solving for omega, Initial residual = 0.000143277, Final residual = 1.32163e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000884584, Final residual = 5.91813e-05, No Iterations 4
ExecutionTime = 209.09 s ClockTime = 211 s
Time = 1456
smoothSolver: Solving for Ux, Initial residual = 0.000409738, Final residual = 2.55066e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00306436, Final residual = 0.000187267, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00737245, Final residual = 6.78863e-05, No Iterations 4
time step continuity errors : sum local = 0.000161991, global = 2.44216e-05, cumulative = -0.313641
smoothSolver: Solving for omega, Initial residual = 0.00014308, Final residual = 1.31885e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000883939, Final residual = 5.91405e-05, No Iterations 4
ExecutionTime = 209.22 s ClockTime = 212 s
Time = 1457
smoothSolver: Solving for Ux, Initial residual = 0.000409627, Final residual = 2.54966e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00306842, Final residual = 0.000187562, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00736304, Final residual = 6.79621e-05, No Iterations 4
time step continuity errors : sum local = 0.0001621, global = 2.46555e-05, cumulative = -0.313617
smoothSolver: Solving for omega, Initial residual = 0.000142881, Final residual = 1.31606e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000883303, Final residual = 5.90996e-05, No Iterations 4
ExecutionTime = 209.37 s ClockTime = 212 s
Time = 1458
smoothSolver: Solving for Ux, Initial residual = 0.000409521, Final residual = 2.54869e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00307259, Final residual = 0.000187863, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00735396, Final residual = 6.8024e-05, No Iterations 4
time step continuity errors : sum local = 0.000162178, global = 2.48839e-05, cumulative = -0.313592
smoothSolver: Solving for omega, Initial residual = 0.000142681, Final residual = 1.31328e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000882679, Final residual = 5.90594e-05, No Iterations 4
ExecutionTime = 209.5 s ClockTime = 212 s
Time = 1459
smoothSolver: Solving for Ux, Initial residual = 0.000409416, Final residual = 2.54777e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00307687, Final residual = 0.000188172, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00734308, Final residual = 6.81139e-05, No Iterations 4
time step continuity errors : sum local = 0.000162327, global = 2.51288e-05, cumulative = -0.313567
smoothSolver: Solving for omega, Initial residual = 0.000142485, Final residual = 1.31054e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000882056, Final residual = 5.90196e-05, No Iterations 4
ExecutionTime = 209.63 s ClockTime = 212 s
Time = 1460
smoothSolver: Solving for Ux, Initial residual = 0.000409314, Final residual = 2.54687e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0030812, Final residual = 0.000188487, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00732364, Final residual = 6.82245e-05, No Iterations 4
time step continuity errors : sum local = 0.000162518, global = 2.53738e-05, cumulative = -0.313541
smoothSolver: Solving for omega, Initial residual = 0.000142291, Final residual = 1.3078e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000881441, Final residual = 5.89803e-05, No Iterations 4
ExecutionTime = 209.77 s ClockTime = 212 s
Time = 1461
smoothSolver: Solving for Ux, Initial residual = 0.000409214, Final residual = 2.54597e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00308556, Final residual = 0.000188806, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00731247, Final residual = 6.82593e-05, No Iterations 4
time step continuity errors : sum local = 0.000162531, global = 2.55653e-05, cumulative = -0.313516
smoothSolver: Solving for omega, Initial residual = 0.000142092, Final residual = 1.30507e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000880834, Final residual = 5.89412e-05, No Iterations 4
ExecutionTime = 209.91 s ClockTime = 212 s
Time = 1462
smoothSolver: Solving for Ux, Initial residual = 0.000409116, Final residual = 2.54511e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00309006, Final residual = 0.00018913, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00731237, Final residual = 6.82523e-05, No Iterations 4
time step continuity errors : sum local = 0.000162448, global = 2.57369e-05, cumulative = -0.31349
smoothSolver: Solving for omega, Initial residual = 0.000141893, Final residual = 1.30234e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000880239, Final residual = 5.89028e-05, No Iterations 4
ExecutionTime = 210.05 s ClockTime = 212 s
Time = 1463
smoothSolver: Solving for Ux, Initial residual = 0.000409019, Final residual = 2.54427e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00309466, Final residual = 0.000189461, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00730859, Final residual = 6.82279e-05, No Iterations 4
time step continuity errors : sum local = 0.000162325, global = 2.5922e-05, cumulative = -0.313464
smoothSolver: Solving for omega, Initial residual = 0.000141697, Final residual = 1.29963e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000879646, Final residual = 5.88647e-05, No Iterations 4
ExecutionTime = 210.19 s ClockTime = 212 s
Time = 1464
smoothSolver: Solving for Ux, Initial residual = 0.000408926, Final residual = 2.54343e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00309929, Final residual = 0.000189799, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00730418, Final residual = 6.81801e-05, No Iterations 4
time step continuity errors : sum local = 0.000162148, global = 2.61162e-05, cumulative = -0.313438
smoothSolver: Solving for omega, Initial residual = 0.000141501, Final residual = 1.29693e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000879056, Final residual = 5.88269e-05, No Iterations 4
ExecutionTime = 210.33 s ClockTime = 213 s
Time = 1465
smoothSolver: Solving for Ux, Initial residual = 0.000408834, Final residual = 2.54262e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00310394, Final residual = 0.000190136, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0072923, Final residual = 6.81367e-05, No Iterations 4
time step continuity errors : sum local = 0.000161976, global = 2.63117e-05, cumulative = -0.313412
smoothSolver: Solving for omega, Initial residual = 0.000141307, Final residual = 1.29425e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000878477, Final residual = 5.87894e-05, No Iterations 4
ExecutionTime = 210.47 s ClockTime = 213 s
Time = 1466
smoothSolver: Solving for Ux, Initial residual = 0.000408744, Final residual = 2.54184e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00310865, Final residual = 0.000190473, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00728615, Final residual = 6.81125e-05, No Iterations 4
time step continuity errors : sum local = 0.000161848, global = 2.64927e-05, cumulative = -0.313385
smoothSolver: Solving for omega, Initial residual = 0.000141111, Final residual = 1.29159e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000877913, Final residual = 5.87527e-05, No Iterations 4
ExecutionTime = 210.6 s ClockTime = 213 s
Time = 1467
smoothSolver: Solving for Ux, Initial residual = 0.000408652, Final residual = 2.54107e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00311339, Final residual = 0.000190808, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00728143, Final residual = 6.8061e-05, No Iterations 4
time step continuity errors : sum local = 0.00016166, global = 2.66287e-05, cumulative = -0.313359
smoothSolver: Solving for omega, Initial residual = 0.000140912, Final residual = 1.28893e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000877345, Final residual = 5.87163e-05, No Iterations 4
ExecutionTime = 210.74 s ClockTime = 213 s
Time = 1468
smoothSolver: Solving for Ux, Initial residual = 0.00040856, Final residual = 2.54032e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00311813, Final residual = 0.000191147, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00728078, Final residual = 6.79179e-05, No Iterations 4
time step continuity errors : sum local = 0.000161256, global = 2.66937e-05, cumulative = -0.313332
smoothSolver: Solving for omega, Initial residual = 0.000140715, Final residual = 1.28626e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000876782, Final residual = 5.86802e-05, No Iterations 4
ExecutionTime = 210.87 s ClockTime = 213 s
Time = 1469
smoothSolver: Solving for Ux, Initial residual = 0.000408472, Final residual = 2.53959e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00312287, Final residual = 0.000191486, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00727755, Final residual = 6.7679e-05, No Iterations 4
time step continuity errors : sum local = 0.000160626, global = 2.66997e-05, cumulative = -0.313305
smoothSolver: Solving for omega, Initial residual = 0.000140518, Final residual = 1.28361e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000876233, Final residual = 5.86445e-05, No Iterations 4
ExecutionTime = 211.01 s ClockTime = 213 s
Time = 1470
smoothSolver: Solving for Ux, Initial residual = 0.000408387, Final residual = 2.53887e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00312758, Final residual = 0.000191823, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0072749, Final residual = 6.73784e-05, No Iterations 4
time step continuity errors : sum local = 0.000159846, global = 2.66727e-05, cumulative = -0.313279
smoothSolver: Solving for omega, Initial residual = 0.000140319, Final residual = 1.28097e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000875693, Final residual = 5.86097e-05, No Iterations 4
ExecutionTime = 211.15 s ClockTime = 213 s
Time = 1471
smoothSolver: Solving for Ux, Initial residual = 0.000408303, Final residual = 2.53816e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00313227, Final residual = 0.000192158, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00727484, Final residual = 6.70885e-05, No Iterations 4
time step continuity errors : sum local = 0.00015909, global = 2.66582e-05, cumulative = -0.313252
smoothSolver: Solving for omega, Initial residual = 0.000140122, Final residual = 1.27834e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000875154, Final residual = 5.85751e-05, No Iterations 4
ExecutionTime = 211.29 s ClockTime = 214 s
Time = 1472
smoothSolver: Solving for Ux, Initial residual = 0.000408217, Final residual = 2.53749e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0031369, Final residual = 0.00019249, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00727296, Final residual = 6.67992e-05, No Iterations 4
time step continuity errors : sum local = 0.00015834, global = 2.66616e-05, cumulative = -0.313225
smoothSolver: Solving for omega, Initial residual = 0.000139924, Final residual = 1.27571e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000874618, Final residual = 5.85408e-05, No Iterations 4
ExecutionTime = 211.42 s ClockTime = 214 s
Time = 1473
smoothSolver: Solving for Ux, Initial residual = 0.00040813, Final residual = 2.53682e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00314148, Final residual = 0.000192822, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00726882, Final residual = 6.65173e-05, No Iterations 4
time step continuity errors : sum local = 0.000157611, global = 2.66416e-05, cumulative = -0.313199
smoothSolver: Solving for omega, Initial residual = 0.000139724, Final residual = 1.27307e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000874099, Final residual = 5.8507e-05, No Iterations 4
ExecutionTime = 211.56 s ClockTime = 214 s
Time = 1474
smoothSolver: Solving for Ux, Initial residual = 0.000408044, Final residual = 2.53617e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00314601, Final residual = 0.000193156, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00726604, Final residual = 6.62299e-05, No Iterations 4
time step continuity errors : sum local = 0.000156871, global = 2.66066e-05, cumulative = -0.313172
smoothSolver: Solving for omega, Initial residual = 0.000139523, Final residual = 1.27044e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000873576, Final residual = 5.84736e-05, No Iterations 4
ExecutionTime = 211.7 s ClockTime = 214 s
Time = 1475
smoothSolver: Solving for Ux, Initial residual = 0.000407959, Final residual = 2.53551e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00315052, Final residual = 0.000193488, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00725923, Final residual = 6.58887e-05, No Iterations 4
time step continuity errors : sum local = 0.000156003, global = 2.64976e-05, cumulative = -0.313145
smoothSolver: Solving for omega, Initial residual = 0.000139324, Final residual = 1.26782e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000873057, Final residual = 5.84407e-05, No Iterations 4
ExecutionTime = 211.84 s ClockTime = 214 s
Time = 1476
smoothSolver: Solving for Ux, Initial residual = 0.000407872, Final residual = 2.53486e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.003155, Final residual = 0.000193817, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00725159, Final residual = 6.54502e-05, No Iterations 4
time step continuity errors : sum local = 0.000154899, global = 2.62877e-05, cumulative = -0.313119
smoothSolver: Solving for omega, Initial residual = 0.000139122, Final residual = 1.2652e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000872544, Final residual = 5.84082e-05, No Iterations 4
ExecutionTime = 211.97 s ClockTime = 214 s
Time = 1477
smoothSolver: Solving for Ux, Initial residual = 0.000407785, Final residual = 2.53423e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00315939, Final residual = 0.000194142, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00724489, Final residual = 6.49329e-05, No Iterations 4
time step continuity errors : sum local = 0.000153614, global = 2.60569e-05, cumulative = -0.313093
smoothSolver: Solving for omega, Initial residual = 0.000138918, Final residual = 1.26259e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000872045, Final residual = 5.83763e-05, No Iterations 4
ExecutionTime = 212.11 s ClockTime = 214 s
Time = 1478
smoothSolver: Solving for Ux, Initial residual = 0.000407697, Final residual = 2.53359e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0031637, Final residual = 0.000194464, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00724489, Final residual = 6.43824e-05, No Iterations 4
time step continuity errors : sum local = 0.000152254, global = 2.57952e-05, cumulative = -0.313067
smoothSolver: Solving for omega, Initial residual = 0.000138711, Final residual = 1.25997e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000871544, Final residual = 5.83446e-05, No Iterations 4
ExecutionTime = 212.25 s ClockTime = 215 s
Time = 1479
smoothSolver: Solving for Ux, Initial residual = 0.000407606, Final residual = 2.53295e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00316796, Final residual = 0.000194785, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00724282, Final residual = 6.38643e-05, No Iterations 4
time step continuity errors : sum local = 0.000150974, global = 2.55388e-05, cumulative = -0.313042
smoothSolver: Solving for omega, Initial residual = 0.000138504, Final residual = 1.25733e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000871039, Final residual = 5.83128e-05, No Iterations 4
ExecutionTime = 212.39 s ClockTime = 215 s
Time = 1480
smoothSolver: Solving for Ux, Initial residual = 0.000407511, Final residual = 2.5323e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00317217, Final residual = 0.000195105, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0072313, Final residual = 6.33672e-05, No Iterations 4
time step continuity errors : sum local = 0.000149744, global = 2.5266e-05, cumulative = -0.313017
smoothSolver: Solving for omega, Initial residual = 0.000138298, Final residual = 1.25471e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000870543, Final residual = 5.82821e-05, No Iterations 4
ExecutionTime = 212.52 s ClockTime = 215 s
Time = 1481
smoothSolver: Solving for Ux, Initial residual = 0.000407413, Final residual = 2.53164e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00317636, Final residual = 0.000195422, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00723013, Final residual = 6.27861e-05, No Iterations 4
time step continuity errors : sum local = 0.000148311, global = 2.48843e-05, cumulative = -0.312992
smoothSolver: Solving for omega, Initial residual = 0.000138093, Final residual = 1.25209e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000870071, Final residual = 5.82524e-05, No Iterations 4
ExecutionTime = 212.66 s ClockTime = 215 s
Time = 1482
smoothSolver: Solving for Ux, Initial residual = 0.000407319, Final residual = 2.53099e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00318044, Final residual = 0.000195734, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00723024, Final residual = 6.20788e-05, No Iterations 4
time step continuity errors : sum local = 0.000146584, global = 2.43793e-05, cumulative = -0.312967
smoothSolver: Solving for omega, Initial residual = 0.000137886, Final residual = 1.24947e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000869595, Final residual = 5.82228e-05, No Iterations 4
ExecutionTime = 212.79 s ClockTime = 215 s
Time = 1483
smoothSolver: Solving for Ux, Initial residual = 0.00040722, Final residual = 2.53036e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00318444, Final residual = 0.00019604, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00722778, Final residual = 6.12814e-05, No Iterations 4
time step continuity errors : sum local = 0.000144649, global = 2.37878e-05, cumulative = -0.312943
smoothSolver: Solving for omega, Initial residual = 0.000137677, Final residual = 1.24685e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000869114, Final residual = 5.81928e-05, No Iterations 4
ExecutionTime = 212.94 s ClockTime = 215 s
Time = 1484
smoothSolver: Solving for Ux, Initial residual = 0.000407117, Final residual = 2.52972e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00318836, Final residual = 0.000196345, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00723041, Final residual = 6.04489e-05, No Iterations 4
time step continuity errors : sum local = 0.000142634, global = 2.31925e-05, cumulative = -0.31292
smoothSolver: Solving for omega, Initial residual = 0.000137469, Final residual = 1.24421e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000868628, Final residual = 5.81627e-05, No Iterations 4
ExecutionTime = 213.08 s ClockTime = 215 s
Time = 1485
smoothSolver: Solving for Ux, Initial residual = 0.000407013, Final residual = 2.52906e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00319219, Final residual = 0.000196647, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00723496, Final residual = 5.9683e-05, No Iterations 4
time step continuity errors : sum local = 0.000140778, global = 2.26823e-05, cumulative = -0.312898
smoothSolver: Solving for omega, Initial residual = 0.000137259, Final residual = 1.24159e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000868166, Final residual = 5.8134e-05, No Iterations 4
ExecutionTime = 213.22 s ClockTime = 216 s
Time = 1486
smoothSolver: Solving for Ux, Initial residual = 0.000406905, Final residual = 2.52839e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00319598, Final residual = 0.000196946, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00723211, Final residual = 5.89519e-05, No Iterations 4
time step continuity errors : sum local = 0.000139001, global = 2.22071e-05, cumulative = -0.312875
smoothSolver: Solving for omega, Initial residual = 0.000137046, Final residual = 1.23898e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000867705, Final residual = 5.81064e-05, No Iterations 4
ExecutionTime = 213.35 s ClockTime = 216 s
Time = 1487
smoothSolver: Solving for Ux, Initial residual = 0.000406795, Final residual = 2.52772e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00319966, Final residual = 0.000197239, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0072346, Final residual = 5.82604e-05, No Iterations 4
time step continuity errors : sum local = 0.000137322, global = 2.17497e-05, cumulative = -0.312854
smoothSolver: Solving for omega, Initial residual = 0.000136836, Final residual = 1.23637e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000867244, Final residual = 5.80786e-05, No Iterations 4
ExecutionTime = 213.49 s ClockTime = 216 s
Time = 1488
smoothSolver: Solving for Ux, Initial residual = 0.000406682, Final residual = 2.52705e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00320324, Final residual = 0.000197526, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00723788, Final residual = 5.74247e-05, No Iterations 4
time step continuity errors : sum local = 0.000135306, global = 2.11843e-05, cumulative = -0.312832
smoothSolver: Solving for omega, Initial residual = 0.000136623, Final residual = 1.23375e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000866781, Final residual = 5.80507e-05, No Iterations 4
ExecutionTime = 213.63 s ClockTime = 216 s
Time = 1489
smoothSolver: Solving for Ux, Initial residual = 0.000406565, Final residual = 2.52637e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00320673, Final residual = 0.000197808, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00723273, Final residual = 5.6411e-05, No Iterations 4
time step continuity errors : sum local = 0.000132875, global = 2.04872e-05, cumulative = -0.312812
smoothSolver: Solving for omega, Initial residual = 0.00013641, Final residual = 1.23112e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000866331, Final residual = 5.80231e-05, No Iterations 4
ExecutionTime = 213.77 s ClockTime = 216 s
Time = 1490
smoothSolver: Solving for Ux, Initial residual = 0.000406444, Final residual = 2.52568e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00321012, Final residual = 0.000198087, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0072245, Final residual = 5.53239e-05, No Iterations 4
time step continuity errors : sum local = 0.000130269, global = 1.97401e-05, cumulative = -0.312792
smoothSolver: Solving for omega, Initial residual = 0.000136197, Final residual = 1.22849e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000865886, Final residual = 5.79966e-05, No Iterations 4
ExecutionTime = 213.91 s ClockTime = 216 s
Time = 1491
smoothSolver: Solving for Ux, Initial residual = 0.000406319, Final residual = 2.52497e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00321339, Final residual = 0.00019836, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00722141, Final residual = 5.42706e-05, No Iterations 4
time step continuity errors : sum local = 0.000127744, global = 1.90768e-05, cumulative = -0.312773
smoothSolver: Solving for omega, Initial residual = 0.000135984, Final residual = 1.22589e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000865436, Final residual = 5.79702e-05, No Iterations 4
ExecutionTime = 214.04 s ClockTime = 216 s
Time = 1492
smoothSolver: Solving for Ux, Initial residual = 0.000406192, Final residual = 2.52425e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00321657, Final residual = 0.000198626, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00721462, Final residual = 5.33511e-05, No Iterations 4
time step continuity errors : sum local = 0.000125537, global = 1.85191e-05, cumulative = -0.312755
smoothSolver: Solving for omega, Initial residual = 0.000135769, Final residual = 1.22328e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000864985, Final residual = 5.79438e-05, No Iterations 4
ExecutionTime = 214.18 s ClockTime = 217 s
Time = 1493
smoothSolver: Solving for Ux, Initial residual = 0.000406059, Final residual = 2.52351e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00321964, Final residual = 0.000198885, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00721067, Final residual = 5.23204e-05, No Iterations 4
time step continuity errors : sum local = 0.00012307, global = 1.78958e-05, cumulative = -0.312737
smoothSolver: Solving for omega, Initial residual = 0.000135554, Final residual = 1.22065e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000864545, Final residual = 5.79178e-05, No Iterations 4
ExecutionTime = 214.32 s ClockTime = 217 s
Time = 1494
smoothSolver: Solving for Ux, Initial residual = 0.00040592, Final residual = 2.52274e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0032226, Final residual = 0.000199138, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00719682, Final residual = 5.10692e-05, No Iterations 4
time step continuity errors : sum local = 0.000120082, global = 1.70667e-05, cumulative = -0.31272
smoothSolver: Solving for omega, Initial residual = 0.000135335, Final residual = 1.21803e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000864112, Final residual = 5.78927e-05, No Iterations 4
ExecutionTime = 214.45 s ClockTime = 217 s
Time = 1495
smoothSolver: Solving for Ux, Initial residual = 0.000405776, Final residual = 2.52196e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00322543, Final residual = 0.000199387, No Iterations 4
GAMG: Solving for p, Initial residual = 0.007188, Final residual = 4.97331e-05, No Iterations 4
time step continuity errors : sum local = 0.000116896, global = 1.60943e-05, cumulative = -0.312704
smoothSolver: Solving for omega, Initial residual = 0.000135116, Final residual = 1.2154e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000863676, Final residual = 5.78677e-05, No Iterations 4
ExecutionTime = 214.59 s ClockTime = 217 s
Time = 1496
smoothSolver: Solving for Ux, Initial residual = 0.000405627, Final residual = 2.52115e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00322814, Final residual = 0.00019963, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00719043, Final residual = 4.83003e-05, No Iterations 4
time step continuity errors : sum local = 0.000113486, global = 1.50334e-05, cumulative = -0.312689
smoothSolver: Solving for omega, Initial residual = 0.000134898, Final residual = 1.2128e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000863242, Final residual = 5.78429e-05, No Iterations 4
ExecutionTime = 214.73 s ClockTime = 217 s
Time = 1497
smoothSolver: Solving for Ux, Initial residual = 0.000405473, Final residual = 2.52032e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00323077, Final residual = 0.000199868, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00719646, Final residual = 4.68462e-05, No Iterations 4
time step continuity errors : sum local = 0.00011003, global = 1.39615e-05, cumulative = -0.312675
smoothSolver: Solving for omega, Initial residual = 0.000134674, Final residual = 1.2102e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000862811, Final residual = 5.78183e-05, No Iterations 4
ExecutionTime = 214.86 s ClockTime = 217 s
Time = 1498
smoothSolver: Solving for Ux, Initial residual = 0.000405314, Final residual = 2.51949e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00323333, Final residual = 0.0002001, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00719348, Final residual = 4.56312e-05, No Iterations 4
time step continuity errors : sum local = 0.00010714, global = 1.3074e-05, cumulative = -0.312662
smoothSolver: Solving for omega, Initial residual = 0.000134451, Final residual = 1.20759e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000862385, Final residual = 5.77942e-05, No Iterations 4
ExecutionTime = 215 s ClockTime = 217 s
Time = 1499
smoothSolver: Solving for Ux, Initial residual = 0.000405151, Final residual = 2.51863e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00323577, Final residual = 0.000200322, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00719712, Final residual = 4.47436e-05, No Iterations 4
time step continuity errors : sum local = 0.000105023, global = 1.24053e-05, cumulative = -0.312649
smoothSolver: Solving for omega, Initial residual = 0.000134226, Final residual = 1.20499e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000861956, Final residual = 5.77706e-05, No Iterations 4
ExecutionTime = 215.15 s ClockTime = 218 s
Time = 1500
smoothSolver: Solving for Ux, Initial residual = 0.000404981, Final residual = 2.51774e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00323809, Final residual = 0.000200541, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0072018, Final residual = 4.40371e-05, No Iterations 4
time step continuity errors : sum local = 0.000103334, global = 1.17824e-05, cumulative = -0.312637
smoothSolver: Solving for omega, Initial residual = 0.000134002, Final residual = 1.20239e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000861531, Final residual = 5.77473e-05, No Iterations 4
ExecutionTime = 215.5 s ClockTime = 218 s
Time = 1501
smoothSolver: Solving for Ux, Initial residual = 0.000404806, Final residual = 2.51683e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00324026, Final residual = 0.000200755, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00719104, Final residual = 4.33692e-05, No Iterations 4
time step continuity errors : sum local = 0.000101736, global = 1.10963e-05, cumulative = -0.312626
smoothSolver: Solving for omega, Initial residual = 0.000133774, Final residual = 1.19979e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000861107, Final residual = 5.7724e-05, No Iterations 4
ExecutionTime = 215.64 s ClockTime = 218 s
Time = 1502
smoothSolver: Solving for Ux, Initial residual = 0.000404625, Final residual = 2.51591e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00324233, Final residual = 0.000200963, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00718077, Final residual = 4.26108e-05, No Iterations 4
time step continuity errors : sum local = 9.99293e-05, global = 1.02902e-05, cumulative = -0.312616
smoothSolver: Solving for omega, Initial residual = 0.000133547, Final residual = 1.1972e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000860687, Final residual = 5.77009e-05, No Iterations 4
ExecutionTime = 215.81 s ClockTime = 218 s
Time = 1503
smoothSolver: Solving for Ux, Initial residual = 0.00040444, Final residual = 2.51495e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00324435, Final residual = 0.000201167, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00718627, Final residual = 4.17356e-05, No Iterations 4
time step continuity errors : sum local = 9.78504e-05, global = 9.32224e-06, cumulative = -0.312607
smoothSolver: Solving for omega, Initial residual = 0.000133315, Final residual = 1.19459e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000860267, Final residual = 5.76784e-05, No Iterations 4
ExecutionTime = 215.95 s ClockTime = 218 s
Time = 1504
smoothSolver: Solving for Ux, Initial residual = 0.000404247, Final residual = 2.51397e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00324631, Final residual = 0.000201364, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00719381, Final residual = 4.08107e-05, No Iterations 4
time step continuity errors : sum local = 9.56556e-05, global = 8.12891e-06, cumulative = -0.312598
smoothSolver: Solving for omega, Initial residual = 0.000133079, Final residual = 1.19198e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00085985, Final residual = 5.76561e-05, No Iterations 4
ExecutionTime = 216.1 s ClockTime = 218 s
Time = 1505
smoothSolver: Solving for Ux, Initial residual = 0.000404049, Final residual = 2.51297e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00324818, Final residual = 0.000201555, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00718723, Final residual = 4.00744e-05, No Iterations 4
time step continuity errors : sum local = 9.39044e-05, global = 6.58617e-06, cumulative = -0.312592
smoothSolver: Solving for omega, Initial residual = 0.000132845, Final residual = 1.18938e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000859434, Final residual = 5.7634e-05, No Iterations 4
ExecutionTime = 216.24 s ClockTime = 219 s
Time = 1506
smoothSolver: Solving for Ux, Initial residual = 0.000403846, Final residual = 2.51195e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00324994, Final residual = 0.000201744, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00717873, Final residual = 3.9718e-05, No Iterations 4
time step continuity errors : sum local = 9.30454e-05, global = 4.7212e-06, cumulative = -0.312587
smoothSolver: Solving for omega, Initial residual = 0.00013261, Final residual = 1.18677e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00085902, Final residual = 5.76121e-05, No Iterations 4
ExecutionTime = 216.39 s ClockTime = 219 s
Time = 1507
smoothSolver: Solving for Ux, Initial residual = 0.000403637, Final residual = 2.51091e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00325158, Final residual = 0.000201929, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00716851, Final residual = 3.94235e-05, No Iterations 4
time step continuity errors : sum local = 9.23327e-05, global = 2.839e-06, cumulative = -0.312584
smoothSolver: Solving for omega, Initial residual = 0.000132375, Final residual = 1.18417e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000858602, Final residual = 5.75906e-05, No Iterations 4
ExecutionTime = 216.53 s ClockTime = 219 s
Time = 1508
smoothSolver: Solving for Ux, Initial residual = 0.000403422, Final residual = 2.50987e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00325314, Final residual = 0.000202109, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0071527, Final residual = 3.9993e-05, No Iterations 4
time step continuity errors : sum local = 9.36448e-05, global = 8.1778e-07, cumulative = -0.312584
smoothSolver: Solving for omega, Initial residual = 0.000132138, Final residual = 1.18157e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000858189, Final residual = 5.75693e-05, No Iterations 4
ExecutionTime = 216.7 s ClockTime = 219 s
Time = 1509
smoothSolver: Solving for Ux, Initial residual = 0.000403198, Final residual = 2.50877e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00325465, Final residual = 0.000202283, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00713119, Final residual = 4.09251e-05, No Iterations 4
time step continuity errors : sum local = 9.58052e-05, global = -1.25294e-06, cumulative = -0.312585
smoothSolver: Solving for omega, Initial residual = 0.000131899, Final residual = 1.17895e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000857778, Final residual = 5.75482e-05, No Iterations 4
ExecutionTime = 216.86 s ClockTime = 219 s
Time = 1510
smoothSolver: Solving for Ux, Initial residual = 0.000402969, Final residual = 2.50764e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00325608, Final residual = 0.00020245, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00710512, Final residual = 4.19517e-05, No Iterations 4
time step continuity errors : sum local = 9.81847e-05, global = -3.43569e-06, cumulative = -0.312588
smoothSolver: Solving for omega, Initial residual = 0.000131658, Final residual = 1.17633e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00085737, Final residual = 5.75271e-05, No Iterations 4
ExecutionTime = 217.01 s ClockTime = 219 s
Time = 1511
smoothSolver: Solving for Ux, Initial residual = 0.000402735, Final residual = 2.50647e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00325743, Final residual = 0.000202614, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00709281, Final residual = 4.22542e-05, No Iterations 4
time step continuity errors : sum local = 9.88691e-05, global = -5.21525e-06, cumulative = -0.312593
smoothSolver: Solving for omega, Initial residual = 0.000131416, Final residual = 1.1737e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000856961, Final residual = 5.75066e-05, No Iterations 4
ExecutionTime = 217.17 s ClockTime = 220 s
Time = 1512
smoothSolver: Solving for Ux, Initial residual = 0.000402492, Final residual = 2.50527e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00325869, Final residual = 0.000202776, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00708245, Final residual = 4.25571e-05, No Iterations 4
time step continuity errors : sum local = 9.9555e-05, global = -6.35636e-06, cumulative = -0.3126
smoothSolver: Solving for omega, Initial residual = 0.000131171, Final residual = 1.17107e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000856551, Final residual = 5.74861e-05, No Iterations 4
ExecutionTime = 217.33 s ClockTime = 220 s
Time = 1513
smoothSolver: Solving for Ux, Initial residual = 0.000402241, Final residual = 2.50405e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00325986, Final residual = 0.000202934, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00706758, Final residual = 4.28009e-05, No Iterations 4
time step continuity errors : sum local = 0.000100104, global = -6.70323e-06, cumulative = -0.312606
smoothSolver: Solving for omega, Initial residual = 0.000130925, Final residual = 1.16841e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000856146, Final residual = 5.7466e-05, No Iterations 4
ExecutionTime = 217.49 s ClockTime = 220 s
Time = 1514
smoothSolver: Solving for Ux, Initial residual = 0.000401983, Final residual = 2.50279e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326096, Final residual = 0.000203087, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00705283, Final residual = 4.34091e-05, No Iterations 4
time step continuity errors : sum local = 0.000101506, global = -6.19448e-06, cumulative = -0.312613
smoothSolver: Solving for omega, Initial residual = 0.000130678, Final residual = 1.16576e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000855742, Final residual = 5.74461e-05, No Iterations 4
ExecutionTime = 217.63 s ClockTime = 220 s
Time = 1515
smoothSolver: Solving for Ux, Initial residual = 0.000401719, Final residual = 2.5015e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326201, Final residual = 0.000203233, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00704271, Final residual = 4.43417e-05, No Iterations 4
time step continuity errors : sum local = 0.000103665, global = -4.93832e-06, cumulative = -0.312618
smoothSolver: Solving for omega, Initial residual = 0.000130429, Final residual = 1.16309e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000855337, Final residual = 5.74265e-05, No Iterations 4
ExecutionTime = 217.78 s ClockTime = 220 s
Time = 1516
smoothSolver: Solving for Ux, Initial residual = 0.000401449, Final residual = 2.50017e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326297, Final residual = 0.000203373, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00703584, Final residual = 4.54161e-05, No Iterations 4
time step continuity errors : sum local = 0.000106156, global = -3.54062e-06, cumulative = -0.312621
smoothSolver: Solving for omega, Initial residual = 0.000130178, Final residual = 1.16044e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000854933, Final residual = 5.7407e-05, No Iterations 4
ExecutionTime = 217.92 s ClockTime = 220 s
Time = 1517
smoothSolver: Solving for Ux, Initial residual = 0.000401172, Final residual = 2.4988e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326385, Final residual = 0.000203512, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00701062, Final residual = 4.63734e-05, No Iterations 4
time step continuity errors : sum local = 0.000108367, global = -2.45497e-06, cumulative = -0.312624
smoothSolver: Solving for omega, Initial residual = 0.000129928, Final residual = 1.15778e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000854531, Final residual = 5.73878e-05, No Iterations 4
ExecutionTime = 218.06 s ClockTime = 220 s
Time = 1518
smoothSolver: Solving for Ux, Initial residual = 0.000400886, Final residual = 2.4974e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326462, Final residual = 0.000203646, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00699283, Final residual = 4.69847e-05, No Iterations 4
time step continuity errors : sum local = 0.000109771, global = -1.70221e-06, cumulative = -0.312625
smoothSolver: Solving for omega, Initial residual = 0.000129669, Final residual = 1.15508e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000854127, Final residual = 5.73687e-05, No Iterations 4
ExecutionTime = 218.21 s ClockTime = 221 s
Time = 1519
smoothSolver: Solving for Ux, Initial residual = 0.000400593, Final residual = 2.49597e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326532, Final residual = 0.000203776, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0069818, Final residual = 4.73251e-05, No Iterations 4
time step continuity errors : sum local = 0.000110542, global = -1.24143e-06, cumulative = -0.312627
smoothSolver: Solving for omega, Initial residual = 0.000129411, Final residual = 1.1524e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000853726, Final residual = 5.735e-05, No Iterations 4
ExecutionTime = 218.35 s ClockTime = 221 s
Time = 1520
smoothSolver: Solving for Ux, Initial residual = 0.000400294, Final residual = 2.4945e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.003266, Final residual = 0.000203903, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00697159, Final residual = 4.76665e-05, No Iterations 4
time step continuity errors : sum local = 0.000111316, global = -7.60922e-07, cumulative = -0.312627
smoothSolver: Solving for omega, Initial residual = 0.000129154, Final residual = 1.14971e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000853328, Final residual = 5.73315e-05, No Iterations 4
ExecutionTime = 218.49 s ClockTime = 221 s
Time = 1521
smoothSolver: Solving for Ux, Initial residual = 0.000399989, Final residual = 2.493e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0032666, Final residual = 0.000204023, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00695929, Final residual = 4.82846e-05, No Iterations 4
time step continuity errors : sum local = 0.000112735, global = -8.70702e-08, cumulative = -0.312627
smoothSolver: Solving for omega, Initial residual = 0.000128892, Final residual = 1.14701e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00085293, Final residual = 5.73131e-05, No Iterations 4
ExecutionTime = 218.64 s ClockTime = 221 s
Time = 1522
smoothSolver: Solving for Ux, Initial residual = 0.000399674, Final residual = 2.49145e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326712, Final residual = 0.000204138, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00694624, Final residual = 4.95503e-05, No Iterations 4
time step continuity errors : sum local = 0.000115667, global = 1.20036e-06, cumulative = -0.312626
smoothSolver: Solving for omega, Initial residual = 0.000128629, Final residual = 1.14428e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000852533, Final residual = 5.72949e-05, No Iterations 4
ExecutionTime = 218.8 s ClockTime = 221 s
Time = 1523
smoothSolver: Solving for Ux, Initial residual = 0.000399353, Final residual = 2.48985e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326755, Final residual = 0.000204251, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00694238, Final residual = 5.04636e-05, No Iterations 4
time step continuity errors : sum local = 0.000117775, global = 2.76449e-06, cumulative = -0.312623
smoothSolver: Solving for omega, Initial residual = 0.000128366, Final residual = 1.14154e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000852137, Final residual = 5.7277e-05, No Iterations 4
ExecutionTime = 218.94 s ClockTime = 221 s
Time = 1524
smoothSolver: Solving for Ux, Initial residual = 0.000399025, Final residual = 2.48823e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326789, Final residual = 0.000204361, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00693557, Final residual = 5.10051e-05, No Iterations 4
time step continuity errors : sum local = 0.000119015, global = 4.66285e-06, cumulative = -0.312619
smoothSolver: Solving for omega, Initial residual = 0.000128101, Final residual = 1.13879e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000851742, Final residual = 5.72593e-05, No Iterations 4
ExecutionTime = 219.08 s ClockTime = 221 s
Time = 1525
smoothSolver: Solving for Ux, Initial residual = 0.000398688, Final residual = 2.48659e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326819, Final residual = 0.000204467, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00691897, Final residual = 5.14328e-05, No Iterations 4
time step continuity errors : sum local = 0.00011999, global = 6.69617e-06, cumulative = -0.312612
smoothSolver: Solving for omega, Initial residual = 0.000127837, Final residual = 1.13604e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000851348, Final residual = 5.72415e-05, No Iterations 4
ExecutionTime = 219.23 s ClockTime = 222 s
Time = 1526
smoothSolver: Solving for Ux, Initial residual = 0.000398344, Final residual = 2.48491e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326849, Final residual = 0.000204569, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00688704, Final residual = 5.22895e-05, No Iterations 4
time step continuity errors : sum local = 0.000121961, global = 8.9876e-06, cumulative = -0.312603
smoothSolver: Solving for omega, Initial residual = 0.000127571, Final residual = 1.13328e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000850954, Final residual = 5.72243e-05, No Iterations 4
ExecutionTime = 219.37 s ClockTime = 222 s
Time = 1527
smoothSolver: Solving for Ux, Initial residual = 0.000397994, Final residual = 2.48319e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326868, Final residual = 0.000204664, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00685098, Final residual = 5.35855e-05, No Iterations 4
time step continuity errors : sum local = 0.000124955, global = 1.1433e-05, cumulative = -0.312592
smoothSolver: Solving for omega, Initial residual = 0.0001273, Final residual = 1.13049e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000850565, Final residual = 5.72075e-05, No Iterations 4
ExecutionTime = 219.51 s ClockTime = 222 s
Time = 1528
smoothSolver: Solving for Ux, Initial residual = 0.000397638, Final residual = 2.48143e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326876, Final residual = 0.000204756, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00682567, Final residual = 5.51229e-05, No Iterations 4
time step continuity errors : sum local = 0.000128511, global = 1.37538e-05, cumulative = -0.312578
smoothSolver: Solving for omega, Initial residual = 0.000127029, Final residual = 1.12769e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000850178, Final residual = 5.71909e-05, No Iterations 4
ExecutionTime = 219.67 s ClockTime = 222 s
Time = 1529
smoothSolver: Solving for Ux, Initial residual = 0.000397274, Final residual = 2.47963e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326876, Final residual = 0.000204844, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0068118, Final residual = 5.65004e-05, No Iterations 4
time step continuity errors : sum local = 0.000131693, global = 1.5819e-05, cumulative = -0.312562
smoothSolver: Solving for omega, Initial residual = 0.000126757, Final residual = 1.12489e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000849794, Final residual = 5.71743e-05, No Iterations 4
ExecutionTime = 219.81 s ClockTime = 222 s
Time = 1530
smoothSolver: Solving for Ux, Initial residual = 0.0003969, Final residual = 2.47779e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326874, Final residual = 0.00020493, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00680198, Final residual = 5.76655e-05, No Iterations 4
time step continuity errors : sum local = 0.00013438, global = 1.74642e-05, cumulative = -0.312545
smoothSolver: Solving for omega, Initial residual = 0.000126481, Final residual = 1.12208e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000849411, Final residual = 5.71582e-05, No Iterations 4
ExecutionTime = 219.95 s ClockTime = 222 s
Time = 1531
smoothSolver: Solving for Ux, Initial residual = 0.000396519, Final residual = 2.47591e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326867, Final residual = 0.000205011, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00679116, Final residual = 5.84114e-05, No Iterations 4
time step continuity errors : sum local = 0.00013609, global = 1.86327e-05, cumulative = -0.312526
smoothSolver: Solving for omega, Initial residual = 0.000126205, Final residual = 1.11927e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000849031, Final residual = 5.71422e-05, No Iterations 4
ExecutionTime = 220.1 s ClockTime = 223 s
Time = 1532
smoothSolver: Solving for Ux, Initial residual = 0.000396132, Final residual = 2.474e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326854, Final residual = 0.000205088, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00677573, Final residual = 5.87561e-05, No Iterations 4
time step continuity errors : sum local = 0.000136864, global = 1.93361e-05, cumulative = -0.312507
smoothSolver: Solving for omega, Initial residual = 0.000125925, Final residual = 1.11642e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000848651, Final residual = 5.71264e-05, No Iterations 4
ExecutionTime = 220.24 s ClockTime = 223 s
Time = 1533
smoothSolver: Solving for Ux, Initial residual = 0.00039574, Final residual = 2.47205e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326834, Final residual = 0.00020516, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00675731, Final residual = 5.89809e-05, No Iterations 4
time step continuity errors : sum local = 0.000137358, global = 1.99785e-05, cumulative = -0.312487
smoothSolver: Solving for omega, Initial residual = 0.000125643, Final residual = 1.11358e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00084827, Final residual = 5.71107e-05, No Iterations 4
ExecutionTime = 220.38 s ClockTime = 223 s
Time = 1534
smoothSolver: Solving for Ux, Initial residual = 0.000395338, Final residual = 2.47007e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326808, Final residual = 0.000205231, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00674534, Final residual = 5.93339e-05, No Iterations 4
time step continuity errors : sum local = 0.000138151, global = 2.0907e-05, cumulative = -0.312466
smoothSolver: Solving for omega, Initial residual = 0.000125361, Final residual = 1.11073e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000847891, Final residual = 5.70955e-05, No Iterations 4
ExecutionTime = 220.52 s ClockTime = 223 s
Time = 1535
smoothSolver: Solving for Ux, Initial residual = 0.000394929, Final residual = 2.46804e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326776, Final residual = 0.000205298, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00673208, Final residual = 5.96593e-05, No Iterations 4
time step continuity errors : sum local = 0.000138879, global = 2.1962e-05, cumulative = -0.312444
smoothSolver: Solving for omega, Initial residual = 0.000125077, Final residual = 1.10788e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000847515, Final residual = 5.70803e-05, No Iterations 4
ExecutionTime = 220.67 s ClockTime = 223 s
Time = 1536
smoothSolver: Solving for Ux, Initial residual = 0.000394512, Final residual = 2.46597e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326736, Final residual = 0.00020536, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00670983, Final residual = 6.01562e-05, No Iterations 4
time step continuity errors : sum local = 0.000139998, global = 2.31151e-05, cumulative = -0.312421
smoothSolver: Solving for omega, Initial residual = 0.000124791, Final residual = 1.10501e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00084714, Final residual = 5.7065e-05, No Iterations 4
ExecutionTime = 220.82 s ClockTime = 223 s
Time = 1537
smoothSolver: Solving for Ux, Initial residual = 0.000394089, Final residual = 2.46386e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326691, Final residual = 0.000205418, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00669915, Final residual = 6.05754e-05, No Iterations 4
time step continuity errors : sum local = 0.000140936, global = 2.40953e-05, cumulative = -0.312397
smoothSolver: Solving for omega, Initial residual = 0.000124503, Final residual = 1.10212e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000846766, Final residual = 5.70503e-05, No Iterations 4
ExecutionTime = 220.97 s ClockTime = 223 s
Time = 1538
smoothSolver: Solving for Ux, Initial residual = 0.000393658, Final residual = 2.46173e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0032664, Final residual = 0.000205473, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00668367, Final residual = 6.10309e-05, No Iterations 4
time step continuity errors : sum local = 0.000141959, global = 2.51257e-05, cumulative = -0.312371
smoothSolver: Solving for omega, Initial residual = 0.000124214, Final residual = 1.09923e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00084639, Final residual = 5.70359e-05, No Iterations 4
ExecutionTime = 221.12 s ClockTime = 224 s
Time = 1539
smoothSolver: Solving for Ux, Initial residual = 0.00039322, Final residual = 2.45955e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326585, Final residual = 0.000205523, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00666831, Final residual = 6.13967e-05, No Iterations 4
time step continuity errors : sum local = 0.000142775, global = 2.61151e-05, cumulative = -0.312345
smoothSolver: Solving for omega, Initial residual = 0.000123922, Final residual = 1.09635e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000846022, Final residual = 5.70216e-05, No Iterations 4
ExecutionTime = 221.28 s ClockTime = 224 s
Time = 1540
smoothSolver: Solving for Ux, Initial residual = 0.000392776, Final residual = 2.45734e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326527, Final residual = 0.000205571, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00664423, Final residual = 6.17091e-05, No Iterations 4
time step continuity errors : sum local = 0.000143464, global = 2.70838e-05, cumulative = -0.312318
smoothSolver: Solving for omega, Initial residual = 0.000123629, Final residual = 1.09345e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000845658, Final residual = 5.70073e-05, No Iterations 4
ExecutionTime = 221.45 s ClockTime = 224 s
Time = 1541
smoothSolver: Solving for Ux, Initial residual = 0.000392324, Final residual = 2.45508e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0032646, Final residual = 0.000205615, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00661001, Final residual = 6.2051e-05, No Iterations 4
time step continuity errors : sum local = 0.000144223, global = 2.80857e-05, cumulative = -0.31229
smoothSolver: Solving for omega, Initial residual = 0.000123334, Final residual = 1.09054e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000845291, Final residual = 5.69931e-05, No Iterations 4
ExecutionTime = 221.62 s ClockTime = 224 s
Time = 1542
smoothSolver: Solving for Ux, Initial residual = 0.000391865, Final residual = 2.45279e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326385, Final residual = 0.000205656, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00658548, Final residual = 6.23189e-05, No Iterations 4
time step continuity errors : sum local = 0.00014481, global = 2.90673e-05, cumulative = -0.312261
smoothSolver: Solving for omega, Initial residual = 0.000123037, Final residual = 1.08762e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000844921, Final residual = 5.69794e-05, No Iterations 4
ExecutionTime = 221.77 s ClockTime = 224 s
Time = 1543
smoothSolver: Solving for Ux, Initial residual = 0.000391399, Final residual = 2.45045e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326304, Final residual = 0.000205692, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00656978, Final residual = 6.23783e-05, No Iterations 4
time step continuity errors : sum local = 0.000144912, global = 2.98257e-05, cumulative = -0.312231
smoothSolver: Solving for omega, Initial residual = 0.000122739, Final residual = 1.0847e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000844563, Final residual = 5.6966e-05, No Iterations 4
ExecutionTime = 221.91 s ClockTime = 224 s
Time = 1544
smoothSolver: Solving for Ux, Initial residual = 0.000390927, Final residual = 2.44808e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326222, Final residual = 0.000205726, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00655905, Final residual = 6.21631e-05, No Iterations 4
time step continuity errors : sum local = 0.000144375, global = 3.02228e-05, cumulative = -0.312201
smoothSolver: Solving for omega, Initial residual = 0.000122441, Final residual = 1.08177e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000844204, Final residual = 5.69525e-05, No Iterations 4
ExecutionTime = 222.06 s ClockTime = 224 s
Time = 1545
smoothSolver: Solving for Ux, Initial residual = 0.000390449, Final residual = 2.44568e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326135, Final residual = 0.000205754, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00654148, Final residual = 6.18517e-05, No Iterations 4
time step continuity errors : sum local = 0.000143613, global = 3.04623e-05, cumulative = -0.312171
smoothSolver: Solving for omega, Initial residual = 0.000122142, Final residual = 1.07884e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000843843, Final residual = 5.69394e-05, No Iterations 4
ExecutionTime = 222.21 s ClockTime = 225 s
Time = 1546
smoothSolver: Solving for Ux, Initial residual = 0.000389965, Final residual = 2.44324e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00326043, Final residual = 0.000205779, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00651937, Final residual = 6.15625e-05, No Iterations 4
time step continuity errors : sum local = 0.0001429, global = 3.07865e-05, cumulative = -0.31214
smoothSolver: Solving for omega, Initial residual = 0.000121841, Final residual = 1.07589e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000843483, Final residual = 5.69264e-05, No Iterations 4
ExecutionTime = 222.36 s ClockTime = 225 s
Time = 1547
smoothSolver: Solving for Ux, Initial residual = 0.000389474, Final residual = 2.44076e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00325943, Final residual = 0.000205801, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0065021, Final residual = 6.12816e-05, No Iterations 4
time step continuity errors : sum local = 0.000142205, global = 3.1228e-05, cumulative = -0.312109
smoothSolver: Solving for omega, Initial residual = 0.000121539, Final residual = 1.07295e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000843132, Final residual = 5.69136e-05, No Iterations 4
ExecutionTime = 222.51 s ClockTime = 225 s
Time = 1548
smoothSolver: Solving for Ux, Initial residual = 0.000388977, Final residual = 2.43825e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00325835, Final residual = 0.00020582, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00648565, Final residual = 6.10249e-05, No Iterations 4
time step continuity errors : sum local = 0.000141566, global = 3.17174e-05, cumulative = -0.312077
smoothSolver: Solving for omega, Initial residual = 0.000121235, Final residual = 1.07e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000842777, Final residual = 5.69008e-05, No Iterations 4
ExecutionTime = 222.66 s ClockTime = 225 s
Time = 1549
smoothSolver: Solving for Ux, Initial residual = 0.000388476, Final residual = 2.43569e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00325722, Final residual = 0.000205836, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00646887, Final residual = 6.08845e-05, No Iterations 4
time step continuity errors : sum local = 0.000141197, global = 3.23281e-05, cumulative = -0.312045
smoothSolver: Solving for omega, Initial residual = 0.000120931, Final residual = 1.06705e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000842426, Final residual = 5.68884e-05, No Iterations 4
ExecutionTime = 222.8 s ClockTime = 225 s
Time = 1550
smoothSolver: Solving for Ux, Initial residual = 0.000387967, Final residual = 2.43311e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00325604, Final residual = 0.000205846, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00645403, Final residual = 6.06475e-05, No Iterations 4
time step continuity errors : sum local = 0.000140605, global = 3.28061e-05, cumulative = -0.312012
smoothSolver: Solving for omega, Initial residual = 0.000120624, Final residual = 1.0641e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000842074, Final residual = 5.68758e-05, No Iterations 4
ExecutionTime = 223.19 s ClockTime = 226 s
Time = 1551
smoothSolver: Solving for Ux, Initial residual = 0.000387452, Final residual = 2.4305e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00325483, Final residual = 0.000205852, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0064411, Final residual = 6.01257e-05, No Iterations 4
time step continuity errors : sum local = 0.000139351, global = 3.29103e-05, cumulative = -0.311979
smoothSolver: Solving for omega, Initial residual = 0.000120316, Final residual = 1.06113e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000841724, Final residual = 5.68635e-05, No Iterations 4
ExecutionTime = 223.33 s ClockTime = 226 s
Time = 1552
smoothSolver: Solving for Ux, Initial residual = 0.000386931, Final residual = 2.42785e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00325356, Final residual = 0.000205856, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00643241, Final residual = 5.93673e-05, No Iterations 4
time step continuity errors : sum local = 0.000137547, global = 3.26565e-05, cumulative = -0.311946
smoothSolver: Solving for omega, Initial residual = 0.000120009, Final residual = 1.05817e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00084138, Final residual = 5.68516e-05, No Iterations 4
ExecutionTime = 223.49 s ClockTime = 226 s
Time = 1553
smoothSolver: Solving for Ux, Initial residual = 0.000386403, Final residual = 2.42518e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00325226, Final residual = 0.000205856, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00642098, Final residual = 5.85069e-05, No Iterations 4
time step continuity errors : sum local = 0.000135507, global = 3.21956e-05, cumulative = -0.311914
smoothSolver: Solving for omega, Initial residual = 0.000119702, Final residual = 1.05523e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000841033, Final residual = 5.68397e-05, No Iterations 4
ExecutionTime = 223.65 s ClockTime = 226 s
Time = 1554
smoothSolver: Solving for Ux, Initial residual = 0.000385871, Final residual = 2.42247e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00325088, Final residual = 0.000205852, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00640536, Final residual = 5.7588e-05, No Iterations 4
time step continuity errors : sum local = 0.000133332, global = 3.16732e-05, cumulative = -0.311882
smoothSolver: Solving for omega, Initial residual = 0.000119392, Final residual = 1.05226e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00084069, Final residual = 5.6828e-05, No Iterations 4
ExecutionTime = 223.78 s ClockTime = 226 s
Time = 1555
smoothSolver: Solving for Ux, Initial residual = 0.000385335, Final residual = 2.41973e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00324944, Final residual = 0.000205845, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00638638, Final residual = 5.67632e-05, No Iterations 4
time step continuity errors : sum local = 0.000131375, global = 3.13447e-05, cumulative = -0.311851
smoothSolver: Solving for omega, Initial residual = 0.000119078, Final residual = 1.04929e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000840348, Final residual = 5.68161e-05, No Iterations 4
ExecutionTime = 223.92 s ClockTime = 226 s
Time = 1556
smoothSolver: Solving for Ux, Initial residual = 0.000384789, Final residual = 2.41694e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0032479, Final residual = 0.000205834, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00635886, Final residual = 5.59874e-05, No Iterations 4
time step continuity errors : sum local = 0.000129526, global = 3.10591e-05, cumulative = -0.31182
smoothSolver: Solving for omega, Initial residual = 0.000118766, Final residual = 1.04634e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000840009, Final residual = 5.68046e-05, No Iterations 4
ExecutionTime = 224.07 s ClockTime = 227 s
Time = 1557
smoothSolver: Solving for Ux, Initial residual = 0.000384239, Final residual = 2.41412e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00324632, Final residual = 0.000205818, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00633216, Final residual = 5.51928e-05, No Iterations 4
time step continuity errors : sum local = 0.000127635, global = 3.07002e-05, cumulative = -0.311789
smoothSolver: Solving for omega, Initial residual = 0.000118453, Final residual = 1.04337e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000839669, Final residual = 5.67933e-05, No Iterations 4
ExecutionTime = 224.21 s ClockTime = 227 s
Time = 1558
smoothSolver: Solving for Ux, Initial residual = 0.000383685, Final residual = 2.41129e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0032447, Final residual = 0.000205796, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00631821, Final residual = 5.42454e-05, No Iterations 4
time step continuity errors : sum local = 0.000125392, global = 3.01416e-05, cumulative = -0.311759
smoothSolver: Solving for omega, Initial residual = 0.000118141, Final residual = 1.04043e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000839327, Final residual = 5.67817e-05, No Iterations 4
ExecutionTime = 224.35 s ClockTime = 227 s
Time = 1559
smoothSolver: Solving for Ux, Initial residual = 0.000383126, Final residual = 2.40842e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00324304, Final residual = 0.00020577, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00631078, Final residual = 5.31049e-05, No Iterations 4
time step continuity errors : sum local = 0.000122703, global = 2.93569e-05, cumulative = -0.31173
smoothSolver: Solving for omega, Initial residual = 0.000117829, Final residual = 1.03747e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000838988, Final residual = 5.67706e-05, No Iterations 4
ExecutionTime = 224.5 s ClockTime = 227 s
Time = 1560
smoothSolver: Solving for Ux, Initial residual = 0.000382559, Final residual = 2.40552e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00324133, Final residual = 0.000205743, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00630329, Final residual = 5.17993e-05, No Iterations 4
time step continuity errors : sum local = 0.000119636, global = 2.83777e-05, cumulative = -0.311701
smoothSolver: Solving for omega, Initial residual = 0.000117517, Final residual = 1.0345e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000838659, Final residual = 5.67597e-05, No Iterations 4
ExecutionTime = 224.64 s ClockTime = 227 s
Time = 1561
smoothSolver: Solving for Ux, Initial residual = 0.000381988, Final residual = 2.40258e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00323952, Final residual = 0.000205713, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00629042, Final residual = 5.06601e-05, No Iterations 4
time step continuity errors : sum local = 0.000116956, global = 2.76589e-05, cumulative = -0.311674
smoothSolver: Solving for omega, Initial residual = 0.000117204, Final residual = 1.03155e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000838326, Final residual = 5.67489e-05, No Iterations 4
ExecutionTime = 224.78 s ClockTime = 227 s
Time = 1562
smoothSolver: Solving for Ux, Initial residual = 0.000381413, Final residual = 2.39962e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00323765, Final residual = 0.000205678, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00627702, Final residual = 4.95162e-05, No Iterations 4
time step continuity errors : sum local = 0.000114267, global = 2.69794e-05, cumulative = -0.311647
smoothSolver: Solving for omega, Initial residual = 0.000116891, Final residual = 1.02863e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000837993, Final residual = 5.67379e-05, No Iterations 4
ExecutionTime = 224.92 s ClockTime = 227 s
Time = 1563
smoothSolver: Solving for Ux, Initial residual = 0.000380833, Final residual = 2.39662e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00323573, Final residual = 0.000205636, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00626524, Final residual = 4.83338e-05, No Iterations 4
time step continuity errors : sum local = 0.000111491, global = 2.62466e-05, cumulative = -0.31162
smoothSolver: Solving for omega, Initial residual = 0.000116579, Final residual = 1.02568e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000837661, Final residual = 5.67269e-05, No Iterations 4
ExecutionTime = 225.06 s ClockTime = 228 s
Time = 1564
smoothSolver: Solving for Ux, Initial residual = 0.000380248, Final residual = 2.39361e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00323375, Final residual = 0.000205591, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00625474, Final residual = 4.69255e-05, No Iterations 4
time step continuity errors : sum local = 0.000108196, global = 2.52093e-05, cumulative = -0.311595
smoothSolver: Solving for omega, Initial residual = 0.000116265, Final residual = 1.02273e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000837335, Final residual = 5.67165e-05, No Iterations 4
ExecutionTime = 225.21 s ClockTime = 228 s
Time = 1565
smoothSolver: Solving for Ux, Initial residual = 0.000379658, Final residual = 2.39056e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00323171, Final residual = 0.000205541, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0062436, Final residual = 4.52764e-05, No Iterations 4
time step continuity errors : sum local = 0.000104346, global = 2.38833e-05, cumulative = -0.311571
smoothSolver: Solving for omega, Initial residual = 0.000115952, Final residual = 1.01979e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000837003, Final residual = 5.67062e-05, No Iterations 4
ExecutionTime = 225.35 s ClockTime = 228 s
Time = 1566
smoothSolver: Solving for Ux, Initial residual = 0.000379064, Final residual = 2.38748e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00322963, Final residual = 0.000205489, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00622695, Final residual = 4.26933e-05, No Iterations 4
time step continuity errors : sum local = 9.83483e-05, global = 2.15052e-05, cumulative = -0.31155
smoothSolver: Solving for omega, Initial residual = 0.000115637, Final residual = 1.01686e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000836675, Final residual = 5.66956e-05, No Iterations 4
ExecutionTime = 225.49 s ClockTime = 228 s
Time = 1567
smoothSolver: Solving for Ux, Initial residual = 0.000378465, Final residual = 2.38438e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00322748, Final residual = 0.000205432, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00620387, Final residual = 4.01536e-05, No Iterations 4
time step continuity errors : sum local = 9.24511e-05, global = 2.00422e-05, cumulative = -0.31153
smoothSolver: Solving for omega, Initial residual = 0.000115323, Final residual = 1.01394e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000836353, Final residual = 5.66852e-05, No Iterations 4
ExecutionTime = 225.63 s ClockTime = 228 s
Time = 1568
smoothSolver: Solving for Ux, Initial residual = 0.000377861, Final residual = 2.38123e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00322525, Final residual = 0.000205372, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00618571, Final residual = 3.73473e-05, No Iterations 4
time step continuity errors : sum local = 8.59444e-05, global = 1.81457e-05, cumulative = -0.311512
smoothSolver: Solving for omega, Initial residual = 0.000115012, Final residual = 1.01102e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000836028, Final residual = 5.66747e-05, No Iterations 4
ExecutionTime = 225.77 s ClockTime = 228 s
Time = 1569
smoothSolver: Solving for Ux, Initial residual = 0.000377254, Final residual = 2.37805e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00322295, Final residual = 0.000205307, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0061705, Final residual = 3.50829e-05, No Iterations 4
time step continuity errors : sum local = 8.06898e-05, global = 1.68994e-05, cumulative = -0.311495
smoothSolver: Solving for omega, Initial residual = 0.0001147, Final residual = 1.00811e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000835697, Final residual = 5.66644e-05, No Iterations 4
ExecutionTime = 225.93 s ClockTime = 228 s
Time = 1570
smoothSolver: Solving for Ux, Initial residual = 0.000376643, Final residual = 2.37484e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00322056, Final residual = 0.000205236, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00615719, Final residual = 3.37553e-05, No Iterations 4
time step continuity errors : sum local = 7.75951e-05, global = 1.63576e-05, cumulative = -0.311478
smoothSolver: Solving for omega, Initial residual = 0.000114387, Final residual = 1.0052e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000835374, Final residual = 5.66544e-05, No Iterations 4
ExecutionTime = 226.07 s ClockTime = 229 s
Time = 1571
smoothSolver: Solving for Ux, Initial residual = 0.000376029, Final residual = 2.37161e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00321813, Final residual = 0.000205158, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00614829, Final residual = 3.30584e-05, No Iterations 4
time step continuity errors : sum local = 7.59547e-05, global = 1.61656e-05, cumulative = -0.311462
smoothSolver: Solving for omega, Initial residual = 0.000114075, Final residual = 1.00231e-05, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00083505, Final residual = 5.66443e-05, No Iterations 4
ExecutionTime = 226.21 s ClockTime = 229 s
Time = 1572
smoothSolver: Solving for Ux, Initial residual = 0.000375411, Final residual = 2.36837e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00321567, Final residual = 0.000205078, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00614066, Final residual = 3.28007e-05, No Iterations 4
time step continuity errors : sum local = 7.53249e-05, global = 1.64215e-05, cumulative = -0.311446
smoothSolver: Solving for omega, Initial residual = 0.000113765, Final residual = 9.99435e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000834728, Final residual = 5.66341e-05, No Iterations 4
ExecutionTime = 226.35 s ClockTime = 229 s
Time = 1573
smoothSolver: Solving for Ux, Initial residual = 0.000374788, Final residual = 2.3651e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00321315, Final residual = 0.000204998, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00612602, Final residual = 3.31599e-05, No Iterations 4
time step continuity errors : sum local = 7.61103e-05, global = 1.67918e-05, cumulative = -0.311429
smoothSolver: Solving for omega, Initial residual = 0.000113451, Final residual = 9.96539e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000834403, Final residual = 5.6624e-05, No Iterations 4
ExecutionTime = 226.49 s ClockTime = 229 s
Time = 1574
smoothSolver: Solving for Ux, Initial residual = 0.000374158, Final residual = 2.36178e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00321051, Final residual = 0.00020491, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00610789, Final residual = 3.41289e-05, No Iterations 4
time step continuity errors : sum local = 7.82915e-05, global = 1.67622e-05, cumulative = -0.311412
smoothSolver: Solving for omega, Initial residual = 0.00011314, Final residual = 9.93663e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000834084, Final residual = 5.66138e-05, No Iterations 4
ExecutionTime = 226.63 s ClockTime = 229 s
Time = 1575
smoothSolver: Solving for Ux, Initial residual = 0.000373526, Final residual = 2.35843e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00320777, Final residual = 0.000204816, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00608728, Final residual = 3.52165e-05, No Iterations 4
time step continuity errors : sum local = 8.07425e-05, global = 1.58115e-05, cumulative = -0.311396
smoothSolver: Solving for omega, Initial residual = 0.000112832, Final residual = 9.90814e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000833763, Final residual = 5.66041e-05, No Iterations 4
ExecutionTime = 226.77 s ClockTime = 229 s
Time = 1576
smoothSolver: Solving for Ux, Initial residual = 0.000372895, Final residual = 2.35509e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00320499, Final residual = 0.000204715, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00607411, Final residual = 3.62995e-05, No Iterations 4
time step continuity errors : sum local = 8.31818e-05, global = 1.29091e-05, cumulative = -0.311384
smoothSolver: Solving for omega, Initial residual = 0.000112522, Final residual = 9.87959e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000833442, Final residual = 5.65942e-05, No Iterations 4
ExecutionTime = 226.92 s ClockTime = 229 s
Time = 1577
smoothSolver: Solving for Ux, Initial residual = 0.000372258, Final residual = 2.35173e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00320216, Final residual = 0.000204613, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00606416, Final residual = 3.57457e-05, No Iterations 4
time step continuity errors : sum local = 8.18702e-05, global = 5.00911e-06, cumulative = -0.311379
smoothSolver: Solving for omega, Initial residual = 0.000112212, Final residual = 9.85105e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000833123, Final residual = 5.65843e-05, No Iterations 4
ExecutionTime = 227.05 s ClockTime = 230 s
Time = 1578
smoothSolver: Solving for Ux, Initial residual = 0.000371617, Final residual = 2.34835e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00319925, Final residual = 0.000204505, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00605627, Final residual = 2.99238e-05, No Iterations 4
time step continuity errors : sum local = 6.85005e-05, global = -5.97908e-06, cumulative = -0.311385
smoothSolver: Solving for omega, Initial residual = 0.000111903, Final residual = 9.82277e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000832803, Final residual = 5.65741e-05, No Iterations 4
ExecutionTime = 227.21 s ClockTime = 230 s
Time = 1579
smoothSolver: Solving for Ux, Initial residual = 0.000370978, Final residual = 2.34498e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00319618, Final residual = 0.000204387, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00604381, Final residual = 2.79482e-05, No Iterations 4
time step continuity errors : sum local = 6.39475e-05, global = -1.01202e-05, cumulative = -0.311395
smoothSolver: Solving for omega, Initial residual = 0.000111599, Final residual = 9.79447e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000832481, Final residual = 5.65642e-05, No Iterations 4
ExecutionTime = 227.34 s ClockTime = 230 s
Time = 1580
smoothSolver: Solving for Ux, Initial residual = 0.000370329, Final residual = 2.34152e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00319308, Final residual = 0.000204267, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00603376, Final residual = 3.29975e-05, No Iterations 4
time step continuity errors : sum local = 7.54587e-05, global = -1.43068e-05, cumulative = -0.311409
smoothSolver: Solving for omega, Initial residual = 0.000111298, Final residual = 9.7664e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000832161, Final residual = 5.65542e-05, No Iterations 4
ExecutionTime = 227.48 s ClockTime = 230 s
Time = 1581
smoothSolver: Solving for Ux, Initial residual = 0.000369666, Final residual = 2.33798e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00318998, Final residual = 0.000204149, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00602171, Final residual = 3.71649e-05, No Iterations 4
time step continuity errors : sum local = 8.49368e-05, global = -1.72259e-05, cumulative = -0.311426
smoothSolver: Solving for omega, Initial residual = 0.000110993, Final residual = 9.73847e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00083184, Final residual = 5.65444e-05, No Iterations 4
ExecutionTime = 227.64 s ClockTime = 230 s
Time = 1582
smoothSolver: Solving for Ux, Initial residual = 0.000368999, Final residual = 2.33442e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00318687, Final residual = 0.000204028, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00600691, Final residual = 3.8911e-05, No Iterations 4
time step continuity errors : sum local = 8.88725e-05, global = -1.79228e-05, cumulative = -0.311444
smoothSolver: Solving for omega, Initial residual = 0.000110691, Final residual = 9.71043e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000831516, Final residual = 5.65343e-05, No Iterations 4
ExecutionTime = 227.78 s ClockTime = 230 s
Time = 1583
smoothSolver: Solving for Ux, Initial residual = 0.000368333, Final residual = 2.33085e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00318374, Final residual = 0.000203903, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00599659, Final residual = 3.85238e-05, No Iterations 4
time step continuity errors : sum local = 8.79331e-05, global = -1.69042e-05, cumulative = -0.311461
smoothSolver: Solving for omega, Initial residual = 0.000110386, Final residual = 9.68259e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000831197, Final residual = 5.65244e-05, No Iterations 4
ExecutionTime = 227.92 s ClockTime = 230 s
Time = 1584
smoothSolver: Solving for Ux, Initial residual = 0.000367666, Final residual = 2.32727e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00318051, Final residual = 0.000203769, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00598715, Final residual = 3.72753e-05, No Iterations 4
time step continuity errors : sum local = 8.50305e-05, global = -1.56104e-05, cumulative = -0.311477
smoothSolver: Solving for omega, Initial residual = 0.000110084, Final residual = 9.65496e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000830882, Final residual = 5.65145e-05, No Iterations 4
ExecutionTime = 228.07 s ClockTime = 231 s
Time = 1585
smoothSolver: Solving for Ux, Initial residual = 0.000366996, Final residual = 2.32367e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00317714, Final residual = 0.000203628, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00597566, Final residual = 3.66308e-05, No Iterations 4
time step continuity errors : sum local = 8.35108e-05, global = -1.52854e-05, cumulative = -0.311492
smoothSolver: Solving for omega, Initial residual = 0.000109783, Final residual = 9.62743e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00083056, Final residual = 5.65046e-05, No Iterations 4
ExecutionTime = 228.2 s ClockTime = 231 s
Time = 1586
smoothSolver: Solving for Ux, Initial residual = 0.000366323, Final residual = 2.32003e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00317367, Final residual = 0.000203483, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00596246, Final residual = 3.74252e-05, No Iterations 4
time step continuity errors : sum local = 8.5273e-05, global = -1.62722e-05, cumulative = -0.311508
smoothSolver: Solving for omega, Initial residual = 0.000109482, Final residual = 9.5996e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000830234, Final residual = 5.64945e-05, No Iterations 4
ExecutionTime = 228.35 s ClockTime = 231 s
Time = 1587
smoothSolver: Solving for Ux, Initial residual = 0.000365644, Final residual = 2.31638e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0031701, Final residual = 0.000203334, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0059485, Final residual = 3.93877e-05, No Iterations 4
time step continuity errors : sum local = 8.96937e-05, global = -1.79779e-05, cumulative = -0.311526
smoothSolver: Solving for omega, Initial residual = 0.000109182, Final residual = 9.57201e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000829914, Final residual = 5.64846e-05, No Iterations 4
ExecutionTime = 228.5 s ClockTime = 231 s
Time = 1588
smoothSolver: Solving for Ux, Initial residual = 0.000364962, Final residual = 2.3127e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00316647, Final residual = 0.000203181, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00593542, Final residual = 4.17072e-05, No Iterations 4
time step continuity errors : sum local = 9.49212e-05, global = -1.96321e-05, cumulative = -0.311546
smoothSolver: Solving for omega, Initial residual = 0.000108882, Final residual = 9.54468e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000829599, Final residual = 5.64746e-05, No Iterations 4
ExecutionTime = 228.65 s ClockTime = 231 s
Time = 1589
smoothSolver: Solving for Ux, Initial residual = 0.000364273, Final residual = 2.30898e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00316284, Final residual = 0.000203024, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00592365, Final residual = 4.34898e-05, No Iterations 4
time step continuity errors : sum local = 9.89186e-05, global = -2.06586e-05, cumulative = -0.311566
smoothSolver: Solving for omega, Initial residual = 0.000108581, Final residual = 9.51711e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000829277, Final residual = 5.64646e-05, No Iterations 4
ExecutionTime = 228.79 s ClockTime = 231 s
Time = 1590
smoothSolver: Solving for Ux, Initial residual = 0.000363581, Final residual = 2.30522e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00315919, Final residual = 0.000202864, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00591162, Final residual = 4.41825e-05, No Iterations 4
time step continuity errors : sum local = 0.00010043, global = -2.08129e-05, cumulative = -0.311587
smoothSolver: Solving for omega, Initial residual = 0.000108281, Final residual = 9.4897e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000828954, Final residual = 5.64544e-05, No Iterations 4
ExecutionTime = 228.93 s ClockTime = 231 s
Time = 1591
smoothSolver: Solving for Ux, Initial residual = 0.000362884, Final residual = 2.3014e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00315548, Final residual = 0.000202699, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00589101, Final residual = 4.40523e-05, No Iterations 4
time step continuity errors : sum local = 0.000100066, global = -2.04792e-05, cumulative = -0.311608
smoothSolver: Solving for omega, Initial residual = 0.000107984, Final residual = 9.46242e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000828636, Final residual = 5.64447e-05, No Iterations 4
ExecutionTime = 229.07 s ClockTime = 232 s
Time = 1592
smoothSolver: Solving for Ux, Initial residual = 0.000362184, Final residual = 2.29757e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00315169, Final residual = 0.000202529, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00587199, Final residual = 4.37392e-05, No Iterations 4
time step continuity errors : sum local = 9.92866e-05, global = -2.01911e-05, cumulative = -0.311628
smoothSolver: Solving for omega, Initial residual = 0.000107687, Final residual = 9.43512e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000828318, Final residual = 5.64348e-05, No Iterations 4
ExecutionTime = 229.22 s ClockTime = 232 s
Time = 1593
smoothSolver: Solving for Ux, Initial residual = 0.000361482, Final residual = 2.29372e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00314778, Final residual = 0.000202352, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00585383, Final residual = 4.38188e-05, No Iterations 4
time step continuity errors : sum local = 9.9403e-05, global = -2.02931e-05, cumulative = -0.311648
smoothSolver: Solving for omega, Initial residual = 0.000107389, Final residual = 9.40796e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000827998, Final residual = 5.64247e-05, No Iterations 4
ExecutionTime = 229.36 s ClockTime = 232 s
Time = 1594
smoothSolver: Solving for Ux, Initial residual = 0.000360777, Final residual = 2.28984e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00314378, Final residual = 0.000202172, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00584023, Final residual = 4.46371e-05, No Iterations 4
time step continuity errors : sum local = 0.000101197, global = -2.09098e-05, cumulative = -0.311669
smoothSolver: Solving for omega, Initial residual = 0.000107093, Final residual = 9.38103e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000827674, Final residual = 5.64143e-05, No Iterations 4
ExecutionTime = 229.5 s ClockTime = 232 s
Time = 1595
smoothSolver: Solving for Ux, Initial residual = 0.000360067, Final residual = 2.28595e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00313973, Final residual = 0.000201989, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00582961, Final residual = 4.58583e-05, No Iterations 4
time step continuity errors : sum local = 0.000103902, global = -2.17691e-05, cumulative = -0.311691
smoothSolver: Solving for omega, Initial residual = 0.000106793, Final residual = 9.35389e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000827359, Final residual = 5.64043e-05, No Iterations 4
ExecutionTime = 229.65 s ClockTime = 232 s
Time = 1596
smoothSolver: Solving for Ux, Initial residual = 0.000359352, Final residual = 2.28204e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00313567, Final residual = 0.000201802, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00582101, Final residual = 4.7025e-05, No Iterations 4
time step continuity errors : sum local = 0.000106479, global = -2.25334e-05, cumulative = -0.311713
smoothSolver: Solving for omega, Initial residual = 0.000106493, Final residual = 9.32677e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000827034, Final residual = 5.63945e-05, No Iterations 4
ExecutionTime = 229.8 s ClockTime = 232 s
Time = 1597
smoothSolver: Solving for Ux, Initial residual = 0.000358632, Final residual = 2.27808e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00313156, Final residual = 0.00020161, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00581078, Final residual = 4.78636e-05, No Iterations 4
time step continuity errors : sum local = 0.000108307, global = -2.30098e-05, cumulative = -0.311736
smoothSolver: Solving for omega, Initial residual = 0.000106195, Final residual = 9.29985e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000826711, Final residual = 5.63842e-05, No Iterations 4
ExecutionTime = 229.94 s ClockTime = 232 s
Time = 1598
smoothSolver: Solving for Ux, Initial residual = 0.000357907, Final residual = 2.27406e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0031274, Final residual = 0.000201415, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00579974, Final residual = 4.83349e-05, No Iterations 4
time step continuity errors : sum local = 0.000109297, global = -2.31927e-05, cumulative = -0.31176
smoothSolver: Solving for omega, Initial residual = 0.000105899, Final residual = 9.27312e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000826389, Final residual = 5.63738e-05, No Iterations 4
ExecutionTime = 230.09 s ClockTime = 233 s
Time = 1599
smoothSolver: Solving for Ux, Initial residual = 0.000357177, Final residual = 2.27001e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00312317, Final residual = 0.000201217, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00578614, Final residual = 4.8608e-05, No Iterations 4
time step continuity errors : sum local = 0.000109837, global = -2.32257e-05, cumulative = -0.311783
smoothSolver: Solving for omega, Initial residual = 0.000105601, Final residual = 9.24617e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00082607, Final residual = 5.63638e-05, No Iterations 4
ExecutionTime = 230.24 s ClockTime = 233 s
Time = 1600
smoothSolver: Solving for Ux, Initial residual = 0.000356446, Final residual = 2.26595e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00311886, Final residual = 0.000201012, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00577414, Final residual = 4.88902e-05, No Iterations 4
time step continuity errors : sum local = 0.000110398, global = -2.33154e-05, cumulative = -0.311806
smoothSolver: Solving for omega, Initial residual = 0.000105302, Final residual = 9.21928e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000825745, Final residual = 5.63538e-05, No Iterations 4
ExecutionTime = 230.61 s ClockTime = 233 s
Time = 1601
smoothSolver: Solving for Ux, Initial residual = 0.000355711, Final residual = 2.26187e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00311446, Final residual = 0.000200803, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00576478, Final residual = 4.9348e-05, No Iterations 4
time step continuity errors : sum local = 0.000111355, global = -2.36013e-05, cumulative = -0.31183
smoothSolver: Solving for omega, Initial residual = 0.000105004, Final residual = 9.19267e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000825422, Final residual = 5.63435e-05, No Iterations 4
ExecutionTime = 230.76 s ClockTime = 233 s
Time = 1602
smoothSolver: Solving for Ux, Initial residual = 0.000354972, Final residual = 2.25776e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00311006, Final residual = 0.000200592, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00575021, Final residual = 5.0002e-05, No Iterations 4
time step continuity errors : sum local = 0.000112754, global = -2.40485e-05, cumulative = -0.311854
smoothSolver: Solving for omega, Initial residual = 0.000104708, Final residual = 9.16592e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000825099, Final residual = 5.63333e-05, No Iterations 4
ExecutionTime = 230.91 s ClockTime = 233 s
Time = 1603
smoothSolver: Solving for Ux, Initial residual = 0.000354227, Final residual = 2.25363e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00310561, Final residual = 0.000200377, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00573481, Final residual = 5.05206e-05, No Iterations 4
time step continuity errors : sum local = 0.000113844, global = -2.43281e-05, cumulative = -0.311878
smoothSolver: Solving for omega, Initial residual = 0.000104412, Final residual = 9.13932e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000824778, Final residual = 5.63232e-05, No Iterations 4
ExecutionTime = 231.06 s ClockTime = 234 s
Time = 1604
smoothSolver: Solving for Ux, Initial residual = 0.000353476, Final residual = 2.24945e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00310108, Final residual = 0.000200156, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0057152, Final residual = 5.10504e-05, No Iterations 4
time step continuity errors : sum local = 0.000114954, global = -2.45626e-05, cumulative = -0.311903
smoothSolver: Solving for omega, Initial residual = 0.000104112, Final residual = 9.11273e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000824452, Final residual = 5.6313e-05, No Iterations 4
ExecutionTime = 231.21 s ClockTime = 234 s
Time = 1605
smoothSolver: Solving for Ux, Initial residual = 0.000352723, Final residual = 2.24523e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00309653, Final residual = 0.000199935, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00569313, Final residual = 5.14298e-05, No Iterations 4
time step continuity errors : sum local = 0.00011572, global = -2.4661e-05, cumulative = -0.311927
smoothSolver: Solving for omega, Initial residual = 0.000103814, Final residual = 9.08603e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000824127, Final residual = 5.63024e-05, No Iterations 4
ExecutionTime = 231.36 s ClockTime = 234 s
Time = 1606
smoothSolver: Solving for Ux, Initial residual = 0.000351965, Final residual = 2.24099e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00309194, Final residual = 0.00019971, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00568592, Final residual = 5.17362e-05, No Iterations 4
time step continuity errors : sum local = 0.000116319, global = -2.47285e-05, cumulative = -0.311952
smoothSolver: Solving for omega, Initial residual = 0.000103516, Final residual = 9.05953e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000823802, Final residual = 5.62921e-05, No Iterations 4
ExecutionTime = 231.53 s ClockTime = 234 s
Time = 1607
smoothSolver: Solving for Ux, Initial residual = 0.000351205, Final residual = 2.23673e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00308729, Final residual = 0.000199481, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00567065, Final residual = 5.19774e-05, No Iterations 4
time step continuity errors : sum local = 0.000116773, global = -2.48012e-05, cumulative = -0.311977
smoothSolver: Solving for omega, Initial residual = 0.000103219, Final residual = 9.03317e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00082348, Final residual = 5.62822e-05, No Iterations 4
ExecutionTime = 231.68 s ClockTime = 234 s
Time = 1608
smoothSolver: Solving for Ux, Initial residual = 0.000350441, Final residual = 2.23243e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00308255, Final residual = 0.000199247, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00565434, Final residual = 5.21356e-05, No Iterations 4
time step continuity errors : sum local = 0.000117041, global = -2.48476e-05, cumulative = -0.312002
smoothSolver: Solving for omega, Initial residual = 0.000102919, Final residual = 9.00654e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000823154, Final residual = 5.62717e-05, No Iterations 4
ExecutionTime = 231.82 s ClockTime = 234 s
Time = 1609
smoothSolver: Solving for Ux, Initial residual = 0.00034967, Final residual = 2.2281e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0030778, Final residual = 0.00019901, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00564205, Final residual = 5.24142e-05, No Iterations 4
time step continuity errors : sum local = 0.000117578, global = -2.49736e-05, cumulative = -0.312027
smoothSolver: Solving for omega, Initial residual = 0.000102619, Final residual = 8.97994e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000822829, Final residual = 5.62607e-05, No Iterations 4
ExecutionTime = 231.96 s ClockTime = 235 s
Time = 1610
smoothSolver: Solving for Ux, Initial residual = 0.000348894, Final residual = 2.22374e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00307301, Final residual = 0.000198769, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00562694, Final residual = 5.28538e-05, No Iterations 4
time step continuity errors : sum local = 0.000118473, global = -2.51713e-05, cumulative = -0.312052
smoothSolver: Solving for omega, Initial residual = 0.000102321, Final residual = 8.95358e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000822498, Final residual = 5.62502e-05, No Iterations 4
ExecutionTime = 232.11 s ClockTime = 235 s
Time = 1611
smoothSolver: Solving for Ux, Initial residual = 0.000348115, Final residual = 2.21935e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00306817, Final residual = 0.000198524, No Iterations 4
GAMG: Solving for p, Initial residual = 0.005613, Final residual = 5.33561e-05, No Iterations 4
time step continuity errors : sum local = 0.000119506, global = -2.53799e-05, cumulative = -0.312077
smoothSolver: Solving for omega, Initial residual = 0.000102023, Final residual = 8.92729e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000822171, Final residual = 5.62403e-05, No Iterations 4
ExecutionTime = 232.26 s ClockTime = 235 s
Time = 1612
smoothSolver: Solving for Ux, Initial residual = 0.000347333, Final residual = 2.21492e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00306327, Final residual = 0.000198277, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00560212, Final residual = 5.37982e-05, No Iterations 4
time step continuity errors : sum local = 0.000120401, global = -2.55433e-05, cumulative = -0.312103
smoothSolver: Solving for omega, Initial residual = 0.000101723, Final residual = 8.9008e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000821842, Final residual = 5.62294e-05, No Iterations 4
ExecutionTime = 232.41 s ClockTime = 235 s
Time = 1613
smoothSolver: Solving for Ux, Initial residual = 0.000346546, Final residual = 2.21046e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00305833, Final residual = 0.000198029, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00558918, Final residual = 5.41389e-05, No Iterations 4
time step continuity errors : sum local = 0.000121066, global = -2.56589e-05, cumulative = -0.312128
smoothSolver: Solving for omega, Initial residual = 0.000101426, Final residual = 8.87443e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000821517, Final residual = 5.6218e-05, No Iterations 4
ExecutionTime = 232.55 s ClockTime = 235 s
Time = 1614
smoothSolver: Solving for Ux, Initial residual = 0.000345756, Final residual = 2.20598e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00305335, Final residual = 0.000197777, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00557923, Final residual = 5.44201e-05, No Iterations 4
time step continuity errors : sum local = 0.000121596, global = -2.57623e-05, cumulative = -0.312154
smoothSolver: Solving for omega, Initial residual = 0.000101128, Final residual = 8.84811e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000821182, Final residual = 5.62074e-05, No Iterations 4
ExecutionTime = 232.7 s ClockTime = 235 s
Time = 1615
smoothSolver: Solving for Ux, Initial residual = 0.000344962, Final residual = 2.20146e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00304835, Final residual = 0.00019752, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00557117, Final residual = 5.46878e-05, No Iterations 4
time step continuity errors : sum local = 0.000122094, global = -2.5865e-05, cumulative = -0.31218
smoothSolver: Solving for omega, Initial residual = 0.000100829, Final residual = 8.82172e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000820849, Final residual = 5.6197e-05, No Iterations 4
ExecutionTime = 232.84 s ClockTime = 235 s
Time = 1616
smoothSolver: Solving for Ux, Initial residual = 0.000344163, Final residual = 2.19691e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00304331, Final residual = 0.000197261, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00556285, Final residual = 5.49645e-05, No Iterations 4
time step continuity errors : sum local = 0.000122609, global = -2.59646e-05, cumulative = -0.312206
smoothSolver: Solving for omega, Initial residual = 0.00010053, Final residual = 8.7955e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000820519, Final residual = 5.6186e-05, No Iterations 4
ExecutionTime = 232.98 s ClockTime = 236 s
Time = 1617
smoothSolver: Solving for Ux, Initial residual = 0.000343361, Final residual = 2.19233e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00303823, Final residual = 0.000196998, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00555636, Final residual = 5.52503e-05, No Iterations 4
time step continuity errors : sum local = 0.000123144, global = -2.607e-05, cumulative = -0.312232
smoothSolver: Solving for omega, Initial residual = 0.00010023, Final residual = 8.76922e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00082019, Final residual = 5.61744e-05, No Iterations 4
ExecutionTime = 233.13 s ClockTime = 236 s
Time = 1618
smoothSolver: Solving for Ux, Initial residual = 0.000342555, Final residual = 2.18772e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00303312, Final residual = 0.000196734, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00554367, Final residual = 4.2282e-05, No Iterations 5
time step continuity errors : sum local = 9.41602e-05, global = 3.36081e-05, cumulative = -0.312199
smoothSolver: Solving for omega, Initial residual = 9.9931e-05, Final residual = 8.74283e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000819853, Final residual = 5.61636e-05, No Iterations 4
ExecutionTime = 233.29 s ClockTime = 236 s
Time = 1619
smoothSolver: Solving for Ux, Initial residual = 0.000341679, Final residual = 2.18261e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00302855, Final residual = 0.000196502, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00550885, Final residual = 4.29833e-05, No Iterations 4
time step continuity errors : sum local = 9.559e-05, global = -1.89994e-05, cumulative = -0.312218
smoothSolver: Solving for omega, Initial residual = 9.96439e-05, Final residual = 8.71666e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000819516, Final residual = 5.61527e-05, No Iterations 4
ExecutionTime = 233.43 s ClockTime = 236 s
Time = 1620
smoothSolver: Solving for Ux, Initial residual = 0.000340925, Final residual = 2.17832e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00302279, Final residual = 0.000196197, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00549662, Final residual = 4.61459e-05, No Iterations 4
time step continuity errors : sum local = 0.00010257, global = -2.07967e-05, cumulative = -0.312238
smoothSolver: Solving for omega, Initial residual = 9.93424e-05, Final residual = 8.69072e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000819185, Final residual = 5.61412e-05, No Iterations 4
ExecutionTime = 233.57 s ClockTime = 236 s
Time = 1621
smoothSolver: Solving for Ux, Initial residual = 0.000340158, Final residual = 2.17397e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00301715, Final residual = 0.0001959, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00549428, Final residual = 5.46621e-05, No Iterations 4
time step continuity errors : sum local = 0.000121436, global = -2.64883e-05, cumulative = -0.312265
smoothSolver: Solving for omega, Initial residual = 9.90402e-05, Final residual = 8.66458e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00081885, Final residual = 5.61294e-05, No Iterations 4
ExecutionTime = 233.71 s ClockTime = 236 s
Time = 1622
smoothSolver: Solving for Ux, Initial residual = 0.000339344, Final residual = 2.16937e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00301191, Final residual = 0.000195628, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00548539, Final residual = 4.59335e-05, No Iterations 5
time step continuity errors : sum local = 0.000101973, global = 3.64115e-05, cumulative = -0.312228
smoothSolver: Solving for omega, Initial residual = 9.87341e-05, Final residual = 8.63809e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000818512, Final residual = 5.61184e-05, No Iterations 4
ExecutionTime = 233.86 s ClockTime = 236 s
Time = 1623
smoothSolver: Solving for Ux, Initial residual = 0.000338408, Final residual = 2.16397e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00300749, Final residual = 0.000195406, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00544494, Final residual = 4.92793e-05, No Iterations 4
time step continuity errors : sum local = 0.000109237, global = -2.29197e-05, cumulative = -0.312251
smoothSolver: Solving for omega, Initial residual = 9.84434e-05, Final residual = 8.61195e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000818177, Final residual = 5.6107e-05, No Iterations 4
ExecutionTime = 234.01 s ClockTime = 237 s
Time = 1624
smoothSolver: Solving for Ux, Initial residual = 0.000337606, Final residual = 2.15935e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00300178, Final residual = 0.000195098, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0054315, Final residual = 4.95333e-05, No Iterations 4
time step continuity errors : sum local = 0.000109718, global = -2.23451e-05, cumulative = -0.312274
smoothSolver: Solving for omega, Initial residual = 9.81447e-05, Final residual = 8.58593e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000817842, Final residual = 5.60951e-05, No Iterations 4
ExecutionTime = 234.14 s ClockTime = 237 s
Time = 1625
smoothSolver: Solving for Ux, Initial residual = 0.000336814, Final residual = 2.15475e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00299601, Final residual = 0.000194788, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00543106, Final residual = 4.16639e-05, No Iterations 5
time step continuity errors : sum local = 9.2216e-05, global = 3.21496e-05, cumulative = -0.312242
smoothSolver: Solving for omega, Initial residual = 9.78446e-05, Final residual = 8.55977e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000817504, Final residual = 5.60832e-05, No Iterations 4
ExecutionTime = 234.29 s ClockTime = 237 s
Time = 1626
smoothSolver: Solving for Ux, Initial residual = 0.000335939, Final residual = 2.14956e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00299114, Final residual = 0.000194532, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00541343, Final residual = 4.88276e-05, No Iterations 4
time step continuity errors : sum local = 0.000107926, global = -2.23848e-05, cumulative = -0.312264
smoothSolver: Solving for omega, Initial residual = 9.75486e-05, Final residual = 8.53358e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000817158, Final residual = 5.60722e-05, No Iterations 4
ExecutionTime = 234.42 s ClockTime = 237 s
Time = 1627
smoothSolver: Solving for Ux, Initial residual = 0.000335147, Final residual = 2.14502e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00298547, Final residual = 0.000194227, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00541604, Final residual = 5.29271e-05, No Iterations 4
time step continuity errors : sum local = 0.000116917, global = -2.54962e-05, cumulative = -0.312289
smoothSolver: Solving for omega, Initial residual = 9.72448e-05, Final residual = 8.50755e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000816823, Final residual = 5.60604e-05, No Iterations 4
ExecutionTime = 234.56 s ClockTime = 237 s
Time = 1628
smoothSolver: Solving for Ux, Initial residual = 0.00033432, Final residual = 2.14033e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00297996, Final residual = 0.000193934, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00541636, Final residual = 4.27787e-05, No Iterations 5
time step continuity errors : sum local = 9.44349e-05, global = 3.30832e-05, cumulative = -0.312256
smoothSolver: Solving for omega, Initial residual = 9.69396e-05, Final residual = 8.48152e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000816487, Final residual = 5.60484e-05, No Iterations 4
ExecutionTime = 234.71 s ClockTime = 237 s
Time = 1629
smoothSolver: Solving for Ux, Initial residual = 0.000333382, Final residual = 2.13491e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00297506, Final residual = 0.000193682, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00537922, Final residual = 5.01058e-05, No Iterations 4
time step continuity errors : sum local = 0.000110457, global = -2.32025e-05, cumulative = -0.31228
smoothSolver: Solving for omega, Initial residual = 9.66473e-05, Final residual = 8.45566e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000816145, Final residual = 5.60363e-05, No Iterations 4
ExecutionTime = 234.86 s ClockTime = 237 s
Time = 1630
smoothSolver: Solving for Ux, Initial residual = 0.000332562, Final residual = 2.13017e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00296913, Final residual = 0.000193361, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00536465, Final residual = 5.32846e-05, No Iterations 4
time step continuity errors : sum local = 0.000117375, global = -2.40835e-05, cumulative = -0.312304
smoothSolver: Solving for omega, Initial residual = 9.63456e-05, Final residual = 8.42993e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000815798, Final residual = 5.60248e-05, No Iterations 4
ExecutionTime = 235 s ClockTime = 238 s
Time = 1631
smoothSolver: Solving for Ux, Initial residual = 0.000331739, Final residual = 2.12537e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00296332, Final residual = 0.000193045, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00536002, Final residual = 4.63921e-05, No Iterations 5
time step continuity errors : sum local = 0.000102107, global = 3.47734e-05, cumulative = -0.312269
smoothSolver: Solving for omega, Initial residual = 9.60422e-05, Final residual = 8.4041e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00081546, Final residual = 5.60128e-05, No Iterations 4
ExecutionTime = 235.15 s ClockTime = 238 s
Time = 1632
smoothSolver: Solving for Ux, Initial residual = 0.000330821, Final residual = 2.11986e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00295843, Final residual = 0.000192783, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00533124, Final residual = 5.0648e-05, No Iterations 4
time step continuity errors : sum local = 0.000111301, global = -2.29747e-05, cumulative = -0.312292
smoothSolver: Solving for omega, Initial residual = 9.57507e-05, Final residual = 8.37827e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000815116, Final residual = 5.60005e-05, No Iterations 4
ExecutionTime = 235.3 s ClockTime = 238 s
Time = 1633
smoothSolver: Solving for Ux, Initial residual = 0.000330007, Final residual = 2.11515e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00295262, Final residual = 0.000192466, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00533561, Final residual = 3.71613e-05, No Iterations 5
time step continuity errors : sum local = 8.16073e-05, global = 2.80723e-05, cumulative = -0.312264
smoothSolver: Solving for omega, Initial residual = 9.54484e-05, Final residual = 8.3527e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000814772, Final residual = 5.59881e-05, No Iterations 4
ExecutionTime = 235.44 s ClockTime = 238 s
Time = 1634
smoothSolver: Solving for Ux, Initial residual = 0.000329113, Final residual = 2.10994e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00294742, Final residual = 0.000192186, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00531876, Final residual = 4.82925e-05, No Iterations 4
time step continuity errors : sum local = 0.000105932, global = -2.25187e-05, cumulative = -0.312286
smoothSolver: Solving for omega, Initial residual = 9.5154e-05, Final residual = 8.32718e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000814422, Final residual = 5.59759e-05, No Iterations 4
ExecutionTime = 235.58 s ClockTime = 238 s
Time = 1635
smoothSolver: Solving for Ux, Initial residual = 0.000328286, Final residual = 2.10517e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00294144, Final residual = 0.000191859, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00531782, Final residual = 3.98511e-05, No Iterations 5
time step continuity errors : sum local = 8.73576e-05, global = 2.99113e-05, cumulative = -0.312256
smoothSolver: Solving for omega, Initial residual = 9.48465e-05, Final residual = 8.30138e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000814081, Final residual = 5.59632e-05, No Iterations 4
ExecutionTime = 235.72 s ClockTime = 238 s
Time = 1636
smoothSolver: Solving for Ux, Initial residual = 0.000327363, Final residual = 2.09977e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00293606, Final residual = 0.000191572, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0052941, Final residual = 5.21047e-05, No Iterations 4
time step continuity errors : sum local = 0.000114076, global = -2.39995e-05, cumulative = -0.31228
smoothSolver: Solving for omega, Initial residual = 9.45512e-05, Final residual = 8.2757e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000813725, Final residual = 5.59508e-05, No Iterations 4
ExecutionTime = 235.87 s ClockTime = 238 s
Time = 1637
smoothSolver: Solving for Ux, Initial residual = 0.000326525, Final residual = 2.0949e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00293004, Final residual = 0.000191243, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00529059, Final residual = 4.46134e-05, No Iterations 5
time step continuity errors : sum local = 9.75992e-05, global = 3.32709e-05, cumulative = -0.312247
smoothSolver: Solving for omega, Initial residual = 9.42471e-05, Final residual = 8.25021e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000813372, Final residual = 5.59383e-05, No Iterations 4
ExecutionTime = 236.02 s ClockTime = 239 s
Time = 1638
smoothSolver: Solving for Ux, Initial residual = 0.000325597, Final residual = 2.08933e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00292484, Final residual = 0.000190961, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00527015, Final residual = 5.22656e-05, No Iterations 4
time step continuity errors : sum local = 0.00011417, global = -2.35739e-05, cumulative = -0.312271
smoothSolver: Solving for omega, Initial residual = 9.39573e-05, Final residual = 8.22479e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000813024, Final residual = 5.59255e-05, No Iterations 4
ExecutionTime = 236.16 s ClockTime = 239 s
Time = 1639
smoothSolver: Solving for Ux, Initial residual = 0.000324764, Final residual = 2.08444e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00291895, Final residual = 0.000190632, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00526717, Final residual = 4.26189e-05, No Iterations 5
time step continuity errors : sum local = 9.30235e-05, global = 3.1603e-05, cumulative = -0.312239
smoothSolver: Solving for omega, Initial residual = 9.3652e-05, Final residual = 8.19927e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000812675, Final residual = 5.59121e-05, No Iterations 4
ExecutionTime = 236.3 s ClockTime = 239 s
Time = 1640
smoothSolver: Solving for Ux, Initial residual = 0.000323838, Final residual = 2.07894e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0029137, Final residual = 0.000190346, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00524767, Final residual = 5.16262e-05, No Iterations 4
time step continuity errors : sum local = 0.000112529, global = -2.37481e-05, cumulative = -0.312263
smoothSolver: Solving for omega, Initial residual = 9.33588e-05, Final residual = 8.1738e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000812315, Final residual = 5.58987e-05, No Iterations 4
ExecutionTime = 236.45 s ClockTime = 239 s
Time = 1641
smoothSolver: Solving for Ux, Initial residual = 0.000322996, Final residual = 2.07404e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290771, Final residual = 0.000190015, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00524635, Final residual = 4.24123e-05, No Iterations 5
time step continuity errors : sum local = 9.23747e-05, global = 3.11937e-05, cumulative = -0.312232
smoothSolver: Solving for omega, Initial residual = 9.30532e-05, Final residual = 8.14838e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000811951, Final residual = 5.5886e-05, No Iterations 4
ExecutionTime = 236.6 s ClockTime = 239 s
Time = 1642
smoothSolver: Solving for Ux, Initial residual = 0.000322057, Final residual = 2.06847e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00290231, Final residual = 0.000189721, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00521665, Final residual = 3.73464e-05, No Iterations 5
time step continuity errors : sum local = 8.12309e-05, global = 2.75841e-05, cumulative = -0.312204
smoothSolver: Solving for omega, Initial residual = 9.27588e-05, Final residual = 8.12291e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000811604, Final residual = 5.58729e-05, No Iterations 4
ExecutionTime = 236.75 s ClockTime = 239 s
Time = 1643
smoothSolver: Solving for Ux, Initial residual = 0.000321146, Final residual = 2.06305e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289662, Final residual = 0.000189407, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00519608, Final residual = 4.83307e-05, No Iterations 4
time step continuity errors : sum local = 0.000104995, global = -2.18746e-05, cumulative = -0.312226
smoothSolver: Solving for omega, Initial residual = 9.24639e-05, Final residual = 8.09759e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000811251, Final residual = 5.58591e-05, No Iterations 4
ExecutionTime = 236.89 s ClockTime = 239 s
Time = 1644
smoothSolver: Solving for Ux, Initial residual = 0.000320314, Final residual = 2.05819e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00289042, Final residual = 0.000189062, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00520378, Final residual = 4.296e-05, No Iterations 5
time step continuity errors : sum local = 9.32613e-05, global = 3.1345e-05, cumulative = -0.312195
smoothSolver: Solving for omega, Initial residual = 9.21578e-05, Final residual = 8.07218e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000810887, Final residual = 5.58451e-05, No Iterations 4
ExecutionTime = 237.04 s ClockTime = 240 s
Time = 1645
smoothSolver: Solving for Ux, Initial residual = 0.00031938, Final residual = 2.05261e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00288505, Final residual = 0.000188767, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00518325, Final residual = 4.10305e-05, No Iterations 5
time step continuity errors : sum local = 8.89493e-05, global = 3.00393e-05, cumulative = -0.312164
smoothSolver: Solving for omega, Initial residual = 9.18598e-05, Final residual = 8.04677e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000810517, Final residual = 5.58318e-05, No Iterations 4
ExecutionTime = 237.19 s ClockTime = 240 s
Time = 1646
smoothSolver: Solving for Ux, Initial residual = 0.000318456, Final residual = 2.04708e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287957, Final residual = 0.000188463, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00515749, Final residual = 5.14318e-05, No Iterations 4
time step continuity errors : sum local = 0.000111352, global = -2.34638e-05, cumulative = -0.312188
smoothSolver: Solving for omega, Initial residual = 9.15641e-05, Final residual = 8.0215e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00081016, Final residual = 5.58183e-05, No Iterations 4
ExecutionTime = 237.33 s ClockTime = 240 s
Time = 1647
smoothSolver: Solving for Ux, Initial residual = 0.000317604, Final residual = 2.04209e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00287346, Final residual = 0.000188119, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00515784, Final residual = 4.46216e-05, No Iterations 5
time step continuity errors : sum local = 9.65301e-05, global = 3.22494e-05, cumulative = -0.312156
smoothSolver: Solving for omega, Initial residual = 9.1257e-05, Final residual = 7.9963e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000809799, Final residual = 5.58038e-05, No Iterations 4
ExecutionTime = 237.48 s ClockTime = 240 s
Time = 1648
smoothSolver: Solving for Ux, Initial residual = 0.000316648, Final residual = 2.03639e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00286801, Final residual = 0.000187819, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00513727, Final residual = 4.06565e-05, No Iterations 5
time step continuity errors : sum local = 8.78239e-05, global = 2.95492e-05, cumulative = -0.312126
smoothSolver: Solving for omega, Initial residual = 9.09579e-05, Final residual = 7.97098e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000809429, Final residual = 5.57892e-05, No Iterations 4
ExecutionTime = 237.63 s ClockTime = 240 s
Time = 1649
smoothSolver: Solving for Ux, Initial residual = 0.000315718, Final residual = 2.03081e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00286239, Final residual = 0.000187505, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00511649, Final residual = 3.51105e-05, No Iterations 5
time step continuity errors : sum local = 7.57422e-05, global = 2.54388e-05, cumulative = -0.312101
smoothSolver: Solving for omega, Initial residual = 9.06576e-05, Final residual = 7.94549e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000809053, Final residual = 5.5775e-05, No Iterations 4
ExecutionTime = 237.77 s ClockTime = 240 s
Time = 1650
smoothSolver: Solving for Ux, Initial residual = 0.000314817, Final residual = 2.02543e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00285657, Final residual = 0.000187178, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00511637, Final residual = 5.0399e-05, No Iterations 4
time step continuity errors : sum local = 0.000108598, global = -2.2747e-05, cumulative = -0.312123
smoothSolver: Solving for omega, Initial residual = 9.03588e-05, Final residual = 7.92024e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000808686, Final residual = 5.57603e-05, No Iterations 4
ExecutionTime = 238.13 s ClockTime = 241 s
Time = 1651
smoothSolver: Solving for Ux, Initial residual = 0.000313967, Final residual = 2.02046e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00285041, Final residual = 0.000186831, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00512845, Final residual = 4.62875e-05, No Iterations 5
time step continuity errors : sum local = 9.96612e-05, global = 3.27256e-05, cumulative = -0.312091
smoothSolver: Solving for omega, Initial residual = 9.00498e-05, Final residual = 7.89502e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000808309, Final residual = 5.57449e-05, No Iterations 4
ExecutionTime = 238.29 s ClockTime = 241 s
Time = 1652
smoothSolver: Solving for Ux, Initial residual = 0.000313, Final residual = 2.01465e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00284504, Final residual = 0.000186535, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00510688, Final residual = 4.57227e-05, No Iterations 5
time step continuity errors : sum local = 9.82958e-05, global = 3.28089e-05, cumulative = -0.312058
smoothSolver: Solving for omega, Initial residual = 8.97518e-05, Final residual = 7.86972e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000807924, Final residual = 5.57295e-05, No Iterations 4
ExecutionTime = 238.44 s ClockTime = 241 s
Time = 1653
smoothSolver: Solving for Ux, Initial residual = 0.000312042, Final residual = 2.00886e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00283952, Final residual = 0.000186227, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00508185, Final residual = 3.75262e-05, No Iterations 5
time step continuity errors : sum local = 8.05536e-05, global = 2.70775e-05, cumulative = -0.312031
smoothSolver: Solving for omega, Initial residual = 8.94518e-05, Final residual = 7.84437e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000807544, Final residual = 5.57145e-05, No Iterations 4
ExecutionTime = 238.58 s ClockTime = 241 s
Time = 1654
smoothSolver: Solving for Ux, Initial residual = 0.000311121, Final residual = 2.00332e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00283368, Final residual = 0.000185894, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00506949, Final residual = 5.05601e-05, No Iterations 4
time step continuity errors : sum local = 0.000108392, global = -2.26281e-05, cumulative = -0.312053
smoothSolver: Solving for omega, Initial residual = 8.91562e-05, Final residual = 7.81934e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000807169, Final residual = 5.56988e-05, No Iterations 4
ExecutionTime = 238.73 s ClockTime = 241 s
Time = 1655
smoothSolver: Solving for Ux, Initial residual = 0.000310264, Final residual = 1.99828e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00282748, Final residual = 0.000185542, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00508267, Final residual = 4.57162e-05, No Iterations 5
time step continuity errors : sum local = 9.79287e-05, global = 3.20226e-05, cumulative = -0.312021
smoothSolver: Solving for omega, Initial residual = 8.88471e-05, Final residual = 7.79426e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000806779, Final residual = 5.56825e-05, No Iterations 4
ExecutionTime = 238.87 s ClockTime = 241 s
Time = 1656
smoothSolver: Solving for Ux, Initial residual = 0.000309303, Final residual = 1.99247e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00282205, Final residual = 0.000185237, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0050658, Final residual = 4.58123e-05, No Iterations 5
time step continuity errors : sum local = 9.79872e-05, global = 3.24613e-05, cumulative = -0.311989
smoothSolver: Solving for omega, Initial residual = 8.85452e-05, Final residual = 7.76906e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000806383, Final residual = 5.56664e-05, No Iterations 4
ExecutionTime = 239.02 s ClockTime = 242 s
Time = 1657
smoothSolver: Solving for Ux, Initial residual = 0.000308339, Final residual = 1.98665e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00281651, Final residual = 0.000184927, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00504913, Final residual = 3.91131e-05, No Iterations 5
time step continuity errors : sum local = 8.35334e-05, global = 2.79908e-05, cumulative = -0.311961
smoothSolver: Solving for omega, Initial residual = 8.82467e-05, Final residual = 7.74398e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000805987, Final residual = 5.56505e-05, No Iterations 4
ExecutionTime = 239.17 s ClockTime = 242 s
Time = 1658
smoothSolver: Solving for Ux, Initial residual = 0.000307404, Final residual = 1.98101e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00281069, Final residual = 0.000184598, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00503833, Final residual = 3.5575e-05, No Iterations 5
time step continuity errors : sum local = 7.58758e-05, global = 2.53457e-05, cumulative = -0.311936
smoothSolver: Solving for omega, Initial residual = 8.79487e-05, Final residual = 7.71896e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000805599, Final residual = 5.56338e-05, No Iterations 4
ExecutionTime = 239.33 s ClockTime = 242 s
Time = 1659
smoothSolver: Solving for Ux, Initial residual = 0.000306491, Final residual = 1.97551e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00280478, Final residual = 0.000184263, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00503282, Final residual = 3.68288e-05, No Iterations 5
time step continuity errors : sum local = 7.84549e-05, global = 2.59911e-05, cumulative = -0.31191
smoothSolver: Solving for omega, Initial residual = 8.76475e-05, Final residual = 7.69386e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000805195, Final residual = 5.56164e-05, No Iterations 4
ExecutionTime = 239.48 s ClockTime = 242 s
Time = 1660
smoothSolver: Solving for Ux, Initial residual = 0.000305572, Final residual = 1.96999e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00279902, Final residual = 0.000183936, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00503294, Final residual = 4.03275e-05, No Iterations 5
time step continuity errors : sum local = 8.58033e-05, global = 2.82703e-05, cumulative = -0.311881
smoothSolver: Solving for omega, Initial residual = 8.7343e-05, Final residual = 7.66889e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000804785, Final residual = 5.55993e-05, No Iterations 4
ExecutionTime = 239.63 s ClockTime = 242 s
Time = 1661
smoothSolver: Solving for Ux, Initial residual = 0.000304632, Final residual = 1.96433e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00279337, Final residual = 0.000183613, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00502698, Final residual = 4.28177e-05, No Iterations 5
time step continuity errors : sum local = 9.09812e-05, global = 3.01543e-05, cumulative = -0.311851
smoothSolver: Solving for omega, Initial residual = 8.70405e-05, Final residual = 7.64394e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000804376, Final residual = 5.55821e-05, No Iterations 4
ExecutionTime = 239.78 s ClockTime = 242 s
Time = 1662
smoothSolver: Solving for Ux, Initial residual = 0.000303679, Final residual = 1.95856e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00278769, Final residual = 0.00018329, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00501735, Final residual = 4.23219e-05, No Iterations 5
time step continuity errors : sum local = 8.98002e-05, global = 2.99118e-05, cumulative = -0.311821
smoothSolver: Solving for omega, Initial residual = 8.67395e-05, Final residual = 7.61887e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000803967, Final residual = 5.55644e-05, No Iterations 4
ExecutionTime = 239.92 s ClockTime = 243 s
Time = 1663
smoothSolver: Solving for Ux, Initial residual = 0.00030273, Final residual = 1.95279e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00278194, Final residual = 0.000182964, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00500232, Final residual = 4.0477e-05, No Iterations 5
time step continuity errors : sum local = 8.57623e-05, global = 2.85372e-05, cumulative = -0.311793
smoothSolver: Solving for omega, Initial residual = 8.64382e-05, Final residual = 7.59389e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000803549, Final residual = 5.55459e-05, No Iterations 4
ExecutionTime = 240.07 s ClockTime = 243 s
Time = 1664
smoothSolver: Solving for Ux, Initial residual = 0.00030179, Final residual = 1.94706e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00277618, Final residual = 0.000182636, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00499236, Final residual = 3.96346e-05, No Iterations 5
time step continuity errors : sum local = 8.38596e-05, global = 2.77735e-05, cumulative = -0.311765
smoothSolver: Solving for omega, Initial residual = 8.61371e-05, Final residual = 7.569e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000803128, Final residual = 5.55278e-05, No Iterations 4
ExecutionTime = 240.22 s ClockTime = 243 s
Time = 1665
smoothSolver: Solving for Ux, Initial residual = 0.000300855, Final residual = 1.94137e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00277045, Final residual = 0.000182309, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00499023, Final residual = 4.04574e-05, No Iterations 5
time step continuity errors : sum local = 8.54837e-05, global = 2.81908e-05, cumulative = -0.311737
smoothSolver: Solving for omega, Initial residual = 8.58376e-05, Final residual = 7.54419e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000802704, Final residual = 5.5509e-05, No Iterations 4
ExecutionTime = 240.36 s ClockTime = 243 s
Time = 1666
smoothSolver: Solving for Ux, Initial residual = 0.000299915, Final residual = 1.93567e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00276478, Final residual = 0.000181985, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00498499, Final residual = 4.18906e-05, No Iterations 5
time step continuity errors : sum local = 8.83915e-05, global = 2.91511e-05, cumulative = -0.311708
smoothSolver: Solving for omega, Initial residual = 8.55372e-05, Final residual = 7.51926e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000802276, Final residual = 5.54903e-05, No Iterations 4
ExecutionTime = 240.51 s ClockTime = 243 s
Time = 1667
smoothSolver: Solving for Ux, Initial residual = 0.000298965, Final residual = 1.9299e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027591, Final residual = 0.000181661, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00497141, Final residual = 4.27339e-05, No Iterations 5
time step continuity errors : sum local = 9.00436e-05, global = 2.98024e-05, cumulative = -0.311678
smoothSolver: Solving for omega, Initial residual = 8.52345e-05, Final residual = 7.49435e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000801841, Final residual = 5.54709e-05, No Iterations 4
ExecutionTime = 240.65 s ClockTime = 243 s
Time = 1668
smoothSolver: Solving for Ux, Initial residual = 0.000298012, Final residual = 1.92408e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00275339, Final residual = 0.000181333, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00495651, Final residual = 4.27106e-05, No Iterations 5
time step continuity errors : sum local = 8.98634e-05, global = 2.98212e-05, cumulative = -0.311648
smoothSolver: Solving for omega, Initial residual = 8.49339e-05, Final residual = 7.4695e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000801409, Final residual = 5.54514e-05, No Iterations 4
ExecutionTime = 240.81 s ClockTime = 243 s
Time = 1669
smoothSolver: Solving for Ux, Initial residual = 0.00029706, Final residual = 1.91826e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00274768, Final residual = 0.000181004, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0049504, Final residual = 4.23403e-05, No Iterations 5
time step continuity errors : sum local = 8.89532e-05, global = 2.95171e-05, cumulative = -0.311619
smoothSolver: Solving for omega, Initial residual = 8.46333e-05, Final residual = 7.44458e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000800968, Final residual = 5.54313e-05, No Iterations 4
ExecutionTime = 240.96 s ClockTime = 244 s
Time = 1670
smoothSolver: Solving for Ux, Initial residual = 0.000296114, Final residual = 1.91247e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00274199, Final residual = 0.000180678, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00494343, Final residual = 4.2298e-05, No Iterations 5
time step continuity errors : sum local = 8.87345e-05, global = 2.93564e-05, cumulative = -0.311589
smoothSolver: Solving for omega, Initial residual = 8.43334e-05, Final residual = 7.41987e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00080052, Final residual = 5.5411e-05, No Iterations 4
ExecutionTime = 241.11 s ClockTime = 244 s
Time = 1671
smoothSolver: Solving for Ux, Initial residual = 0.000295167, Final residual = 1.90667e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273632, Final residual = 0.000180354, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00494177, Final residual = 4.27405e-05, No Iterations 5
time step continuity errors : sum local = 8.95327e-05, global = 2.95266e-05, cumulative = -0.31156
smoothSolver: Solving for omega, Initial residual = 8.40326e-05, Final residual = 7.39512e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000800067, Final residual = 5.53906e-05, No Iterations 4
ExecutionTime = 241.26 s ClockTime = 244 s
Time = 1672
smoothSolver: Solving for Ux, Initial residual = 0.000294217, Final residual = 1.90086e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00273068, Final residual = 0.000180029, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00493491, Final residual = 4.33439e-05, No Iterations 5
time step continuity errors : sum local = 9.06646e-05, global = 2.98935e-05, cumulative = -0.31153
smoothSolver: Solving for omega, Initial residual = 8.37325e-05, Final residual = 7.37039e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000799619, Final residual = 5.53696e-05, No Iterations 4
ExecutionTime = 241.4 s ClockTime = 244 s
Time = 1673
smoothSolver: Solving for Ux, Initial residual = 0.000293263, Final residual = 1.89502e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00272503, Final residual = 0.000179704, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00492689, Final residual = 4.37435e-05, No Iterations 5
time step continuity errors : sum local = 9.13651e-05, global = 3.02013e-05, cumulative = -0.3115
smoothSolver: Solving for omega, Initial residual = 8.34349e-05, Final residual = 7.34566e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000799163, Final residual = 5.53482e-05, No Iterations 4
ExecutionTime = 241.55 s ClockTime = 244 s
Time = 1674
smoothSolver: Solving for Ux, Initial residual = 0.000292308, Final residual = 1.88915e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00271936, Final residual = 0.000179377, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00491606, Final residual = 4.3898e-05, No Iterations 5
time step continuity errors : sum local = 9.1549e-05, global = 3.0339e-05, cumulative = -0.311469
smoothSolver: Solving for omega, Initial residual = 8.31358e-05, Final residual = 7.32108e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000798697, Final residual = 5.53263e-05, No Iterations 4
ExecutionTime = 241.7 s ClockTime = 244 s
Time = 1675
smoothSolver: Solving for Ux, Initial residual = 0.000291353, Final residual = 1.88327e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00271371, Final residual = 0.000179049, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00490598, Final residual = 4.40003e-05, No Iterations 5
time step continuity errors : sum local = 9.16224e-05, global = 3.03651e-05, cumulative = -0.311439
smoothSolver: Solving for omega, Initial residual = 8.28377e-05, Final residual = 7.2966e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000798227, Final residual = 5.53047e-05, No Iterations 4
ExecutionTime = 241.85 s ClockTime = 244 s
Time = 1676
smoothSolver: Solving for Ux, Initial residual = 0.000290399, Final residual = 1.8774e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027081, Final residual = 0.000178724, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00491813, Final residual = 4.42271e-05, No Iterations 5
time step continuity errors : sum local = 9.19541e-05, global = 3.04038e-05, cumulative = -0.311408
smoothSolver: Solving for omega, Initial residual = 8.2538e-05, Final residual = 7.27188e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00079776, Final residual = 5.52821e-05, No Iterations 4
ExecutionTime = 242 s ClockTime = 245 s
Time = 1677
smoothSolver: Solving for Ux, Initial residual = 0.000289448, Final residual = 1.87153e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0027025, Final residual = 0.000178402, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00491299, Final residual = 4.45481e-05, No Iterations 5
time step continuity errors : sum local = 9.24798e-05, global = 3.05152e-05, cumulative = -0.311378
smoothSolver: Solving for omega, Initial residual = 8.22393e-05, Final residual = 7.24724e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000797282, Final residual = 5.52591e-05, No Iterations 4
ExecutionTime = 242.15 s ClockTime = 245 s
Time = 1678
smoothSolver: Solving for Ux, Initial residual = 0.000288493, Final residual = 1.86564e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0026969, Final residual = 0.000178079, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00490704, Final residual = 4.48874e-05, No Iterations 5
time step continuity errors : sum local = 9.30409e-05, global = 3.07034e-05, cumulative = -0.311347
smoothSolver: Solving for omega, Initial residual = 8.1941e-05, Final residual = 7.22284e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000796799, Final residual = 5.52358e-05, No Iterations 4
ExecutionTime = 242.29 s ClockTime = 245 s
Time = 1679
smoothSolver: Solving for Ux, Initial residual = 0.000287536, Final residual = 1.85973e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0026913, Final residual = 0.000177755, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00489897, Final residual = 4.52053e-05, No Iterations 5
time step continuity errors : sum local = 9.35537e-05, global = 3.09229e-05, cumulative = -0.311316
smoothSolver: Solving for omega, Initial residual = 8.16434e-05, Final residual = 7.19841e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000796316, Final residual = 5.52127e-05, No Iterations 4
ExecutionTime = 242.44 s ClockTime = 245 s
Time = 1680
smoothSolver: Solving for Ux, Initial residual = 0.000286581, Final residual = 1.85382e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00268572, Final residual = 0.00017743, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00489584, Final residual = 4.54644e-05, No Iterations 5
time step continuity errors : sum local = 9.39412e-05, global = 3.10958e-05, cumulative = -0.311285
smoothSolver: Solving for omega, Initial residual = 8.13473e-05, Final residual = 7.17394e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000795827, Final residual = 5.51887e-05, No Iterations 4
ExecutionTime = 242.6 s ClockTime = 245 s
Time = 1681
smoothSolver: Solving for Ux, Initial residual = 0.000285626, Final residual = 1.84789e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00268017, Final residual = 0.000177106, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00489358, Final residual = 4.56847e-05, No Iterations 5
time step continuity errors : sum local = 9.4246e-05, global = 3.1195e-05, cumulative = -0.311254
smoothSolver: Solving for omega, Initial residual = 8.10493e-05, Final residual = 7.14953e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000795327, Final residual = 5.5164e-05, No Iterations 4
ExecutionTime = 242.75 s ClockTime = 245 s
Time = 1682
smoothSolver: Solving for Ux, Initial residual = 0.00028467, Final residual = 1.84197e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00267463, Final residual = 0.000176784, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00488588, Final residual = 4.59044e-05, No Iterations 5
time step continuity errors : sum local = 9.45484e-05, global = 3.12535e-05, cumulative = -0.311223
smoothSolver: Solving for omega, Initial residual = 8.07522e-05, Final residual = 7.12524e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000794823, Final residual = 5.51394e-05, No Iterations 4
ExecutionTime = 242.91 s ClockTime = 246 s
Time = 1683
smoothSolver: Solving for Ux, Initial residual = 0.000283715, Final residual = 1.83603e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00266911, Final residual = 0.000176463, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0048825, Final residual = 4.61219e-05, No Iterations 5
time step continuity errors : sum local = 9.48439e-05, global = 3.13256e-05, cumulative = -0.311191
smoothSolver: Solving for omega, Initial residual = 8.04549e-05, Final residual = 7.1008e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000794325, Final residual = 5.51147e-05, No Iterations 4
ExecutionTime = 243.06 s ClockTime = 246 s
Time = 1684
smoothSolver: Solving for Ux, Initial residual = 0.000282762, Final residual = 1.83009e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00266358, Final residual = 0.000176143, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00487933, Final residual = 4.63434e-05, No Iterations 5
time step continuity errors : sum local = 9.51456e-05, global = 3.14402e-05, cumulative = -0.31116
smoothSolver: Solving for omega, Initial residual = 8.01597e-05, Final residual = 7.07652e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000793813, Final residual = 5.5089e-05, No Iterations 4
ExecutionTime = 243.23 s ClockTime = 246 s
Time = 1685
smoothSolver: Solving for Ux, Initial residual = 0.000281806, Final residual = 1.82416e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00265806, Final residual = 0.000175823, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00487679, Final residual = 4.65661e-05, No Iterations 5
time step continuity errors : sum local = 9.54479e-05, global = 3.15787e-05, cumulative = -0.311128
smoothSolver: Solving for omega, Initial residual = 7.98635e-05, Final residual = 7.05222e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000793293, Final residual = 5.5063e-05, No Iterations 4
ExecutionTime = 243.38 s ClockTime = 246 s
Time = 1686
smoothSolver: Solving for Ux, Initial residual = 0.000280851, Final residual = 1.81819e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00265257, Final residual = 0.000175502, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00486793, Final residual = 4.68038e-05, No Iterations 5
time step continuity errors : sum local = 9.57778e-05, global = 3.17143e-05, cumulative = -0.311097
smoothSolver: Solving for omega, Initial residual = 7.95676e-05, Final residual = 7.02793e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000792766, Final residual = 5.50374e-05, No Iterations 4
ExecutionTime = 243.54 s ClockTime = 246 s
Time = 1687
smoothSolver: Solving for Ux, Initial residual = 0.000279898, Final residual = 1.81222e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0026471, Final residual = 0.000175181, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00486503, Final residual = 4.70304e-05, No Iterations 5
time step continuity errors : sum local = 9.60823e-05, global = 3.18157e-05, cumulative = -0.311065
smoothSolver: Solving for omega, Initial residual = 7.92746e-05, Final residual = 7.00375e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000792251, Final residual = 5.50109e-05, No Iterations 4
ExecutionTime = 243.7 s ClockTime = 246 s
Time = 1688
smoothSolver: Solving for Ux, Initial residual = 0.000278944, Final residual = 1.80627e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00264166, Final residual = 0.000174861, No Iterations 4
GAMG: Solving for p, Initial residual = 0.004865, Final residual = 4.72453e-05, No Iterations 5
time step continuity errors : sum local = 9.63617e-05, global = 3.18882e-05, cumulative = -0.311033
smoothSolver: Solving for omega, Initial residual = 7.8981e-05, Final residual = 6.97969e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000791717, Final residual = 5.49835e-05, No Iterations 4
ExecutionTime = 243.85 s ClockTime = 247 s
Time = 1689
smoothSolver: Solving for Ux, Initial residual = 0.00027799, Final residual = 1.80029e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00263621, Final residual = 0.000174544, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00486455, Final residual = 4.74703e-05, No Iterations 5
time step continuity errors : sum local = 9.66597e-05, global = 3.19686e-05, cumulative = -0.311001
smoothSolver: Solving for omega, Initial residual = 7.86885e-05, Final residual = 6.95571e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000791176, Final residual = 5.49559e-05, No Iterations 4
ExecutionTime = 244 s ClockTime = 247 s
Time = 1690
smoothSolver: Solving for Ux, Initial residual = 0.000277038, Final residual = 1.79432e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00263078, Final residual = 0.000174227, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00485655, Final residual = 4.76957e-05, No Iterations 5
time step continuity errors : sum local = 9.69562e-05, global = 3.20713e-05, cumulative = -0.310969
smoothSolver: Solving for omega, Initial residual = 7.83931e-05, Final residual = 6.9316e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000790628, Final residual = 5.49288e-05, No Iterations 4
ExecutionTime = 244.15 s ClockTime = 247 s
Time = 1691
smoothSolver: Solving for Ux, Initial residual = 0.000276087, Final residual = 1.78835e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00262536, Final residual = 0.000173911, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00485085, Final residual = 4.79138e-05, No Iterations 5
time step continuity errors : sum local = 9.72361e-05, global = 3.21874e-05, cumulative = -0.310937
smoothSolver: Solving for omega, Initial residual = 7.8102e-05, Final residual = 6.90764e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000790089, Final residual = 5.49006e-05, No Iterations 4
ExecutionTime = 244.29 s ClockTime = 247 s
Time = 1692
smoothSolver: Solving for Ux, Initial residual = 0.000275134, Final residual = 1.78238e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00261998, Final residual = 0.000173595, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00484502, Final residual = 4.81261e-05, No Iterations 5
time step continuity errors : sum local = 9.75023e-05, global = 3.22956e-05, cumulative = -0.310904
smoothSolver: Solving for omega, Initial residual = 7.78108e-05, Final residual = 6.88368e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000789536, Final residual = 5.48716e-05, No Iterations 4
ExecutionTime = 244.45 s ClockTime = 247 s
Time = 1693
smoothSolver: Solving for Ux, Initial residual = 0.000274184, Final residual = 1.77639e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00261461, Final residual = 0.000173279, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00484118, Final residual = 4.83363e-05, No Iterations 5
time step continuity errors : sum local = 9.77616e-05, global = 3.23914e-05, cumulative = -0.310872
smoothSolver: Solving for omega, Initial residual = 7.75196e-05, Final residual = 6.85975e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000788972, Final residual = 5.48423e-05, No Iterations 4
ExecutionTime = 244.6 s ClockTime = 247 s
Time = 1694
smoothSolver: Solving for Ux, Initial residual = 0.000273233, Final residual = 1.77041e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00260926, Final residual = 0.000172963, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00483836, Final residual = 2.55821e-05, No Iterations 6
time step continuity errors : sum local = 5.16521e-05, global = -5.77917e-06, cumulative = -0.310878
smoothSolver: Solving for omega, Initial residual = 7.72312e-05, Final residual = 6.83601e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000788405, Final residual = 5.48134e-05, No Iterations 4
ExecutionTime = 244.76 s ClockTime = 247 s
Time = 1695
smoothSolver: Solving for Ux, Initial residual = 0.000272287, Final residual = 1.76445e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00260384, Final residual = 0.000172644, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00483713, Final residual = 2.65425e-05, No Iterations 6
time step continuity errors : sum local = 5.35005e-05, global = -4.70062e-06, cumulative = -0.310883
smoothSolver: Solving for omega, Initial residual = 7.69373e-05, Final residual = 6.81217e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000787841, Final residual = 5.47836e-05, No Iterations 4
ExecutionTime = 244.91 s ClockTime = 248 s
Time = 1696
smoothSolver: Solving for Ux, Initial residual = 0.000271338, Final residual = 1.75846e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00259858, Final residual = 0.000172336, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00484031, Final residual = 2.70231e-05, No Iterations 6
time step continuity errors : sum local = 5.43751e-05, global = -4.42228e-06, cumulative = -0.310887
smoothSolver: Solving for omega, Initial residual = 7.66493e-05, Final residual = 6.78845e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000787265, Final residual = 5.47527e-05, No Iterations 4
ExecutionTime = 245.08 s ClockTime = 248 s
Time = 1697
smoothSolver: Solving for Ux, Initial residual = 0.000270389, Final residual = 1.75247e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00259335, Final residual = 0.000172032, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00484147, Final residual = 2.69707e-05, No Iterations 6
time step continuity errors : sum local = 5.41746e-05, global = -4.56134e-06, cumulative = -0.310892
smoothSolver: Solving for omega, Initial residual = 7.63606e-05, Final residual = 6.76472e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000786677, Final residual = 5.47218e-05, No Iterations 4
ExecutionTime = 245.24 s ClockTime = 248 s
Time = 1698
smoothSolver: Solving for Ux, Initial residual = 0.000269444, Final residual = 1.74651e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00258808, Final residual = 0.000171722, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0048361, Final residual = 2.67889e-05, No Iterations 6
time step continuity errors : sum local = 5.37155e-05, global = -4.98643e-06, cumulative = -0.310897
smoothSolver: Solving for omega, Initial residual = 7.60724e-05, Final residual = 6.74113e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000786089, Final residual = 5.46909e-05, No Iterations 4
ExecutionTime = 245.4 s ClockTime = 248 s
Time = 1699
smoothSolver: Solving for Ux, Initial residual = 0.000268502, Final residual = 1.74054e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00258275, Final residual = 0.000171406, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00482776, Final residual = 2.71047e-05, No Iterations 6
time step continuity errors : sum local = 5.42538e-05, global = -5.33601e-06, cumulative = -0.310902
smoothSolver: Solving for omega, Initial residual = 7.57865e-05, Final residual = 6.71762e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000785501, Final residual = 5.46591e-05, No Iterations 4
ExecutionTime = 245.55 s ClockTime = 248 s
Time = 1700
smoothSolver: Solving for Ux, Initial residual = 0.000267556, Final residual = 1.73455e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00257746, Final residual = 0.000171093, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00482107, Final residual = 2.71042e-05, No Iterations 6
time step continuity errors : sum local = 5.41572e-05, global = -5.1992e-06, cumulative = -0.310907
smoothSolver: Solving for omega, Initial residual = 7.55005e-05, Final residual = 6.69395e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0007849, Final residual = 5.46267e-05, No Iterations 4
ExecutionTime = 245.92 s ClockTime = 249 s
Time = 1701
smoothSolver: Solving for Ux, Initial residual = 0.000266612, Final residual = 1.72856e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00257229, Final residual = 0.000170787, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00481941, Final residual = 2.733e-05, No Iterations 6
time step continuity errors : sum local = 5.45115e-05, global = -4.97729e-06, cumulative = -0.310912
smoothSolver: Solving for omega, Initial residual = 7.52142e-05, Final residual = 6.67046e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000784294, Final residual = 5.45941e-05, No Iterations 4
ExecutionTime = 246.09 s ClockTime = 249 s
Time = 1702
smoothSolver: Solving for Ux, Initial residual = 0.000265671, Final residual = 1.72259e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00256719, Final residual = 0.000170486, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00482157, Final residual = 2.74474e-05, No Iterations 6
time step continuity errors : sum local = 5.46481e-05, global = -4.91208e-06, cumulative = -0.310917
smoothSolver: Solving for omega, Initial residual = 7.49297e-05, Final residual = 6.64709e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000783686, Final residual = 5.45614e-05, No Iterations 4
ExecutionTime = 246.25 s ClockTime = 249 s
Time = 1703
smoothSolver: Solving for Ux, Initial residual = 0.000264731, Final residual = 1.71661e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00256204, Final residual = 0.000170183, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00482604, Final residual = 2.7518e-05, No Iterations 6
time step continuity errors : sum local = 5.46908e-05, global = -5.02648e-06, cumulative = -0.310922
smoothSolver: Solving for omega, Initial residual = 7.46455e-05, Final residual = 6.62382e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000783076, Final residual = 5.45278e-05, No Iterations 4
ExecutionTime = 246.42 s ClockTime = 249 s
Time = 1704
smoothSolver: Solving for Ux, Initial residual = 0.000263793, Final residual = 1.71065e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00255683, Final residual = 0.000169878, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00483226, Final residual = 2.76266e-05, No Iterations 6
time step continuity errors : sum local = 5.4808e-05, global = -5.19267e-06, cumulative = -0.310927
smoothSolver: Solving for omega, Initial residual = 7.43612e-05, Final residual = 6.60047e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000782454, Final residual = 5.44938e-05, No Iterations 4
ExecutionTime = 246.61 s ClockTime = 249 s
Time = 1705
smoothSolver: Solving for Ux, Initial residual = 0.000262858, Final residual = 1.70469e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00255168, Final residual = 0.000169573, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00483039, Final residual = 2.77896e-05, No Iterations 6
time step continuity errors : sum local = 5.50319e-05, global = -5.27822e-06, cumulative = -0.310932
smoothSolver: Solving for omega, Initial residual = 7.40786e-05, Final residual = 6.57728e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000781829, Final residual = 5.44596e-05, No Iterations 4
ExecutionTime = 246.77 s ClockTime = 249 s
Time = 1706
smoothSolver: Solving for Ux, Initial residual = 0.000261923, Final residual = 1.69871e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0025466, Final residual = 0.00016927, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00482404, Final residual = 2.79423e-05, No Iterations 6
time step continuity errors : sum local = 5.52337e-05, global = -5.26918e-06, cumulative = -0.310938
smoothSolver: Solving for omega, Initial residual = 7.3798e-05, Final residual = 6.55427e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000781199, Final residual = 5.44248e-05, No Iterations 4
ExecutionTime = 246.93 s ClockTime = 250 s
Time = 1707
smoothSolver: Solving for Ux, Initial residual = 0.000260987, Final residual = 1.69273e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00254155, Final residual = 0.00016897, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00482201, Final residual = 2.80536e-05, No Iterations 6
time step continuity errors : sum local = 5.53528e-05, global = -5.24907e-06, cumulative = -0.310943
smoothSolver: Solving for omega, Initial residual = 7.35186e-05, Final residual = 6.5312e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000780564, Final residual = 5.43893e-05, No Iterations 4
ExecutionTime = 247.08 s ClockTime = 250 s
Time = 1708
smoothSolver: Solving for Ux, Initial residual = 0.000260057, Final residual = 1.68678e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00253652, Final residual = 0.000168673, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00482073, Final residual = 2.81503e-05, No Iterations 6
time step continuity errors : sum local = 5.54426e-05, global = -5.28045e-06, cumulative = -0.310948
smoothSolver: Solving for omega, Initial residual = 7.32386e-05, Final residual = 6.50822e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000779918, Final residual = 5.43537e-05, No Iterations 4
ExecutionTime = 247.25 s ClockTime = 250 s
Time = 1709
smoothSolver: Solving for Ux, Initial residual = 0.000259129, Final residual = 1.68083e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0025315, Final residual = 0.000168376, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00482158, Final residual = 2.82667e-05, No Iterations 6
time step continuity errors : sum local = 5.55701e-05, global = -5.36126e-06, cumulative = -0.310954
smoothSolver: Solving for omega, Initial residual = 7.29596e-05, Final residual = 6.48529e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000779272, Final residual = 5.43174e-05, No Iterations 4
ExecutionTime = 247.42 s ClockTime = 250 s
Time = 1710
smoothSolver: Solving for Ux, Initial residual = 0.000258202, Final residual = 1.67488e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00252647, Final residual = 0.000168078, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00481808, Final residual = 2.84197e-05, No Iterations 6
time step continuity errors : sum local = 5.57686e-05, global = -5.44267e-06, cumulative = -0.310959
smoothSolver: Solving for omega, Initial residual = 7.26815e-05, Final residual = 6.46246e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000778619, Final residual = 5.42809e-05, No Iterations 4
ExecutionTime = 247.57 s ClockTime = 250 s
Time = 1711
smoothSolver: Solving for Ux, Initial residual = 0.000257276, Final residual = 1.66893e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00252147, Final residual = 0.000167783, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0048124, Final residual = 2.85926e-05, No Iterations 6
time step continuity errors : sum local = 5.60048e-05, global = -5.49472e-06, cumulative = -0.310965
smoothSolver: Solving for omega, Initial residual = 7.24053e-05, Final residual = 6.43968e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000777961, Final residual = 5.42435e-05, No Iterations 4
ExecutionTime = 247.73 s ClockTime = 251 s
Time = 1712
smoothSolver: Solving for Ux, Initial residual = 0.000256353, Final residual = 1.663e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00251653, Final residual = 0.00016749, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00481011, Final residual = 2.87536e-05, No Iterations 6
time step continuity errors : sum local = 5.62165e-05, global = -5.5263e-06, cumulative = -0.31097
smoothSolver: Solving for omega, Initial residual = 7.21302e-05, Final residual = 6.41712e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000777296, Final residual = 5.42061e-05, No Iterations 4
ExecutionTime = 247.9 s ClockTime = 251 s
Time = 1713
smoothSolver: Solving for Ux, Initial residual = 0.000255433, Final residual = 1.65706e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00251163, Final residual = 0.000167196, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00480606, Final residual = 2.88897e-05, No Iterations 6
time step continuity errors : sum local = 5.6378e-05, global = -5.56104e-06, cumulative = -0.310976
smoothSolver: Solving for omega, Initial residual = 7.18563e-05, Final residual = 6.39473e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000776626, Final residual = 5.4168e-05, No Iterations 4
ExecutionTime = 248.06 s ClockTime = 251 s
Time = 1714
smoothSolver: Solving for Ux, Initial residual = 0.000254513, Final residual = 1.65114e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00250673, Final residual = 0.000166903, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00481039, Final residual = 2.90175e-05, No Iterations 6
time step continuity errors : sum local = 5.65223e-05, global = -5.61395e-06, cumulative = -0.310981
smoothSolver: Solving for omega, Initial residual = 7.15816e-05, Final residual = 6.37217e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000775947, Final residual = 5.41296e-05, No Iterations 4
ExecutionTime = 248.21 s ClockTime = 251 s
Time = 1715
smoothSolver: Solving for Ux, Initial residual = 0.000253598, Final residual = 1.64524e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00250184, Final residual = 0.000166614, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00480981, Final residual = 2.9156e-05, No Iterations 6
time step continuity errors : sum local = 5.66868e-05, global = -5.67712e-06, cumulative = -0.310987
smoothSolver: Solving for omega, Initial residual = 7.13082e-05, Final residual = 6.34975e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000775264, Final residual = 5.40905e-05, No Iterations 4
ExecutionTime = 248.36 s ClockTime = 251 s
Time = 1716
smoothSolver: Solving for Ux, Initial residual = 0.000252686, Final residual = 1.63933e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00249699, Final residual = 0.000166326, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00481277, Final residual = 2.93077e-05, No Iterations 6
time step continuity errors : sum local = 5.68755e-05, global = -5.73479e-06, cumulative = -0.310993
smoothSolver: Solving for omega, Initial residual = 7.10368e-05, Final residual = 6.32748e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000774579, Final residual = 5.40511e-05, No Iterations 4
ExecutionTime = 248.52 s ClockTime = 251 s
Time = 1717
smoothSolver: Solving for Ux, Initial residual = 0.000251772, Final residual = 1.63344e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00249216, Final residual = 0.000166039, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00481455, Final residual = 2.94674e-05, No Iterations 6
time step continuity errors : sum local = 5.70788e-05, global = -5.78014e-06, cumulative = -0.310998
smoothSolver: Solving for omega, Initial residual = 7.07688e-05, Final residual = 6.3054e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000773883, Final residual = 5.40113e-05, No Iterations 4
ExecutionTime = 248.67 s ClockTime = 251 s
Time = 1718
smoothSolver: Solving for Ux, Initial residual = 0.000250863, Final residual = 1.62756e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00248735, Final residual = 0.000165753, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00482141, Final residual = 2.96182e-05, No Iterations 6
time step continuity errors : sum local = 5.72638e-05, global = -5.81901e-06, cumulative = -0.311004
smoothSolver: Solving for omega, Initial residual = 7.04995e-05, Final residual = 6.28338e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000773179, Final residual = 5.39711e-05, No Iterations 4
ExecutionTime = 248.83 s ClockTime = 252 s
Time = 1719
smoothSolver: Solving for Ux, Initial residual = 0.000249958, Final residual = 1.62168e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00248257, Final residual = 0.000165469, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00482726, Final residual = 2.97518e-05, No Iterations 6
time step continuity errors : sum local = 5.74144e-05, global = -5.86159e-06, cumulative = -0.31101
smoothSolver: Solving for omega, Initial residual = 7.02344e-05, Final residual = 6.2615e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000772474, Final residual = 5.39304e-05, No Iterations 4
ExecutionTime = 248.99 s ClockTime = 252 s
Time = 1720
smoothSolver: Solving for Ux, Initial residual = 0.000249054, Final residual = 1.61582e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00247785, Final residual = 0.000165185, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00483364, Final residual = 2.98619e-05, No Iterations 6
time step continuity errors : sum local = 5.75183e-05, global = -5.90975e-06, cumulative = -0.311016
smoothSolver: Solving for omega, Initial residual = 6.99689e-05, Final residual = 6.23981e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000771766, Final residual = 5.3889e-05, No Iterations 4
ExecutionTime = 249.15 s ClockTime = 252 s
Time = 1721
smoothSolver: Solving for Ux, Initial residual = 0.000248153, Final residual = 1.60997e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00247315, Final residual = 0.000164902, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00484018, Final residual = 2.99669e-05, No Iterations 6
time step continuity errors : sum local = 5.76117e-05, global = -5.96157e-06, cumulative = -0.311022
smoothSolver: Solving for omega, Initial residual = 6.97029e-05, Final residual = 6.21808e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000771043, Final residual = 5.38473e-05, No Iterations 4
ExecutionTime = 249.31 s ClockTime = 252 s
Time = 1722
smoothSolver: Solving for Ux, Initial residual = 0.000247256, Final residual = 1.60413e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00246843, Final residual = 0.000164623, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00484338, Final residual = 3.00727e-05, No Iterations 6
time step continuity errors : sum local = 5.7706e-05, global = -6.00915e-06, cumulative = -0.311028
smoothSolver: Solving for omega, Initial residual = 6.94395e-05, Final residual = 6.19654e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000770315, Final residual = 5.38054e-05, No Iterations 4
ExecutionTime = 249.48 s ClockTime = 252 s
Time = 1723
smoothSolver: Solving for Ux, Initial residual = 0.000246361, Final residual = 1.5983e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00246373, Final residual = 0.000164345, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00484343, Final residual = 3.0186e-05, No Iterations 6
time step continuity errors : sum local = 5.78139e-05, global = -6.05102e-06, cumulative = -0.311034
smoothSolver: Solving for omega, Initial residual = 6.91777e-05, Final residual = 6.17505e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000769593, Final residual = 5.3763e-05, No Iterations 4
ExecutionTime = 249.65 s ClockTime = 252 s
Time = 1724
smoothSolver: Solving for Ux, Initial residual = 0.000245468, Final residual = 1.59249e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0024591, Final residual = 0.000164068, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00484254, Final residual = 3.03011e-05, No Iterations 6
time step continuity errors : sum local = 5.79237e-05, global = -6.08762e-06, cumulative = -0.31104
smoothSolver: Solving for omega, Initial residual = 6.89154e-05, Final residual = 6.1536e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000768858, Final residual = 5.37194e-05, No Iterations 4
ExecutionTime = 249.81 s ClockTime = 253 s
Time = 1725
smoothSolver: Solving for Ux, Initial residual = 0.000244578, Final residual = 1.58668e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00245451, Final residual = 0.000163792, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00484251, Final residual = 3.04039e-05, No Iterations 6
time step continuity errors : sum local = 5.80096e-05, global = -6.1231e-06, cumulative = -0.311046
smoothSolver: Solving for omega, Initial residual = 6.86549e-05, Final residual = 6.13228e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000768112, Final residual = 5.36758e-05, No Iterations 4
ExecutionTime = 249.96 s ClockTime = 253 s
Time = 1726
smoothSolver: Solving for Ux, Initial residual = 0.000243691, Final residual = 1.58089e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00244994, Final residual = 0.00016352, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00484563, Final residual = 3.05065e-05, No Iterations 6
time step continuity errors : sum local = 5.80941e-05, global = -6.16623e-06, cumulative = -0.311052
smoothSolver: Solving for omega, Initial residual = 6.83968e-05, Final residual = 6.11115e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000767358, Final residual = 5.36321e-05, No Iterations 4
ExecutionTime = 250.13 s ClockTime = 253 s
Time = 1727
smoothSolver: Solving for Ux, Initial residual = 0.000242808, Final residual = 1.57511e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0024454, Final residual = 0.000163246, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00485229, Final residual = 3.06061e-05, No Iterations 6
time step continuity errors : sum local = 5.81723e-05, global = -6.21243e-06, cumulative = -0.311059
smoothSolver: Solving for omega, Initial residual = 6.81403e-05, Final residual = 6.09016e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000766617, Final residual = 5.35876e-05, No Iterations 4
ExecutionTime = 250.29 s ClockTime = 253 s
Time = 1728
smoothSolver: Solving for Ux, Initial residual = 0.000241929, Final residual = 1.56935e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00244088, Final residual = 0.000162974, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00485697, Final residual = 3.07033e-05, No Iterations 6
time step continuity errors : sum local = 5.82453e-05, global = -6.25459e-06, cumulative = -0.311065
smoothSolver: Solving for omega, Initial residual = 6.78825e-05, Final residual = 6.06913e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000765859, Final residual = 5.35421e-05, No Iterations 4
ExecutionTime = 250.44 s ClockTime = 253 s
Time = 1729
smoothSolver: Solving for Ux, Initial residual = 0.00024105, Final residual = 1.5636e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00243638, Final residual = 0.000162706, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00486716, Final residual = 3.08064e-05, No Iterations 6
time step continuity errors : sum local = 5.83288e-05, global = -6.29107e-06, cumulative = -0.311071
smoothSolver: Solving for omega, Initial residual = 6.76277e-05, Final residual = 6.04817e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000765091, Final residual = 5.34965e-05, No Iterations 4
ExecutionTime = 250.61 s ClockTime = 254 s
Time = 1730
smoothSolver: Solving for Ux, Initial residual = 0.000240177, Final residual = 1.55786e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00243188, Final residual = 0.000162441, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00487559, Final residual = 3.09262e-05, No Iterations 6
time step continuity errors : sum local = 5.8443e-05, global = -6.3298e-06, cumulative = -0.311078
smoothSolver: Solving for omega, Initial residual = 6.73745e-05, Final residual = 6.0274e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00076432, Final residual = 5.34511e-05, No Iterations 4
ExecutionTime = 250.77 s ClockTime = 254 s
Time = 1731
smoothSolver: Solving for Ux, Initial residual = 0.000239307, Final residual = 1.55214e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00242746, Final residual = 0.000162175, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00487749, Final residual = 3.10515e-05, No Iterations 6
time step continuity errors : sum local = 5.85669e-05, global = -6.36901e-06, cumulative = -0.311084
smoothSolver: Solving for omega, Initial residual = 6.71207e-05, Final residual = 6.00665e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000763556, Final residual = 5.34049e-05, No Iterations 4
ExecutionTime = 250.93 s ClockTime = 254 s
Time = 1732
smoothSolver: Solving for Ux, Initial residual = 0.00023844, Final residual = 1.54644e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00242307, Final residual = 0.00016191, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0048897, Final residual = 3.11762e-05, No Iterations 6
time step continuity errors : sum local = 5.86889e-05, global = -6.40706e-06, cumulative = -0.31109
smoothSolver: Solving for omega, Initial residual = 6.68693e-05, Final residual = 5.98598e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000762779, Final residual = 5.33576e-05, No Iterations 4
ExecutionTime = 251.09 s ClockTime = 254 s
Time = 1733
smoothSolver: Solving for Ux, Initial residual = 0.000237575, Final residual = 1.54075e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00241869, Final residual = 0.000161648, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00489367, Final residual = 3.12998e-05, No Iterations 6
time step continuity errors : sum local = 5.88078e-05, global = -6.44325e-06, cumulative = -0.311097
smoothSolver: Solving for omega, Initial residual = 6.66213e-05, Final residual = 5.96544e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000761988, Final residual = 5.33102e-05, No Iterations 4
ExecutionTime = 251.24 s ClockTime = 254 s
Time = 1734
smoothSolver: Solving for Ux, Initial residual = 0.000236716, Final residual = 1.53509e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00241436, Final residual = 0.000161387, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00488777, Final residual = 3.14143e-05, No Iterations 6
time step continuity errors : sum local = 5.89087e-05, global = -6.47669e-06, cumulative = -0.311103
smoothSolver: Solving for omega, Initial residual = 6.63725e-05, Final residual = 5.94494e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000761205, Final residual = 5.32632e-05, No Iterations 4
ExecutionTime = 251.39 s ClockTime = 254 s
Time = 1735
smoothSolver: Solving for Ux, Initial residual = 0.00023586, Final residual = 1.52945e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00241005, Final residual = 0.000161126, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00489205, Final residual = 3.15234e-05, No Iterations 6
time step continuity errors : sum local = 5.89989e-05, global = -6.51339e-06, cumulative = -0.31111
smoothSolver: Solving for omega, Initial residual = 6.61266e-05, Final residual = 5.92452e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000760415, Final residual = 5.32149e-05, No Iterations 4
ExecutionTime = 251.56 s ClockTime = 255 s
Time = 1736
smoothSolver: Solving for Ux, Initial residual = 0.000235007, Final residual = 1.52381e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00240574, Final residual = 0.00016087, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00490035, Final residual = 3.16205e-05, No Iterations 6
time step continuity errors : sum local = 5.90661e-05, global = -6.54928e-06, cumulative = -0.311116
smoothSolver: Solving for omega, Initial residual = 6.5883e-05, Final residual = 5.90427e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000759613, Final residual = 5.3166e-05, No Iterations 4
ExecutionTime = 251.71 s ClockTime = 255 s
Time = 1737
smoothSolver: Solving for Ux, Initial residual = 0.000234157, Final residual = 1.51819e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00240147, Final residual = 0.000160617, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0049072, Final residual = 3.17093e-05, No Iterations 6
time step continuity errors : sum local = 5.91173e-05, global = -6.58414e-06, cumulative = -0.311123
smoothSolver: Solving for omega, Initial residual = 6.56404e-05, Final residual = 5.8841e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000758808, Final residual = 5.3117e-05, No Iterations 4
ExecutionTime = 251.87 s ClockTime = 255 s
Time = 1738
smoothSolver: Solving for Ux, Initial residual = 0.000233312, Final residual = 1.51261e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00239727, Final residual = 0.000160364, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00490931, Final residual = 3.17972e-05, No Iterations 6
time step continuity errors : sum local = 5.9167e-05, global = -6.61768e-06, cumulative = -0.311129
smoothSolver: Solving for omega, Initial residual = 6.53975e-05, Final residual = 5.86384e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000758007, Final residual = 5.30679e-05, No Iterations 4
ExecutionTime = 252.02 s ClockTime = 255 s
Time = 1739
smoothSolver: Solving for Ux, Initial residual = 0.00023247, Final residual = 1.50703e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0023931, Final residual = 0.00016011, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00491156, Final residual = 3.18752e-05, No Iterations 6
time step continuity errors : sum local = 5.91979e-05, global = -6.64323e-06, cumulative = -0.311136
smoothSolver: Solving for omega, Initial residual = 6.51568e-05, Final residual = 5.84369e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000757192, Final residual = 5.3018e-05, No Iterations 4
ExecutionTime = 252.18 s ClockTime = 255 s
Time = 1740
smoothSolver: Solving for Ux, Initial residual = 0.000231631, Final residual = 1.50147e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00238893, Final residual = 0.00015986, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00491734, Final residual = 3.19424e-05, No Iterations 6
time step continuity errors : sum local = 5.92078e-05, global = -6.6658e-06, cumulative = -0.311143
smoothSolver: Solving for omega, Initial residual = 6.49179e-05, Final residual = 5.82374e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00075637, Final residual = 5.29675e-05, No Iterations 4
ExecutionTime = 252.34 s ClockTime = 255 s
Time = 1741
smoothSolver: Solving for Ux, Initial residual = 0.000230798, Final residual = 1.49593e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0023848, Final residual = 0.000159612, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0049216, Final residual = 3.20041e-05, No Iterations 6
time step continuity errors : sum local = 5.92071e-05, global = -6.69111e-06, cumulative = -0.311149
smoothSolver: Solving for omega, Initial residual = 6.46811e-05, Final residual = 5.80386e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000755545, Final residual = 5.2917e-05, No Iterations 4
ExecutionTime = 252.49 s ClockTime = 255 s
Time = 1742
smoothSolver: Solving for Ux, Initial residual = 0.000229967, Final residual = 1.49041e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00238074, Final residual = 0.000159366, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00492766, Final residual = 3.20644e-05, No Iterations 6
time step continuity errors : sum local = 5.92041e-05, global = -6.71729e-06, cumulative = -0.311156
smoothSolver: Solving for omega, Initial residual = 6.44443e-05, Final residual = 5.78411e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000754724, Final residual = 5.2866e-05, No Iterations 4
ExecutionTime = 252.65 s ClockTime = 256 s
Time = 1743
smoothSolver: Solving for Ux, Initial residual = 0.00022914, Final residual = 1.48492e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00237666, Final residual = 0.000159123, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00492976, Final residual = 3.21284e-05, No Iterations 6
time step continuity errors : sum local = 5.92076e-05, global = -6.74533e-06, cumulative = -0.311163
smoothSolver: Solving for omega, Initial residual = 6.42088e-05, Final residual = 5.76441e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000753884, Final residual = 5.28142e-05, No Iterations 4
ExecutionTime = 252.8 s ClockTime = 256 s
Time = 1744
smoothSolver: Solving for Ux, Initial residual = 0.000228318, Final residual = 1.47944e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0023726, Final residual = 0.000158882, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0049326, Final residual = 3.21874e-05, No Iterations 6
time step continuity errors : sum local = 5.92016e-05, global = -6.77211e-06, cumulative = -0.31117
smoothSolver: Solving for omega, Initial residual = 6.39755e-05, Final residual = 5.7448e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000753042, Final residual = 5.2762e-05, No Iterations 4
ExecutionTime = 252.95 s ClockTime = 256 s
Time = 1745
smoothSolver: Solving for Ux, Initial residual = 0.000227499, Final residual = 1.47397e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00236861, Final residual = 0.000158641, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00493622, Final residual = 3.22464e-05, No Iterations 6
time step continuity errors : sum local = 5.91952e-05, global = -6.79722e-06, cumulative = -0.311177
smoothSolver: Solving for omega, Initial residual = 6.37431e-05, Final residual = 5.72522e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0007522, Final residual = 5.27099e-05, No Iterations 4
ExecutionTime = 253.11 s ClockTime = 256 s
Time = 1746
smoothSolver: Solving for Ux, Initial residual = 0.000226683, Final residual = 1.46853e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00236467, Final residual = 0.0001584, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00494715, Final residual = 3.23041e-05, No Iterations 6
time step continuity errors : sum local = 5.91863e-05, global = -6.82353e-06, cumulative = -0.311183
smoothSolver: Solving for omega, Initial residual = 6.35126e-05, Final residual = 5.70577e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000751354, Final residual = 5.2657e-05, No Iterations 4
ExecutionTime = 253.27 s ClockTime = 256 s
Time = 1747
smoothSolver: Solving for Ux, Initial residual = 0.000225873, Final residual = 1.46312e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00236073, Final residual = 0.000158163, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00495714, Final residual = 3.23593e-05, No Iterations 6
time step continuity errors : sum local = 5.91724e-05, global = -6.85563e-06, cumulative = -0.31119
smoothSolver: Solving for omega, Initial residual = 6.32843e-05, Final residual = 5.68646e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000750496, Final residual = 5.26035e-05, No Iterations 4
ExecutionTime = 253.42 s ClockTime = 256 s
Time = 1748
smoothSolver: Solving for Ux, Initial residual = 0.000225067, Final residual = 1.45772e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00235681, Final residual = 0.000157927, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00496217, Final residual = 3.24162e-05, No Iterations 6
time step continuity errors : sum local = 5.91621e-05, global = -6.88955e-06, cumulative = -0.311197
smoothSolver: Solving for omega, Initial residual = 6.30568e-05, Final residual = 5.66717e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000749634, Final residual = 5.25497e-05, No Iterations 4
ExecutionTime = 253.58 s ClockTime = 257 s
Time = 1749
smoothSolver: Solving for Ux, Initial residual = 0.000224262, Final residual = 1.45233e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00235294, Final residual = 0.000157694, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00496377, Final residual = 3.25034e-05, No Iterations 6
time step continuity errors : sum local = 5.92066e-05, global = -6.92444e-06, cumulative = -0.311204
smoothSolver: Solving for omega, Initial residual = 6.28297e-05, Final residual = 5.64798e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000748769, Final residual = 5.24957e-05, No Iterations 4
ExecutionTime = 253.73 s ClockTime = 257 s
Time = 1750
smoothSolver: Solving for Ux, Initial residual = 0.000223463, Final residual = 1.44698e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0023491, Final residual = 0.000157463, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00497023, Final residual = 3.25981e-05, No Iterations 6
time step continuity errors : sum local = 5.92637e-05, global = -6.95053e-06, cumulative = -0.311211
smoothSolver: Solving for omega, Initial residual = 6.26028e-05, Final residual = 5.62897e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000747904, Final residual = 5.24407e-05, No Iterations 4
ExecutionTime = 254.09 s ClockTime = 257 s
Time = 1751
smoothSolver: Solving for Ux, Initial residual = 0.00022267, Final residual = 1.44165e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00234527, Final residual = 0.000157236, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00498028, Final residual = 3.26786e-05, No Iterations 6
time step continuity errors : sum local = 5.92951e-05, global = -6.96635e-06, cumulative = -0.311218
smoothSolver: Solving for omega, Initial residual = 6.23777e-05, Final residual = 5.61008e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000747026, Final residual = 5.23856e-05, No Iterations 4
ExecutionTime = 254.24 s ClockTime = 257 s
Time = 1752
smoothSolver: Solving for Ux, Initial residual = 0.000221879, Final residual = 1.43634e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0023415, Final residual = 0.000157008, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00499121, Final residual = 3.27433e-05, No Iterations 6
time step continuity errors : sum local = 5.92982e-05, global = -6.97984e-06, cumulative = -0.311225
smoothSolver: Solving for omega, Initial residual = 6.21537e-05, Final residual = 5.5912e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000746145, Final residual = 5.23301e-05, No Iterations 4
ExecutionTime = 254.4 s ClockTime = 257 s
Time = 1753
smoothSolver: Solving for Ux, Initial residual = 0.000221092, Final residual = 1.43105e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00233777, Final residual = 0.000156781, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00499768, Final residual = 3.27931e-05, No Iterations 6
time step continuity errors : sum local = 5.92737e-05, global = -6.99258e-06, cumulative = -0.311232
smoothSolver: Solving for omega, Initial residual = 6.19292e-05, Final residual = 5.57235e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000745263, Final residual = 5.22744e-05, No Iterations 4
ExecutionTime = 254.56 s ClockTime = 258 s
Time = 1754
smoothSolver: Solving for Ux, Initial residual = 0.000220312, Final residual = 1.42578e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00233407, Final residual = 0.000156556, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00499638, Final residual = 3.28467e-05, No Iterations 6
time step continuity errors : sum local = 5.92564e-05, global = -7.00664e-06, cumulative = -0.311239
smoothSolver: Solving for omega, Initial residual = 6.17073e-05, Final residual = 5.55365e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000744376, Final residual = 5.22177e-05, No Iterations 4
ExecutionTime = 254.72 s ClockTime = 258 s
Time = 1755
smoothSolver: Solving for Ux, Initial residual = 0.000219535, Final residual = 1.42053e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00233038, Final residual = 0.000156335, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00500394, Final residual = 3.2901e-05, No Iterations 6
time step continuity errors : sum local = 5.92401e-05, global = -7.01974e-06, cumulative = -0.311246
smoothSolver: Solving for omega, Initial residual = 6.14863e-05, Final residual = 5.53503e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000743481, Final residual = 5.21611e-05, No Iterations 4
ExecutionTime = 254.92 s ClockTime = 258 s
Time = 1756
smoothSolver: Solving for Ux, Initial residual = 0.000218762, Final residual = 1.41533e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00232672, Final residual = 0.000156114, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0050108, Final residual = 3.29549e-05, No Iterations 6
time step continuity errors : sum local = 5.92231e-05, global = -7.03086e-06, cumulative = -0.311253
smoothSolver: Solving for omega, Initial residual = 6.12653e-05, Final residual = 5.51653e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000742583, Final residual = 5.21039e-05, No Iterations 4
ExecutionTime = 255.09 s ClockTime = 258 s
Time = 1757
smoothSolver: Solving for Ux, Initial residual = 0.000217994, Final residual = 1.41014e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00232308, Final residual = 0.000155896, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00501402, Final residual = 3.30129e-05, No Iterations 6
time step continuity errors : sum local = 5.9214e-05, global = -7.04319e-06, cumulative = -0.31126
smoothSolver: Solving for omega, Initial residual = 6.1047e-05, Final residual = 5.49815e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000741686, Final residual = 5.20464e-05, No Iterations 4
ExecutionTime = 255.26 s ClockTime = 258 s
Time = 1758
smoothSolver: Solving for Ux, Initial residual = 0.000217233, Final residual = 1.40497e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00231949, Final residual = 0.000155681, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00501938, Final residual = 3.30629e-05, No Iterations 6
time step continuity errors : sum local = 5.91911e-05, global = -7.05263e-06, cumulative = -0.311267
smoothSolver: Solving for omega, Initial residual = 6.08298e-05, Final residual = 5.47991e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00074078, Final residual = 5.19881e-05, No Iterations 4
ExecutionTime = 255.43 s ClockTime = 258 s
Time = 1759
smoothSolver: Solving for Ux, Initial residual = 0.000216476, Final residual = 1.39984e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00231594, Final residual = 0.000155466, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00502838, Final residual = 3.30991e-05, No Iterations 6
time step continuity errors : sum local = 5.91434e-05, global = -7.05196e-06, cumulative = -0.311274
smoothSolver: Solving for omega, Initial residual = 6.06125e-05, Final residual = 5.46179e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000739874, Final residual = 5.19298e-05, No Iterations 4
ExecutionTime = 255.61 s ClockTime = 259 s
Time = 1760
smoothSolver: Solving for Ux, Initial residual = 0.000215722, Final residual = 1.39473e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00231243, Final residual = 0.000155252, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00503615, Final residual = 3.31198e-05, No Iterations 6
time step continuity errors : sum local = 5.90684e-05, global = -7.04805e-06, cumulative = -0.311281
smoothSolver: Solving for omega, Initial residual = 6.03988e-05, Final residual = 5.44378e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000738959, Final residual = 5.18711e-05, No Iterations 4
ExecutionTime = 255.77 s ClockTime = 259 s
Time = 1761
smoothSolver: Solving for Ux, Initial residual = 0.000214971, Final residual = 1.38963e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00230894, Final residual = 0.00015504, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00503754, Final residual = 3.31319e-05, No Iterations 6
time step continuity errors : sum local = 5.89786e-05, global = -7.04787e-06, cumulative = -0.311288
smoothSolver: Solving for omega, Initial residual = 6.01864e-05, Final residual = 5.42576e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000738044, Final residual = 5.18119e-05, No Iterations 4
ExecutionTime = 255.94 s ClockTime = 259 s
Time = 1762
smoothSolver: Solving for Ux, Initial residual = 0.000214227, Final residual = 1.38457e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00230548, Final residual = 0.000154833, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00504371, Final residual = 3.3148e-05, No Iterations 6
time step continuity errors : sum local = 5.88961e-05, global = -7.05161e-06, cumulative = -0.311295
smoothSolver: Solving for omega, Initial residual = 5.99738e-05, Final residual = 5.40791e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000737124, Final residual = 5.17523e-05, No Iterations 4
ExecutionTime = 256.1 s ClockTime = 259 s
Time = 1763
smoothSolver: Solving for Ux, Initial residual = 0.000213486, Final residual = 1.37955e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00230205, Final residual = 0.000154626, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00505642, Final residual = 3.31577e-05, No Iterations 6
time step continuity errors : sum local = 5.88024e-05, global = -7.05524e-06, cumulative = -0.311302
smoothSolver: Solving for omega, Initial residual = 5.97629e-05, Final residual = 5.39017e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0007362, Final residual = 5.1692e-05, No Iterations 4
ExecutionTime = 256.26 s ClockTime = 259 s
Time = 1764
smoothSolver: Solving for Ux, Initial residual = 0.000212751, Final residual = 1.37453e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00229863, Final residual = 0.000154421, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00506483, Final residual = 3.31574e-05, No Iterations 6
time step continuity errors : sum local = 5.86916e-05, global = -7.0569e-06, cumulative = -0.311309
smoothSolver: Solving for omega, Initial residual = 5.95551e-05, Final residual = 5.37251e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000735268, Final residual = 5.16319e-05, No Iterations 4
ExecutionTime = 256.44 s ClockTime = 259 s
Time = 1765
smoothSolver: Solving for Ux, Initial residual = 0.00021202, Final residual = 1.36954e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00229527, Final residual = 0.000154219, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00507358, Final residual = 3.31595e-05, No Iterations 6
time step continuity errors : sum local = 5.85854e-05, global = -7.05851e-06, cumulative = -0.311316
smoothSolver: Solving for omega, Initial residual = 5.93486e-05, Final residual = 5.35505e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000734336, Final residual = 5.15711e-05, No Iterations 4
ExecutionTime = 256.62 s ClockTime = 260 s
Time = 1766
smoothSolver: Solving for Ux, Initial residual = 0.000211292, Final residual = 1.36459e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00229195, Final residual = 0.000154018, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00507993, Final residual = 3.3155e-05, No Iterations 6
time step continuity errors : sum local = 5.84677e-05, global = -7.05611e-06, cumulative = -0.311323
smoothSolver: Solving for omega, Initial residual = 5.91421e-05, Final residual = 5.33762e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000733405, Final residual = 5.151e-05, No Iterations 4
ExecutionTime = 256.79 s ClockTime = 260 s
Time = 1767
smoothSolver: Solving for Ux, Initial residual = 0.00021057, Final residual = 1.35967e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00228865, Final residual = 0.000153817, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00508288, Final residual = 3.31456e-05, No Iterations 6
time step continuity errors : sum local = 5.83422e-05, global = -7.05262e-06, cumulative = -0.311331
smoothSolver: Solving for omega, Initial residual = 5.89379e-05, Final residual = 5.32031e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000732463, Final residual = 5.14482e-05, No Iterations 4
ExecutionTime = 256.96 s ClockTime = 260 s
Time = 1768
smoothSolver: Solving for Ux, Initial residual = 0.000209854, Final residual = 1.35476e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00228537, Final residual = 0.000153617, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00509214, Final residual = 3.31512e-05, No Iterations 6
time step continuity errors : sum local = 5.82435e-05, global = -7.05473e-06, cumulative = -0.311338
smoothSolver: Solving for omega, Initial residual = 5.87354e-05, Final residual = 5.30311e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000731512, Final residual = 5.13862e-05, No Iterations 4
ExecutionTime = 257.12 s ClockTime = 260 s
Time = 1769
smoothSolver: Solving for Ux, Initial residual = 0.000209141, Final residual = 1.34988e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00228213, Final residual = 0.000153423, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00510426, Final residual = 3.3178e-05, No Iterations 6
time step continuity errors : sum local = 5.81823e-05, global = -7.06417e-06, cumulative = -0.311345
smoothSolver: Solving for omega, Initial residual = 5.85339e-05, Final residual = 5.28598e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000730563, Final residual = 5.13241e-05, No Iterations 4
ExecutionTime = 257.3 s ClockTime = 260 s
Time = 1770
smoothSolver: Solving for Ux, Initial residual = 0.000208432, Final residual = 1.34504e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00227892, Final residual = 0.000153231, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00511625, Final residual = 3.32096e-05, No Iterations 6
time step continuity errors : sum local = 5.81296e-05, global = -7.07866e-06, cumulative = -0.311352
smoothSolver: Solving for omega, Initial residual = 5.83334e-05, Final residual = 5.26894e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000729618, Final residual = 5.12615e-05, No Iterations 4
ExecutionTime = 257.46 s ClockTime = 260 s
Time = 1771
smoothSolver: Solving for Ux, Initial residual = 0.00020773, Final residual = 1.34023e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00227573, Final residual = 0.000153038, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00512082, Final residual = 3.32223e-05, No Iterations 6
time step continuity errors : sum local = 5.80445e-05, global = -7.09088e-06, cumulative = -0.311359
smoothSolver: Solving for omega, Initial residual = 5.81347e-05, Final residual = 5.25205e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00072866, Final residual = 5.11982e-05, No Iterations 4
ExecutionTime = 257.63 s ClockTime = 261 s
Time = 1772
smoothSolver: Solving for Ux, Initial residual = 0.000207033, Final residual = 1.33544e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00227258, Final residual = 0.000152849, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00512857, Final residual = 3.32174e-05, No Iterations 6
time step continuity errors : sum local = 5.79284e-05, global = -7.09766e-06, cumulative = -0.311366
smoothSolver: Solving for omega, Initial residual = 5.79384e-05, Final residual = 5.23529e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000727698, Final residual = 5.1135e-05, No Iterations 4
ExecutionTime = 257.79 s ClockTime = 261 s
Time = 1773
smoothSolver: Solving for Ux, Initial residual = 0.000206341, Final residual = 1.33069e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00226947, Final residual = 0.00015266, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00513672, Final residual = 3.32048e-05, No Iterations 6
time step continuity errors : sum local = 5.77996e-05, global = -7.10294e-06, cumulative = -0.311373
smoothSolver: Solving for omega, Initial residual = 5.77431e-05, Final residual = 5.21861e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000726738, Final residual = 5.10716e-05, No Iterations 4
ExecutionTime = 257.95 s ClockTime = 261 s
Time = 1774
smoothSolver: Solving for Ux, Initial residual = 0.000205652, Final residual = 1.32596e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00226639, Final residual = 0.000152473, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00514555, Final residual = 3.31842e-05, No Iterations 6
time step continuity errors : sum local = 5.76585e-05, global = -7.10386e-06, cumulative = -0.31138
smoothSolver: Solving for omega, Initial residual = 5.75491e-05, Final residual = 5.20208e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000725776, Final residual = 5.10072e-05, No Iterations 4
ExecutionTime = 258.11 s ClockTime = 261 s
Time = 1775
smoothSolver: Solving for Ux, Initial residual = 0.000204969, Final residual = 1.32126e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00226333, Final residual = 0.000152285, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00515467, Final residual = 3.31695e-05, No Iterations 6
time step continuity errors : sum local = 5.75274e-05, global = -7.10277e-06, cumulative = -0.311387
smoothSolver: Solving for omega, Initial residual = 5.7356e-05, Final residual = 5.18569e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000724803, Final residual = 5.09425e-05, No Iterations 4
ExecutionTime = 258.27 s ClockTime = 261 s
Time = 1776
smoothSolver: Solving for Ux, Initial residual = 0.000204291, Final residual = 1.3166e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00226028, Final residual = 0.000152103, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00516944, Final residual = 3.31572e-05, No Iterations 6
time step continuity errors : sum local = 5.74008e-05, global = -7.09826e-06, cumulative = -0.311394
smoothSolver: Solving for omega, Initial residual = 5.71645e-05, Final residual = 5.16932e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000723829, Final residual = 5.08782e-05, No Iterations 4
ExecutionTime = 258.45 s ClockTime = 261 s
Time = 1777
smoothSolver: Solving for Ux, Initial residual = 0.000203618, Final residual = 1.31197e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00225727, Final residual = 0.000151923, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00517843, Final residual = 3.31343e-05, No Iterations 6
time step continuity errors : sum local = 5.72573e-05, global = -7.08914e-06, cumulative = -0.311401
smoothSolver: Solving for omega, Initial residual = 5.69742e-05, Final residual = 5.1531e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000722861, Final residual = 5.08134e-05, No Iterations 4
ExecutionTime = 258.62 s ClockTime = 262 s
Time = 1778
smoothSolver: Solving for Ux, Initial residual = 0.000202949, Final residual = 1.30736e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00225429, Final residual = 0.000151743, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00518608, Final residual = 3.30959e-05, No Iterations 6
time step continuity errors : sum local = 5.70875e-05, global = -7.07737e-06, cumulative = -0.311408
smoothSolver: Solving for omega, Initial residual = 5.67858e-05, Final residual = 5.13702e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000721881, Final residual = 5.07477e-05, No Iterations 4
ExecutionTime = 258.77 s ClockTime = 262 s
Time = 1779
smoothSolver: Solving for Ux, Initial residual = 0.000202284, Final residual = 1.30278e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00225136, Final residual = 0.000151566, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00519028, Final residual = 3.30413e-05, No Iterations 6
time step continuity errors : sum local = 5.68905e-05, global = -7.06305e-06, cumulative = -0.311416
smoothSolver: Solving for omega, Initial residual = 5.65981e-05, Final residual = 5.12103e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000720895, Final residual = 5.06819e-05, No Iterations 4
ExecutionTime = 258.93 s ClockTime = 262 s
Time = 1780
smoothSolver: Solving for Ux, Initial residual = 0.000201624, Final residual = 1.29824e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00224843, Final residual = 0.000151389, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00520122, Final residual = 3.29883e-05, No Iterations 6
time step continuity errors : sum local = 5.66978e-05, global = -7.04917e-06, cumulative = -0.311423
smoothSolver: Solving for omega, Initial residual = 5.64112e-05, Final residual = 5.10513e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000719908, Final residual = 5.06165e-05, No Iterations 4
ExecutionTime = 259.1 s ClockTime = 262 s
Time = 1781
smoothSolver: Solving for Ux, Initial residual = 0.00020097, Final residual = 1.29373e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00224555, Final residual = 0.000151213, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00521791, Final residual = 3.29424e-05, No Iterations 6
time step continuity errors : sum local = 5.65179e-05, global = -7.02944e-06, cumulative = -0.31143
smoothSolver: Solving for omega, Initial residual = 5.62266e-05, Final residual = 5.08941e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000718924, Final residual = 5.055e-05, No Iterations 4
ExecutionTime = 259.25 s ClockTime = 262 s
Time = 1782
smoothSolver: Solving for Ux, Initial residual = 0.000200322, Final residual = 1.28924e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0022427, Final residual = 0.000151039, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00523375, Final residual = 3.29108e-05, No Iterations 6
time step continuity errors : sum local = 5.63632e-05, global = -7.00993e-06, cumulative = -0.311437
smoothSolver: Solving for omega, Initial residual = 5.60448e-05, Final residual = 5.07377e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000717932, Final residual = 5.0483e-05, No Iterations 4
ExecutionTime = 259.41 s ClockTime = 262 s
Time = 1783
smoothSolver: Solving for Ux, Initial residual = 0.000199677, Final residual = 1.28478e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00223985, Final residual = 0.000150869, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00523738, Final residual = 3.28744e-05, No Iterations 6
time step continuity errors : sum local = 5.62014e-05, global = -6.99498e-06, cumulative = -0.311444
smoothSolver: Solving for omega, Initial residual = 5.58644e-05, Final residual = 5.05825e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000716932, Final residual = 5.0416e-05, No Iterations 4
ExecutionTime = 259.58 s ClockTime = 263 s
Time = 1784
smoothSolver: Solving for Ux, Initial residual = 0.000199034, Final residual = 1.28036e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00223702, Final residual = 0.0001507, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00523694, Final residual = 3.28293e-05, No Iterations 6
time step continuity errors : sum local = 5.60256e-05, global = -6.98017e-06, cumulative = -0.311451
smoothSolver: Solving for omega, Initial residual = 5.56844e-05, Final residual = 5.0428e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000715937, Final residual = 5.03491e-05, No Iterations 4
ExecutionTime = 259.74 s ClockTime = 263 s
Time = 1785
smoothSolver: Solving for Ux, Initial residual = 0.000198401, Final residual = 1.27597e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00223425, Final residual = 0.000150531, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00523947, Final residual = 3.27723e-05, No Iterations 6
time step continuity errors : sum local = 5.58295e-05, global = -6.96533e-06, cumulative = -0.311458
smoothSolver: Solving for omega, Initial residual = 5.55067e-05, Final residual = 5.02745e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00071494, Final residual = 5.02811e-05, No Iterations 4
ExecutionTime = 259.91 s ClockTime = 263 s
Time = 1786
smoothSolver: Solving for Ux, Initial residual = 0.000197772, Final residual = 1.2716e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0022315, Final residual = 0.000150366, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00525025, Final residual = 3.27036e-05, No Iterations 6
time step continuity errors : sum local = 5.56147e-05, global = -6.94849e-06, cumulative = -0.311465
smoothSolver: Solving for omega, Initial residual = 5.53318e-05, Final residual = 5.01225e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000713932, Final residual = 5.02127e-05, No Iterations 4
ExecutionTime = 260.07 s ClockTime = 263 s
Time = 1787
smoothSolver: Solving for Ux, Initial residual = 0.000197146, Final residual = 1.26729e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00222877, Final residual = 0.000150201, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00526049, Final residual = 3.26321e-05, No Iterations 6
time step continuity errors : sum local = 5.53968e-05, global = -6.92869e-06, cumulative = -0.311471
smoothSolver: Solving for omega, Initial residual = 5.51575e-05, Final residual = 4.99717e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00071292, Final residual = 5.01447e-05, No Iterations 4
ExecutionTime = 260.23 s ClockTime = 263 s
Time = 1788
smoothSolver: Solving for Ux, Initial residual = 0.000196525, Final residual = 1.26299e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00222606, Final residual = 0.000150035, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00526797, Final residual = 3.25829e-05, No Iterations 6
time step continuity errors : sum local = 5.52173e-05, global = -6.91216e-06, cumulative = -0.311478
smoothSolver: Solving for omega, Initial residual = 5.49842e-05, Final residual = 4.98217e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000711918, Final residual = 5.00762e-05, No Iterations 4
ExecutionTime = 260.4 s ClockTime = 263 s
Time = 1789
smoothSolver: Solving for Ux, Initial residual = 0.00019591, Final residual = 1.25872e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0022234, Final residual = 0.000149872, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00527313, Final residual = 3.25503e-05, No Iterations 6
time step continuity errors : sum local = 5.50666e-05, global = -6.90446e-06, cumulative = -0.311485
smoothSolver: Solving for omega, Initial residual = 5.4814e-05, Final residual = 4.96735e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0007109, Final residual = 5.00069e-05, No Iterations 4
ExecutionTime = 260.56 s ClockTime = 264 s
Time = 1790
smoothSolver: Solving for Ux, Initial residual = 0.0001953, Final residual = 1.25449e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00222073, Final residual = 0.000149714, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00527445, Final residual = 3.2514e-05, No Iterations 6
time step continuity errors : sum local = 5.49108e-05, global = -6.89361e-06, cumulative = -0.311492
smoothSolver: Solving for omega, Initial residual = 5.46445e-05, Final residual = 4.95267e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000709878, Final residual = 4.99374e-05, No Iterations 4
ExecutionTime = 260.71 s ClockTime = 264 s
Time = 1791
smoothSolver: Solving for Ux, Initial residual = 0.000194695, Final residual = 1.2503e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00221809, Final residual = 0.000149555, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0052867, Final residual = 3.24655e-05, No Iterations 6
time step continuity errors : sum local = 5.47351e-05, global = -6.88003e-06, cumulative = -0.311499
smoothSolver: Solving for omega, Initial residual = 5.44765e-05, Final residual = 4.93805e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000708862, Final residual = 4.98681e-05, No Iterations 4
ExecutionTime = 260.87 s ClockTime = 264 s
Time = 1792
smoothSolver: Solving for Ux, Initial residual = 0.000194095, Final residual = 1.24612e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00221548, Final residual = 0.000149396, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00529834, Final residual = 3.2403e-05, No Iterations 6
time step continuity errors : sum local = 5.45366e-05, global = -6.86664e-06, cumulative = -0.311506
smoothSolver: Solving for omega, Initial residual = 5.43093e-05, Final residual = 4.92346e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000707845, Final residual = 4.97981e-05, No Iterations 4
ExecutionTime = 261.03 s ClockTime = 264 s
Time = 1793
smoothSolver: Solving for Ux, Initial residual = 0.0001935, Final residual = 1.24199e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0022129, Final residual = 0.00014924, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00531036, Final residual = 3.23405e-05, No Iterations 6
time step continuity errors : sum local = 5.43392e-05, global = -6.85572e-06, cumulative = -0.311513
smoothSolver: Solving for omega, Initial residual = 5.41447e-05, Final residual = 4.90906e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000706812, Final residual = 4.97275e-05, No Iterations 4
ExecutionTime = 261.2 s ClockTime = 264 s
Time = 1794
smoothSolver: Solving for Ux, Initial residual = 0.000192911, Final residual = 1.23791e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00221035, Final residual = 0.000149086, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00532075, Final residual = 3.22696e-05, No Iterations 6
time step continuity errors : sum local = 5.41286e-05, global = -6.84137e-06, cumulative = -0.31152
smoothSolver: Solving for omega, Initial residual = 5.39806e-05, Final residual = 4.89478e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00070579, Final residual = 4.9657e-05, No Iterations 4
ExecutionTime = 261.36 s ClockTime = 264 s
Time = 1795
smoothSolver: Solving for Ux, Initial residual = 0.000192325, Final residual = 1.23384e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00220782, Final residual = 0.000148932, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00532613, Final residual = 3.2201e-05, No Iterations 6
time step continuity errors : sum local = 5.39226e-05, global = -6.82466e-06, cumulative = -0.311526
smoothSolver: Solving for omega, Initial residual = 5.38196e-05, Final residual = 4.88066e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00070476, Final residual = 4.95864e-05, No Iterations 4
ExecutionTime = 261.51 s ClockTime = 265 s
Time = 1796
smoothSolver: Solving for Ux, Initial residual = 0.000191746, Final residual = 1.22979e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0022053, Final residual = 0.000148779, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00533563, Final residual = 3.21272e-05, No Iterations 6
time step continuity errors : sum local = 5.37091e-05, global = -6.80251e-06, cumulative = -0.311533
smoothSolver: Solving for omega, Initial residual = 5.36596e-05, Final residual = 4.86664e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000703729, Final residual = 4.95152e-05, No Iterations 4
ExecutionTime = 261.67 s ClockTime = 265 s
Time = 1797
smoothSolver: Solving for Ux, Initial residual = 0.000191171, Final residual = 1.22581e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00220279, Final residual = 0.000148629, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00534727, Final residual = 3.20487e-05, No Iterations 6
time step continuity errors : sum local = 5.34895e-05, global = -6.7798e-06, cumulative = -0.31154
smoothSolver: Solving for omega, Initial residual = 5.34988e-05, Final residual = 4.85271e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000702697, Final residual = 4.94442e-05, No Iterations 4
ExecutionTime = 261.83 s ClockTime = 265 s
Time = 1798
smoothSolver: Solving for Ux, Initial residual = 0.000190602, Final residual = 1.22186e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00220032, Final residual = 0.00014848, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00535246, Final residual = 3.19551e-05, No Iterations 6
time step continuity errors : sum local = 5.3246e-05, global = -6.75902e-06, cumulative = -0.311547
smoothSolver: Solving for omega, Initial residual = 5.33399e-05, Final residual = 4.83895e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000701662, Final residual = 4.93727e-05, No Iterations 4
ExecutionTime = 262.01 s ClockTime = 265 s
Time = 1799
smoothSolver: Solving for Ux, Initial residual = 0.000190038, Final residual = 1.21792e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00219788, Final residual = 0.000148332, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00535998, Final residual = 3.18618e-05, No Iterations 6
time step continuity errors : sum local = 5.30037e-05, global = -6.73622e-06, cumulative = -0.311554
smoothSolver: Solving for omega, Initial residual = 5.31843e-05, Final residual = 4.82528e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000700631, Final residual = 4.93012e-05, No Iterations 4
ExecutionTime = 262.18 s ClockTime = 265 s
Time = 1800
smoothSolver: Solving for Ux, Initial residual = 0.000189479, Final residual = 1.21404e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00219546, Final residual = 0.000148185, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00536751, Final residual = 3.17808e-05, No Iterations 6
time step continuity errors : sum local = 5.27836e-05, global = -6.71241e-06, cumulative = -0.31156
smoothSolver: Solving for omega, Initial residual = 5.30293e-05, Final residual = 4.81158e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000699595, Final residual = 4.92291e-05, No Iterations 4
ExecutionTime = 262.57 s ClockTime = 266 s
Time = 1801
smoothSolver: Solving for Ux, Initial residual = 0.000188925, Final residual = 1.21019e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00219307, Final residual = 0.000148038, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00537585, Final residual = 3.17122e-05, No Iterations 6
time step continuity errors : sum local = 5.25852e-05, global = -6.6892e-06, cumulative = -0.311567
smoothSolver: Solving for omega, Initial residual = 5.28745e-05, Final residual = 4.79801e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000698551, Final residual = 4.9157e-05, No Iterations 4
ExecutionTime = 262.73 s ClockTime = 266 s
Time = 1802
smoothSolver: Solving for Ux, Initial residual = 0.000188375, Final residual = 1.20638e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00219066, Final residual = 0.000147892, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00538147, Final residual = 3.16397e-05, No Iterations 6
time step continuity errors : sum local = 5.23817e-05, global = -6.66349e-06, cumulative = -0.311574
smoothSolver: Solving for omega, Initial residual = 5.27225e-05, Final residual = 4.78463e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000697512, Final residual = 4.90845e-05, No Iterations 4
ExecutionTime = 262.89 s ClockTime = 266 s
Time = 1803
smoothSolver: Solving for Ux, Initial residual = 0.000187832, Final residual = 1.20258e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00218826, Final residual = 0.000147748, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00538783, Final residual = 3.1544e-05, No Iterations 6
time step continuity errors : sum local = 5.21412e-05, global = -6.63422e-06, cumulative = -0.31158
smoothSolver: Solving for omega, Initial residual = 5.25725e-05, Final residual = 4.77142e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000696469, Final residual = 4.90117e-05, No Iterations 4
ExecutionTime = 263.05 s ClockTime = 266 s
Time = 1804
smoothSolver: Solving for Ux, Initial residual = 0.000187296, Final residual = 1.19885e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00218589, Final residual = 0.000147605, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00539725, Final residual = 3.14437e-05, No Iterations 6
time step continuity errors : sum local = 5.18941e-05, global = -6.60458e-06, cumulative = -0.311587
smoothSolver: Solving for omega, Initial residual = 5.24238e-05, Final residual = 4.7583e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000695418, Final residual = 4.89387e-05, No Iterations 4
ExecutionTime = 263.21 s ClockTime = 266 s
Time = 1805
smoothSolver: Solving for Ux, Initial residual = 0.000186762, Final residual = 1.19515e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00218356, Final residual = 0.000147463, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00540687, Final residual = 3.13417e-05, No Iterations 6
time step continuity errors : sum local = 5.1646e-05, global = -6.57477e-06, cumulative = -0.311593
smoothSolver: Solving for omega, Initial residual = 5.22796e-05, Final residual = 4.74528e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000694376, Final residual = 4.88654e-05, No Iterations 4
ExecutionTime = 263.37 s ClockTime = 266 s
Time = 1806
smoothSolver: Solving for Ux, Initial residual = 0.000186232, Final residual = 1.19147e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00218123, Final residual = 0.00014732, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00541434, Final residual = 3.12317e-05, No Iterations 6
time step continuity errors : sum local = 5.13863e-05, global = -6.54114e-06, cumulative = -0.3116
smoothSolver: Solving for omega, Initial residual = 5.21361e-05, Final residual = 4.73239e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00069332, Final residual = 4.87918e-05, No Iterations 4
ExecutionTime = 263.53 s ClockTime = 267 s
Time = 1807
smoothSolver: Solving for Ux, Initial residual = 0.000185712, Final residual = 1.18783e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0021789, Final residual = 0.000147178, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00542343, Final residual = 3.11137e-05, No Iterations 6
time step continuity errors : sum local = 5.11143e-05, global = -6.50662e-06, cumulative = -0.311606
smoothSolver: Solving for omega, Initial residual = 5.19916e-05, Final residual = 4.71961e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000692262, Final residual = 4.87175e-05, No Iterations 4
ExecutionTime = 263.69 s ClockTime = 267 s
Time = 1808
smoothSolver: Solving for Ux, Initial residual = 0.000185195, Final residual = 1.18426e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00217661, Final residual = 0.000147038, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00543056, Final residual = 3.09993e-05, No Iterations 6
time step continuity errors : sum local = 5.08493e-05, global = -6.47443e-06, cumulative = -0.311613
smoothSolver: Solving for omega, Initial residual = 5.18502e-05, Final residual = 4.70686e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000691214, Final residual = 4.86439e-05, No Iterations 4
ExecutionTime = 263.85 s ClockTime = 267 s
Time = 1809
smoothSolver: Solving for Ux, Initial residual = 0.00018468, Final residual = 1.18069e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00217436, Final residual = 0.0001469, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00542895, Final residual = 3.08813e-05, No Iterations 6
time step continuity errors : sum local = 5.05803e-05, global = -6.44642e-06, cumulative = -0.311619
smoothSolver: Solving for omega, Initial residual = 5.17084e-05, Final residual = 4.69416e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000690153, Final residual = 4.85693e-05, No Iterations 4
ExecutionTime = 264.01 s ClockTime = 267 s
Time = 1810
smoothSolver: Solving for Ux, Initial residual = 0.000184172, Final residual = 1.17715e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00217216, Final residual = 0.000146764, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00543271, Final residual = 3.07812e-05, No Iterations 6
time step continuity errors : sum local = 5.03446e-05, global = -6.4209e-06, cumulative = -0.311626
smoothSolver: Solving for omega, Initial residual = 5.15685e-05, Final residual = 4.68152e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000689098, Final residual = 4.84946e-05, No Iterations 4
ExecutionTime = 264.18 s ClockTime = 267 s
Time = 1811
smoothSolver: Solving for Ux, Initial residual = 0.000183672, Final residual = 1.17365e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00216996, Final residual = 0.000146631, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00543482, Final residual = 3.06856e-05, No Iterations 6
time step continuity errors : sum local = 5.01162e-05, global = -6.39621e-06, cumulative = -0.311632
smoothSolver: Solving for omega, Initial residual = 5.14276e-05, Final residual = 4.66893e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000688041, Final residual = 4.84201e-05, No Iterations 4
ExecutionTime = 264.34 s ClockTime = 267 s
Time = 1812
smoothSolver: Solving for Ux, Initial residual = 0.000183174, Final residual = 1.17021e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00216777, Final residual = 0.000146497, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00543839, Final residual = 3.05961e-05, No Iterations 6
time step continuity errors : sum local = 4.98985e-05, global = -6.36991e-06, cumulative = -0.311639
smoothSolver: Solving for omega, Initial residual = 5.12877e-05, Final residual = 4.65641e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000686978, Final residual = 4.83447e-05, No Iterations 4
ExecutionTime = 264.51 s ClockTime = 268 s
Time = 1813
smoothSolver: Solving for Ux, Initial residual = 0.000182681, Final residual = 1.16679e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0021656, Final residual = 0.000146362, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00544485, Final residual = 3.05135e-05, No Iterations 6
time step continuity errors : sum local = 4.96928e-05, global = -6.34471e-06, cumulative = -0.311645
smoothSolver: Solving for omega, Initial residual = 5.11505e-05, Final residual = 4.64402e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000685909, Final residual = 4.82694e-05, No Iterations 4
ExecutionTime = 264.67 s ClockTime = 268 s
Time = 1814
smoothSolver: Solving for Ux, Initial residual = 0.000182196, Final residual = 1.16341e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00216345, Final residual = 0.000146228, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00545407, Final residual = 3.04169e-05, No Iterations 6
time step continuity errors : sum local = 4.94656e-05, global = -6.31914e-06, cumulative = -0.311651
smoothSolver: Solving for omega, Initial residual = 5.10135e-05, Final residual = 4.63176e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000684848, Final residual = 4.81942e-05, No Iterations 4
ExecutionTime = 264.82 s ClockTime = 268 s
Time = 1815
smoothSolver: Solving for Ux, Initial residual = 0.000181716, Final residual = 1.16007e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00216132, Final residual = 0.000146098, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00545647, Final residual = 3.02885e-05, No Iterations 6
time step continuity errors : sum local = 4.91876e-05, global = -6.2935e-06, cumulative = -0.311658
smoothSolver: Solving for omega, Initial residual = 5.08776e-05, Final residual = 4.61956e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000683788, Final residual = 4.81186e-05, No Iterations 4
ExecutionTime = 264.98 s ClockTime = 268 s
Time = 1816
smoothSolver: Solving for Ux, Initial residual = 0.000181238, Final residual = 1.15675e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00215924, Final residual = 0.00014597, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00544906, Final residual = 3.01446e-05, No Iterations 6
time step continuity errors : sum local = 4.8886e-05, global = -6.26991e-06, cumulative = -0.311664
smoothSolver: Solving for omega, Initial residual = 5.07429e-05, Final residual = 4.60744e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000682719, Final residual = 4.80426e-05, No Iterations 4
ExecutionTime = 265.14 s ClockTime = 268 s
Time = 1817
smoothSolver: Solving for Ux, Initial residual = 0.000180766, Final residual = 1.15347e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00215722, Final residual = 0.000145843, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00543956, Final residual = 3.00039e-05, No Iterations 6
time step continuity errors : sum local = 4.85904e-05, global = -6.24505e-06, cumulative = -0.31167
smoothSolver: Solving for omega, Initial residual = 5.06083e-05, Final residual = 4.59534e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000681647, Final residual = 4.79669e-05, No Iterations 4
ExecutionTime = 265.3 s ClockTime = 268 s
Time = 1818
smoothSolver: Solving for Ux, Initial residual = 0.000180302, Final residual = 1.15022e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00215521, Final residual = 0.000145719, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00543679, Final residual = 2.98559e-05, No Iterations 6
time step continuity errors : sum local = 4.8284e-05, global = -6.21167e-06, cumulative = -0.311676
smoothSolver: Solving for omega, Initial residual = 5.04767e-05, Final residual = 4.5834e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000680583, Final residual = 4.78911e-05, No Iterations 4
ExecutionTime = 265.46 s ClockTime = 269 s
Time = 1819
smoothSolver: Solving for Ux, Initial residual = 0.000179841, Final residual = 1.147e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0021532, Final residual = 0.000145595, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00544492, Final residual = 2.97047e-05, No Iterations 6
time step continuity errors : sum local = 4.79735e-05, global = -6.17604e-06, cumulative = -0.311682
smoothSolver: Solving for omega, Initial residual = 5.03458e-05, Final residual = 4.57152e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000679518, Final residual = 4.78147e-05, No Iterations 4
ExecutionTime = 265.62 s ClockTime = 269 s
Time = 1820
smoothSolver: Solving for Ux, Initial residual = 0.000179384, Final residual = 1.14382e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00215119, Final residual = 0.000145472, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00545246, Final residual = 2.95569e-05, No Iterations 6
time step continuity errors : sum local = 4.76694e-05, global = -6.14059e-06, cumulative = -0.311689
smoothSolver: Solving for omega, Initial residual = 5.02154e-05, Final residual = 4.55976e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000678441, Final residual = 4.77381e-05, No Iterations 4
ExecutionTime = 265.78 s ClockTime = 269 s
Time = 1821
smoothSolver: Solving for Ux, Initial residual = 0.000178935, Final residual = 1.14067e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00214923, Final residual = 0.000145349, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00545938, Final residual = 2.94132e-05, No Iterations 6
time step continuity errors : sum local = 4.73729e-05, global = -6.10624e-06, cumulative = -0.311695
smoothSolver: Solving for omega, Initial residual = 5.00865e-05, Final residual = 4.54812e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000677367, Final residual = 4.76617e-05, No Iterations 4
ExecutionTime = 265.93 s ClockTime = 269 s
Time = 1822
smoothSolver: Solving for Ux, Initial residual = 0.00017849, Final residual = 1.13756e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00214729, Final residual = 0.000145229, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00545462, Final residual = 2.92727e-05, No Iterations 6
time step continuity errors : sum local = 4.70831e-05, global = -6.07502e-06, cumulative = -0.311701
smoothSolver: Solving for omega, Initial residual = 4.99596e-05, Final residual = 4.53662e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000676299, Final residual = 4.75851e-05, No Iterations 4
ExecutionTime = 266.09 s ClockTime = 269 s
Time = 1823
smoothSolver: Solving for Ux, Initial residual = 0.00017805, Final residual = 1.13448e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00214537, Final residual = 0.000145109, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00545046, Final residual = 2.91166e-05, No Iterations 6
time step continuity errors : sum local = 4.6769e-05, global = -6.04133e-06, cumulative = -0.311707
smoothSolver: Solving for omega, Initial residual = 4.98333e-05, Final residual = 4.52521e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000675224, Final residual = 4.75079e-05, No Iterations 4
ExecutionTime = 266.25 s ClockTime = 269 s
Time = 1824
smoothSolver: Solving for Ux, Initial residual = 0.000177614, Final residual = 1.13143e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00214345, Final residual = 0.00014499, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00545515, Final residual = 5.42027e-05, No Iterations 5
time step continuity errors : sum local = 8.6945e-05, global = 2.2898e-05, cumulative = -0.311684
smoothSolver: Solving for omega, Initial residual = 4.97034e-05, Final residual = 4.51374e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000674148, Final residual = 4.74308e-05, No Iterations 4
ExecutionTime = 266.39 s ClockTime = 269 s
Time = 1825
smoothSolver: Solving for Ux, Initial residual = 0.000177188, Final residual = 1.12843e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00214149, Final residual = 0.000144867, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00546164, Final residual = 4.40628e-05, No Iterations 5
time step continuity errors : sum local = 7.05814e-05, global = 1.92108e-05, cumulative = -0.311665
smoothSolver: Solving for omega, Initial residual = 4.95852e-05, Final residual = 4.50243e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000673075, Final residual = 4.73541e-05, No Iterations 4
ExecutionTime = 266.55 s ClockTime = 270 s
Time = 1826
smoothSolver: Solving for Ux, Initial residual = 0.000176756, Final residual = 1.12544e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00213963, Final residual = 0.00014475, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0054626, Final residual = 4.03204e-05, No Iterations 5
time step continuity errors : sum local = 6.4497e-05, global = 1.71258e-05, cumulative = -0.311648
smoothSolver: Solving for omega, Initial residual = 4.94651e-05, Final residual = 4.4913e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000672007, Final residual = 4.72768e-05, No Iterations 4
ExecutionTime = 266.7 s ClockTime = 270 s
Time = 1827
smoothSolver: Solving for Ux, Initial residual = 0.000176329, Final residual = 1.12247e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00213784, Final residual = 0.000144639, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00545345, Final residual = 4.38969e-05, No Iterations 5
time step continuity errors : sum local = 7.01184e-05, global = 1.97353e-05, cumulative = -0.311628
smoothSolver: Solving for omega, Initial residual = 4.93454e-05, Final residual = 4.48032e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000670929, Final residual = 4.71987e-05, No Iterations 4
ExecutionTime = 266.84 s ClockTime = 270 s
Time = 1828
smoothSolver: Solving for Ux, Initial residual = 0.00017592, Final residual = 1.11957e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00213608, Final residual = 0.00014453, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00544221, Final residual = 4.81481e-05, No Iterations 5
time step continuity errors : sum local = 7.68004e-05, global = 2.09157e-05, cumulative = -0.311607
smoothSolver: Solving for omega, Initial residual = 4.92285e-05, Final residual = 4.46939e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000669849, Final residual = 4.71215e-05, No Iterations 4
ExecutionTime = 266.99 s ClockTime = 270 s
Time = 1829
smoothSolver: Solving for Ux, Initial residual = 0.000175517, Final residual = 1.11673e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00213428, Final residual = 0.000144417, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00543962, Final residual = 4.76581e-05, No Iterations 5
time step continuity errors : sum local = 7.59113e-05, global = 2.05224e-05, cumulative = -0.311586
smoothSolver: Solving for omega, Initial residual = 4.91124e-05, Final residual = 4.45861e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000668774, Final residual = 4.70437e-05, No Iterations 4
ExecutionTime = 267.16 s ClockTime = 270 s
Time = 1830
smoothSolver: Solving for Ux, Initial residual = 0.000175111, Final residual = 1.1139e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00213244, Final residual = 0.0001443, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00544249, Final residual = 4.48515e-05, No Iterations 5
time step continuity errors : sum local = 7.13387e-05, global = 1.94015e-05, cumulative = -0.311567
smoothSolver: Solving for omega, Initial residual = 4.8998e-05, Final residual = 4.44806e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0006677, Final residual = 4.69653e-05, No Iterations 4
ExecutionTime = 267.31 s ClockTime = 270 s
Time = 1831
smoothSolver: Solving for Ux, Initial residual = 0.000174706, Final residual = 1.11106e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0021306, Final residual = 0.000144185, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00544564, Final residual = 4.30203e-05, No Iterations 5
time step continuity errors : sum local = 6.83292e-05, global = 1.87395e-05, cumulative = -0.311548
smoothSolver: Solving for omega, Initial residual = 4.88865e-05, Final residual = 4.43757e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000666614, Final residual = 4.68872e-05, No Iterations 4
ExecutionTime = 267.46 s ClockTime = 271 s
Time = 1832
smoothSolver: Solving for Ux, Initial residual = 0.000174306, Final residual = 1.10825e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00212881, Final residual = 0.000144079, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00545256, Final residual = 4.32698e-05, No Iterations 5
time step continuity errors : sum local = 6.86293e-05, global = 1.89089e-05, cumulative = -0.311529
smoothSolver: Solving for omega, Initial residual = 4.87768e-05, Final residual = 4.42717e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000665534, Final residual = 4.68094e-05, No Iterations 4
ExecutionTime = 267.61 s ClockTime = 271 s
Time = 1833
smoothSolver: Solving for Ux, Initial residual = 0.000173914, Final residual = 1.10551e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00212708, Final residual = 0.000143974, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00544782, Final residual = 4.42719e-05, No Iterations 5
time step continuity errors : sum local = 7.01219e-05, global = 1.91381e-05, cumulative = -0.31151
smoothSolver: Solving for omega, Initial residual = 4.86673e-05, Final residual = 4.41698e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00066446, Final residual = 4.67307e-05, No Iterations 4
ExecutionTime = 267.76 s ClockTime = 271 s
Time = 1834
smoothSolver: Solving for Ux, Initial residual = 0.000173532, Final residual = 1.10283e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00212537, Final residual = 0.000143869, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00544579, Final residual = 4.44813e-05, No Iterations 5
time step continuity errors : sum local = 7.0358e-05, global = 1.90056e-05, cumulative = -0.311491
smoothSolver: Solving for omega, Initial residual = 4.85587e-05, Final residual = 4.40685e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000663374, Final residual = 4.66518e-05, No Iterations 4
ExecutionTime = 267.91 s ClockTime = 271 s
Time = 1835
smoothSolver: Solving for Ux, Initial residual = 0.000173155, Final residual = 1.10016e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00212362, Final residual = 0.000143761, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00544489, Final residual = 4.37961e-05, No Iterations 5
time step continuity errors : sum local = 6.91801e-05, global = 1.86062e-05, cumulative = -0.311473
smoothSolver: Solving for omega, Initial residual = 4.84513e-05, Final residual = 4.39676e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00066229, Final residual = 4.65731e-05, No Iterations 4
ExecutionTime = 268.07 s ClockTime = 271 s
Time = 1836
smoothSolver: Solving for Ux, Initial residual = 0.000172778, Final residual = 1.09752e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00212183, Final residual = 0.000143653, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00544799, Final residual = 4.29547e-05, No Iterations 5
time step continuity errors : sum local = 6.7759e-05, global = 1.82308e-05, cumulative = -0.311454
smoothSolver: Solving for omega, Initial residual = 4.83456e-05, Final residual = 4.38689e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000661206, Final residual = 4.64944e-05, No Iterations 4
ExecutionTime = 268.22 s ClockTime = 271 s
Time = 1837
smoothSolver: Solving for Ux, Initial residual = 0.000172403, Final residual = 1.0949e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00212007, Final residual = 0.000143546, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0054555, Final residual = 4.25236e-05, No Iterations 5
time step continuity errors : sum local = 6.69897e-05, global = 1.8045e-05, cumulative = -0.311436
smoothSolver: Solving for omega, Initial residual = 4.82422e-05, Final residual = 4.3772e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00066013, Final residual = 4.64155e-05, No Iterations 4
ExecutionTime = 268.38 s ClockTime = 271 s
Time = 1838
smoothSolver: Solving for Ux, Initial residual = 0.000172035, Final residual = 1.09232e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00211835, Final residual = 0.000143441, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00546082, Final residual = 4.2559e-05, No Iterations 5
time step continuity errors : sum local = 6.69572e-05, global = 1.79595e-05, cumulative = -0.311418
smoothSolver: Solving for omega, Initial residual = 4.81397e-05, Final residual = 4.36754e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000659046, Final residual = 4.63365e-05, No Iterations 4
ExecutionTime = 268.55 s ClockTime = 272 s
Time = 1839
smoothSolver: Solving for Ux, Initial residual = 0.000171675, Final residual = 1.08978e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00211665, Final residual = 0.000143337, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00545789, Final residual = 4.25941e-05, No Iterations 5
time step continuity errors : sum local = 6.69247e-05, global = 1.78174e-05, cumulative = -0.311401
smoothSolver: Solving for omega, Initial residual = 4.80375e-05, Final residual = 4.358e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000657965, Final residual = 4.62571e-05, No Iterations 4
ExecutionTime = 268.75 s ClockTime = 272 s
Time = 1840
smoothSolver: Solving for Ux, Initial residual = 0.00017132, Final residual = 1.08729e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00211493, Final residual = 0.000143233, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00545552, Final residual = 4.23351e-05, No Iterations 5
time step continuity errors : sum local = 6.6432e-05, global = 1.75749e-05, cumulative = -0.311383
smoothSolver: Solving for omega, Initial residual = 4.79375e-05, Final residual = 4.3486e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000656882, Final residual = 4.61782e-05, No Iterations 4
ExecutionTime = 268.92 s ClockTime = 272 s
Time = 1841
smoothSolver: Solving for Ux, Initial residual = 0.000170967, Final residual = 1.08482e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00211321, Final residual = 0.000143127, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00545788, Final residual = 4.18763e-05, No Iterations 5
time step continuity errors : sum local = 6.56275e-05, global = 1.73008e-05, cumulative = -0.311366
smoothSolver: Solving for omega, Initial residual = 4.78391e-05, Final residual = 4.33928e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000655802, Final residual = 4.60991e-05, No Iterations 4
ExecutionTime = 269.08 s ClockTime = 272 s
Time = 1842
smoothSolver: Solving for Ux, Initial residual = 0.000170622, Final residual = 1.08237e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0021115, Final residual = 0.00014302, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00546247, Final residual = 4.14553e-05, No Iterations 5
time step continuity errors : sum local = 6.48848e-05, global = 1.70717e-05, cumulative = -0.311349
smoothSolver: Solving for omega, Initial residual = 4.77416e-05, Final residual = 4.33006e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000654724, Final residual = 4.60193e-05, No Iterations 4
ExecutionTime = 269.25 s ClockTime = 272 s
Time = 1843
smoothSolver: Solving for Ux, Initial residual = 0.000170278, Final residual = 1.07997e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00210981, Final residual = 0.000142914, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00546677, Final residual = 4.12115e-05, No Iterations 5
time step continuity errors : sum local = 6.44223e-05, global = 1.69038e-05, cumulative = -0.311332
smoothSolver: Solving for omega, Initial residual = 4.76439e-05, Final residual = 4.32102e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000653635, Final residual = 4.59396e-05, No Iterations 4
ExecutionTime = 269.39 s ClockTime = 272 s
Time = 1844
smoothSolver: Solving for Ux, Initial residual = 0.000169939, Final residual = 1.0776e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00210815, Final residual = 0.000142809, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00547041, Final residual = 4.10657e-05, No Iterations 5
time step continuity errors : sum local = 6.41141e-05, global = 1.67474e-05, cumulative = -0.311315
smoothSolver: Solving for omega, Initial residual = 4.75494e-05, Final residual = 4.31209e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000652555, Final residual = 4.58606e-05, No Iterations 4
ExecutionTime = 269.54 s ClockTime = 273 s
Time = 1845
smoothSolver: Solving for Ux, Initial residual = 0.000169607, Final residual = 1.07526e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00210647, Final residual = 0.000142705, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00546854, Final residual = 4.0889e-05, No Iterations 5
time step continuity errors : sum local = 6.37592e-05, global = 1.65705e-05, cumulative = -0.311298
smoothSolver: Solving for omega, Initial residual = 4.74557e-05, Final residual = 4.30318e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000651481, Final residual = 4.5781e-05, No Iterations 4
ExecutionTime = 269.72 s ClockTime = 273 s
Time = 1846
smoothSolver: Solving for Ux, Initial residual = 0.00016928, Final residual = 1.07297e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0021048, Final residual = 0.0001426, No Iterations 4
GAMG: Solving for p, Initial residual = 0.005472, Final residual = 4.05908e-05, No Iterations 5
time step continuity errors : sum local = 6.32167e-05, global = 1.63631e-05, cumulative = -0.311282
smoothSolver: Solving for omega, Initial residual = 4.73619e-05, Final residual = 4.29438e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0006504, Final residual = 4.57009e-05, No Iterations 4
ExecutionTime = 269.89 s ClockTime = 273 s
Time = 1847
smoothSolver: Solving for Ux, Initial residual = 0.000168956, Final residual = 1.07071e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00210313, Final residual = 0.000142493, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00547661, Final residual = 4.02321e-05, No Iterations 5
time step continuity errors : sum local = 6.25816e-05, global = 1.61431e-05, cumulative = -0.311266
smoothSolver: Solving for omega, Initial residual = 4.72695e-05, Final residual = 4.28572e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000649313, Final residual = 4.56213e-05, No Iterations 4
ExecutionTime = 270.05 s ClockTime = 273 s
Time = 1848
smoothSolver: Solving for Ux, Initial residual = 0.000168638, Final residual = 1.06847e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00210147, Final residual = 0.000142386, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00547665, Final residual = 3.99062e-05, No Iterations 5
time step continuity errors : sum local = 6.1999e-05, global = 1.59297e-05, cumulative = -0.31125
smoothSolver: Solving for omega, Initial residual = 4.71777e-05, Final residual = 4.27722e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000648241, Final residual = 4.55418e-05, No Iterations 4
ExecutionTime = 270.21 s ClockTime = 273 s
Time = 1849
smoothSolver: Solving for Ux, Initial residual = 0.000168326, Final residual = 1.06627e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0020998, Final residual = 0.00014228, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00548082, Final residual = 3.96629e-05, No Iterations 5
time step continuity errors : sum local = 6.15469e-05, global = 1.57361e-05, cumulative = -0.311234
smoothSolver: Solving for omega, Initial residual = 4.70882e-05, Final residual = 4.26885e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000647165, Final residual = 4.54621e-05, No Iterations 4
ExecutionTime = 270.36 s ClockTime = 273 s
Time = 1850
smoothSolver: Solving for Ux, Initial residual = 0.000168019, Final residual = 1.06412e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00209814, Final residual = 0.000142175, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00548185, Final residual = 3.94619e-05, No Iterations 5
time step continuity errors : sum local = 6.11616e-05, global = 1.55472e-05, cumulative = -0.311219
smoothSolver: Solving for omega, Initial residual = 4.69997e-05, Final residual = 4.26051e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00064608, Final residual = 4.53821e-05, No Iterations 4
ExecutionTime = 270.7 s ClockTime = 274 s
Time = 1851
smoothSolver: Solving for Ux, Initial residual = 0.000167714, Final residual = 1.062e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0020965, Final residual = 0.000142068, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00548484, Final residual = 3.92541e-05, No Iterations 5
time step continuity errors : sum local = 6.07674e-05, global = 1.53536e-05, cumulative = -0.311203
smoothSolver: Solving for omega, Initial residual = 4.69111e-05, Final residual = 4.25224e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000645007, Final residual = 4.53025e-05, No Iterations 4
ExecutionTime = 270.85 s ClockTime = 274 s
Time = 1852
smoothSolver: Solving for Ux, Initial residual = 0.000167415, Final residual = 1.05989e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00209484, Final residual = 0.00014196, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00548988, Final residual = 3.89978e-05, No Iterations 5
time step continuity errors : sum local = 6.03003e-05, global = 1.51519e-05, cumulative = -0.311188
smoothSolver: Solving for omega, Initial residual = 4.68234e-05, Final residual = 4.24412e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000643933, Final residual = 4.52226e-05, No Iterations 4
ExecutionTime = 271 s ClockTime = 274 s
Time = 1853
smoothSolver: Solving for Ux, Initial residual = 0.000167121, Final residual = 1.05781e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00209317, Final residual = 0.000141853, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00549957, Final residual = 3.87396e-05, No Iterations 5
time step continuity errors : sum local = 5.98318e-05, global = 1.49608e-05, cumulative = -0.311173
smoothSolver: Solving for omega, Initial residual = 4.67374e-05, Final residual = 4.23604e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000642852, Final residual = 4.51426e-05, No Iterations 4
ExecutionTime = 271.16 s ClockTime = 274 s
Time = 1854
smoothSolver: Solving for Ux, Initial residual = 0.000166829, Final residual = 1.05579e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0020915, Final residual = 0.000141746, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00550545, Final residual = 3.85071e-05, No Iterations 5
time step continuity errors : sum local = 5.94047e-05, global = 1.47817e-05, cumulative = -0.311158
smoothSolver: Solving for omega, Initial residual = 4.6653e-05, Final residual = 4.22812e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000641776, Final residual = 4.50631e-05, No Iterations 4
ExecutionTime = 271.31 s ClockTime = 274 s
Time = 1855
smoothSolver: Solving for Ux, Initial residual = 0.000166545, Final residual = 1.0538e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00208985, Final residual = 0.000141637, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00550931, Final residual = 3.82785e-05, No Iterations 5
time step continuity errors : sum local = 5.89853e-05, global = 1.46004e-05, cumulative = -0.311144
smoothSolver: Solving for omega, Initial residual = 4.65699e-05, Final residual = 4.22038e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000640709, Final residual = 4.49831e-05, No Iterations 4
ExecutionTime = 271.46 s ClockTime = 275 s
Time = 1856
smoothSolver: Solving for Ux, Initial residual = 0.000166265, Final residual = 1.05183e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00208819, Final residual = 0.000141528, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0055088, Final residual = 3.80257e-05, No Iterations 5
time step continuity errors : sum local = 5.85305e-05, global = 1.44062e-05, cumulative = -0.311129
smoothSolver: Solving for omega, Initial residual = 4.64877e-05, Final residual = 4.21269e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000639631, Final residual = 4.49029e-05, No Iterations 4
ExecutionTime = 271.61 s ClockTime = 275 s
Time = 1857
smoothSolver: Solving for Ux, Initial residual = 0.000165988, Final residual = 1.04989e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0020865, Final residual = 0.000141419, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00551505, Final residual = 3.77734e-05, No Iterations 5
time step continuity errors : sum local = 5.80786e-05, global = 1.42092e-05, cumulative = -0.311115
smoothSolver: Solving for omega, Initial residual = 4.64062e-05, Final residual = 4.20509e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000638554, Final residual = 4.48227e-05, No Iterations 4
ExecutionTime = 271.77 s ClockTime = 275 s
Time = 1858
smoothSolver: Solving for Ux, Initial residual = 0.000165714, Final residual = 1.048e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00208482, Final residual = 0.000141309, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00552165, Final residual = 3.75191e-05, No Iterations 5
time step continuity errors : sum local = 5.76256e-05, global = 1.40086e-05, cumulative = -0.311101
smoothSolver: Solving for omega, Initial residual = 4.63252e-05, Final residual = 4.19761e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000637486, Final residual = 4.47428e-05, No Iterations 4
ExecutionTime = 271.92 s ClockTime = 275 s
Time = 1859
smoothSolver: Solving for Ux, Initial residual = 0.000165447, Final residual = 1.04612e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00208314, Final residual = 0.000141198, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00552551, Final residual = 3.72375e-05, No Iterations 5
time step continuity errors : sum local = 5.7132e-05, global = 1.38038e-05, cumulative = -0.311087
smoothSolver: Solving for omega, Initial residual = 4.62466e-05, Final residual = 4.19022e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000636414, Final residual = 4.46626e-05, No Iterations 4
ExecutionTime = 272.07 s ClockTime = 275 s
Time = 1860
smoothSolver: Solving for Ux, Initial residual = 0.000165184, Final residual = 1.04429e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00208146, Final residual = 0.000141087, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00552687, Final residual = 3.69145e-05, No Iterations 5
time step continuity errors : sum local = 5.65771e-05, global = 1.35924e-05, cumulative = -0.311074
smoothSolver: Solving for omega, Initial residual = 4.61689e-05, Final residual = 4.183e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000635337, Final residual = 4.45821e-05, No Iterations 4
ExecutionTime = 272.22 s ClockTime = 275 s
Time = 1861
smoothSolver: Solving for Ux, Initial residual = 0.000164926, Final residual = 1.04249e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00207976, Final residual = 0.000140976, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00553218, Final residual = 3.66392e-05, No Iterations 5
time step continuity errors : sum local = 5.6097e-05, global = 1.33939e-05, cumulative = -0.31106
smoothSolver: Solving for omega, Initial residual = 4.60913e-05, Final residual = 4.17581e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00063427, Final residual = 4.45022e-05, No Iterations 4
ExecutionTime = 272.36 s ClockTime = 275 s
Time = 1862
smoothSolver: Solving for Ux, Initial residual = 0.000164672, Final residual = 1.04071e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00207804, Final residual = 0.000140862, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00553707, Final residual = 3.63934e-05, No Iterations 5
time step continuity errors : sum local = 5.56634e-05, global = 1.32018e-05, cumulative = -0.311047
smoothSolver: Solving for omega, Initial residual = 4.60143e-05, Final residual = 4.1687e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000633204, Final residual = 4.44225e-05, No Iterations 4
ExecutionTime = 272.51 s ClockTime = 276 s
Time = 1863
smoothSolver: Solving for Ux, Initial residual = 0.000164422, Final residual = 1.03896e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00207633, Final residual = 0.000140749, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00554208, Final residual = 3.61451e-05, No Iterations 5
time step continuity errors : sum local = 5.52273e-05, global = 1.30126e-05, cumulative = -0.311034
smoothSolver: Solving for omega, Initial residual = 4.59392e-05, Final residual = 4.16169e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000632133, Final residual = 4.43423e-05, No Iterations 4
ExecutionTime = 272.67 s ClockTime = 276 s
Time = 1864
smoothSolver: Solving for Ux, Initial residual = 0.000164176, Final residual = 1.03724e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00207462, Final residual = 0.000140636, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00554455, Final residual = 3.58737e-05, No Iterations 5
time step continuity errors : sum local = 5.47574e-05, global = 1.28268e-05, cumulative = -0.311021
smoothSolver: Solving for omega, Initial residual = 4.58649e-05, Final residual = 4.15478e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000631064, Final residual = 4.42624e-05, No Iterations 4
ExecutionTime = 272.82 s ClockTime = 276 s
Time = 1865
smoothSolver: Solving for Ux, Initial residual = 0.000163936, Final residual = 1.03558e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00207289, Final residual = 0.000140521, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00554859, Final residual = 3.56006e-05, No Iterations 5
time step continuity errors : sum local = 5.42866e-05, global = 1.26409e-05, cumulative = -0.311009
smoothSolver: Solving for omega, Initial residual = 4.57916e-05, Final residual = 4.14806e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000629999, Final residual = 4.41825e-05, No Iterations 4
ExecutionTime = 272.97 s ClockTime = 276 s
Time = 1866
smoothSolver: Solving for Ux, Initial residual = 0.000163698, Final residual = 1.03393e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00207113, Final residual = 0.000140405, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00555636, Final residual = 3.53151e-05, No Iterations 5
time step continuity errors : sum local = 5.37981e-05, global = 1.24487e-05, cumulative = -0.310996
smoothSolver: Solving for omega, Initial residual = 4.57203e-05, Final residual = 4.14142e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000628934, Final residual = 4.41024e-05, No Iterations 4
ExecutionTime = 273.12 s ClockTime = 276 s
Time = 1867
smoothSolver: Solving for Ux, Initial residual = 0.000163464, Final residual = 1.03227e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0020694, Final residual = 0.000140289, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00555502, Final residual = 3.50522e-05, No Iterations 5
time step continuity errors : sum local = 5.3345e-05, global = 1.22692e-05, cumulative = -0.310984
smoothSolver: Solving for omega, Initial residual = 4.56494e-05, Final residual = 4.13482e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000627869, Final residual = 4.40221e-05, No Iterations 4
ExecutionTime = 273.27 s ClockTime = 276 s
Time = 1868
smoothSolver: Solving for Ux, Initial residual = 0.000163231, Final residual = 1.03068e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00206766, Final residual = 0.000140174, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00556132, Final residual = 3.48326e-05, No Iterations 5
time step continuity errors : sum local = 5.29595e-05, global = 1.21017e-05, cumulative = -0.310972
smoothSolver: Solving for omega, Initial residual = 4.55793e-05, Final residual = 4.12834e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000626806, Final residual = 4.39424e-05, No Iterations 4
ExecutionTime = 273.41 s ClockTime = 277 s
Time = 1869
smoothSolver: Solving for Ux, Initial residual = 0.000163006, Final residual = 1.02913e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0020659, Final residual = 0.000140055, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00556599, Final residual = 3.46086e-05, No Iterations 5
time step continuity errors : sum local = 5.25688e-05, global = 1.19322e-05, cumulative = -0.31096
smoothSolver: Solving for omega, Initial residual = 4.55099e-05, Final residual = 4.12201e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000625746, Final residual = 4.38628e-05, No Iterations 4
ExecutionTime = 273.56 s ClockTime = 277 s
Time = 1870
smoothSolver: Solving for Ux, Initial residual = 0.000162784, Final residual = 1.02758e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00206412, Final residual = 0.000139936, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00557347, Final residual = 3.43823e-05, No Iterations 5
time step continuity errors : sum local = 5.21754e-05, global = 1.17609e-05, cumulative = -0.310948
smoothSolver: Solving for omega, Initial residual = 4.54423e-05, Final residual = 4.1157e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000624696, Final residual = 4.37829e-05, No Iterations 4
ExecutionTime = 273.73 s ClockTime = 277 s
Time = 1871
smoothSolver: Solving for Ux, Initial residual = 0.000162568, Final residual = 1.02608e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00206233, Final residual = 0.000139816, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00557693, Final residual = 5.5766e-05, No Iterations 4
time step continuity errors : sum local = 8.45466e-05, global = -1.92851e-05, cumulative = -0.310967
smoothSolver: Solving for omega, Initial residual = 4.53752e-05, Final residual = 4.10947e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000623642, Final residual = 4.37033e-05, No Iterations 4
ExecutionTime = 273.87 s ClockTime = 277 s
Time = 1872
smoothSolver: Solving for Ux, Initial residual = 0.000162377, Final residual = 1.02474e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00206056, Final residual = 0.000139697, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00557472, Final residual = 4.54623e-05, No Iterations 5
time step continuity errors : sum local = 6.88703e-05, global = 1.5069e-05, cumulative = -0.310952
smoothSolver: Solving for omega, Initial residual = 4.53031e-05, Final residual = 4.10331e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000622582, Final residual = 4.36236e-05, No Iterations 4
ExecutionTime = 274.02 s ClockTime = 277 s
Time = 1873
smoothSolver: Solving for Ux, Initial residual = 0.000162142, Final residual = 1.02317e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00205875, Final residual = 0.000139575, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0055788, Final residual = 3.88388e-05, No Iterations 5
time step continuity errors : sum local = 5.87749e-05, global = 1.29944e-05, cumulative = -0.310939
smoothSolver: Solving for omega, Initial residual = 4.52426e-05, Final residual = 4.09732e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000621531, Final residual = 4.35441e-05, No Iterations 4
ExecutionTime = 274.16 s ClockTime = 277 s
Time = 1874
smoothSolver: Solving for Ux, Initial residual = 0.000161921, Final residual = 1.02166e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00205693, Final residual = 0.000139452, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00558281, Final residual = 4.86067e-05, No Iterations 4
time step continuity errors : sum local = 7.34854e-05, global = -1.71832e-05, cumulative = -0.310957
smoothSolver: Solving for omega, Initial residual = 4.51824e-05, Final residual = 4.09149e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000620483, Final residual = 4.34646e-05, No Iterations 4
ExecutionTime = 274.31 s ClockTime = 277 s
Time = 1875
smoothSolver: Solving for Ux, Initial residual = 0.000161738, Final residual = 1.0204e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0020551, Final residual = 0.000139329, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00558219, Final residual = 3.69383e-05, No Iterations 5
time step continuity errors : sum local = 5.58021e-05, global = 1.20741e-05, cumulative = -0.310944
smoothSolver: Solving for omega, Initial residual = 4.51135e-05, Final residual = 4.08567e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00061943, Final residual = 4.33847e-05, No Iterations 4
ExecutionTime = 274.47 s ClockTime = 278 s
Time = 1876
smoothSolver: Solving for Ux, Initial residual = 0.000161539, Final residual = 1.01903e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00205327, Final residual = 0.000139205, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00558523, Final residual = 3.56733e-05, No Iterations 5
time step continuity errors : sum local = 5.38404e-05, global = 1.15397e-05, cumulative = -0.310933
smoothSolver: Solving for omega, Initial residual = 4.5053e-05, Final residual = 4.07995e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000618371, Final residual = 4.33052e-05, No Iterations 4
ExecutionTime = 274.63 s ClockTime = 278 s
Time = 1877
smoothSolver: Solving for Ux, Initial residual = 0.000161342, Final residual = 1.01768e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00205143, Final residual = 0.000139081, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00558229, Final residual = 5.28579e-05, No Iterations 4
time step continuity errors : sum local = 7.97051e-05, global = -1.79054e-05, cumulative = -0.310951
smoothSolver: Solving for omega, Initial residual = 4.49906e-05, Final residual = 4.07439e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000617326, Final residual = 4.32263e-05, No Iterations 4
ExecutionTime = 274.77 s ClockTime = 278 s
Time = 1878
smoothSolver: Solving for Ux, Initial residual = 0.00016117, Final residual = 1.01649e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00204959, Final residual = 0.000138955, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00558208, Final residual = 4.14558e-05, No Iterations 5
time step continuity errors : sum local = 6.24661e-05, global = 1.31738e-05, cumulative = -0.310938
smoothSolver: Solving for omega, Initial residual = 4.49246e-05, Final residual = 4.06886e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000616285, Final residual = 4.31471e-05, No Iterations 4
ExecutionTime = 274.91 s ClockTime = 278 s
Time = 1879
smoothSolver: Solving for Ux, Initial residual = 0.000160967, Final residual = 1.01513e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00204771, Final residual = 0.000138826, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00559016, Final residual = 3.6287e-05, No Iterations 5
time step continuity errors : sum local = 5.46273e-05, global = 1.15215e-05, cumulative = -0.310926
smoothSolver: Solving for omega, Initial residual = 4.48698e-05, Final residual = 4.06345e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000615239, Final residual = 4.30677e-05, No Iterations 4
ExecutionTime = 275.06 s ClockTime = 278 s
Time = 1880
smoothSolver: Solving for Ux, Initial residual = 0.000160772, Final residual = 1.01384e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0020458, Final residual = 0.000138698, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00559135, Final residual = 4.89363e-05, No Iterations 4
time step continuity errors : sum local = 7.36061e-05, global = -1.65781e-05, cumulative = -0.310943
smoothSolver: Solving for omega, Initial residual = 4.48133e-05, Final residual = 4.05821e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000614193, Final residual = 4.29888e-05, No Iterations 4
ExecutionTime = 275.21 s ClockTime = 278 s
Time = 1881
smoothSolver: Solving for Ux, Initial residual = 0.000160612, Final residual = 1.01274e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00204394, Final residual = 0.000138571, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00557912, Final residual = 3.71431e-05, No Iterations 5
time step continuity errors : sum local = 5.58279e-05, global = 1.15876e-05, cumulative = -0.310931
smoothSolver: Solving for omega, Initial residual = 4.475e-05, Final residual = 4.053e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000613154, Final residual = 4.29098e-05, No Iterations 4
ExecutionTime = 275.37 s ClockTime = 278 s
Time = 1882
smoothSolver: Solving for Ux, Initial residual = 0.000160433, Final residual = 1.01151e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00204204, Final residual = 0.000138441, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00558222, Final residual = 3.46409e-05, No Iterations 5
time step continuity errors : sum local = 5.20209e-05, global = 1.06886e-05, cumulative = -0.31092
smoothSolver: Solving for omega, Initial residual = 4.46953e-05, Final residual = 4.04786e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000612112, Final residual = 4.28303e-05, No Iterations 4
ExecutionTime = 275.53 s ClockTime = 279 s
Time = 1883
smoothSolver: Solving for Ux, Initial residual = 0.000160257, Final residual = 1.01032e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00204012, Final residual = 0.000138308, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00558758, Final residual = 5.00545e-05, No Iterations 4
time step continuity errors : sum local = 7.51049e-05, global = -1.65501e-05, cumulative = -0.310937
smoothSolver: Solving for omega, Initial residual = 4.46409e-05, Final residual = 4.04288e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000611068, Final residual = 4.27514e-05, No Iterations 4
ExecutionTime = 275.67 s ClockTime = 279 s
Time = 1884
smoothSolver: Solving for Ux, Initial residual = 0.000160103, Final residual = 1.00927e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00203816, Final residual = 0.000138177, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00558636, Final residual = 3.84361e-05, No Iterations 5
time step continuity errors : sum local = 5.7632e-05, global = 1.16587e-05, cumulative = -0.310925
smoothSolver: Solving for omega, Initial residual = 4.45804e-05, Final residual = 4.03791e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000610027, Final residual = 4.26728e-05, No Iterations 4
ExecutionTime = 275.82 s ClockTime = 279 s
Time = 1885
smoothSolver: Solving for Ux, Initial residual = 0.000159926, Final residual = 1.00808e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00203621, Final residual = 0.000138043, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0055877, Final residual = 3.44645e-05, No Iterations 5
time step continuity errors : sum local = 5.16329e-05, global = 1.03554e-05, cumulative = -0.310915
smoothSolver: Solving for omega, Initial residual = 4.45286e-05, Final residual = 4.03309e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000608997, Final residual = 4.25939e-05, No Iterations 4
ExecutionTime = 275.99 s ClockTime = 279 s
Time = 1886
smoothSolver: Solving for Ux, Initial residual = 0.000159756, Final residual = 1.00697e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00203425, Final residual = 0.000137908, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00558891, Final residual = 4.82623e-05, No Iterations 4
time step continuity errors : sum local = 7.22453e-05, global = -1.56739e-05, cumulative = -0.310931
smoothSolver: Solving for omega, Initial residual = 4.44767e-05, Final residual = 4.02843e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00060796, Final residual = 4.25147e-05, No Iterations 4
ExecutionTime = 276.16 s ClockTime = 279 s
Time = 1887
smoothSolver: Solving for Ux, Initial residual = 0.000159612, Final residual = 1.006e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00203226, Final residual = 0.000137772, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00559256, Final residual = 3.62111e-05, No Iterations 5
time step continuity errors : sum local = 5.41683e-05, global = 1.0789e-05, cumulative = -0.31092
smoothSolver: Solving for omega, Initial residual = 4.44191e-05, Final residual = 4.02374e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000606919, Final residual = 4.24366e-05, No Iterations 4
ExecutionTime = 276.32 s ClockTime = 279 s
Time = 1888
smoothSolver: Solving for Ux, Initial residual = 0.000159448, Final residual = 1.0049e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00203023, Final residual = 0.000137633, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00559951, Final residual = 5.46792e-05, No Iterations 4
time step continuity errors : sum local = 8.17263e-05, global = -1.69195e-05, cumulative = -0.310937
smoothSolver: Solving for omega, Initial residual = 4.437e-05, Final residual = 4.0192e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000605889, Final residual = 4.23582e-05, No Iterations 4
ExecutionTime = 276.47 s ClockTime = 280 s
Time = 1889
smoothSolver: Solving for Ux, Initial residual = 0.00015931, Final residual = 1.00397e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00202825, Final residual = 0.000137497, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00560164, Final residual = 3.90829e-05, No Iterations 5
time step continuity errors : sum local = 5.83741e-05, global = 1.15241e-05, cumulative = -0.310925
smoothSolver: Solving for omega, Initial residual = 4.43145e-05, Final residual = 4.0147e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000604866, Final residual = 4.22795e-05, No Iterations 4
ExecutionTime = 276.62 s ClockTime = 280 s
Time = 1890
smoothSolver: Solving for Ux, Initial residual = 0.000159145, Final residual = 1.00289e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00202622, Final residual = 0.000137356, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00560536, Final residual = 5.26683e-05, No Iterations 4
time step continuity errors : sum local = 7.85991e-05, global = -1.62852e-05, cumulative = -0.310942
smoothSolver: Solving for omega, Initial residual = 4.42685e-05, Final residual = 4.0104e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000603831, Final residual = 4.22011e-05, No Iterations 4
ExecutionTime = 276.76 s ClockTime = 280 s
Time = 1891
smoothSolver: Solving for Ux, Initial residual = 0.000159005, Final residual = 1.00199e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00202415, Final residual = 0.000137216, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00560632, Final residual = 3.55594e-05, No Iterations 5
time step continuity errors : sum local = 5.30308e-05, global = 1.02887e-05, cumulative = -0.310931
smoothSolver: Solving for omega, Initial residual = 4.42145e-05, Final residual = 4.00606e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000602801, Final residual = 4.21237e-05, No Iterations 4
ExecutionTime = 276.91 s ClockTime = 280 s
Time = 1892
smoothSolver: Solving for Ux, Initial residual = 0.000158856, Final residual = 1.00099e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00202204, Final residual = 0.00013707, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00560918, Final residual = 5.01936e-05, No Iterations 4
time step continuity errors : sum local = 7.47963e-05, global = -1.535e-05, cumulative = -0.310947
smoothSolver: Solving for omega, Initial residual = 4.41687e-05, Final residual = 4.00186e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000601784, Final residual = 4.20464e-05, No Iterations 4
ExecutionTime = 277.06 s ClockTime = 280 s
Time = 1893
smoothSolver: Solving for Ux, Initial residual = 0.000158733, Final residual = 1.0002e-05, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00201997, Final residual = 0.000136926, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00560206, Final residual = 3.51829e-05, No Iterations 5
time step continuity errors : sum local = 5.2394e-05, global = 1.00479e-05, cumulative = -0.310937
smoothSolver: Solving for omega, Initial residual = 4.41161e-05, Final residual = 3.99774e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000600772, Final residual = 4.19687e-05, No Iterations 4
ExecutionTime = 277.21 s ClockTime = 280 s
Time = 1894
smoothSolver: Solving for Ux, Initial residual = 0.000158589, Final residual = 9.99278e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00201784, Final residual = 0.000136779, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00559911, Final residual = 5.12095e-05, No Iterations 4
time step continuity errors : sum local = 7.62026e-05, global = -1.54003e-05, cumulative = -0.310952
smoothSolver: Solving for omega, Initial residual = 4.40699e-05, Final residual = 3.99373e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000599754, Final residual = 4.1891e-05, No Iterations 4
ExecutionTime = 277.36 s ClockTime = 280 s
Time = 1895
smoothSolver: Solving for Ux, Initial residual = 0.000158468, Final residual = 9.98479e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0020157, Final residual = 0.000136631, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00560057, Final residual = 3.55484e-05, No Iterations 5
time step continuity errors : sum local = 5.28645e-05, global = 1.005e-05, cumulative = -0.310942
smoothSolver: Solving for omega, Initial residual = 4.4018e-05, Final residual = 3.98971e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000598736, Final residual = 4.18139e-05, No Iterations 4
ExecutionTime = 277.51 s ClockTime = 281 s
Time = 1896
smoothSolver: Solving for Ux, Initial residual = 0.000158329, Final residual = 9.97579e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00201352, Final residual = 0.000136478, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00560211, Final residual = 5.04615e-05, No Iterations 4
time step continuity errors : sum local = 7.4987e-05, global = -1.50407e-05, cumulative = -0.310957
smoothSolver: Solving for omega, Initial residual = 4.39762e-05, Final residual = 3.98587e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000597723, Final residual = 4.17366e-05, No Iterations 4
ExecutionTime = 277.66 s ClockTime = 281 s
Time = 1897
smoothSolver: Solving for Ux, Initial residual = 0.000158213, Final residual = 9.96853e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00201136, Final residual = 0.000136326, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00560229, Final residual = 3.42858e-05, No Iterations 5
time step continuity errors : sum local = 5.09181e-05, global = 9.57297e-06, cumulative = -0.310947
smoothSolver: Solving for omega, Initial residual = 4.39272e-05, Final residual = 3.98209e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000596706, Final residual = 4.16595e-05, No Iterations 4
ExecutionTime = 277.82 s ClockTime = 281 s
Time = 1898
smoothSolver: Solving for Ux, Initial residual = 0.000158082, Final residual = 9.96012e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00200915, Final residual = 0.000136173, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00560174, Final residual = 4.94326e-05, No Iterations 4
time step continuity errors : sum local = 7.33598e-05, global = -1.45505e-05, cumulative = -0.310962
smoothSolver: Solving for omega, Initial residual = 4.3886e-05, Final residual = 3.97842e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000595698, Final residual = 4.15829e-05, No Iterations 4
ExecutionTime = 277.99 s ClockTime = 281 s
Time = 1899
smoothSolver: Solving for Ux, Initial residual = 0.000157973, Final residual = 9.95322e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00200697, Final residual = 0.000136021, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00559566, Final residual = 5.55926e-05, No Iterations 4
time step continuity errors : sum local = 8.24507e-05, global = -1.60251e-05, cumulative = -0.310978
smoothSolver: Solving for omega, Initial residual = 4.38389e-05, Final residual = 3.97481e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000594698, Final residual = 4.15066e-05, No Iterations 4
ExecutionTime = 278.13 s ClockTime = 281 s
Time = 1900
smoothSolver: Solving for Ux, Initial residual = 0.000157866, Final residual = 9.94635e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00200476, Final residual = 0.000135866, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00560205, Final residual = 3.84738e-05, No Iterations 5
time step continuity errors : sum local = 5.70249e-05, global = 1.07432e-05, cumulative = -0.310967
smoothSolver: Solving for omega, Initial residual = 4.37934e-05, Final residual = 3.97129e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000593695, Final residual = 4.14299e-05, No Iterations 4
ExecutionTime = 278.49 s ClockTime = 282 s
Time = 1901
smoothSolver: Solving for Ux, Initial residual = 0.000157731, Final residual = 9.93788e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00200245, Final residual = 0.000135703, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00560562, Final residual = 4.98594e-05, No Iterations 4
time step continuity errors : sum local = 7.38454e-05, global = -1.44349e-05, cumulative = -0.310982
smoothSolver: Solving for omega, Initial residual = 4.37553e-05, Final residual = 3.96791e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000592685, Final residual = 4.13529e-05, No Iterations 4
ExecutionTime = 278.64 s ClockTime = 282 s
Time = 1902
smoothSolver: Solving for Ux, Initial residual = 0.000157624, Final residual = 9.93135e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00200016, Final residual = 0.000135545, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00559935, Final residual = 5.12745e-05, No Iterations 4
time step continuity errors : sum local = 7.58963e-05, global = -1.46285e-05, cumulative = -0.310996
smoothSolver: Solving for omega, Initial residual = 4.37124e-05, Final residual = 3.96459e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000591677, Final residual = 4.12774e-05, No Iterations 4
ExecutionTime = 278.78 s ClockTime = 282 s
Time = 1903
smoothSolver: Solving for Ux, Initial residual = 0.000157525, Final residual = 9.92518e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00199787, Final residual = 0.000135385, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00559146, Final residual = 3.45185e-05, No Iterations 5
time step continuity errors : sum local = 5.10634e-05, global = 9.44337e-06, cumulative = -0.310987
smoothSolver: Solving for omega, Initial residual = 4.36705e-05, Final residual = 3.96128e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000590682, Final residual = 4.12015e-05, No Iterations 4
ExecutionTime = 278.94 s ClockTime = 282 s
Time = 1904
smoothSolver: Solving for Ux, Initial residual = 0.000157412, Final residual = 9.91809e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00199554, Final residual = 0.00013522, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00559367, Final residual = 4.82623e-05, No Iterations 4
time step continuity errors : sum local = 7.13448e-05, global = -1.36519e-05, cumulative = -0.311001
smoothSolver: Solving for omega, Initial residual = 4.36335e-05, Final residual = 3.95813e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000589689, Final residual = 4.11255e-05, No Iterations 4
ExecutionTime = 279.1 s ClockTime = 282 s
Time = 1905
smoothSolver: Solving for Ux, Initial residual = 0.000157318, Final residual = 9.91255e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00199322, Final residual = 0.000135057, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00559437, Final residual = 5.20925e-05, No Iterations 4
time step continuity errors : sum local = 7.69619e-05, global = -1.45539e-05, cumulative = -0.311015
smoothSolver: Solving for omega, Initial residual = 4.35913e-05, Final residual = 3.95507e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000588691, Final residual = 4.10498e-05, No Iterations 4
ExecutionTime = 279.25 s ClockTime = 282 s
Time = 1906
smoothSolver: Solving for Ux, Initial residual = 0.000157227, Final residual = 9.90705e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00199086, Final residual = 0.000134891, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00559581, Final residual = 3.52424e-05, No Iterations 5
time step continuity errors : sum local = 5.20373e-05, global = 9.58545e-06, cumulative = -0.311005
smoothSolver: Solving for omega, Initial residual = 4.35493e-05, Final residual = 3.95201e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000587695, Final residual = 4.09748e-05, No Iterations 4
ExecutionTime = 279.42 s ClockTime = 283 s
Time = 1907
smoothSolver: Solving for Ux, Initial residual = 0.000157117, Final residual = 9.90039e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00198845, Final residual = 0.000134721, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00559464, Final residual = 4.80594e-05, No Iterations 4
time step continuity errors : sum local = 7.09145e-05, global = -1.33482e-05, cumulative = -0.311019
smoothSolver: Solving for omega, Initial residual = 4.35141e-05, Final residual = 3.94908e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00058671, Final residual = 4.08992e-05, No Iterations 4
ExecutionTime = 279.58 s ClockTime = 283 s
Time = 1908
smoothSolver: Solving for Ux, Initial residual = 0.00015703, Final residual = 9.89544e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00198605, Final residual = 0.000134554, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00559465, Final residual = 5.05206e-05, No Iterations 4
time step continuity errors : sum local = 7.45041e-05, global = -1.39189e-05, cumulative = -0.311033
smoothSolver: Solving for omega, Initial residual = 4.34743e-05, Final residual = 3.94624e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000585725, Final residual = 4.0824e-05, No Iterations 4
ExecutionTime = 279.72 s ClockTime = 283 s
Time = 1909
smoothSolver: Solving for Ux, Initial residual = 0.000156949, Final residual = 9.89062e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00198365, Final residual = 0.000134386, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00559718, Final residual = 3.35666e-05, No Iterations 5
time step continuity errors : sum local = 4.94733e-05, global = 9.02477e-06, cumulative = -0.311024
smoothSolver: Solving for omega, Initial residual = 4.34332e-05, Final residual = 3.94342e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000584733, Final residual = 4.07492e-05, No Iterations 4
ExecutionTime = 279.9 s ClockTime = 283 s
Time = 1910
smoothSolver: Solving for Ux, Initial residual = 0.000156855, Final residual = 9.88494e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00198116, Final residual = 0.00013421, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00559858, Final residual = 4.68863e-05, No Iterations 4
time step continuity errors : sum local = 6.90612e-05, global = -1.2774e-05, cumulative = -0.311036
smoothSolver: Solving for omega, Initial residual = 4.34003e-05, Final residual = 3.94072e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000583749, Final residual = 4.06751e-05, No Iterations 4
ExecutionTime = 280.05 s ClockTime = 283 s
Time = 1911
smoothSolver: Solving for Ux, Initial residual = 0.00015678, Final residual = 9.88081e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00197871, Final residual = 0.000134037, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00559123, Final residual = 4.98893e-05, No Iterations 4
time step continuity errors : sum local = 7.3445e-05, global = -1.35215e-05, cumulative = -0.31105
smoothSolver: Solving for omega, Initial residual = 4.3362e-05, Final residual = 3.93812e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000582779, Final residual = 4.06006e-05, No Iterations 4
ExecutionTime = 280.18 s ClockTime = 283 s
Time = 1912
smoothSolver: Solving for Ux, Initial residual = 0.000156708, Final residual = 9.87662e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00197623, Final residual = 0.000133864, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00559233, Final residual = 5.56228e-05, No Iterations 4
time step continuity errors : sum local = 8.18416e-05, global = -1.53179e-05, cumulative = -0.311065
smoothSolver: Solving for omega, Initial residual = 4.33257e-05, Final residual = 3.93554e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000581804, Final residual = 4.05261e-05, No Iterations 4
ExecutionTime = 280.32 s ClockTime = 283 s
Time = 1913
smoothSolver: Solving for Ux, Initial residual = 0.000156632, Final residual = 9.87235e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00197374, Final residual = 0.000133689, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00559502, Final residual = 3.54571e-05, No Iterations 5
time step continuity errors : sum local = 5.21423e-05, global = 9.51581e-06, cumulative = -0.311056
smoothSolver: Solving for omega, Initial residual = 4.32888e-05, Final residual = 3.93304e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00058082, Final residual = 4.04525e-05, No Iterations 4
ExecutionTime = 280.48 s ClockTime = 284 s
Time = 1914
smoothSolver: Solving for Ux, Initial residual = 0.000156543, Final residual = 9.86709e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00197117, Final residual = 0.000133505, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00558729, Final residual = 4.45794e-05, No Iterations 4
time step continuity errors : sum local = 6.55183e-05, global = -1.18586e-05, cumulative = -0.311068
smoothSolver: Solving for omega, Initial residual = 4.32612e-05, Final residual = 3.93073e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000579845, Final residual = 4.03795e-05, No Iterations 4
ExecutionTime = 280.62 s ClockTime = 284 s
Time = 1915
smoothSolver: Solving for Ux, Initial residual = 0.000156476, Final residual = 9.86345e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00196862, Final residual = 0.000133327, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00557681, Final residual = 4.50578e-05, No Iterations 4
time step continuity errors : sum local = 6.61897e-05, global = -1.18478e-05, cumulative = -0.31108
smoothSolver: Solving for omega, Initial residual = 4.32271e-05, Final residual = 3.92839e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000578882, Final residual = 4.03061e-05, No Iterations 4
ExecutionTime = 280.75 s ClockTime = 284 s
Time = 1916
smoothSolver: Solving for Ux, Initial residual = 0.000156415, Final residual = 9.86033e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00196609, Final residual = 0.000133151, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00557895, Final residual = 5.15836e-05, No Iterations 4
time step continuity errors : sum local = 7.57388e-05, global = -1.39679e-05, cumulative = -0.311093
smoothSolver: Solving for omega, Initial residual = 4.31941e-05, Final residual = 3.92606e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000577921, Final residual = 4.02323e-05, No Iterations 4
ExecutionTime = 280.9 s ClockTime = 284 s
Time = 1917
smoothSolver: Solving for Ux, Initial residual = 0.000156358, Final residual = 9.85734e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00196353, Final residual = 0.00013297, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00558217, Final residual = 3.40532e-05, No Iterations 5
time step continuity errors : sum local = 4.99735e-05, global = 9.04132e-06, cumulative = -0.311084
smoothSolver: Solving for omega, Initial residual = 4.31585e-05, Final residual = 3.92389e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000576956, Final residual = 4.01597e-05, No Iterations 4
ExecutionTime = 281.05 s ClockTime = 284 s
Time = 1918
smoothSolver: Solving for Ux, Initial residual = 0.000156285, Final residual = 9.85309e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00196089, Final residual = 0.000132781, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00557573, Final residual = 4.53114e-05, No Iterations 4
time step continuity errors : sum local = 6.64565e-05, global = -1.19475e-05, cumulative = -0.311096
smoothSolver: Solving for omega, Initial residual = 4.31317e-05, Final residual = 3.92183e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000575994, Final residual = 4.00879e-05, No Iterations 4
ExecutionTime = 281.19 s ClockTime = 284 s
Time = 1919
smoothSolver: Solving for Ux, Initial residual = 0.000156223, Final residual = 9.85003e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00195825, Final residual = 0.000132596, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00556594, Final residual = 4.5883e-05, No Iterations 4
time step continuity errors : sum local = 6.72621e-05, global = -1.20085e-05, cumulative = -0.311108
smoothSolver: Solving for omega, Initial residual = 4.3099e-05, Final residual = 3.91978e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000575035, Final residual = 4.00154e-05, No Iterations 4
ExecutionTime = 281.33 s ClockTime = 284 s
Time = 1920
smoothSolver: Solving for Ux, Initial residual = 0.000156168, Final residual = 9.84742e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00195563, Final residual = 0.000132412, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00556159, Final residual = 5.12688e-05, No Iterations 4
time step continuity errors : sum local = 7.5121e-05, global = -1.38043e-05, cumulative = -0.311122
smoothSolver: Solving for omega, Initial residual = 4.30678e-05, Final residual = 3.91777e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000574085, Final residual = 3.99426e-05, No Iterations 4
ExecutionTime = 281.47 s ClockTime = 285 s
Time = 1921
smoothSolver: Solving for Ux, Initial residual = 0.000156122, Final residual = 9.84505e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00195302, Final residual = 0.000132227, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00555592, Final residual = 3.29926e-05, No Iterations 5
time step continuity errors : sum local = 4.83177e-05, global = 8.66717e-06, cumulative = -0.311114
smoothSolver: Solving for omega, Initial residual = 4.30341e-05, Final residual = 3.91584e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000573136, Final residual = 3.98706e-05, No Iterations 4
ExecutionTime = 281.61 s ClockTime = 285 s
Time = 1922
smoothSolver: Solving for Ux, Initial residual = 0.00015606, Final residual = 9.84175e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00195026, Final residual = 0.000132033, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00555534, Final residual = 4.37249e-05, No Iterations 4
time step continuity errors : sum local = 6.39999e-05, global = -1.12924e-05, cumulative = -0.311125
smoothSolver: Solving for omega, Initial residual = 4.30105e-05, Final residual = 3.914e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000572191, Final residual = 3.97996e-05, No Iterations 4
ExecutionTime = 281.75 s ClockTime = 285 s
Time = 1923
smoothSolver: Solving for Ux, Initial residual = 0.000156009, Final residual = 9.8395e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00194756, Final residual = 0.000131842, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00554972, Final residual = 4.4358e-05, No Iterations 4
time step continuity errors : sum local = 6.48961e-05, global = -1.14324e-05, cumulative = -0.311136
smoothSolver: Solving for omega, Initial residual = 4.29802e-05, Final residual = 3.91217e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000571241, Final residual = 3.97284e-05, No Iterations 4
ExecutionTime = 281.88 s ClockTime = 285 s
Time = 1924
smoothSolver: Solving for Ux, Initial residual = 0.000155966, Final residual = 9.83753e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00194485, Final residual = 0.000131651, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00554043, Final residual = 4.99822e-05, No Iterations 4
time step continuity errors : sum local = 7.30911e-05, global = -1.33934e-05, cumulative = -0.31115
smoothSolver: Solving for omega, Initial residual = 4.29515e-05, Final residual = 3.91043e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000570299, Final residual = 3.96571e-05, No Iterations 4
ExecutionTime = 282.02 s ClockTime = 285 s
Time = 1925
smoothSolver: Solving for Ux, Initial residual = 0.000155926, Final residual = 9.83578e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00194217, Final residual = 0.000131461, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00554013, Final residual = 5.45339e-05, No Iterations 4
time step continuity errors : sum local = 7.97085e-05, global = -1.51978e-05, cumulative = -0.311165
smoothSolver: Solving for omega, Initial residual = 4.29231e-05, Final residual = 3.90877e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00056936, Final residual = 3.95862e-05, No Iterations 4
ExecutionTime = 282.16 s ClockTime = 285 s
Time = 1926
smoothSolver: Solving for Ux, Initial residual = 0.000155881, Final residual = 9.83377e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00193941, Final residual = 0.000131268, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00554874, Final residual = 5.52507e-05, No Iterations 4
time step continuity errors : sum local = 8.07163e-05, global = -1.55601e-05, cumulative = -0.31118
smoothSolver: Solving for omega, Initial residual = 4.28957e-05, Final residual = 3.90715e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00056843, Final residual = 3.95155e-05, No Iterations 4
ExecutionTime = 282.31 s ClockTime = 285 s
Time = 1927
smoothSolver: Solving for Ux, Initial residual = 0.000155832, Final residual = 9.83155e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00193661, Final residual = 0.000131071, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00554992, Final residual = 5.27987e-05, No Iterations 4
time step continuity errors : sum local = 7.70968e-05, global = -1.46575e-05, cumulative = -0.311195
smoothSolver: Solving for omega, Initial residual = 4.28691e-05, Final residual = 3.9056e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000567495, Final residual = 3.94459e-05, No Iterations 4
ExecutionTime = 282.46 s ClockTime = 286 s
Time = 1928
smoothSolver: Solving for Ux, Initial residual = 0.000155788, Final residual = 9.8295e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00193377, Final residual = 0.00013087, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00554265, Final residual = 4.97534e-05, No Iterations 4
time step continuity errors : sum local = 7.26169e-05, global = -1.34753e-05, cumulative = -0.311209
smoothSolver: Solving for omega, Initial residual = 4.28437e-05, Final residual = 3.90413e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000566567, Final residual = 3.93763e-05, No Iterations 4
ExecutionTime = 282.61 s ClockTime = 286 s
Time = 1929
smoothSolver: Solving for Ux, Initial residual = 0.000155747, Final residual = 9.82804e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00193097, Final residual = 0.000130671, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00553808, Final residual = 4.82095e-05, No Iterations 4
time step continuity errors : sum local = 7.03326e-05, global = -1.28829e-05, cumulative = -0.311221
smoothSolver: Solving for omega, Initial residual = 4.28189e-05, Final residual = 3.90266e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000565644, Final residual = 3.93067e-05, No Iterations 4
ExecutionTime = 282.76 s ClockTime = 286 s
Time = 1930
smoothSolver: Solving for Ux, Initial residual = 0.000155712, Final residual = 9.82688e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0019282, Final residual = 0.000130475, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00553422, Final residual = 4.848e-05, No Iterations 4
time step continuity errors : sum local = 7.06974e-05, global = -1.30348e-05, cumulative = -0.311234
smoothSolver: Solving for omega, Initial residual = 4.27935e-05, Final residual = 3.90131e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000564726, Final residual = 3.92374e-05, No Iterations 4
ExecutionTime = 282.9 s ClockTime = 286 s
Time = 1931
smoothSolver: Solving for Ux, Initial residual = 0.000155682, Final residual = 9.82593e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00192538, Final residual = 0.000130277, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00553041, Final residual = 4.95757e-05, No Iterations 4
time step continuity errors : sum local = 7.22655e-05, global = -1.35487e-05, cumulative = -0.311248
smoothSolver: Solving for omega, Initial residual = 4.27657e-05, Final residual = 3.89998e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00056381, Final residual = 3.91688e-05, No Iterations 4
ExecutionTime = 283.04 s ClockTime = 286 s
Time = 1932
smoothSolver: Solving for Ux, Initial residual = 0.00015565, Final residual = 9.82502e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00192252, Final residual = 0.000130074, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00552527, Final residual = 5.0372e-05, No Iterations 4
time step continuity errors : sum local = 7.33971e-05, global = -1.39724e-05, cumulative = -0.311262
smoothSolver: Solving for omega, Initial residual = 4.2741e-05, Final residual = 3.89867e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000562895, Final residual = 3.91002e-05, No Iterations 4
ExecutionTime = 283.19 s ClockTime = 286 s
Time = 1933
smoothSolver: Solving for Ux, Initial residual = 0.000155616, Final residual = 9.82398e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00191959, Final residual = 0.000129869, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00552219, Final residual = 5.03819e-05, No Iterations 4
time step continuity errors : sum local = 7.33821e-05, global = -1.40895e-05, cumulative = -0.311276
smoothSolver: Solving for omega, Initial residual = 4.27166e-05, Final residual = 3.89746e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000561988, Final residual = 3.90325e-05, No Iterations 4
ExecutionTime = 283.34 s ClockTime = 286 s
Time = 1934
smoothSolver: Solving for Ux, Initial residual = 0.000155583, Final residual = 9.82294e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00191668, Final residual = 0.000129664, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00552258, Final residual = 4.98112e-05, No Iterations 4
time step continuity errors : sum local = 7.25215e-05, global = -1.39497e-05, cumulative = -0.31129
smoothSolver: Solving for omega, Initial residual = 4.2693e-05, Final residual = 3.89629e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00056109, Final residual = 3.89647e-05, No Iterations 4
ExecutionTime = 283.47 s ClockTime = 287 s
Time = 1935
smoothSolver: Solving for Ux, Initial residual = 0.000155555, Final residual = 9.82223e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0019138, Final residual = 0.000129458, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00552191, Final residual = 4.91379e-05, No Iterations 4
time step continuity errors : sum local = 7.1513e-05, global = -1.37371e-05, cumulative = -0.311304
smoothSolver: Solving for omega, Initial residual = 4.26699e-05, Final residual = 3.89516e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000560186, Final residual = 3.88969e-05, No Iterations 4
ExecutionTime = 283.61 s ClockTime = 287 s
Time = 1936
smoothSolver: Solving for Ux, Initial residual = 0.000155529, Final residual = 9.82193e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0019109, Final residual = 0.000129253, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00552162, Final residual = 4.87097e-05, No Iterations 4
time step continuity errors : sum local = 7.08624e-05, global = -1.36199e-05, cumulative = -0.311317
smoothSolver: Solving for omega, Initial residual = 4.26466e-05, Final residual = 3.89404e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000559282, Final residual = 3.88296e-05, No Iterations 4
ExecutionTime = 283.76 s ClockTime = 287 s
Time = 1937
smoothSolver: Solving for Ux, Initial residual = 0.000155505, Final residual = 9.82151e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00190795, Final residual = 0.000129046, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00551266, Final residual = 4.85801e-05, No Iterations 4
time step continuity errors : sum local = 7.06474e-05, global = -1.36529e-05, cumulative = -0.311331
smoothSolver: Solving for omega, Initial residual = 4.26235e-05, Final residual = 3.89297e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000558387, Final residual = 3.8763e-05, No Iterations 4
ExecutionTime = 283.91 s ClockTime = 287 s
Time = 1938
smoothSolver: Solving for Ux, Initial residual = 0.000155481, Final residual = 9.82113e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00190496, Final residual = 0.000128836, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00549956, Final residual = 4.86102e-05, No Iterations 4
time step continuity errors : sum local = 7.06648e-05, global = -1.37837e-05, cumulative = -0.311345
smoothSolver: Solving for omega, Initial residual = 4.2601e-05, Final residual = 3.89195e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000557501, Final residual = 3.86965e-05, No Iterations 4
ExecutionTime = 284.06 s ClockTime = 287 s
Time = 1939
smoothSolver: Solving for Ux, Initial residual = 0.000155456, Final residual = 9.82093e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00190198, Final residual = 0.000128626, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00549472, Final residual = 4.86719e-05, No Iterations 4
time step continuity errors : sum local = 7.07293e-05, global = -1.39347e-05, cumulative = -0.311359
smoothSolver: Solving for omega, Initial residual = 4.25786e-05, Final residual = 3.89098e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000556612, Final residual = 3.86298e-05, No Iterations 4
ExecutionTime = 284.2 s ClockTime = 287 s
Time = 1940
smoothSolver: Solving for Ux, Initial residual = 0.000155433, Final residual = 9.82081e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00189896, Final residual = 0.000128412, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00549107, Final residual = 4.86891e-05, No Iterations 4
time step continuity errors : sum local = 7.07294e-05, global = -1.40496e-05, cumulative = -0.311373
smoothSolver: Solving for omega, Initial residual = 4.25542e-05, Final residual = 3.89005e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000555726, Final residual = 3.85644e-05, No Iterations 4
ExecutionTime = 284.35 s ClockTime = 288 s
Time = 1941
smoothSolver: Solving for Ux, Initial residual = 0.000155412, Final residual = 9.8208e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00189596, Final residual = 0.000128199, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00549042, Final residual = 4.86035e-05, No Iterations 4
time step continuity errors : sum local = 7.05801e-05, global = -1.41056e-05, cumulative = -0.311387
smoothSolver: Solving for omega, Initial residual = 4.25328e-05, Final residual = 3.88915e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000554839, Final residual = 3.84991e-05, No Iterations 4
ExecutionTime = 284.49 s ClockTime = 288 s
Time = 1942
smoothSolver: Solving for Ux, Initial residual = 0.000155393, Final residual = 9.82086e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00189294, Final residual = 0.000127985, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00549659, Final residual = 4.84406e-05, No Iterations 4
time step continuity errors : sum local = 7.03179e-05, global = -1.41281e-05, cumulative = -0.311401
smoothSolver: Solving for omega, Initial residual = 4.25114e-05, Final residual = 3.88828e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000553966, Final residual = 3.8434e-05, No Iterations 4
ExecutionTime = 284.63 s ClockTime = 288 s
Time = 1943
smoothSolver: Solving for Ux, Initial residual = 0.000155373, Final residual = 9.8211e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0018899, Final residual = 0.000127773, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00549065, Final residual = 4.82551e-05, No Iterations 4
time step continuity errors : sum local = 7.00245e-05, global = -1.41532e-05, cumulative = -0.311415
smoothSolver: Solving for omega, Initial residual = 4.24906e-05, Final residual = 3.88745e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0005531, Final residual = 3.83692e-05, No Iterations 4
ExecutionTime = 284.79 s ClockTime = 288 s
Time = 1944
smoothSolver: Solving for Ux, Initial residual = 0.000155356, Final residual = 9.82138e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00188684, Final residual = 0.000127558, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00548767, Final residual = 4.80816e-05, No Iterations 4
time step continuity errors : sum local = 6.97493e-05, global = -1.42035e-05, cumulative = -0.311429
smoothSolver: Solving for omega, Initial residual = 4.24703e-05, Final residual = 3.88664e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000552231, Final residual = 3.83048e-05, No Iterations 4
ExecutionTime = 284.93 s ClockTime = 288 s
Time = 1945
smoothSolver: Solving for Ux, Initial residual = 0.000155339, Final residual = 9.82172e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00188373, Final residual = 0.000127338, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00548744, Final residual = 4.79598e-05, No Iterations 4
time step continuity errors : sum local = 6.955e-05, global = -1.42901e-05, cumulative = -0.311444
smoothSolver: Solving for omega, Initial residual = 4.24499e-05, Final residual = 3.88579e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000551365, Final residual = 3.82412e-05, No Iterations 4
ExecutionTime = 285.07 s ClockTime = 288 s
Time = 1946
smoothSolver: Solving for Ux, Initial residual = 0.000155322, Final residual = 9.82223e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00188065, Final residual = 0.000127119, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00548304, Final residual = 4.78961e-05, No Iterations 4
time step continuity errors : sum local = 6.94365e-05, global = -1.44024e-05, cumulative = -0.311458
smoothSolver: Solving for omega, Initial residual = 4.24294e-05, Final residual = 3.88499e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000550507, Final residual = 3.81779e-05, No Iterations 4
ExecutionTime = 285.22 s ClockTime = 288 s
Time = 1947
smoothSolver: Solving for Ux, Initial residual = 0.000155308, Final residual = 9.82289e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00187756, Final residual = 0.000126901, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00547389, Final residual = 4.78604e-05, No Iterations 4
time step continuity errors : sum local = 6.93643e-05, global = -1.45345e-05, cumulative = -0.311473
smoothSolver: Solving for omega, Initial residual = 4.24087e-05, Final residual = 3.88423e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000549661, Final residual = 3.81149e-05, No Iterations 4
ExecutionTime = 285.37 s ClockTime = 289 s
Time = 1948
smoothSolver: Solving for Ux, Initial residual = 0.000155294, Final residual = 9.82351e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00187446, Final residual = 0.000126684, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00546889, Final residual = 4.78419e-05, No Iterations 4
time step continuity errors : sum local = 6.93179e-05, global = -1.46707e-05, cumulative = -0.311487
smoothSolver: Solving for omega, Initial residual = 4.23856e-05, Final residual = 3.88344e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000548813, Final residual = 3.80519e-05, No Iterations 4
ExecutionTime = 285.51 s ClockTime = 289 s
Time = 1949
smoothSolver: Solving for Ux, Initial residual = 0.000155281, Final residual = 9.82409e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00187136, Final residual = 0.000126464, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00546673, Final residual = 4.78149e-05, No Iterations 4
time step continuity errors : sum local = 6.92594e-05, global = -1.47906e-05, cumulative = -0.311502
smoothSolver: Solving for omega, Initial residual = 4.23649e-05, Final residual = 3.88266e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000547965, Final residual = 3.79897e-05, No Iterations 4
ExecutionTime = 285.65 s ClockTime = 289 s
Time = 1950
smoothSolver: Solving for Ux, Initial residual = 0.000155271, Final residual = 9.82496e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00186816, Final residual = 0.000126239, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0054689, Final residual = 4.77821e-05, No Iterations 4
time step continuity errors : sum local = 6.91919e-05, global = -1.48986e-05, cumulative = -0.311517
smoothSolver: Solving for omega, Initial residual = 4.23452e-05, Final residual = 3.8819e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000547127, Final residual = 3.79283e-05, No Iterations 4
ExecutionTime = 286 s ClockTime = 289 s
Time = 1951
smoothSolver: Solving for Ux, Initial residual = 0.000155259, Final residual = 9.82577e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00186497, Final residual = 0.000126014, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0054691, Final residual = 4.77591e-05, No Iterations 4
time step continuity errors : sum local = 6.91391e-05, global = -1.50062e-05, cumulative = -0.311532
smoothSolver: Solving for omega, Initial residual = 4.23253e-05, Final residual = 3.88109e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000546295, Final residual = 3.78669e-05, No Iterations 4
ExecutionTime = 286.14 s ClockTime = 289 s
Time = 1952
smoothSolver: Solving for Ux, Initial residual = 0.000155246, Final residual = 9.82667e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00186183, Final residual = 0.000125792, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00545932, Final residual = 4.77441e-05, No Iterations 4
time step continuity errors : sum local = 6.9099e-05, global = -1.51204e-05, cumulative = -0.311547
smoothSolver: Solving for omega, Initial residual = 4.23057e-05, Final residual = 3.88032e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00054547, Final residual = 3.78056e-05, No Iterations 4
ExecutionTime = 286.29 s ClockTime = 290 s
Time = 1953
smoothSolver: Solving for Ux, Initial residual = 0.000155238, Final residual = 9.8276e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00185869, Final residual = 0.000125571, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00545055, Final residual = 4.77313e-05, No Iterations 4
time step continuity errors : sum local = 6.90632e-05, global = -1.52421e-05, cumulative = -0.311562
smoothSolver: Solving for omega, Initial residual = 4.22867e-05, Final residual = 3.87952e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000544639, Final residual = 3.77452e-05, No Iterations 4
ExecutionTime = 286.44 s ClockTime = 290 s
Time = 1954
smoothSolver: Solving for Ux, Initial residual = 0.000155229, Final residual = 9.82859e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00185549, Final residual = 0.000125347, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0054422, Final residual = 4.77444e-05, No Iterations 4
time step continuity errors : sum local = 6.90656e-05, global = -1.53866e-05, cumulative = -0.311578
smoothSolver: Solving for omega, Initial residual = 4.22666e-05, Final residual = 3.87868e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000543822, Final residual = 3.76852e-05, No Iterations 4
ExecutionTime = 286.57 s ClockTime = 290 s
Time = 1955
smoothSolver: Solving for Ux, Initial residual = 0.000155218, Final residual = 9.82961e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00185224, Final residual = 0.000125119, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00543796, Final residual = 4.77823e-05, No Iterations 4
time step continuity errors : sum local = 6.91052e-05, global = -1.55522e-05, cumulative = -0.311593
smoothSolver: Solving for omega, Initial residual = 4.22434e-05, Final residual = 3.87788e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000543005, Final residual = 3.76256e-05, No Iterations 4
ExecutionTime = 286.71 s ClockTime = 290 s
Time = 1956
smoothSolver: Solving for Ux, Initial residual = 0.000155209, Final residual = 9.83052e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.001849, Final residual = 0.000124888, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0054268, Final residual = 4.78541e-05, No Iterations 4
time step continuity errors : sum local = 6.9194e-05, global = -1.57451e-05, cumulative = -0.311609
smoothSolver: Solving for omega, Initial residual = 4.22222e-05, Final residual = 3.87708e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000542193, Final residual = 3.75662e-05, No Iterations 4
ExecutionTime = 286.86 s ClockTime = 290 s
Time = 1957
smoothSolver: Solving for Ux, Initial residual = 0.000155201, Final residual = 9.83171e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00184578, Final residual = 0.000124661, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00542604, Final residual = 4.79625e-05, No Iterations 4
time step continuity errors : sum local = 6.93334e-05, global = -1.59655e-05, cumulative = -0.311625
smoothSolver: Solving for omega, Initial residual = 4.22022e-05, Final residual = 3.87621e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000541385, Final residual = 3.75072e-05, No Iterations 4
ExecutionTime = 287.01 s ClockTime = 290 s
Time = 1958
smoothSolver: Solving for Ux, Initial residual = 0.000155191, Final residual = 9.83273e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00184254, Final residual = 0.000124436, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00543912, Final residual = 4.81038e-05, No Iterations 4
time step continuity errors : sum local = 6.95208e-05, global = -1.61906e-05, cumulative = -0.311641
smoothSolver: Solving for omega, Initial residual = 4.21822e-05, Final residual = 3.87536e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000540582, Final residual = 3.74489e-05, No Iterations 4
ExecutionTime = 287.16 s ClockTime = 290 s
Time = 1959
smoothSolver: Solving for Ux, Initial residual = 0.00015518, Final residual = 9.83365e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00183931, Final residual = 0.000124208, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00544398, Final residual = 4.82655e-05, No Iterations 4
time step continuity errors : sum local = 6.97385e-05, global = -1.64138e-05, cumulative = -0.311658
smoothSolver: Solving for omega, Initial residual = 4.21621e-05, Final residual = 3.87448e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000539786, Final residual = 3.73909e-05, No Iterations 4
ExecutionTime = 287.3 s ClockTime = 291 s
Time = 1960
smoothSolver: Solving for Ux, Initial residual = 0.000155172, Final residual = 9.83475e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00183603, Final residual = 0.000123976, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00544005, Final residual = 4.84344e-05, No Iterations 4
time step continuity errors : sum local = 6.99675e-05, global = -1.66242e-05, cumulative = -0.311674
smoothSolver: Solving for omega, Initial residual = 4.21412e-05, Final residual = 3.87358e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000538995, Final residual = 3.73333e-05, No Iterations 4
ExecutionTime = 287.45 s ClockTime = 291 s
Time = 1961
smoothSolver: Solving for Ux, Initial residual = 0.000155162, Final residual = 9.83593e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00183269, Final residual = 0.00012374, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00542821, Final residual = 4.85692e-05, No Iterations 4
time step continuity errors : sum local = 7.01473e-05, global = -1.68205e-05, cumulative = -0.311691
smoothSolver: Solving for omega, Initial residual = 4.21191e-05, Final residual = 3.87271e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000538207, Final residual = 3.72762e-05, No Iterations 4
ExecutionTime = 287.59 s ClockTime = 291 s
Time = 1962
smoothSolver: Solving for Ux, Initial residual = 0.000155149, Final residual = 9.8369e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00182938, Final residual = 0.000123509, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00542022, Final residual = 4.86823e-05, No Iterations 4
time step continuity errors : sum local = 7.0296e-05, global = -1.70087e-05, cumulative = -0.311708
smoothSolver: Solving for omega, Initial residual = 4.20962e-05, Final residual = 3.87181e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000537427, Final residual = 3.72198e-05, No Iterations 4
ExecutionTime = 287.72 s ClockTime = 291 s
Time = 1963
smoothSolver: Solving for Ux, Initial residual = 0.00015514, Final residual = 9.83786e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00182614, Final residual = 0.000123282, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00541462, Final residual = 4.88065e-05, No Iterations 4
time step continuity errors : sum local = 7.04629e-05, global = -1.71983e-05, cumulative = -0.311725
smoothSolver: Solving for omega, Initial residual = 4.20745e-05, Final residual = 3.87085e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000536655, Final residual = 3.71639e-05, No Iterations 4
ExecutionTime = 287.87 s ClockTime = 291 s
Time = 1964
smoothSolver: Solving for Ux, Initial residual = 0.000155129, Final residual = 9.83903e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00182285, Final residual = 0.000123052, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0054128, Final residual = 4.89495e-05, No Iterations 4
time step continuity errors : sum local = 7.06568e-05, global = -1.73913e-05, cumulative = -0.311743
smoothSolver: Solving for omega, Initial residual = 4.20528e-05, Final residual = 3.86989e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000535887, Final residual = 3.71081e-05, No Iterations 4
ExecutionTime = 288.02 s ClockTime = 292 s
Time = 1965
smoothSolver: Solving for Ux, Initial residual = 0.000155115, Final residual = 9.84006e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00181951, Final residual = 0.000122817, No Iterations 4
GAMG: Solving for p, Initial residual = 0.005413, Final residual = 4.91083e-05, No Iterations 4
time step continuity errors : sum local = 7.08727e-05, global = -1.7589e-05, cumulative = -0.31176
smoothSolver: Solving for omega, Initial residual = 4.20314e-05, Final residual = 3.86894e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000535121, Final residual = 3.70531e-05, No Iterations 4
ExecutionTime = 288.17 s ClockTime = 292 s
Time = 1966
smoothSolver: Solving for Ux, Initial residual = 0.000155103, Final residual = 9.84098e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00181613, Final residual = 0.000122576, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00540804, Final residual = 4.92695e-05, No Iterations 4
time step continuity errors : sum local = 7.10927e-05, global = -1.77811e-05, cumulative = -0.311778
smoothSolver: Solving for omega, Initial residual = 4.20096e-05, Final residual = 3.86793e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000534363, Final residual = 3.69988e-05, No Iterations 4
ExecutionTime = 288.31 s ClockTime = 292 s
Time = 1967
smoothSolver: Solving for Ux, Initial residual = 0.000155092, Final residual = 9.84202e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00181279, Final residual = 0.000122342, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00540412, Final residual = 4.9432e-05, No Iterations 4
time step continuity errors : sum local = 7.13152e-05, global = -1.79575e-05, cumulative = -0.311796
smoothSolver: Solving for omega, Initial residual = 4.19867e-05, Final residual = 3.86691e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000533614, Final residual = 3.6945e-05, No Iterations 4
ExecutionTime = 288.46 s ClockTime = 292 s
Time = 1968
smoothSolver: Solving for Ux, Initial residual = 0.00015508, Final residual = 9.84301e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00180946, Final residual = 0.000122113, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00539941, Final residual = 4.96156e-05, No Iterations 4
time step continuity errors : sum local = 7.15688e-05, global = -1.81317e-05, cumulative = -0.311814
smoothSolver: Solving for omega, Initial residual = 4.19625e-05, Final residual = 3.86586e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000532871, Final residual = 3.68913e-05, No Iterations 4
ExecutionTime = 288.6 s ClockTime = 292 s
Time = 1969
smoothSolver: Solving for Ux, Initial residual = 0.000155067, Final residual = 9.84388e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00180612, Final residual = 0.000121879, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00539595, Final residual = 4.98132e-05, No Iterations 4
time step continuity errors : sum local = 7.18434e-05, global = -1.83025e-05, cumulative = -0.311832
smoothSolver: Solving for omega, Initial residual = 4.19402e-05, Final residual = 3.86483e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000532131, Final residual = 3.68382e-05, No Iterations 4
ExecutionTime = 288.74 s ClockTime = 292 s
Time = 1970
smoothSolver: Solving for Ux, Initial residual = 0.000155053, Final residual = 9.84461e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00180277, Final residual = 0.000121641, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00538865, Final residual = 5.00111e-05, No Iterations 4
time step continuity errors : sum local = 7.21192e-05, global = -1.84602e-05, cumulative = -0.311851
smoothSolver: Solving for omega, Initial residual = 4.19175e-05, Final residual = 3.86374e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000531393, Final residual = 3.67858e-05, No Iterations 4
ExecutionTime = 288.87 s ClockTime = 292 s
Time = 1971
smoothSolver: Solving for Ux, Initial residual = 0.000155039, Final residual = 9.84559e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00179933, Final residual = 0.000121398, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00537786, Final residual = 5.02552e-05, No Iterations 4
time step continuity errors : sum local = 7.24618e-05, global = -1.86139e-05, cumulative = -0.311869
smoothSolver: Solving for omega, Initial residual = 4.18943e-05, Final residual = 3.86264e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000530665, Final residual = 3.67343e-05, No Iterations 4
ExecutionTime = 289.02 s ClockTime = 293 s
Time = 1972
smoothSolver: Solving for Ux, Initial residual = 0.000155024, Final residual = 9.84638e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00179589, Final residual = 0.000121161, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0053794, Final residual = 5.05455e-05, No Iterations 4
time step continuity errors : sum local = 7.28688e-05, global = -1.87714e-05, cumulative = -0.311888
smoothSolver: Solving for omega, Initial residual = 4.18719e-05, Final residual = 3.86156e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000529947, Final residual = 3.66832e-05, No Iterations 4
ExecutionTime = 289.16 s ClockTime = 293 s
Time = 1973
smoothSolver: Solving for Ux, Initial residual = 0.00015501, Final residual = 9.84702e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00179255, Final residual = 0.000120929, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00537981, Final residual = 5.08371e-05, No Iterations 4
time step continuity errors : sum local = 7.32782e-05, global = -1.89255e-05, cumulative = -0.311907
smoothSolver: Solving for omega, Initial residual = 4.18481e-05, Final residual = 3.86035e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000529234, Final residual = 3.66321e-05, No Iterations 4
ExecutionTime = 289.3 s ClockTime = 293 s
Time = 1974
smoothSolver: Solving for Ux, Initial residual = 0.000154995, Final residual = 9.84785e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0017892, Final residual = 0.000120693, No Iterations 4
GAMG: Solving for p, Initial residual = 0.005371, Final residual = 5.1121e-05, No Iterations 4
time step continuity errors : sum local = 7.36767e-05, global = -1.90559e-05, cumulative = -0.311926
smoothSolver: Solving for omega, Initial residual = 4.18235e-05, Final residual = 3.85914e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000528524, Final residual = 3.65821e-05, No Iterations 4
ExecutionTime = 289.45 s ClockTime = 293 s
Time = 1975
smoothSolver: Solving for Ux, Initial residual = 0.000154978, Final residual = 9.84843e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00178578, Final residual = 0.000120453, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00536061, Final residual = 5.1428e-05, No Iterations 4
time step continuity errors : sum local = 7.41099e-05, global = -1.91634e-05, cumulative = -0.311945
smoothSolver: Solving for omega, Initial residual = 4.18001e-05, Final residual = 3.858e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000527821, Final residual = 3.65327e-05, No Iterations 4
ExecutionTime = 289.59 s ClockTime = 293 s
Time = 1976
smoothSolver: Solving for Ux, Initial residual = 0.000154958, Final residual = 9.84892e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00178229, Final residual = 0.000120206, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00535406, Final residual = 5.17877e-05, No Iterations 4
time step continuity errors : sum local = 7.46189e-05, global = -1.92545e-05, cumulative = -0.311965
smoothSolver: Solving for omega, Initial residual = 4.17766e-05, Final residual = 3.8568e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000527125, Final residual = 3.64838e-05, No Iterations 4
ExecutionTime = 289.74 s ClockTime = 293 s
Time = 1977
smoothSolver: Solving for Ux, Initial residual = 0.000154938, Final residual = 9.84933e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00177881, Final residual = 0.000119966, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00534751, Final residual = 5.21649e-05, No Iterations 4
time step continuity errors : sum local = 7.51534e-05, global = -1.93411e-05, cumulative = -0.311984
smoothSolver: Solving for omega, Initial residual = 4.17528e-05, Final residual = 3.85552e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000526436, Final residual = 3.64351e-05, No Iterations 4
ExecutionTime = 289.88 s ClockTime = 293 s
Time = 1978
smoothSolver: Solving for Ux, Initial residual = 0.000154919, Final residual = 9.84986e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00177543, Final residual = 0.000119733, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00534143, Final residual = 5.25518e-05, No Iterations 4
time step continuity errors : sum local = 7.57026e-05, global = -1.94268e-05, cumulative = -0.312003
smoothSolver: Solving for omega, Initial residual = 4.17284e-05, Final residual = 3.85424e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000525753, Final residual = 3.6387e-05, No Iterations 4
ExecutionTime = 290.02 s ClockTime = 294 s
Time = 1979
smoothSolver: Solving for Ux, Initial residual = 0.000154896, Final residual = 9.85011e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00177203, Final residual = 0.000119495, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00534213, Final residual = 5.29535e-05, No Iterations 4
time step continuity errors : sum local = 7.62716e-05, global = -1.95151e-05, cumulative = -0.312023
smoothSolver: Solving for omega, Initial residual = 4.17025e-05, Final residual = 3.85295e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000525071, Final residual = 3.63395e-05, No Iterations 4
ExecutionTime = 290.16 s ClockTime = 294 s
Time = 1980
smoothSolver: Solving for Ux, Initial residual = 0.000154869, Final residual = 9.85012e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00176861, Final residual = 0.000119252, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00534351, Final residual = 5.33483e-05, No Iterations 4
time step continuity errors : sum local = 7.68316e-05, global = -1.95893e-05, cumulative = -0.312043
smoothSolver: Solving for omega, Initial residual = 4.16776e-05, Final residual = 3.85158e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000524395, Final residual = 3.62927e-05, No Iterations 4
ExecutionTime = 290.3 s ClockTime = 294 s
Time = 1981
smoothSolver: Solving for Ux, Initial residual = 0.000154845, Final residual = 9.85037e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00176511, Final residual = 0.000119005, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00534166, Final residual = 2.99374e-05, No Iterations 5
time step continuity errors : sum local = 4.31111e-05, global = 8.00727e-06, cumulative = -0.312035
smoothSolver: Solving for omega, Initial residual = 4.16472e-05, Final residual = 3.85025e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000523731, Final residual = 3.62465e-05, No Iterations 4
ExecutionTime = 290.45 s ClockTime = 294 s
Time = 1982
smoothSolver: Solving for Ux, Initial residual = 0.000154807, Final residual = 9.84951e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00176144, Final residual = 0.000118756, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00533491, Final residual = 3.06833e-05, No Iterations 4
time step continuity errors : sum local = 4.41799e-05, global = -9.42783e-06, cumulative = -0.312044
smoothSolver: Solving for omega, Initial residual = 4.16328e-05, Final residual = 3.8489e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000523071, Final residual = 3.62002e-05, No Iterations 4
ExecutionTime = 290.59 s ClockTime = 294 s
Time = 1983
smoothSolver: Solving for Ux, Initial residual = 0.000154778, Final residual = 9.84939e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00175817, Final residual = 0.000118529, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00532775, Final residual = 3.30066e-05, No Iterations 4
time step continuity errors : sum local = 4.75226e-05, global = -1.00501e-05, cumulative = -0.312054
smoothSolver: Solving for omega, Initial residual = 4.16032e-05, Final residual = 3.84744e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000522411, Final residual = 3.61547e-05, No Iterations 4
ExecutionTime = 290.73 s ClockTime = 294 s
Time = 1984
smoothSolver: Solving for Ux, Initial residual = 0.000154759, Final residual = 9.85012e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00175488, Final residual = 0.000118296, No Iterations 4
GAMG: Solving for p, Initial residual = 0.005324, Final residual = 4.75336e-05, No Iterations 4
time step continuity errors : sum local = 6.84338e-05, global = -1.63123e-05, cumulative = -0.31207
smoothSolver: Solving for omega, Initial residual = 4.15746e-05, Final residual = 3.84596e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000521759, Final residual = 3.61101e-05, No Iterations 4
ExecutionTime = 290.87 s ClockTime = 295 s
Time = 1985
smoothSolver: Solving for Ux, Initial residual = 0.000154744, Final residual = 9.85113e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00175141, Final residual = 0.000118054, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00531977, Final residual = 3.15458e-05, No Iterations 5
time step continuity errors : sum local = 4.54132e-05, global = 8.39739e-06, cumulative = -0.312062
smoothSolver: Solving for omega, Initial residual = 4.15407e-05, Final residual = 3.8446e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000521113, Final residual = 3.60659e-05, No Iterations 4
ExecutionTime = 291.03 s ClockTime = 295 s
Time = 1986
smoothSolver: Solving for Ux, Initial residual = 0.000154696, Final residual = 9.84966e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00174774, Final residual = 0.000117795, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00531239, Final residual = 4.20473e-05, No Iterations 4
time step continuity errors : sum local = 6.05259e-05, global = -1.32636e-05, cumulative = -0.312075
smoothSolver: Solving for omega, Initial residual = 4.15238e-05, Final residual = 3.84304e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000520473, Final residual = 3.60218e-05, No Iterations 4
ExecutionTime = 291.17 s ClockTime = 295 s
Time = 1987
smoothSolver: Solving for Ux, Initial residual = 0.000154652, Final residual = 9.84854e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00174423, Final residual = 0.000117555, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00531187, Final residual = 4.17636e-05, No Iterations 4
time step continuity errors : sum local = 6.01133e-05, global = -1.30518e-05, cumulative = -0.312088
smoothSolver: Solving for omega, Initial residual = 4.14935e-05, Final residual = 3.84146e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000519839, Final residual = 3.59782e-05, No Iterations 4
ExecutionTime = 291.31 s ClockTime = 295 s
Time = 1988
smoothSolver: Solving for Ux, Initial residual = 0.000154615, Final residual = 9.84792e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00174088, Final residual = 0.000117323, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00531402, Final residual = 5.28146e-05, No Iterations 4
time step continuity errors : sum local = 7.60159e-05, global = -1.81753e-05, cumulative = -0.312106
smoothSolver: Solving for omega, Initial residual = 4.14681e-05, Final residual = 3.83999e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000519204, Final residual = 3.59354e-05, No Iterations 4
ExecutionTime = 291.45 s ClockTime = 295 s
Time = 1989
smoothSolver: Solving for Ux, Initial residual = 0.000154586, Final residual = 9.84805e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00173749, Final residual = 0.000117087, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00531317, Final residual = 3.22902e-05, No Iterations 5
time step continuity errors : sum local = 4.64742e-05, global = 9.30406e-06, cumulative = -0.312097
smoothSolver: Solving for omega, Initial residual = 4.1435e-05, Final residual = 3.83838e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000518576, Final residual = 3.58933e-05, No Iterations 4
ExecutionTime = 291.59 s ClockTime = 295 s
Time = 1990
smoothSolver: Solving for Ux, Initial residual = 0.000154537, Final residual = 9.84639e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00173391, Final residual = 0.000116835, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00530368, Final residual = 3.0914e-05, No Iterations 4
time step continuity errors : sum local = 4.44919e-05, global = -8.28426e-06, cumulative = -0.312105
smoothSolver: Solving for omega, Initial residual = 4.14157e-05, Final residual = 3.8367e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000517958, Final residual = 3.58518e-05, No Iterations 4
ExecutionTime = 291.74 s ClockTime = 295 s
Time = 1991
smoothSolver: Solving for Ux, Initial residual = 0.000154487, Final residual = 9.84498e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00173049, Final residual = 0.000116593, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00529847, Final residual = 3.10771e-05, No Iterations 4
time step continuity errors : sum local = 4.47258e-05, global = -8.44214e-06, cumulative = -0.312114
smoothSolver: Solving for omega, Initial residual = 4.13852e-05, Final residual = 3.83511e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000517345, Final residual = 3.58102e-05, No Iterations 4
ExecutionTime = 291.88 s ClockTime = 296 s
Time = 1992
smoothSolver: Solving for Ux, Initial residual = 0.000154448, Final residual = 9.84444e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00172694, Final residual = 0.00011635, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00529836, Final residual = 4.69857e-05, No Iterations 4
time step continuity errors : sum local = 6.76198e-05, global = -1.51742e-05, cumulative = -0.312129
smoothSolver: Solving for omega, Initial residual = 4.13571e-05, Final residual = 3.83342e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00051673, Final residual = 3.57692e-05, No Iterations 4
ExecutionTime = 292.01 s ClockTime = 296 s
Time = 1993
smoothSolver: Solving for Ux, Initial residual = 0.000154422, Final residual = 9.8448e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00172345, Final residual = 0.000116112, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00530554, Final residual = 3.3363e-05, No Iterations 5
time step continuity errors : sum local = 4.80116e-05, global = 1.01486e-05, cumulative = -0.312119
smoothSolver: Solving for omega, Initial residual = 4.13222e-05, Final residual = 3.8317e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000516118, Final residual = 3.57288e-05, No Iterations 4
ExecutionTime = 292.16 s ClockTime = 296 s
Time = 1994
smoothSolver: Solving for Ux, Initial residual = 0.000154369, Final residual = 9.84285e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00171992, Final residual = 0.000115865, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00530364, Final residual = 3.3037e-05, No Iterations 4
time step continuity errors : sum local = 4.75405e-05, global = -7.88359e-06, cumulative = -0.312127
smoothSolver: Solving for omega, Initial residual = 4.13017e-05, Final residual = 3.83e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000515516, Final residual = 3.56894e-05, No Iterations 4
ExecutionTime = 292.31 s ClockTime = 296 s
Time = 1995
smoothSolver: Solving for Ux, Initial residual = 0.0001543, Final residual = 9.84019e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00171661, Final residual = 0.000115632, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00529953, Final residual = 3.2405e-05, No Iterations 4
time step continuity errors : sum local = 4.66323e-05, global = -7.24097e-06, cumulative = -0.312134
smoothSolver: Solving for omega, Initial residual = 4.12689e-05, Final residual = 3.82821e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000514923, Final residual = 3.56501e-05, No Iterations 4
ExecutionTime = 292.44 s ClockTime = 296 s
Time = 1996
smoothSolver: Solving for Ux, Initial residual = 0.000154243, Final residual = 9.83839e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00171314, Final residual = 0.000115388, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00530223, Final residual = 4.54859e-05, No Iterations 4
time step continuity errors : sum local = 6.54571e-05, global = -1.39323e-05, cumulative = -0.312148
smoothSolver: Solving for omega, Initial residual = 4.12397e-05, Final residual = 3.82633e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000514335, Final residual = 3.56107e-05, No Iterations 4
ExecutionTime = 292.57 s ClockTime = 296 s
Time = 1997
smoothSolver: Solving for Ux, Initial residual = 0.000154212, Final residual = 9.83823e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00170946, Final residual = 0.000115135, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00531417, Final residual = 3.36948e-05, No Iterations 5
time step continuity errors : sum local = 4.84883e-05, global = 1.04869e-05, cumulative = -0.312137
smoothSolver: Solving for omega, Initial residual = 4.12049e-05, Final residual = 3.82463e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000513747, Final residual = 3.55723e-05, No Iterations 4
ExecutionTime = 292.71 s ClockTime = 296 s
Time = 1998
smoothSolver: Solving for Ux, Initial residual = 0.000154163, Final residual = 9.83667e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00170583, Final residual = 0.000114887, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00530554, Final residual = 3.64468e-05, No Iterations 4
time step continuity errors : sum local = 5.2449e-05, global = -9.65276e-06, cumulative = -0.312147
smoothSolver: Solving for omega, Initial residual = 4.11824e-05, Final residual = 3.82276e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00051316, Final residual = 3.55347e-05, No Iterations 4
ExecutionTime = 292.85 s ClockTime = 297 s
Time = 1999
smoothSolver: Solving for Ux, Initial residual = 0.000154087, Final residual = 9.83363e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00170255, Final residual = 0.00011466, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00529102, Final residual = 3.41086e-05, No Iterations 4
time step continuity errors : sum local = 4.90901e-05, global = -7.66003e-06, cumulative = -0.312155
smoothSolver: Solving for omega, Initial residual = 4.11494e-05, Final residual = 3.8208e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000512588, Final residual = 3.54974e-05, No Iterations 4
ExecutionTime = 292.99 s ClockTime = 297 s
Time = 2000
smoothSolver: Solving for Ux, Initial residual = 0.000154018, Final residual = 9.83109e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00169925, Final residual = 0.000114428, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00529497, Final residual = 4.19423e-05, No Iterations 4
time step continuity errors : sum local = 6.0365e-05, global = -1.07933e-05, cumulative = -0.312166
smoothSolver: Solving for omega, Initial residual = 4.112e-05, Final residual = 3.81893e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00051202, Final residual = 3.54606e-05, No Iterations 4
ExecutionTime = 293.33 s ClockTime = 297 s
Time = 2001
smoothSolver: Solving for Ux, Initial residual = 0.000153969, Final residual = 9.82986e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00169568, Final residual = 0.000114178, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00531306, Final residual = 3.313e-05, No Iterations 5
time step continuity errors : sum local = 4.76798e-05, global = 1.07288e-05, cumulative = -0.312155
smoothSolver: Solving for omega, Initial residual = 4.10836e-05, Final residual = 3.81703e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000511452, Final residual = 3.54237e-05, No Iterations 4
ExecutionTime = 293.48 s ClockTime = 297 s
Time = 2002
smoothSolver: Solving for Ux, Initial residual = 0.000153916, Final residual = 9.82805e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00169191, Final residual = 0.000113918, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00531115, Final residual = 3.95659e-05, No Iterations 4
time step continuity errors : sum local = 5.69432e-05, global = -5.95983e-06, cumulative = -0.312161
smoothSolver: Solving for omega, Initial residual = 4.10591e-05, Final residual = 3.81495e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000510891, Final residual = 3.53879e-05, No Iterations 4
ExecutionTime = 293.61 s ClockTime = 297 s
Time = 2003
smoothSolver: Solving for Ux, Initial residual = 0.000153835, Final residual = 9.82448e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00168842, Final residual = 0.000113682, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0052978, Final residual = 3.87514e-05, No Iterations 4
time step continuity errors : sum local = 5.57808e-05, global = -9.7219e-06, cumulative = -0.31217
smoothSolver: Solving for omega, Initial residual = 4.10252e-05, Final residual = 3.81294e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000510332, Final residual = 3.53525e-05, No Iterations 4
ExecutionTime = 293.76 s ClockTime = 297 s
Time = 2004
smoothSolver: Solving for Ux, Initial residual = 0.000153759, Final residual = 9.82153e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00168514, Final residual = 0.000113455, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00530002, Final residual = 4.37409e-05, No Iterations 4
time step continuity errors : sum local = 6.29698e-05, global = -1.07475e-05, cumulative = -0.312181
smoothSolver: Solving for omega, Initial residual = 4.09943e-05, Final residual = 3.8109e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000509783, Final residual = 3.53177e-05, No Iterations 4
ExecutionTime = 293.89 s ClockTime = 298 s
Time = 2005
smoothSolver: Solving for Ux, Initial residual = 0.000153704, Final residual = 9.82007e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00168178, Final residual = 0.000113218, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00531073, Final residual = 3.37906e-05, No Iterations 5
time step continuity errors : sum local = 4.86433e-05, global = 1.08151e-05, cumulative = -0.31217
smoothSolver: Solving for omega, Initial residual = 4.09606e-05, Final residual = 3.80885e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000509235, Final residual = 3.52831e-05, No Iterations 4
ExecutionTime = 294.04 s ClockTime = 298 s
Time = 2006
smoothSolver: Solving for Ux, Initial residual = 0.000153638, Final residual = 9.81757e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00167811, Final residual = 0.000112964, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00530421, Final residual = 4.01352e-05, No Iterations 4
time step continuity errors : sum local = 5.77781e-05, global = -2.04065e-06, cumulative = -0.312172
smoothSolver: Solving for omega, Initial residual = 4.09324e-05, Final residual = 3.80676e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000508697, Final residual = 3.52489e-05, No Iterations 4
ExecutionTime = 294.17 s ClockTime = 298 s
Time = 2007
smoothSolver: Solving for Ux, Initial residual = 0.000153545, Final residual = 9.81313e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00167458, Final residual = 0.000112719, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00529835, Final residual = 3.86774e-05, No Iterations 4
time step continuity errors : sum local = 5.56875e-05, global = -9.75208e-07, cumulative = -0.312173
smoothSolver: Solving for omega, Initial residual = 4.08969e-05, Final residual = 3.80465e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000508159, Final residual = 3.52154e-05, No Iterations 4
ExecutionTime = 294.31 s ClockTime = 298 s
Time = 2008
smoothSolver: Solving for Ux, Initial residual = 0.000153463, Final residual = 9.80947e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00167109, Final residual = 0.00011248, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0052975, Final residual = 3.92008e-05, No Iterations 4
time step continuity errors : sum local = 5.64482e-05, global = -9.98208e-06, cumulative = -0.312183
smoothSolver: Solving for omega, Initial residual = 4.08632e-05, Final residual = 3.80236e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000507621, Final residual = 3.51825e-05, No Iterations 4
ExecutionTime = 294.45 s ClockTime = 298 s
Time = 2009
smoothSolver: Solving for Ux, Initial residual = 0.000153396, Final residual = 9.80703e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00166777, Final residual = 0.000112254, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00530067, Final residual = 4.60946e-05, No Iterations 4
time step continuity errors : sum local = 6.63794e-05, global = -1.01913e-05, cumulative = -0.312194
smoothSolver: Solving for omega, Initial residual = 4.08313e-05, Final residual = 3.80021e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000507098, Final residual = 3.51501e-05, No Iterations 4
ExecutionTime = 294.6 s ClockTime = 298 s
Time = 2010
smoothSolver: Solving for Ux, Initial residual = 0.000153329, Final residual = 9.80491e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00166433, Final residual = 0.000112014, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0053098, Final residual = 3.11894e-05, No Iterations 5
time step continuity errors : sum local = 4.4913e-05, global = 1.11161e-05, cumulative = -0.312182
smoothSolver: Solving for omega, Initial residual = 4.07969e-05, Final residual = 3.79813e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000506578, Final residual = 3.51182e-05, No Iterations 4
ExecutionTime = 294.74 s ClockTime = 298 s
Time = 2011
smoothSolver: Solving for Ux, Initial residual = 0.000153243, Final residual = 9.80105e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00166064, Final residual = 0.000111758, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00531157, Final residual = 4.07703e-05, No Iterations 4
time step continuity errors : sum local = 5.87126e-05, global = 3.10442e-06, cumulative = -0.312179
smoothSolver: Solving for omega, Initial residual = 4.07646e-05, Final residual = 3.79578e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000506059, Final residual = 3.50862e-05, No Iterations 4
ExecutionTime = 294.89 s ClockTime = 299 s
Time = 2012
smoothSolver: Solving for Ux, Initial residual = 0.000153141, Final residual = 9.79585e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0016572, Final residual = 0.000111518, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00529322, Final residual = 3.59879e-05, No Iterations 4
time step continuity errors : sum local = 5.18385e-05, global = 7.37328e-06, cumulative = -0.312172
smoothSolver: Solving for omega, Initial residual = 4.0729e-05, Final residual = 3.79339e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000505547, Final residual = 3.50553e-05, No Iterations 4
ExecutionTime = 295.02 s ClockTime = 299 s
Time = 2013
smoothSolver: Solving for Ux, Initial residual = 0.000153049, Final residual = 9.79159e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00165376, Final residual = 0.000111284, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00528199, Final residual = 3.78548e-05, No Iterations 4
time step continuity errors : sum local = 5.45382e-05, global = 2.64514e-06, cumulative = -0.312169
smoothSolver: Solving for omega, Initial residual = 4.0695e-05, Final residual = 3.79102e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000505036, Final residual = 3.50253e-05, No Iterations 4
ExecutionTime = 295.16 s ClockTime = 299 s
Time = 2014
smoothSolver: Solving for Ux, Initial residual = 0.000152965, Final residual = 9.78819e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00165035, Final residual = 0.000111052, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00529192, Final residual = 4.22451e-05, No Iterations 4
time step continuity errors : sum local = 6.08693e-05, global = -1.04875e-05, cumulative = -0.31218
smoothSolver: Solving for omega, Initial residual = 4.06572e-05, Final residual = 3.78862e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000504537, Final residual = 3.49951e-05, No Iterations 4
ExecutionTime = 295.3 s ClockTime = 299 s
Time = 2015
smoothSolver: Solving for Ux, Initial residual = 0.000152888, Final residual = 9.78501e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00164701, Final residual = 0.00011082, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00530051, Final residual = 4.63165e-05, No Iterations 4
time step continuity errors : sum local = 6.67393e-05, global = -8.02168e-06, cumulative = -0.312188
smoothSolver: Solving for omega, Initial residual = 4.06229e-05, Final residual = 3.78627e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000504045, Final residual = 3.49657e-05, No Iterations 4
ExecutionTime = 295.45 s ClockTime = 299 s
Time = 2016
smoothSolver: Solving for Ux, Initial residual = 0.000152803, Final residual = 9.78148e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00164355, Final residual = 0.000110581, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0053043, Final residual = 4.83011e-05, No Iterations 4
time step continuity errors : sum local = 6.95957e-05, global = -6.97514e-06, cumulative = -0.312195
smoothSolver: Solving for omega, Initial residual = 4.05859e-05, Final residual = 3.78389e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000503549, Final residual = 3.49363e-05, No Iterations 4
ExecutionTime = 295.59 s ClockTime = 299 s
Time = 2017
smoothSolver: Solving for Ux, Initial residual = 0.000152698, Final residual = 9.77621e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00164005, Final residual = 0.000110337, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00528701, Final residual = 2.87573e-05, No Iterations 5
time step continuity errors : sum local = 4.14398e-05, global = 6.89385e-06, cumulative = -0.312188
smoothSolver: Solving for omega, Initial residual = 4.05494e-05, Final residual = 3.78145e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000503066, Final residual = 3.49076e-05, No Iterations 4
ExecutionTime = 295.75 s ClockTime = 300 s
Time = 2018
smoothSolver: Solving for Ux, Initial residual = 0.000152588, Final residual = 9.77024e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0016363, Final residual = 0.000110081, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00527757, Final residual = 3.66783e-05, No Iterations 4
time step continuity errors : sum local = 5.2873e-05, global = 1.20371e-05, cumulative = -0.312176
smoothSolver: Solving for omega, Initial residual = 4.05178e-05, Final residual = 3.77891e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000502581, Final residual = 3.48802e-05, No Iterations 4
ExecutionTime = 295.89 s ClockTime = 300 s
Time = 2019
smoothSolver: Solving for Ux, Initial residual = 0.000152489, Final residual = 9.76577e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0016329, Final residual = 0.000109849, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00528138, Final residual = 4.27803e-05, No Iterations 4
time step continuity errors : sum local = 6.16839e-05, global = 1.52095e-05, cumulative = -0.312161
smoothSolver: Solving for omega, Initial residual = 4.04815e-05, Final residual = 3.77638e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00050211, Final residual = 3.48529e-05, No Iterations 4
ExecutionTime = 296.02 s ClockTime = 300 s
Time = 2020
smoothSolver: Solving for Ux, Initial residual = 0.000152399, Final residual = 9.76213e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00162966, Final residual = 0.000109628, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00529188, Final residual = 4.42004e-05, No Iterations 4
time step continuity errors : sum local = 6.37414e-05, global = 1.49257e-05, cumulative = -0.312146
smoothSolver: Solving for omega, Initial residual = 4.04428e-05, Final residual = 3.77379e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000501646, Final residual = 3.48253e-05, No Iterations 4
ExecutionTime = 296.16 s ClockTime = 300 s
Time = 2021
smoothSolver: Solving for Ux, Initial residual = 0.0001523, Final residual = 9.75763e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00162639, Final residual = 0.0001094, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00530348, Final residual = 4.15032e-05, No Iterations 4
time step continuity errors : sum local = 5.98573e-05, global = 1.22156e-05, cumulative = -0.312134
smoothSolver: Solving for omega, Initial residual = 4.04011e-05, Final residual = 3.77121e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000501178, Final residual = 3.47987e-05, No Iterations 4
ExecutionTime = 296.3 s ClockTime = 300 s
Time = 2022
smoothSolver: Solving for Ux, Initial residual = 0.00015219, Final residual = 9.75189e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00162293, Final residual = 0.00010916, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00529717, Final residual = 4.56871e-05, No Iterations 4
time step continuity errors : sum local = 6.5899e-05, global = 2.96501e-06, cumulative = -0.312131
smoothSolver: Solving for omega, Initial residual = 4.03617e-05, Final residual = 3.76859e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000500713, Final residual = 3.47721e-05, No Iterations 4
ExecutionTime = 296.45 s ClockTime = 300 s
Time = 2023
smoothSolver: Solving for Ux, Initial residual = 0.000152076, Final residual = 9.74574e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00161935, Final residual = 0.000108917, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00528291, Final residual = 5.10846e-05, No Iterations 4
time step continuity errors : sum local = 7.36976e-05, global = -1.33296e-05, cumulative = -0.312144
smoothSolver: Solving for omega, Initial residual = 4.03218e-05, Final residual = 3.76589e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00050026, Final residual = 3.47471e-05, No Iterations 4
ExecutionTime = 296.59 s ClockTime = 300 s
Time = 2024
smoothSolver: Solving for Ux, Initial residual = 0.00015197, Final residual = 9.74043e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00161591, Final residual = 0.000108683, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00526836, Final residual = 4.89955e-05, No Iterations 4
time step continuity errors : sum local = 7.07008e-05, global = -6.32516e-06, cumulative = -0.31215
smoothSolver: Solving for omega, Initial residual = 4.02871e-05, Final residual = 3.76326e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000499814, Final residual = 3.47223e-05, No Iterations 4
ExecutionTime = 296.74 s ClockTime = 301 s
Time = 2025
smoothSolver: Solving for Ux, Initial residual = 0.000151868, Final residual = 9.73578e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00161261, Final residual = 0.000108458, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00527168, Final residual = 3.12262e-05, No Iterations 5
time step continuity errors : sum local = 4.50652e-05, global = 8.48406e-06, cumulative = -0.312142
smoothSolver: Solving for omega, Initial residual = 4.02485e-05, Final residual = 3.7606e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000499376, Final residual = 3.46975e-05, No Iterations 4
ExecutionTime = 296.89 s ClockTime = 301 s
Time = 2026
smoothSolver: Solving for Ux, Initial residual = 0.000151757, Final residual = 9.73011e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00160904, Final residual = 0.00010821, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00528194, Final residual = 4.08937e-05, No Iterations 4
time step continuity errors : sum local = 5.90358e-05, global = 1.40943e-05, cumulative = -0.312128
smoothSolver: Solving for omega, Initial residual = 4.0211e-05, Final residual = 3.75784e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000498938, Final residual = 3.46727e-05, No Iterations 4
ExecutionTime = 297.04 s ClockTime = 301 s
Time = 2027
smoothSolver: Solving for Ux, Initial residual = 0.000151639, Final residual = 9.72438e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00160565, Final residual = 0.000107977, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00528569, Final residual = 5.2113e-05, No Iterations 4
time step continuity errors : sum local = 7.52507e-05, global = 1.92201e-05, cumulative = -0.312108
smoothSolver: Solving for omega, Initial residual = 4.01706e-05, Final residual = 3.75507e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000498498, Final residual = 3.46485e-05, No Iterations 4
ExecutionTime = 297.18 s ClockTime = 301 s
Time = 2028
smoothSolver: Solving for Ux, Initial residual = 0.000151525, Final residual = 9.71879e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00160235, Final residual = 0.000107748, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0052789, Final residual = 3.68886e-05, No Iterations 5
time step continuity errors : sum local = 5.32774e-05, global = -1.28564e-05, cumulative = -0.312121
smoothSolver: Solving for omega, Initial residual = 4.01262e-05, Final residual = 3.75219e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000498065, Final residual = 3.46254e-05, No Iterations 4
ExecutionTime = 297.33 s ClockTime = 301 s
Time = 2029
smoothSolver: Solving for Ux, Initial residual = 0.000151402, Final residual = 9.71197e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00159894, Final residual = 0.000107518, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00526772, Final residual = 4.70319e-05, No Iterations 4
time step continuity errors : sum local = 6.79503e-05, global = -3.08872e-06, cumulative = -0.312124
smoothSolver: Solving for omega, Initial residual = 4.00874e-05, Final residual = 3.74937e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000497643, Final residual = 3.46031e-05, No Iterations 4
ExecutionTime = 297.47 s ClockTime = 301 s
Time = 2030
smoothSolver: Solving for Ux, Initial residual = 0.000151275, Final residual = 9.70523e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00159554, Final residual = 0.00010729, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00526895, Final residual = 3.20648e-05, No Iterations 5
time step continuity errors : sum local = 4.6331e-05, global = 1.25472e-05, cumulative = -0.312112
smoothSolver: Solving for omega, Initial residual = 4.0045e-05, Final residual = 3.74659e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000497232, Final residual = 3.45808e-05, No Iterations 4
ExecutionTime = 297.63 s ClockTime = 302 s
Time = 2031
smoothSolver: Solving for Ux, Initial residual = 0.000151163, Final residual = 9.69978e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00159211, Final residual = 0.000107055, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00527347, Final residual = 5.19698e-05, No Iterations 4
time step continuity errors : sum local = 7.5094e-05, global = -5.6236e-06, cumulative = -0.312117
smoothSolver: Solving for omega, Initial residual = 4.00067e-05, Final residual = 3.74371e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000496818, Final residual = 3.45586e-05, No Iterations 4
ExecutionTime = 297.77 s ClockTime = 302 s
Time = 2032
smoothSolver: Solving for Ux, Initial residual = 0.000151041, Final residual = 9.69326e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00158883, Final residual = 0.000106829, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00526196, Final residual = 5.09603e-05, No Iterations 4
time step continuity errors : sum local = 7.36609e-05, global = 2.05384e-06, cumulative = -0.312115
smoothSolver: Solving for omega, Initial residual = 3.99665e-05, Final residual = 3.74086e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000496408, Final residual = 3.45368e-05, No Iterations 4
ExecutionTime = 297.93 s ClockTime = 302 s
Time = 2033
smoothSolver: Solving for Ux, Initial residual = 0.000150916, Final residual = 9.6868e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0015855, Final residual = 0.000106597, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00525428, Final residual = 5.16226e-05, No Iterations 4
time step continuity errors : sum local = 7.46464e-05, global = 3.25229e-06, cumulative = -0.312112
smoothSolver: Solving for omega, Initial residual = 3.99247e-05, Final residual = 3.73791e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000495998, Final residual = 3.45153e-05, No Iterations 4
ExecutionTime = 298.07 s ClockTime = 302 s
Time = 2034
smoothSolver: Solving for Ux, Initial residual = 0.000150788, Final residual = 9.68016e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00158207, Final residual = 0.000106364, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00525092, Final residual = 5.20732e-05, No Iterations 4
time step continuity errors : sum local = 7.53205e-05, global = 5.48956e-07, cumulative = -0.312112
smoothSolver: Solving for omega, Initial residual = 3.98814e-05, Final residual = 3.73487e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00049559, Final residual = 3.44954e-05, No Iterations 4
ExecutionTime = 298.21 s ClockTime = 302 s
Time = 2035
smoothSolver: Solving for Ux, Initial residual = 0.000150658, Final residual = 9.67323e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00157863, Final residual = 0.000106132, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00525261, Final residual = 2.35611e-05, No Iterations 5
time step continuity errors : sum local = 3.40884e-05, global = 9.68406e-06, cumulative = -0.312102
smoothSolver: Solving for omega, Initial residual = 3.98413e-05, Final residual = 3.73186e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000495201, Final residual = 3.44753e-05, No Iterations 4
ExecutionTime = 298.36 s ClockTime = 303 s
Time = 2036
smoothSolver: Solving for Ux, Initial residual = 0.000150528, Final residual = 9.66623e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0015752, Final residual = 0.0001059, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00525477, Final residual = 3.77588e-05, No Iterations 4
time step continuity errors : sum local = 5.46422e-05, global = 1.21014e-05, cumulative = -0.31209
smoothSolver: Solving for omega, Initial residual = 3.98014e-05, Final residual = 3.72887e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000494815, Final residual = 3.44555e-05, No Iterations 4
ExecutionTime = 298.5 s ClockTime = 303 s
Time = 2037
smoothSolver: Solving for Ux, Initial residual = 0.000150395, Final residual = 9.65928e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.001572, Final residual = 0.000105681, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00525186, Final residual = 4.43545e-05, No Iterations 4
time step continuity errors : sum local = 6.41987e-05, global = 1.68785e-05, cumulative = -0.312073
smoothSolver: Solving for omega, Initial residual = 3.97589e-05, Final residual = 3.7258e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000494427, Final residual = 3.44363e-05, No Iterations 4
ExecutionTime = 298.64 s ClockTime = 303 s
Time = 2038
smoothSolver: Solving for Ux, Initial residual = 0.000150265, Final residual = 9.6522e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00156874, Final residual = 0.000105456, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00524404, Final residual = 4.96336e-05, No Iterations 4
time step continuity errors : sum local = 7.18561e-05, global = 1.88039e-05, cumulative = -0.312054
smoothSolver: Solving for omega, Initial residual = 3.97131e-05, Final residual = 3.7227e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000494042, Final residual = 3.44166e-05, No Iterations 4
ExecutionTime = 298.79 s ClockTime = 303 s
Time = 2039
smoothSolver: Solving for Ux, Initial residual = 0.000150132, Final residual = 9.64496e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00156542, Final residual = 0.000105228, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0052338, Final residual = 5.04575e-05, No Iterations 4
time step continuity errors : sum local = 7.30717e-05, global = 1.85378e-05, cumulative = -0.312036
smoothSolver: Solving for omega, Initial residual = 3.96698e-05, Final residual = 3.71958e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00049366, Final residual = 3.43979e-05, No Iterations 4
ExecutionTime = 298.92 s ClockTime = 303 s
Time = 2040
smoothSolver: Solving for Ux, Initial residual = 0.00014999, Final residual = 9.6374e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00156201, Final residual = 0.000104997, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00522589, Final residual = 4.72764e-05, No Iterations 4
time step continuity errors : sum local = 6.84911e-05, global = 1.52598e-05, cumulative = -0.31202
smoothSolver: Solving for omega, Initial residual = 3.96276e-05, Final residual = 3.71643e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00049328, Final residual = 3.43806e-05, No Iterations 4
ExecutionTime = 299.07 s ClockTime = 303 s
Time = 2041
smoothSolver: Solving for Ux, Initial residual = 0.000149846, Final residual = 9.6296e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00155859, Final residual = 0.000104769, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00522013, Final residual = 5.04781e-05, No Iterations 4
time step continuity errors : sum local = 7.31559e-05, global = 7.66264e-06, cumulative = -0.312013
smoothSolver: Solving for omega, Initial residual = 3.95847e-05, Final residual = 3.71322e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000492922, Final residual = 3.4363e-05, No Iterations 4
ExecutionTime = 299.21 s ClockTime = 303 s
Time = 2042
smoothSolver: Solving for Ux, Initial residual = 0.000149707, Final residual = 9.62194e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00155533, Final residual = 0.000104547, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00521134, Final residual = 2.48641e-05, No Iterations 5
time step continuity errors : sum local = 3.60473e-05, global = 9.81215e-06, cumulative = -0.312003
smoothSolver: Solving for omega, Initial residual = 3.95407e-05, Final residual = 3.71005e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000492561, Final residual = 3.43456e-05, No Iterations 4
ExecutionTime = 299.35 s ClockTime = 304 s
Time = 2043
smoothSolver: Solving for Ux, Initial residual = 0.000149571, Final residual = 9.61447e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00155203, Final residual = 0.000104319, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0052028, Final residual = 4.59537e-05, No Iterations 4
time step continuity errors : sum local = 6.6644e-05, global = 5.87374e-06, cumulative = -0.311997
smoothSolver: Solving for omega, Initial residual = 3.9499e-05, Final residual = 3.70677e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000492199, Final residual = 3.43285e-05, No Iterations 4
ExecutionTime = 299.49 s ClockTime = 304 s
Time = 2044
smoothSolver: Solving for Ux, Initial residual = 0.00014943, Final residual = 9.60697e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00154882, Final residual = 0.000104098, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00520243, Final residual = 4.54971e-05, No Iterations 4
time step continuity errors : sum local = 6.60005e-05, global = 8.39752e-06, cumulative = -0.311989
smoothSolver: Solving for omega, Initial residual = 3.94547e-05, Final residual = 3.70343e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000491841, Final residual = 3.4311e-05, No Iterations 4
ExecutionTime = 299.63 s ClockTime = 304 s
Time = 2045
smoothSolver: Solving for Ux, Initial residual = 0.000149284, Final residual = 9.59892e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00154553, Final residual = 0.000103874, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0051975, Final residual = 4.67193e-05, No Iterations 4
time step continuity errors : sum local = 6.77931e-05, global = 1.01348e-05, cumulative = -0.311978
smoothSolver: Solving for omega, Initial residual = 3.94095e-05, Final residual = 3.70019e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000491486, Final residual = 3.42951e-05, No Iterations 4
ExecutionTime = 299.77 s ClockTime = 304 s
Time = 2046
smoothSolver: Solving for Ux, Initial residual = 0.000149136, Final residual = 9.59062e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00154219, Final residual = 0.00010365, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00519563, Final residual = 4.87312e-05, No Iterations 4
time step continuity errors : sum local = 7.0737e-05, global = 1.07167e-05, cumulative = -0.311968
smoothSolver: Solving for omega, Initial residual = 3.93632e-05, Final residual = 3.69688e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00049114, Final residual = 3.428e-05, No Iterations 4
ExecutionTime = 299.91 s ClockTime = 304 s
Time = 2047
smoothSolver: Solving for Ux, Initial residual = 0.000148985, Final residual = 9.58203e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0015389, Final residual = 0.000103431, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00519489, Final residual = 5.10273e-05, No Iterations 4
time step continuity errors : sum local = 7.40982e-05, global = 9.86247e-06, cumulative = -0.311958
smoothSolver: Solving for omega, Initial residual = 3.9317e-05, Final residual = 3.69344e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000490808, Final residual = 3.42645e-05, No Iterations 4
ExecutionTime = 300.06 s ClockTime = 304 s
Time = 2048
smoothSolver: Solving for Ux, Initial residual = 0.000148834, Final residual = 9.57347e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00153567, Final residual = 0.000103211, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00518997, Final residual = 3.38021e-05, No Iterations 5
time step continuity errors : sum local = 4.9105e-05, global = 1.14493e-06, cumulative = -0.311957
smoothSolver: Solving for omega, Initial residual = 3.92696e-05, Final residual = 3.68993e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000490476, Final residual = 3.42493e-05, No Iterations 4
ExecutionTime = 300.2 s ClockTime = 304 s
Time = 2049
smoothSolver: Solving for Ux, Initial residual = 0.000148676, Final residual = 9.56432e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00153242, Final residual = 0.000102988, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00517112, Final residual = 4.16717e-05, No Iterations 4
time step continuity errors : sum local = 6.05737e-05, global = 1.58044e-05, cumulative = -0.311941
smoothSolver: Solving for omega, Initial residual = 3.92332e-05, Final residual = 3.68648e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000490137, Final residual = 3.42343e-05, No Iterations 4
ExecutionTime = 300.34 s ClockTime = 305 s
Time = 2050
smoothSolver: Solving for Ux, Initial residual = 0.00014854, Final residual = 9.55735e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00152917, Final residual = 0.000102762, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00517551, Final residual = 4.74416e-05, No Iterations 4
time step continuity errors : sum local = 6.89724e-05, global = 1.87898e-05, cumulative = -0.311922
smoothSolver: Solving for omega, Initial residual = 3.91838e-05, Final residual = 3.6831e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000489805, Final residual = 3.42195e-05, No Iterations 4
ExecutionTime = 300.68 s ClockTime = 305 s
Time = 2051
smoothSolver: Solving for Ux, Initial residual = 0.000148397, Final residual = 9.54958e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00152587, Final residual = 0.000102539, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00518305, Final residual = 3.5439e-05, No Iterations 5
time step continuity errors : sum local = 5.15347e-05, global = -1.18168e-05, cumulative = -0.311934
smoothSolver: Solving for omega, Initial residual = 3.91278e-05, Final residual = 3.67964e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000489479, Final residual = 3.42055e-05, No Iterations 4
ExecutionTime = 300.83 s ClockTime = 305 s
Time = 2052
smoothSolver: Solving for Ux, Initial residual = 0.000148231, Final residual = 9.5395e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00152259, Final residual = 0.000102323, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00516357, Final residual = 4.95783e-05, No Iterations 4
time step continuity errors : sum local = 7.21382e-05, global = 8.64658e-06, cumulative = -0.311925
smoothSolver: Solving for omega, Initial residual = 3.90882e-05, Final residual = 3.67617e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000489157, Final residual = 3.41923e-05, No Iterations 4
ExecutionTime = 300.97 s ClockTime = 305 s
Time = 2053
smoothSolver: Solving for Ux, Initial residual = 0.000148069, Final residual = 9.53054e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00151941, Final residual = 0.000102111, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0051574, Final residual = 2.62667e-05, No Iterations 5
time step continuity errors : sum local = 3.82325e-05, global = 1.08604e-05, cumulative = -0.311914
smoothSolver: Solving for omega, Initial residual = 3.90385e-05, Final residual = 3.67255e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000488847, Final residual = 3.41787e-05, No Iterations 4
ExecutionTime = 301.12 s ClockTime = 305 s
Time = 2054
smoothSolver: Solving for Ux, Initial residual = 0.000147907, Final residual = 9.52138e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00151623, Final residual = 0.000101894, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00515059, Final residual = 5.00865e-05, No Iterations 4
time step continuity errors : sum local = 7.29324e-05, global = 9.12063e-06, cumulative = -0.311905
smoothSolver: Solving for omega, Initial residual = 3.89935e-05, Final residual = 3.66896e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000488541, Final residual = 3.41657e-05, No Iterations 4
ExecutionTime = 301.25 s ClockTime = 305 s
Time = 2055
smoothSolver: Solving for Ux, Initial residual = 0.000147756, Final residual = 9.51286e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00151309, Final residual = 0.000101677, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00514386, Final residual = 4.77089e-05, No Iterations 4
time step continuity errors : sum local = 6.94983e-05, global = 1.34167e-05, cumulative = -0.311892
smoothSolver: Solving for omega, Initial residual = 3.89466e-05, Final residual = 3.66539e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000488227, Final residual = 3.41527e-05, No Iterations 4
ExecutionTime = 301.4 s ClockTime = 306 s
Time = 2056
smoothSolver: Solving for Ux, Initial residual = 0.000147603, Final residual = 9.50429e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00150987, Final residual = 0.000101457, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00513923, Final residual = 4.74412e-05, No Iterations 4
time step continuity errors : sum local = 6.91398e-05, global = 1.59238e-05, cumulative = -0.311876
smoothSolver: Solving for omega, Initial residual = 3.88972e-05, Final residual = 3.66172e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000487917, Final residual = 3.41395e-05, No Iterations 4
ExecutionTime = 301.54 s ClockTime = 306 s
Time = 2057
smoothSolver: Solving for Ux, Initial residual = 0.000147441, Final residual = 9.49494e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0015066, Final residual = 0.000101237, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00513646, Final residual = 4.83723e-05, No Iterations 4
time step continuity errors : sum local = 7.053e-05, global = 1.6912e-05, cumulative = -0.311859
smoothSolver: Solving for omega, Initial residual = 3.88468e-05, Final residual = 3.65806e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000487615, Final residual = 3.41271e-05, No Iterations 4
ExecutionTime = 301.68 s ClockTime = 306 s
Time = 2058
smoothSolver: Solving for Ux, Initial residual = 0.000147273, Final residual = 9.48529e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00150334, Final residual = 0.000101023, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00513183, Final residual = 4.89279e-05, No Iterations 4
time step continuity errors : sum local = 7.13735e-05, global = 1.68564e-05, cumulative = -0.311842
smoothSolver: Solving for omega, Initial residual = 3.87997e-05, Final residual = 3.65443e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000487316, Final residual = 3.41162e-05, No Iterations 4
ExecutionTime = 301.82 s ClockTime = 306 s
Time = 2059
smoothSolver: Solving for Ux, Initial residual = 0.000147108, Final residual = 9.47591e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0015002, Final residual = 0.000100811, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00512732, Final residual = 4.87534e-05, No Iterations 4
time step continuity errors : sum local = 7.11528e-05, global = 1.63109e-05, cumulative = -0.311826
smoothSolver: Solving for omega, Initial residual = 3.87521e-05, Final residual = 3.65065e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000487026, Final residual = 3.41044e-05, No Iterations 4
ExecutionTime = 301.95 s ClockTime = 306 s
Time = 2060
smoothSolver: Solving for Ux, Initial residual = 0.000146944, Final residual = 9.46646e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00149711, Final residual = 0.0001006, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00511991, Final residual = 4.88272e-05, No Iterations 4
time step continuity errors : sum local = 7.12947e-05, global = 1.56619e-05, cumulative = -0.31181
smoothSolver: Solving for omega, Initial residual = 3.87031e-05, Final residual = 3.64697e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00048674, Final residual = 3.4093e-05, No Iterations 4
ExecutionTime = 302.09 s ClockTime = 306 s
Time = 2061
smoothSolver: Solving for Ux, Initial residual = 0.000146777, Final residual = 9.45701e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.001494, Final residual = 0.000100387, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00510982, Final residual = 4.96928e-05, No Iterations 4
time step continuity errors : sum local = 7.25907e-05, global = 1.49958e-05, cumulative = -0.311795
smoothSolver: Solving for omega, Initial residual = 3.86535e-05, Final residual = 3.64318e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00048645, Final residual = 3.40822e-05, No Iterations 4
ExecutionTime = 302.23 s ClockTime = 306 s
Time = 2062
smoothSolver: Solving for Ux, Initial residual = 0.000146612, Final residual = 9.44775e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00149078, Final residual = 0.000100169, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00510292, Final residual = 5.02622e-05, No Iterations 4
time step continuity errors : sum local = 7.34561e-05, global = 1.41406e-05, cumulative = -0.311781
smoothSolver: Solving for omega, Initial residual = 3.86022e-05, Final residual = 3.6394e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000486162, Final residual = 3.40712e-05, No Iterations 4
ExecutionTime = 302.36 s ClockTime = 307 s
Time = 2063
smoothSolver: Solving for Ux, Initial residual = 0.000146447, Final residual = 9.43812e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00148756, Final residual = 9.99531e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00509911, Final residual = 5.09371e-05, No Iterations 4
time step continuity errors : sum local = 7.44795e-05, global = 1.35558e-05, cumulative = -0.311768
smoothSolver: Solving for omega, Initial residual = 3.85508e-05, Final residual = 3.63553e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000485883, Final residual = 3.40603e-05, No Iterations 4
ExecutionTime = 302.52 s ClockTime = 307 s
Time = 2064
smoothSolver: Solving for Ux, Initial residual = 0.000146274, Final residual = 9.42813e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00148439, Final residual = 9.97442e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00509544, Final residual = 5.08203e-05, No Iterations 4
time step continuity errors : sum local = 7.4347e-05, global = 1.35041e-05, cumulative = -0.311754
smoothSolver: Solving for omega, Initial residual = 3.85012e-05, Final residual = 3.63152e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0004856, Final residual = 3.40509e-05, No Iterations 4
ExecutionTime = 302.65 s ClockTime = 307 s
Time = 2065
smoothSolver: Solving for Ux, Initial residual = 0.000146102, Final residual = 9.41815e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00148134, Final residual = 9.95387e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00509103, Final residual = 4.99902e-05, No Iterations 4
time step continuity errors : sum local = 7.31707e-05, global = 1.4284e-05, cumulative = -0.31174
smoothSolver: Solving for omega, Initial residual = 3.84504e-05, Final residual = 3.62765e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000485325, Final residual = 3.40409e-05, No Iterations 4
ExecutionTime = 302.79 s ClockTime = 307 s
Time = 2066
smoothSolver: Solving for Ux, Initial residual = 0.000145931, Final residual = 9.40846e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00147828, Final residual = 9.93301e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0050915, Final residual = 4.96698e-05, No Iterations 4
time step continuity errors : sum local = 7.27393e-05, global = 1.60249e-05, cumulative = -0.311724
smoothSolver: Solving for omega, Initial residual = 3.83997e-05, Final residual = 3.62377e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000485061, Final residual = 3.40311e-05, No Iterations 4
ExecutionTime = 302.93 s ClockTime = 307 s
Time = 2067
smoothSolver: Solving for Ux, Initial residual = 0.00014576, Final residual = 9.39856e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00147517, Final residual = 9.91172e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00508455, Final residual = 5.02183e-05, No Iterations 4
time step continuity errors : sum local = 7.35793e-05, global = 1.80412e-05, cumulative = -0.311706
smoothSolver: Solving for omega, Initial residual = 3.83473e-05, Final residual = 3.61974e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000484789, Final residual = 3.40215e-05, No Iterations 4
ExecutionTime = 303.07 s ClockTime = 307 s
Time = 2068
smoothSolver: Solving for Ux, Initial residual = 0.000145586, Final residual = 9.38837e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00147202, Final residual = 9.89054e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00507672, Final residual = 3.56415e-05, No Iterations 5
time step continuity errors : sum local = 5.2248e-05, global = -1.06514e-05, cumulative = -0.311716
smoothSolver: Solving for omega, Initial residual = 3.82893e-05, Final residual = 3.61562e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000484518, Final residual = 3.40119e-05, No Iterations 4
ExecutionTime = 303.22 s ClockTime = 307 s
Time = 2069
smoothSolver: Solving for Ux, Initial residual = 0.000145395, Final residual = 9.37693e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00146886, Final residual = 9.8698e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00506243, Final residual = 4.29592e-05, No Iterations 4
time step continuity errors : sum local = 6.30232e-05, global = 1.47588e-05, cumulative = -0.311702
smoothSolver: Solving for omega, Initial residual = 3.82492e-05, Final residual = 3.61155e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000484254, Final residual = 3.40021e-05, No Iterations 4
ExecutionTime = 303.36 s ClockTime = 308 s
Time = 2070
smoothSolver: Solving for Ux, Initial residual = 0.000145237, Final residual = 9.3684e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00146572, Final residual = 9.8488e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00506631, Final residual = 4.55221e-05, No Iterations 4
time step continuity errors : sum local = 6.68079e-05, global = 1.3834e-05, cumulative = -0.311688
smoothSolver: Solving for omega, Initial residual = 3.81929e-05, Final residual = 3.6075e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000483989, Final residual = 3.39931e-05, No Iterations 4
ExecutionTime = 303.5 s ClockTime = 308 s
Time = 2071
smoothSolver: Solving for Ux, Initial residual = 0.000145073, Final residual = 9.35905e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0014627, Final residual = 9.82821e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00506483, Final residual = 4.89038e-05, No Iterations 4
time step continuity errors : sum local = 7.18031e-05, global = 1.60942e-05, cumulative = -0.311672
smoothSolver: Solving for omega, Initial residual = 3.81372e-05, Final residual = 3.60348e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000483725, Final residual = 3.39846e-05, No Iterations 4
ExecutionTime = 303.63 s ClockTime = 308 s
Time = 2072
smoothSolver: Solving for Ux, Initial residual = 0.000144893, Final residual = 9.34836e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0014597, Final residual = 9.80805e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00504978, Final residual = 3.63799e-05, No Iterations 5
time step continuity errors : sum local = 5.34454e-05, global = -1.05836e-05, cumulative = -0.311682
smoothSolver: Solving for omega, Initial residual = 3.80764e-05, Final residual = 3.59924e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000483476, Final residual = 3.39761e-05, No Iterations 4
ExecutionTime = 303.78 s ClockTime = 308 s
Time = 2073
smoothSolver: Solving for Ux, Initial residual = 0.000144685, Final residual = 9.33567e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00145671, Final residual = 9.7879e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0050278, Final residual = 4.55659e-05, No Iterations 4
time step continuity errors : sum local = 6.69992e-05, global = 1.70044e-05, cumulative = -0.311665
smoothSolver: Solving for omega, Initial residual = 3.80349e-05, Final residual = 3.59494e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000483224, Final residual = 3.39672e-05, No Iterations 4
ExecutionTime = 303.91 s ClockTime = 308 s
Time = 2074
smoothSolver: Solving for Ux, Initial residual = 0.000144518, Final residual = 9.32626e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00145356, Final residual = 9.76655e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00502547, Final residual = 4.57588e-05, No Iterations 4
time step continuity errors : sum local = 6.73122e-05, global = 1.76626e-05, cumulative = -0.311648
smoothSolver: Solving for omega, Initial residual = 3.79769e-05, Final residual = 3.59071e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000482974, Final residual = 3.39588e-05, No Iterations 4
ExecutionTime = 304.06 s ClockTime = 308 s
Time = 2075
smoothSolver: Solving for Ux, Initial residual = 0.00014435, Final residual = 9.31683e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00145041, Final residual = 9.74551e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00503591, Final residual = 3.48526e-05, No Iterations 5
time step continuity errors : sum local = 5.1294e-05, global = -1.0999e-05, cumulative = -0.311659
smoothSolver: Solving for omega, Initial residual = 3.79165e-05, Final residual = 3.58647e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000482722, Final residual = 3.39502e-05, No Iterations 4
ExecutionTime = 304.21 s ClockTime = 308 s
Time = 2076
smoothSolver: Solving for Ux, Initial residual = 0.000144151, Final residual = 9.30472e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00144741, Final residual = 9.72588e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00502352, Final residual = 4.59159e-05, No Iterations 4
time step continuity errors : sum local = 6.76304e-05, global = 1.71778e-05, cumulative = -0.311641
smoothSolver: Solving for omega, Initial residual = 3.78678e-05, Final residual = 3.58216e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000482474, Final residual = 3.39417e-05, No Iterations 4
ExecutionTime = 304.35 s ClockTime = 309 s
Time = 2077
smoothSolver: Solving for Ux, Initial residual = 0.000143981, Final residual = 9.29521e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00144443, Final residual = 9.7057e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00502336, Final residual = 4.96623e-05, No Iterations 4
time step continuity errors : sum local = 7.31829e-05, global = 1.85109e-05, cumulative = -0.311623
smoothSolver: Solving for omega, Initial residual = 3.78074e-05, Final residual = 3.57788e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000482225, Final residual = 3.3934e-05, No Iterations 4
ExecutionTime = 304.49 s ClockTime = 309 s
Time = 2078
smoothSolver: Solving for Ux, Initial residual = 0.000143799, Final residual = 9.28467e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00144145, Final residual = 9.6854e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0050211, Final residual = 3.79955e-05, No Iterations 5
time step continuity errors : sum local = 5.6022e-05, global = -1.29021e-05, cumulative = -0.311636
smoothSolver: Solving for omega, Initial residual = 3.77449e-05, Final residual = 3.57351e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000481983, Final residual = 3.39264e-05, No Iterations 4
ExecutionTime = 304.64 s ClockTime = 309 s
Time = 2079
smoothSolver: Solving for Ux, Initial residual = 0.000143586, Final residual = 9.27165e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00143849, Final residual = 9.6656e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00500751, Final residual = 4.40944e-05, No Iterations 4
time step continuity errors : sum local = 6.5071e-05, global = 1.55168e-05, cumulative = -0.31162
smoothSolver: Solving for omega, Initial residual = 3.77003e-05, Final residual = 3.56904e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000481747, Final residual = 3.39184e-05, No Iterations 4
ExecutionTime = 304.78 s ClockTime = 309 s
Time = 2080
smoothSolver: Solving for Ux, Initial residual = 0.000143413, Final residual = 9.26156e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00143536, Final residual = 9.64443e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00499975, Final residual = 4.52341e-05, No Iterations 4
time step continuity errors : sum local = 6.67885e-05, global = 1.47778e-05, cumulative = -0.311606
smoothSolver: Solving for omega, Initial residual = 3.76428e-05, Final residual = 3.5646e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000481512, Final residual = 3.39108e-05, No Iterations 4
ExecutionTime = 304.93 s ClockTime = 309 s
Time = 2081
smoothSolver: Solving for Ux, Initial residual = 0.000143231, Final residual = 9.25113e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00143227, Final residual = 9.62388e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00499152, Final residual = 4.91317e-05, No Iterations 4
time step continuity errors : sum local = 7.25852e-05, global = 1.81738e-05, cumulative = -0.311587
smoothSolver: Solving for omega, Initial residual = 3.75863e-05, Final residual = 3.56025e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000481274, Final residual = 3.39028e-05, No Iterations 4
ExecutionTime = 305.07 s ClockTime = 309 s
Time = 2082
smoothSolver: Solving for Ux, Initial residual = 0.000143039, Final residual = 9.23973e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00142931, Final residual = 9.60436e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00497791, Final residual = 3.92459e-05, No Iterations 5
time step continuity errors : sum local = 5.80178e-05, global = -1.42988e-05, cumulative = -0.311602
smoothSolver: Solving for omega, Initial residual = 3.75215e-05, Final residual = 3.55561e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000481035, Final residual = 3.38947e-05, No Iterations 4
ExecutionTime = 305.23 s ClockTime = 310 s
Time = 2083
smoothSolver: Solving for Ux, Initial residual = 0.000142819, Final residual = 9.22629e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00142648, Final residual = 9.58575e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00495941, Final residual = 4.3865e-05, No Iterations 4
time step continuity errors : sum local = 6.49056e-05, global = 1.71421e-05, cumulative = -0.311585
smoothSolver: Solving for omega, Initial residual = 3.7475e-05, Final residual = 3.55108e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000480798, Final residual = 3.38871e-05, No Iterations 4
ExecutionTime = 305.37 s ClockTime = 310 s
Time = 2084
smoothSolver: Solving for Ux, Initial residual = 0.000142644, Final residual = 9.21623e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00142348, Final residual = 9.5652e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00496698, Final residual = 4.41984e-05, No Iterations 4
time step continuity errors : sum local = 6.54329e-05, global = 1.75525e-05, cumulative = -0.311567
smoothSolver: Solving for omega, Initial residual = 3.74158e-05, Final residual = 3.54651e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000480564, Final residual = 3.38799e-05, No Iterations 4
ExecutionTime = 305.51 s ClockTime = 310 s
Time = 2085
smoothSolver: Solving for Ux, Initial residual = 0.00014246, Final residual = 9.20558e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00142045, Final residual = 9.5443e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0049774, Final residual = 3.55741e-05, No Iterations 5
time step continuity errors : sum local = 5.26946e-05, global = -1.25808e-05, cumulative = -0.31158
smoothSolver: Solving for omega, Initial residual = 3.73528e-05, Final residual = 3.54172e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000480334, Final residual = 3.38729e-05, No Iterations 4
ExecutionTime = 305.66 s ClockTime = 310 s
Time = 2086
smoothSolver: Solving for Ux, Initial residual = 0.000142239, Final residual = 9.19212e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00141748, Final residual = 9.52465e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00496483, Final residual = 4.49203e-05, No Iterations 4
time step continuity errors : sum local = 6.6596e-05, global = 1.76698e-05, cumulative = -0.311562
smoothSolver: Solving for omega, Initial residual = 3.73027e-05, Final residual = 3.53715e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00048011, Final residual = 3.38657e-05, No Iterations 4
ExecutionTime = 305.81 s ClockTime = 310 s
Time = 2087
smoothSolver: Solving for Ux, Initial residual = 0.000142058, Final residual = 9.18149e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00141442, Final residual = 9.50434e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00496041, Final residual = 3.39743e-05, No Iterations 5
time step continuity errors : sum local = 5.03952e-05, global = -1.16482e-05, cumulative = -0.311574
smoothSolver: Solving for omega, Initial residual = 3.72356e-05, Final residual = 3.53253e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000479885, Final residual = 3.38583e-05, No Iterations 4
ExecutionTime = 305.96 s ClockTime = 310 s
Time = 2088
smoothSolver: Solving for Ux, Initial residual = 0.000141841, Final residual = 9.16824e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00141153, Final residual = 9.48557e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00494503, Final residual = 4.30642e-05, No Iterations 4
time step continuity errors : sum local = 6.39294e-05, global = 1.69957e-05, cumulative = -0.311557
smoothSolver: Solving for omega, Initial residual = 3.71849e-05, Final residual = 3.5279e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000479654, Final residual = 3.38507e-05, No Iterations 4
ExecutionTime = 306.11 s ClockTime = 311 s
Time = 2089
smoothSolver: Solving for Ux, Initial residual = 0.000141658, Final residual = 9.15758e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00140861, Final residual = 9.46571e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00494346, Final residual = 4.9319e-05, No Iterations 4
time step continuity errors : sum local = 7.32531e-05, global = 1.97996e-05, cumulative = -0.311537
smoothSolver: Solving for omega, Initial residual = 3.71227e-05, Final residual = 3.52311e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000479427, Final residual = 3.38433e-05, No Iterations 4
ExecutionTime = 306.25 s ClockTime = 311 s
Time = 2090
smoothSolver: Solving for Ux, Initial residual = 0.000141462, Final residual = 9.14601e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00140568, Final residual = 9.44582e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00493929, Final residual = 4.12772e-05, No Iterations 5
time step continuity errors : sum local = 6.13466e-05, global = -1.68975e-05, cumulative = -0.311554
smoothSolver: Solving for omega, Initial residual = 3.70575e-05, Final residual = 3.51814e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000479202, Final residual = 3.38357e-05, No Iterations 4
ExecutionTime = 306.41 s ClockTime = 311 s
Time = 2091
smoothSolver: Solving for Ux, Initial residual = 0.000141224, Final residual = 9.13127e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00140285, Final residual = 9.4269e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00492324, Final residual = 4.30831e-05, No Iterations 4
time step continuity errors : sum local = 6.40926e-05, global = 1.66334e-05, cumulative = -0.311537
smoothSolver: Solving for omega, Initial residual = 3.70086e-05, Final residual = 3.51338e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000478972, Final residual = 3.38289e-05, No Iterations 4
ExecutionTime = 306.55 s ClockTime = 311 s
Time = 2092
smoothSolver: Solving for Ux, Initial residual = 0.000141031, Final residual = 9.11978e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00139983, Final residual = 9.4062e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00492443, Final residual = 4.33416e-05, No Iterations 4
time step continuity errors : sum local = 6.45173e-05, global = 1.61923e-05, cumulative = -0.311521
smoothSolver: Solving for omega, Initial residual = 3.69473e-05, Final residual = 3.50861e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000478748, Final residual = 3.38219e-05, No Iterations 4
ExecutionTime = 306.69 s ClockTime = 311 s
Time = 2093
smoothSolver: Solving for Ux, Initial residual = 0.000140833, Final residual = 9.10789e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00139678, Final residual = 9.38608e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00492297, Final residual = 3.46705e-05, No Iterations 5
time step continuity errors : sum local = 5.16442e-05, global = -1.29622e-05, cumulative = -0.311534
smoothSolver: Solving for omega, Initial residual = 3.68829e-05, Final residual = 3.50369e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00047853, Final residual = 3.38143e-05, No Iterations 4
ExecutionTime = 306.84 s ClockTime = 311 s
Time = 2094
smoothSolver: Solving for Ux, Initial residual = 0.000140601, Final residual = 9.09372e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00139391, Final residual = 9.36753e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00489719, Final residual = 4.27041e-05, No Iterations 4
time step continuity errors : sum local = 6.36675e-05, global = 1.79399e-05, cumulative = -0.311516
smoothSolver: Solving for omega, Initial residual = 3.68302e-05, Final residual = 3.49873e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000478304, Final residual = 3.38067e-05, No Iterations 4
ExecutionTime = 306.98 s ClockTime = 311 s
Time = 2095
smoothSolver: Solving for Ux, Initial residual = 0.000140411, Final residual = 9.0822e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.001391, Final residual = 9.34785e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00489021, Final residual = 3.40624e-05, No Iterations 5
time step continuity errors : sum local = 5.08122e-05, global = -1.33854e-05, cumulative = -0.311529
smoothSolver: Solving for omega, Initial residual = 3.67625e-05, Final residual = 3.49363e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000478074, Final residual = 3.37987e-05, No Iterations 4
ExecutionTime = 307.13 s ClockTime = 312 s
Time = 2096
smoothSolver: Solving for Ux, Initial residual = 0.00014018, Final residual = 9.06789e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0013882, Final residual = 9.32895e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00488058, Final residual = 4.08785e-05, No Iterations 4
time step continuity errors : sum local = 6.10308e-05, global = 1.69459e-05, cumulative = -0.311512
smoothSolver: Solving for omega, Initial residual = 3.67101e-05, Final residual = 3.48872e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000477848, Final residual = 3.37903e-05, No Iterations 4
ExecutionTime = 307.28 s ClockTime = 312 s
Time = 2097
smoothSolver: Solving for Ux, Initial residual = 0.00013998, Final residual = 9.05585e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00138524, Final residual = 9.30869e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00488631, Final residual = 3.33723e-05, No Iterations 5
time step continuity errors : sum local = 4.98535e-05, global = -1.31294e-05, cumulative = -0.311525
smoothSolver: Solving for omega, Initial residual = 3.66415e-05, Final residual = 3.48361e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000477615, Final residual = 3.37824e-05, No Iterations 4
ExecutionTime = 307.43 s ClockTime = 312 s
Time = 2098
smoothSolver: Solving for Ux, Initial residual = 0.000139744, Final residual = 9.04134e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00138237, Final residual = 9.28921e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00487989, Final residual = 4.14503e-05, No Iterations 4
time step continuity errors : sum local = 6.19765e-05, global = 1.67039e-05, cumulative = -0.311509
smoothSolver: Solving for omega, Initial residual = 3.6588e-05, Final residual = 3.47857e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000477381, Final residual = 3.37745e-05, No Iterations 4
ExecutionTime = 307.57 s ClockTime = 312 s
Time = 2099
smoothSolver: Solving for Ux, Initial residual = 0.000139543, Final residual = 9.029e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00137933, Final residual = 9.269e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00488391, Final residual = 3.3597e-05, No Iterations 5
time step continuity errors : sum local = 5.02665e-05, global = -1.37037e-05, cumulative = -0.311522
smoothSolver: Solving for omega, Initial residual = 3.65191e-05, Final residual = 3.47337e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00047716, Final residual = 3.37665e-05, No Iterations 4
ExecutionTime = 307.72 s ClockTime = 312 s
Time = 2100
smoothSolver: Solving for Ux, Initial residual = 0.000139303, Final residual = 9.01407e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00137647, Final residual = 9.25049e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00487386, Final residual = 3.98218e-05, No Iterations 4
time step continuity errors : sum local = 5.96345e-05, global = 1.66164e-05, cumulative = -0.311506
smoothSolver: Solving for omega, Initial residual = 3.64646e-05, Final residual = 3.46825e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000476932, Final residual = 3.37582e-05, No Iterations 4
ExecutionTime = 308.06 s ClockTime = 313 s
Time = 2101
smoothSolver: Solving for Ux, Initial residual = 0.000139097, Final residual = 9.00138e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00137355, Final residual = 9.23089e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00486882, Final residual = 4.78529e-05, No Iterations 4
time step continuity errors : sum local = 7.17053e-05, global = 1.89821e-05, cumulative = -0.311487
smoothSolver: Solving for omega, Initial residual = 3.63991e-05, Final residual = 3.46295e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000476701, Final residual = 3.37493e-05, No Iterations 4
ExecutionTime = 308.22 s ClockTime = 313 s
Time = 2102
smoothSolver: Solving for Ux, Initial residual = 0.000138881, Final residual = 8.98796e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00137069, Final residual = 9.21143e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00486248, Final residual = 4.22172e-05, No Iterations 5
time step continuity errors : sum local = 6.33037e-05, global = -1.86417e-05, cumulative = -0.311505
smoothSolver: Solving for omega, Initial residual = 3.63308e-05, Final residual = 3.45748e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000476472, Final residual = 3.37399e-05, No Iterations 4
ExecutionTime = 308.36 s ClockTime = 313 s
Time = 2103
smoothSolver: Solving for Ux, Initial residual = 0.00013862, Final residual = 8.97163e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00136798, Final residual = 9.19318e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00485141, Final residual = 3.93075e-05, No Iterations 4
time step continuity errors : sum local = 5.90013e-05, global = 1.54679e-05, cumulative = -0.31149
smoothSolver: Solving for omega, Initial residual = 3.6278e-05, Final residual = 3.45223e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000476232, Final residual = 3.37305e-05, No Iterations 4
ExecutionTime = 308.51 s ClockTime = 313 s
Time = 2104
smoothSolver: Solving for Ux, Initial residual = 0.000138405, Final residual = 8.95822e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00136502, Final residual = 9.17277e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00485359, Final residual = 4.03961e-05, No Iterations 4
time step continuity errors : sum local = 6.06769e-05, global = 1.50449e-05, cumulative = -0.311475
smoothSolver: Solving for omega, Initial residual = 3.62102e-05, Final residual = 3.44683e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000475986, Final residual = 3.37206e-05, No Iterations 4
ExecutionTime = 308.65 s ClockTime = 313 s
Time = 2105
smoothSolver: Solving for Ux, Initial residual = 0.000138187, Final residual = 8.94446e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00136198, Final residual = 9.15236e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0048507, Final residual = 3.35585e-05, No Iterations 5
time step continuity errors : sum local = 5.04426e-05, global = -1.45161e-05, cumulative = -0.311489
smoothSolver: Solving for omega, Initial residual = 3.61422e-05, Final residual = 3.44133e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000475749, Final residual = 3.37109e-05, No Iterations 4
ExecutionTime = 308.8 s ClockTime = 313 s
Time = 2106
smoothSolver: Solving for Ux, Initial residual = 0.000137936, Final residual = 8.92884e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00135911, Final residual = 9.1338e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00483346, Final residual = 3.68361e-05, No Iterations 4
time step continuity errors : sum local = 5.54226e-05, global = 1.52429e-05, cumulative = -0.311474
smoothSolver: Solving for omega, Initial residual = 3.6085e-05, Final residual = 3.4359e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000475506, Final residual = 3.37014e-05, No Iterations 4
ExecutionTime = 308.94 s ClockTime = 314 s
Time = 2107
smoothSolver: Solving for Ux, Initial residual = 0.000137718, Final residual = 8.91497e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00135618, Final residual = 9.11416e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00483161, Final residual = 4.40253e-05, No Iterations 4
time step continuity errors : sum local = 6.6283e-05, global = 1.73538e-05, cumulative = -0.311457
smoothSolver: Solving for omega, Initial residual = 3.60181e-05, Final residual = 3.43034e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000475267, Final residual = 3.36911e-05, No Iterations 4
ExecutionTime = 309.09 s ClockTime = 314 s
Time = 2108
smoothSolver: Solving for Ux, Initial residual = 0.000137486, Final residual = 8.90009e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00135329, Final residual = 9.09468e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00482418, Final residual = 4.02683e-05, No Iterations 5
time step continuity errors : sum local = 6.06691e-05, global = -1.7955e-05, cumulative = -0.311475
smoothSolver: Solving for omega, Initial residual = 3.59492e-05, Final residual = 3.42456e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000475026, Final residual = 3.36801e-05, No Iterations 4
ExecutionTime = 309.22 s ClockTime = 314 s
Time = 2109
smoothSolver: Solving for Ux, Initial residual = 0.000137216, Final residual = 8.88311e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00135059, Final residual = 9.07649e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00481919, Final residual = 3.70938e-05, No Iterations 4
time step continuity errors : sum local = 5.59429e-05, global = 1.4187e-05, cumulative = -0.311461
smoothSolver: Solving for omega, Initial residual = 3.58937e-05, Final residual = 3.41893e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000474774, Final residual = 3.36688e-05, No Iterations 4
ExecutionTime = 309.36 s ClockTime = 314 s
Time = 2110
smoothSolver: Solving for Ux, Initial residual = 0.00013699, Final residual = 8.86905e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00134767, Final residual = 9.05619e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00482298, Final residual = 4.01663e-05, No Iterations 4
time step continuity errors : sum local = 6.06202e-05, global = 1.39687e-05, cumulative = -0.311447
smoothSolver: Solving for omega, Initial residual = 3.58267e-05, Final residual = 3.41333e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000474515, Final residual = 3.36567e-05, No Iterations 4
ExecutionTime = 309.5 s ClockTime = 314 s
Time = 2111
smoothSolver: Solving for Ux, Initial residual = 0.000136759, Final residual = 8.85418e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00134467, Final residual = 9.03566e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00481934, Final residual = 3.49054e-05, No Iterations 5
time step continuity errors : sum local = 5.27196e-05, global = -1.5357e-05, cumulative = -0.311462
smoothSolver: Solving for omega, Initial residual = 3.57583e-05, Final residual = 3.40745e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000474253, Final residual = 3.3644e-05, No Iterations 4
ExecutionTime = 309.65 s ClockTime = 314 s
Time = 2112
smoothSolver: Solving for Ux, Initial residual = 0.000136493, Final residual = 8.83737e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00134177, Final residual = 9.01682e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0048089, Final residual = 3.24154e-05, No Iterations 4
time step continuity errors : sum local = 4.90076e-05, global = 1.23912e-05, cumulative = -0.31145
smoothSolver: Solving for omega, Initial residual = 3.56994e-05, Final residual = 3.40161e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000473981, Final residual = 3.36312e-05, No Iterations 4
ExecutionTime = 309.79 s ClockTime = 314 s
Time = 2113
smoothSolver: Solving for Ux, Initial residual = 0.000136257, Final residual = 8.82207e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00133875, Final residual = 8.99698e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00480828, Final residual = 3.63046e-05, No Iterations 4
time step continuity errors : sum local = 5.49279e-05, global = 1.39579e-05, cumulative = -0.311436
smoothSolver: Solving for omega, Initial residual = 3.56315e-05, Final residual = 3.39573e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000473707, Final residual = 3.36183e-05, No Iterations 4
ExecutionTime = 309.93 s ClockTime = 315 s
Time = 2114
smoothSolver: Solving for Ux, Initial residual = 0.000136015, Final residual = 8.80651e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00133586, Final residual = 8.97735e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00480092, Final residual = 3.45133e-05, No Iterations 5
time step continuity errors : sum local = 5.2256e-05, global = -1.53865e-05, cumulative = -0.311451
smoothSolver: Solving for omega, Initial residual = 3.55619e-05, Final residual = 3.38971e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000473437, Final residual = 3.36047e-05, No Iterations 4
ExecutionTime = 310.07 s ClockTime = 315 s
Time = 2115
smoothSolver: Solving for Ux, Initial residual = 0.000135743, Final residual = 8.7891e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00133317, Final residual = 8.95907e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00479164, Final residual = 3.31778e-05, No Iterations 4
time step continuity errors : sum local = 5.02816e-05, global = 1.21626e-05, cumulative = -0.311439
smoothSolver: Solving for omega, Initial residual = 3.55039e-05, Final residual = 3.38374e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000473156, Final residual = 3.35902e-05, No Iterations 4
ExecutionTime = 310.21 s ClockTime = 315 s
Time = 2116
smoothSolver: Solving for Ux, Initial residual = 0.000135498, Final residual = 8.77346e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00133024, Final residual = 8.93867e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00479082, Final residual = 3.90291e-05, No Iterations 4
time step continuity errors : sum local = 5.91932e-05, global = 1.25436e-05, cumulative = -0.311426
smoothSolver: Solving for omega, Initial residual = 3.54357e-05, Final residual = 3.37768e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000472866, Final residual = 3.35748e-05, No Iterations 4
ExecutionTime = 310.35 s ClockTime = 315 s
Time = 2117
smoothSolver: Solving for Ux, Initial residual = 0.000135249, Final residual = 8.7572e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00132723, Final residual = 8.91784e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00479146, Final residual = 4.77682e-05, No Iterations 4
time step continuity errors : sum local = 7.25037e-05, global = 1.41584e-05, cumulative = -0.311412
smoothSolver: Solving for omega, Initial residual = 3.53685e-05, Final residual = 3.37157e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00047257, Final residual = 3.35587e-05, No Iterations 4
ExecutionTime = 310.49 s ClockTime = 315 s
Time = 2118
smoothSolver: Solving for Ux, Initial residual = 0.000134995, Final residual = 8.74058e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00132418, Final residual = 8.89741e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00479116, Final residual = 4.13878e-05, No Iterations 5
time step continuity errors : sum local = 6.28684e-05, global = -1.72556e-05, cumulative = -0.311429
smoothSolver: Solving for omega, Initial residual = 3.52985e-05, Final residual = 3.36532e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000472261, Final residual = 3.35418e-05, No Iterations 4
ExecutionTime = 310.64 s ClockTime = 315 s
Time = 2119
smoothSolver: Solving for Ux, Initial residual = 0.000134705, Final residual = 8.7225e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00132139, Final residual = 8.87973e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00479028, Final residual = 3.22054e-05, No Iterations 4
time step continuity errors : sum local = 4.89765e-05, global = 4.35652e-06, cumulative = -0.311425
smoothSolver: Solving for omega, Initial residual = 3.52389e-05, Final residual = 3.35918e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000471941, Final residual = 3.35242e-05, No Iterations 4
ExecutionTime = 310.78 s ClockTime = 315 s
Time = 2120
smoothSolver: Solving for Ux, Initial residual = 0.000134453, Final residual = 8.70647e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0013185, Final residual = 8.86052e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00479584, Final residual = 3.97498e-05, No Iterations 4
time step continuity errors : sum local = 6.04975e-05, global = -6.99668e-06, cumulative = -0.311432
smoothSolver: Solving for omega, Initial residual = 3.51686e-05, Final residual = 3.35299e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000471616, Final residual = 3.35058e-05, No Iterations 4
ExecutionTime = 310.92 s ClockTime = 316 s
Time = 2121
smoothSolver: Solving for Ux, Initial residual = 0.000134202, Final residual = 8.68976e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00131555, Final residual = 8.83995e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00478584, Final residual = 2.6319e-05, No Iterations 5
time step continuity errors : sum local = 4.00839e-05, global = 7.22181e-06, cumulative = -0.311425
smoothSolver: Solving for omega, Initial residual = 3.51021e-05, Final residual = 3.34669e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000471283, Final residual = 3.34874e-05, No Iterations 4
ExecutionTime = 311.07 s ClockTime = 316 s
Time = 2122
smoothSolver: Solving for Ux, Initial residual = 0.000133939, Final residual = 8.67207e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00131252, Final residual = 8.8188e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0047765, Final residual = 3.94497e-05, No Iterations 4
time step continuity errors : sum local = 6.01293e-05, global = 9.45e-06, cumulative = -0.311415
smoothSolver: Solving for omega, Initial residual = 3.50308e-05, Final residual = 3.34023e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000470946, Final residual = 3.3468e-05, No Iterations 4
ExecutionTime = 311.2 s ClockTime = 316 s
Time = 2123
smoothSolver: Solving for Ux, Initial residual = 0.000133671, Final residual = 8.65461e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00130951, Final residual = 8.79788e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0047803, Final residual = 4.31521e-05, No Iterations 5
time step continuity errors : sum local = 6.58263e-05, global = -1.69875e-05, cumulative = -0.311432
smoothSolver: Solving for omega, Initial residual = 3.49603e-05, Final residual = 3.33374e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000470601, Final residual = 3.34474e-05, No Iterations 4
ExecutionTime = 311.35 s ClockTime = 316 s
Time = 2124
smoothSolver: Solving for Ux, Initial residual = 0.000133373, Final residual = 8.63564e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00130676, Final residual = 8.77929e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00478889, Final residual = 3.45985e-05, No Iterations 4
time step continuity errors : sum local = 5.28341e-05, global = 1.07725e-05, cumulative = -0.311422
smoothSolver: Solving for omega, Initial residual = 3.49001e-05, Final residual = 3.32735e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000470246, Final residual = 3.34258e-05, No Iterations 4
ExecutionTime = 311.49 s ClockTime = 316 s
Time = 2125
smoothSolver: Solving for Ux, Initial residual = 0.000133109, Final residual = 8.61869e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00130372, Final residual = 8.75926e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0047966, Final residual = 2.8959e-05, No Iterations 4
time step continuity errors : sum local = 4.42578e-05, global = 8.62955e-06, cumulative = -0.311413
smoothSolver: Solving for omega, Initial residual = 3.48282e-05, Final residual = 3.32085e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00046987, Final residual = 3.34032e-05, No Iterations 4
ExecutionTime = 311.63 s ClockTime = 316 s
Time = 2126
smoothSolver: Solving for Ux, Initial residual = 0.000132846, Final residual = 8.60165e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00130066, Final residual = 8.73946e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00479242, Final residual = 3.92706e-05, No Iterations 4
time step continuity errors : sum local = 6.00652e-05, global = 2.35703e-06, cumulative = -0.311411
smoothSolver: Solving for omega, Initial residual = 3.47561e-05, Final residual = 3.3142e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000469485, Final residual = 3.33794e-05, No Iterations 4
ExecutionTime = 311.77 s ClockTime = 316 s
Time = 2127
smoothSolver: Solving for Ux, Initial residual = 0.000132561, Final residual = 8.58219e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00129773, Final residual = 8.71908e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00477425, Final residual = 3.68172e-05, No Iterations 4
time step continuity errors : sum local = 5.63659e-05, global = 8.84335e-06, cumulative = -0.311402
smoothSolver: Solving for omega, Initial residual = 3.4688e-05, Final residual = 3.30749e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000469091, Final residual = 3.33547e-05, No Iterations 4
ExecutionTime = 311.91 s ClockTime = 317 s
Time = 2128
smoothSolver: Solving for Ux, Initial residual = 0.000132292, Final residual = 8.56437e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0012947, Final residual = 8.698e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00477122, Final residual = 4.02958e-05, No Iterations 4
time step continuity errors : sum local = 6.17392e-05, global = 8.18482e-06, cumulative = -0.311394
smoothSolver: Solving for omega, Initial residual = 3.46166e-05, Final residual = 3.30078e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000468678, Final residual = 3.33299e-05, No Iterations 4
ExecutionTime = 312.05 s ClockTime = 317 s
Time = 2129
smoothSolver: Solving for Ux, Initial residual = 0.000132006, Final residual = 8.54575e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00129177, Final residual = 8.67766e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0047787, Final residual = 3.90819e-05, No Iterations 4
time step continuity errors : sum local = 5.99284e-05, global = 9.88401e-06, cumulative = -0.311384
smoothSolver: Solving for omega, Initial residual = 3.45467e-05, Final residual = 3.29401e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000468264, Final residual = 3.3304e-05, No Iterations 4
ExecutionTime = 312.19 s ClockTime = 317 s
Time = 2130
smoothSolver: Solving for Ux, Initial residual = 0.000131716, Final residual = 8.52694e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00128888, Final residual = 8.6577e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00478824, Final residual = 2.19877e-05, No Iterations 5
time step continuity errors : sum local = 3.37459e-05, global = -2.43528e-06, cumulative = -0.311386
smoothSolver: Solving for omega, Initial residual = 3.44756e-05, Final residual = 3.2872e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000467848, Final residual = 3.32764e-05, No Iterations 4
ExecutionTime = 312.34 s ClockTime = 317 s
Time = 2131
smoothSolver: Solving for Ux, Initial residual = 0.000131405, Final residual = 8.50681e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00128611, Final residual = 8.63892e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00478457, Final residual = 4.04023e-05, No Iterations 4
time step continuity errors : sum local = 6.20756e-05, global = -9.52138e-06, cumulative = -0.311396
smoothSolver: Solving for omega, Initial residual = 3.44048e-05, Final residual = 3.28035e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000467404, Final residual = 3.32478e-05, No Iterations 4
ExecutionTime = 312.48 s ClockTime = 317 s
Time = 2132
smoothSolver: Solving for Ux, Initial residual = 0.000131117, Final residual = 8.48711e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00128278, Final residual = 8.61725e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00476596, Final residual = 4.21006e-05, No Iterations 4
time step continuity errors : sum local = 6.4745e-05, global = -1.16308e-05, cumulative = -0.311407
smoothSolver: Solving for omega, Initial residual = 3.43335e-05, Final residual = 3.27335e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000466951, Final residual = 3.32174e-05, No Iterations 4
ExecutionTime = 312.62 s ClockTime = 317 s
Time = 2133
smoothSolver: Solving for Ux, Initial residual = 0.000130846, Final residual = 8.46895e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00127958, Final residual = 8.59569e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00475978, Final residual = 4.46343e-05, No Iterations 4
time step continuity errors : sum local = 6.86952e-05, global = -1.32289e-05, cumulative = -0.311421
smoothSolver: Solving for omega, Initial residual = 3.42612e-05, Final residual = 3.26633e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000466483, Final residual = 3.31856e-05, No Iterations 4
ExecutionTime = 312.76 s ClockTime = 317 s
Time = 2134
smoothSolver: Solving for Ux, Initial residual = 0.000130565, Final residual = 8.45047e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0012766, Final residual = 8.57489e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0047586, Final residual = 4.64411e-05, No Iterations 4
time step continuity errors : sum local = 7.15299e-05, global = -1.33658e-05, cumulative = -0.311434
smoothSolver: Solving for omega, Initial residual = 3.41873e-05, Final residual = 3.25944e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000465989, Final residual = 3.31529e-05, No Iterations 4
ExecutionTime = 312.9 s ClockTime = 318 s
Time = 2135
smoothSolver: Solving for Ux, Initial residual = 0.000130262, Final residual = 8.43096e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00127376, Final residual = 8.55518e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0047598, Final residual = 2.55217e-05, No Iterations 5
time step continuity errors : sum local = 3.93422e-05, global = 5.6727e-06, cumulative = -0.311428
smoothSolver: Solving for omega, Initial residual = 3.41168e-05, Final residual = 3.25241e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000465487, Final residual = 3.31182e-05, No Iterations 4
ExecutionTime = 313.05 s ClockTime = 318 s
Time = 2136
smoothSolver: Solving for Ux, Initial residual = 0.000129957, Final residual = 8.41113e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00127093, Final residual = 8.53576e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00476256, Final residual = 4.26824e-05, No Iterations 4
time step continuity errors : sum local = 6.58549e-05, global = 2.17071e-06, cumulative = -0.311426
smoothSolver: Solving for omega, Initial residual = 3.40411e-05, Final residual = 3.24519e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000464967, Final residual = 3.30822e-05, No Iterations 4
ExecutionTime = 313.19 s ClockTime = 318 s
Time = 2137
smoothSolver: Solving for Ux, Initial residual = 0.000129646, Final residual = 8.39001e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00126784, Final residual = 8.51446e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00474828, Final residual = 3.91304e-05, No Iterations 4
time step continuity errors : sum local = 6.04336e-05, global = 7.15404e-06, cumulative = -0.311419
smoothSolver: Solving for omega, Initial residual = 3.39684e-05, Final residual = 3.23797e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000464421, Final residual = 3.3045e-05, No Iterations 4
ExecutionTime = 313.33 s ClockTime = 318 s
Time = 2138
smoothSolver: Solving for Ux, Initial residual = 0.000129362, Final residual = 8.37052e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00126445, Final residual = 8.49115e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00473505, Final residual = 3.56373e-05, No Iterations 4
time step continuity errors : sum local = 5.50826e-05, global = 1.33037e-05, cumulative = -0.311406
smoothSolver: Solving for omega, Initial residual = 3.38941e-05, Final residual = 3.23068e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000463867, Final residual = 3.30059e-05, No Iterations 4
ExecutionTime = 313.46 s ClockTime = 318 s
Time = 2139
smoothSolver: Solving for Ux, Initial residual = 0.000129071, Final residual = 8.35123e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00126121, Final residual = 8.46994e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00473419, Final residual = 4.07389e-05, No Iterations 4
time step continuity errors : sum local = 6.30189e-05, global = -7.23871e-06, cumulative = -0.311413
smoothSolver: Solving for omega, Initial residual = 3.38156e-05, Final residual = 3.22336e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000463294, Final residual = 3.29657e-05, No Iterations 4
ExecutionTime = 313.6 s ClockTime = 318 s
Time = 2140
smoothSolver: Solving for Ux, Initial residual = 0.000128734, Final residual = 8.32887e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00125846, Final residual = 8.45121e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00472559, Final residual = 4.45944e-05, No Iterations 4
time step continuity errors : sum local = 6.90576e-05, global = -1.34536e-05, cumulative = -0.311426
smoothSolver: Solving for omega, Initial residual = 3.37441e-05, Final residual = 3.216e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.0004627, Final residual = 3.29243e-05, No Iterations 4
ExecutionTime = 313.74 s ClockTime = 318 s
Time = 2141
smoothSolver: Solving for Ux, Initial residual = 0.000128415, Final residual = 8.30766e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00125565, Final residual = 8.43179e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00471827, Final residual = 2.64723e-05, No Iterations 5
time step continuity errors : sum local = 4.10318e-05, global = 6.72424e-06, cumulative = -0.31142
smoothSolver: Solving for omega, Initial residual = 3.36745e-05, Final residual = 3.20867e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000462092, Final residual = 3.28808e-05, No Iterations 4
ExecutionTime = 313.89 s ClockTime = 319 s
Time = 2142
smoothSolver: Solving for Ux, Initial residual = 0.000128118, Final residual = 8.28811e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0012526, Final residual = 8.41087e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00471771, Final residual = 4.07342e-05, No Iterations 4
time step continuity errors : sum local = 6.31873e-05, global = -1.06379e-05, cumulative = -0.31143
smoothSolver: Solving for omega, Initial residual = 3.35916e-05, Final residual = 3.20119e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000461465, Final residual = 3.28363e-05, No Iterations 4
ExecutionTime = 314.03 s ClockTime = 319 s
Time = 2143
smoothSolver: Solving for Ux, Initial residual = 0.00012781, Final residual = 8.2673e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00124936, Final residual = 8.38839e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00470516, Final residual = 3.93801e-05, No Iterations 4
time step continuity errors : sum local = 6.11385e-05, global = -8.22233e-06, cumulative = -0.311438
smoothSolver: Solving for omega, Initial residual = 3.35157e-05, Final residual = 3.19359e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00046082, Final residual = 3.27905e-05, No Iterations 4
ExecutionTime = 314.17 s ClockTime = 319 s
Time = 2144
smoothSolver: Solving for Ux, Initial residual = 0.000127494, Final residual = 8.24609e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0012461, Final residual = 8.36561e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00469801, Final residual = 4.22761e-05, No Iterations 4
time step continuity errors : sum local = 6.56919e-05, global = -9.3254e-06, cumulative = -0.311448
smoothSolver: Solving for omega, Initial residual = 3.34372e-05, Final residual = 3.18598e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00046016, Final residual = 3.27428e-05, No Iterations 4
ExecutionTime = 314.32 s ClockTime = 319 s
Time = 2145
smoothSolver: Solving for Ux, Initial residual = 0.000127175, Final residual = 8.22487e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00124292, Final residual = 8.34352e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00469392, Final residual = 2.49479e-05, No Iterations 5
time step continuity errors : sum local = 3.88011e-05, global = 5.92973e-06, cumulative = -0.311442
smoothSolver: Solving for omega, Initial residual = 3.33623e-05, Final residual = 3.17846e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000459481, Final residual = 3.2694e-05, No Iterations 4
ExecutionTime = 314.47 s ClockTime = 319 s
Time = 2146
smoothSolver: Solving for Ux, Initial residual = 0.000126856, Final residual = 8.20352e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00123981, Final residual = 8.32342e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00468849, Final residual = 4.07574e-05, No Iterations 4
time step continuity errors : sum local = 6.34464e-05, global = -1.08438e-05, cumulative = -0.311453
smoothSolver: Solving for omega, Initial residual = 3.32821e-05, Final residual = 3.17075e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000458785, Final residual = 3.26438e-05, No Iterations 4
ExecutionTime = 314.62 s ClockTime = 319 s
Time = 2147
smoothSolver: Solving for Ux, Initial residual = 0.000126526, Final residual = 8.18103e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0012368, Final residual = 8.30306e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00466809, Final residual = 4.11217e-05, No Iterations 4
time step continuity errors : sum local = 6.40749e-05, global = -1.19165e-05, cumulative = -0.311465
smoothSolver: Solving for omega, Initial residual = 3.32063e-05, Final residual = 3.16302e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000458071, Final residual = 3.25919e-05, No Iterations 4
ExecutionTime = 314.75 s ClockTime = 319 s
Time = 2148
smoothSolver: Solving for Ux, Initial residual = 0.000126201, Final residual = 8.15908e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00123377, Final residual = 8.28228e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0046527, Final residual = 4.4592e-05, No Iterations 4
time step continuity errors : sum local = 6.95458e-05, global = -1.38993e-05, cumulative = -0.311478
smoothSolver: Solving for omega, Initial residual = 3.31291e-05, Final residual = 3.15522e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000457339, Final residual = 3.25388e-05, No Iterations 4
ExecutionTime = 314.9 s ClockTime = 320 s
Time = 2149
smoothSolver: Solving for Ux, Initial residual = 0.000125879, Final residual = 8.13792e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00123068, Final residual = 8.26084e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00464557, Final residual = 2.64987e-05, No Iterations 5
time step continuity errors : sum local = 4.13628e-05, global = 7.34446e-06, cumulative = -0.311471
smoothSolver: Solving for omega, Initial residual = 3.30523e-05, Final residual = 3.14742e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000456592, Final residual = 3.24845e-05, No Iterations 4
ExecutionTime = 315.05 s ClockTime = 320 s
Time = 2150
smoothSolver: Solving for Ux, Initial residual = 0.000125558, Final residual = 8.1167e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00122752, Final residual = 8.23883e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00464447, Final residual = 4.26377e-05, No Iterations 4
time step continuity errors : sum local = 6.66111e-05, global = -1.21003e-05, cumulative = -0.311483
smoothSolver: Solving for omega, Initial residual = 3.29682e-05, Final residual = 3.13966e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000455825, Final residual = 3.24283e-05, No Iterations 4
ExecutionTime = 315.39 s ClockTime = 320 s
Time = 2151
smoothSolver: Solving for Ux, Initial residual = 0.00012522, Final residual = 8.09366e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00122429, Final residual = 8.21622e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00463028, Final residual = 4.3584e-05, No Iterations 4
time step continuity errors : sum local = 6.81532e-05, global = -1.18518e-05, cumulative = -0.311495
smoothSolver: Solving for omega, Initial residual = 3.28905e-05, Final residual = 3.13176e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000455043, Final residual = 3.23708e-05, No Iterations 4
ExecutionTime = 315.52 s ClockTime = 320 s
Time = 2152
smoothSolver: Solving for Ux, Initial residual = 0.00012488, Final residual = 8.07051e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00122107, Final residual = 8.19379e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0046148, Final residual = 2.50693e-05, No Iterations 5
time step continuity errors : sum local = 3.92372e-05, global = 6.79484e-06, cumulative = -0.311488
smoothSolver: Solving for omega, Initial residual = 3.28144e-05, Final residual = 3.12377e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000454243, Final residual = 3.23122e-05, No Iterations 4
ExecutionTime = 315.67 s ClockTime = 320 s
Time = 2153
smoothSolver: Solving for Ux, Initial residual = 0.000124549, Final residual = 8.04822e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00121783, Final residual = 8.1731e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00460775, Final residual = 4.10234e-05, No Iterations 4
time step continuity errors : sum local = 6.42643e-05, global = -1.21043e-05, cumulative = -0.3115
smoothSolver: Solving for omega, Initial residual = 3.27303e-05, Final residual = 3.11576e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000453423, Final residual = 3.22519e-05, No Iterations 4
ExecutionTime = 315.81 s ClockTime = 321 s
Time = 2154
smoothSolver: Solving for Ux, Initial residual = 0.000124212, Final residual = 8.02561e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00121476, Final residual = 8.15226e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00460033, Final residual = 4.30434e-05, No Iterations 4
time step continuity errors : sum local = 6.74921e-05, global = -1.32418e-05, cumulative = -0.311514
smoothSolver: Solving for omega, Initial residual = 3.26507e-05, Final residual = 3.10767e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000452587, Final residual = 3.219e-05, No Iterations 4
ExecutionTime = 315.94 s ClockTime = 321 s
Time = 2155
smoothSolver: Solving for Ux, Initial residual = 0.000123877, Final residual = 8.00304e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00121169, Final residual = 8.13115e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00459173, Final residual = 2.59239e-05, No Iterations 5
time step continuity errors : sum local = 4.06858e-05, global = 7.28876e-06, cumulative = -0.311506
smoothSolver: Solving for omega, Initial residual = 3.25714e-05, Final residual = 3.09963e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000451734, Final residual = 3.21269e-05, No Iterations 4
ExecutionTime = 316.08 s ClockTime = 321 s
Time = 2156
smoothSolver: Solving for Ux, Initial residual = 0.000123543, Final residual = 7.98056e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00120862, Final residual = 8.10993e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00458387, Final residual = 4.26928e-05, No Iterations 4
time step continuity errors : sum local = 6.70627e-05, global = -1.29963e-05, cumulative = -0.311519
smoothSolver: Solving for omega, Initial residual = 3.24848e-05, Final residual = 3.09147e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000450859, Final residual = 3.20624e-05, No Iterations 4
ExecutionTime = 316.22 s ClockTime = 321 s
Time = 2157
smoothSolver: Solving for Ux, Initial residual = 0.000123194, Final residual = 7.9567e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00120545, Final residual = 8.08785e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00456633, Final residual = 4.52542e-05, No Iterations 4
time step continuity errors : sum local = 7.1151e-05, global = -1.34503e-05, cumulative = -0.311533
smoothSolver: Solving for omega, Initial residual = 3.24048e-05, Final residual = 3.08335e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000449968, Final residual = 3.19963e-05, No Iterations 4
ExecutionTime = 316.36 s ClockTime = 321 s
Time = 2158
smoothSolver: Solving for Ux, Initial residual = 0.000122846, Final residual = 7.93302e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00120225, Final residual = 8.06533e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00455326, Final residual = 2.59586e-05, No Iterations 5
time step continuity errors : sum local = 4.08501e-05, global = 7.42199e-06, cumulative = -0.311525
smoothSolver: Solving for omega, Initial residual = 3.23258e-05, Final residual = 3.07509e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000449064, Final residual = 3.19289e-05, No Iterations 4
ExecutionTime = 316.51 s ClockTime = 321 s
Time = 2159
smoothSolver: Solving for Ux, Initial residual = 0.000122503, Final residual = 7.91031e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00119904, Final residual = 8.04266e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00455235, Final residual = 4.28681e-05, No Iterations 4
time step continuity errors : sum local = 6.75197e-05, global = -1.28289e-05, cumulative = -0.311538
smoothSolver: Solving for omega, Initial residual = 3.22395e-05, Final residual = 3.06674e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000448134, Final residual = 3.18601e-05, No Iterations 4
ExecutionTime = 316.65 s ClockTime = 321 s
Time = 2160
smoothSolver: Solving for Ux, Initial residual = 0.000122156, Final residual = 7.88656e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00119573, Final residual = 8.02045e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00454637, Final residual = 4.41118e-05, No Iterations 4
time step continuity errors : sum local = 6.95439e-05, global = -1.31694e-05, cumulative = -0.311551
smoothSolver: Solving for omega, Initial residual = 3.21579e-05, Final residual = 3.05841e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00044719, Final residual = 3.17897e-05, No Iterations 4
ExecutionTime = 316.79 s ClockTime = 322 s
Time = 2161
smoothSolver: Solving for Ux, Initial residual = 0.000121809, Final residual = 7.8628e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00119244, Final residual = 7.99979e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00453894, Final residual = 2.5463e-05, No Iterations 5
time step continuity errors : sum local = 4.01804e-05, global = 7.24822e-06, cumulative = -0.311544
smoothSolver: Solving for omega, Initial residual = 3.20767e-05, Final residual = 3.05016e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000446232, Final residual = 3.17182e-05, No Iterations 4
ExecutionTime = 316.94 s ClockTime = 322 s
Time = 2162
smoothSolver: Solving for Ux, Initial residual = 0.000121461, Final residual = 7.83917e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00118939, Final residual = 7.97913e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00453087, Final residual = 4.23963e-05, No Iterations 4
time step continuity errors : sum local = 6.69608e-05, global = -1.28867e-05, cumulative = -0.311557
smoothSolver: Solving for omega, Initial residual = 3.19898e-05, Final residual = 3.04178e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000445247, Final residual = 3.16448e-05, No Iterations 4
ExecutionTime = 317.08 s ClockTime = 322 s
Time = 2163
smoothSolver: Solving for Ux, Initial residual = 0.000121104, Final residual = 7.81482e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00118625, Final residual = 7.95755e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00451606, Final residual = 4.44704e-05, No Iterations 4
time step continuity errors : sum local = 7.03026e-05, global = -1.34579e-05, cumulative = -0.31157
smoothSolver: Solving for omega, Initial residual = 3.1908e-05, Final residual = 3.03335e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000444249, Final residual = 3.15703e-05, No Iterations 4
ExecutionTime = 317.22 s ClockTime = 322 s
Time = 2164
smoothSolver: Solving for Ux, Initial residual = 0.00012075, Final residual = 7.79107e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00118311, Final residual = 7.93569e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00450288, Final residual = 2.54276e-05, No Iterations 5
time step continuity errors : sum local = 4.02356e-05, global = 7.25124e-06, cumulative = -0.311563
smoothSolver: Solving for omega, Initial residual = 3.18255e-05, Final residual = 3.02487e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000443239, Final residual = 3.14945e-05, No Iterations 4
ExecutionTime = 317.37 s ClockTime = 322 s
Time = 2165
smoothSolver: Solving for Ux, Initial residual = 0.000120399, Final residual = 7.76719e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00118, Final residual = 7.91389e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00449151, Final residual = 4.29823e-05, No Iterations 4
time step continuity errors : sum local = 6.80755e-05, global = -1.30507e-05, cumulative = -0.311576
smoothSolver: Solving for omega, Initial residual = 3.17383e-05, Final residual = 3.01636e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000442204, Final residual = 3.14172e-05, No Iterations 4
ExecutionTime = 317.51 s ClockTime = 322 s
Time = 2166
smoothSolver: Solving for Ux, Initial residual = 0.000120039, Final residual = 7.74252e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00117678, Final residual = 7.89128e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00447687, Final residual = 4.45634e-05, No Iterations 4
time step continuity errors : sum local = 7.06465e-05, global = -1.34511e-05, cumulative = -0.31159
smoothSolver: Solving for omega, Initial residual = 3.16555e-05, Final residual = 3.00789e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000441151, Final residual = 3.13385e-05, No Iterations 4
ExecutionTime = 317.64 s ClockTime = 322 s
Time = 2167
smoothSolver: Solving for Ux, Initial residual = 0.000119679, Final residual = 7.71773e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00117349, Final residual = 7.86877e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00446489, Final residual = 2.47324e-05, No Iterations 5
time step continuity errors : sum local = 3.9245e-05, global = 6.86791e-06, cumulative = -0.311583
smoothSolver: Solving for omega, Initial residual = 3.15727e-05, Final residual = 2.99939e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000440087, Final residual = 3.12584e-05, No Iterations 4
ExecutionTime = 317.79 s ClockTime = 323 s
Time = 2168
smoothSolver: Solving for Ux, Initial residual = 0.000119317, Final residual = 7.69332e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00117024, Final residual = 7.84855e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0044571, Final residual = 4.2408e-05, No Iterations 4
time step continuity errors : sum local = 6.73547e-05, global = -1.31237e-05, cumulative = -0.311596
smoothSolver: Solving for omega, Initial residual = 3.14836e-05, Final residual = 2.99081e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000438999, Final residual = 3.1177e-05, No Iterations 4
ExecutionTime = 317.93 s ClockTime = 323 s
Time = 2169
smoothSolver: Solving for Ux, Initial residual = 0.000118953, Final residual = 7.66884e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00116717, Final residual = 7.82802e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00444114, Final residual = 4.38854e-05, No Iterations 4
time step continuity errors : sum local = 6.97686e-05, global = -1.36097e-05, cumulative = -0.31161
smoothSolver: Solving for omega, Initial residual = 3.13996e-05, Final residual = 2.98223e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000437893, Final residual = 3.10942e-05, No Iterations 4
ExecutionTime = 318.07 s ClockTime = 323 s
Time = 2170
smoothSolver: Solving for Ux, Initial residual = 0.000118595, Final residual = 7.64417e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00116412, Final residual = 7.80708e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00442581, Final residual = 2.41829e-05, No Iterations 5
time step continuity errors : sum local = 3.84825e-05, global = 6.52246e-06, cumulative = -0.311603
smoothSolver: Solving for omega, Initial residual = 3.13155e-05, Final residual = 2.97354e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000436776, Final residual = 3.10099e-05, No Iterations 4
ExecutionTime = 318.22 s ClockTime = 323 s
Time = 2171
smoothSolver: Solving for Ux, Initial residual = 0.000118234, Final residual = 7.61961e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00116111, Final residual = 7.78624e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00441363, Final residual = 4.23053e-05, No Iterations 4
time step continuity errors : sum local = 6.73834e-05, global = -1.34535e-05, cumulative = -0.311616
smoothSolver: Solving for omega, Initial residual = 3.12276e-05, Final residual = 2.96485e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000435638, Final residual = 3.09244e-05, No Iterations 4
ExecutionTime = 318.36 s ClockTime = 323 s
Time = 2172
smoothSolver: Solving for Ux, Initial residual = 0.000117863, Final residual = 7.59415e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.001158, Final residual = 7.7646e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00440014, Final residual = 4.38519e-05, No Iterations 4
time step continuity errors : sum local = 6.99148e-05, global = -1.39543e-05, cumulative = -0.31163
smoothSolver: Solving for omega, Initial residual = 3.11454e-05, Final residual = 2.95624e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000434478, Final residual = 3.08374e-05, No Iterations 4
ExecutionTime = 318.51 s ClockTime = 323 s
Time = 2173
smoothSolver: Solving for Ux, Initial residual = 0.000117493, Final residual = 7.5689e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00115486, Final residual = 7.7427e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0043865, Final residual = 2.34813e-05, No Iterations 5
time step continuity errors : sum local = 3.7473e-05, global = 6.00276e-06, cumulative = -0.311624
smoothSolver: Solving for omega, Initial residual = 3.10625e-05, Final residual = 2.94762e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000433311, Final residual = 3.0749e-05, No Iterations 4
ExecutionTime = 318.66 s ClockTime = 323 s
Time = 2174
smoothSolver: Solving for Ux, Initial residual = 0.000117125, Final residual = 7.54445e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00115169, Final residual = 7.72077e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00437152, Final residual = 4.16496e-05, No Iterations 4
time step continuity errors : sum local = 6.65294e-05, global = -1.3683e-05, cumulative = -0.311638
smoothSolver: Solving for omega, Initial residual = 3.09721e-05, Final residual = 2.9389e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000432123, Final residual = 3.06596e-05, No Iterations 4
ExecutionTime = 318.79 s ClockTime = 324 s
Time = 2175
smoothSolver: Solving for Ux, Initial residual = 0.000116758, Final residual = 7.51913e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00114842, Final residual = 7.69838e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00434938, Final residual = 4.26575e-05, No Iterations 4
time step continuity errors : sum local = 6.82048e-05, global = -1.40285e-05, cumulative = -0.311652
smoothSolver: Solving for omega, Initial residual = 3.08892e-05, Final residual = 2.93013e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000430914, Final residual = 3.05686e-05, No Iterations 4
ExecutionTime = 318.92 s ClockTime = 324 s
Time = 2176
smoothSolver: Solving for Ux, Initial residual = 0.00011639, Final residual = 7.49384e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00114508, Final residual = 7.67687e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0043349, Final residual = 2.25472e-05, No Iterations 5
time step continuity errors : sum local = 3.6085e-05, global = 5.40622e-06, cumulative = -0.311647
smoothSolver: Solving for omega, Initial residual = 3.08037e-05, Final residual = 2.92133e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000429693, Final residual = 3.04761e-05, No Iterations 4
ExecutionTime = 319.07 s ClockTime = 324 s
Time = 2177
smoothSolver: Solving for Ux, Initial residual = 0.000116019, Final residual = 7.46865e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00114188, Final residual = 7.65725e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00432193, Final residual = 4.03849e-05, No Iterations 4
time step continuity errors : sum local = 6.46935e-05, global = -1.36908e-05, cumulative = -0.31166
smoothSolver: Solving for omega, Initial residual = 3.07119e-05, Final residual = 2.91248e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000428454, Final residual = 3.03827e-05, No Iterations 4
ExecutionTime = 319.2 s ClockTime = 324 s
Time = 2178
smoothSolver: Solving for Ux, Initial residual = 0.000115644, Final residual = 7.44294e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00113889, Final residual = 7.63685e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00430252, Final residual = 4.13857e-05, No Iterations 4
time step continuity errors : sum local = 6.63612e-05, global = -1.40406e-05, cumulative = -0.311674
smoothSolver: Solving for omega, Initial residual = 3.06273e-05, Final residual = 2.90378e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000427194, Final residual = 3.02877e-05, No Iterations 4
ExecutionTime = 319.34 s ClockTime = 324 s
Time = 2179
smoothSolver: Solving for Ux, Initial residual = 0.000115267, Final residual = 7.41771e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00113589, Final residual = 7.61621e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00428136, Final residual = 2.17667e-05, No Iterations 5
time step continuity errors : sum local = 3.49359e-05, global = 4.86359e-06, cumulative = -0.31167
smoothSolver: Solving for omega, Initial residual = 3.05417e-05, Final residual = 2.89503e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000425921, Final residual = 3.01914e-05, No Iterations 4
ExecutionTime = 319.49 s ClockTime = 324 s
Time = 2180
smoothSolver: Solving for Ux, Initial residual = 0.000114899, Final residual = 7.39267e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0011329, Final residual = 7.59572e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0042622, Final residual = 3.93241e-05, No Iterations 4
time step continuity errors : sum local = 6.31752e-05, global = -1.36775e-05, cumulative = -0.311683
smoothSolver: Solving for omega, Initial residual = 3.04511e-05, Final residual = 2.88612e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000424634, Final residual = 3.0094e-05, No Iterations 4
ExecutionTime = 319.63 s ClockTime = 324 s
Time = 2181
smoothSolver: Solving for Ux, Initial residual = 0.000114526, Final residual = 7.36695e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00112978, Final residual = 7.57446e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00424297, Final residual = 4.00582e-05, No Iterations 4
time step continuity errors : sum local = 6.44173e-05, global = -1.40014e-05, cumulative = -0.311697
smoothSolver: Solving for omega, Initial residual = 3.03647e-05, Final residual = 2.87724e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000423325, Final residual = 2.99954e-05, No Iterations 4
ExecutionTime = 319.77 s ClockTime = 325 s
Time = 2182
smoothSolver: Solving for Ux, Initial residual = 0.000114152, Final residual = 7.34118e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00112664, Final residual = 7.55309e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00422567, Final residual = 2.12186e-05, No Iterations 5
time step continuity errors : sum local = 3.41544e-05, global = 4.36496e-06, cumulative = -0.311693
smoothSolver: Solving for omega, Initial residual = 3.02794e-05, Final residual = 2.86839e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000422006, Final residual = 2.98955e-05, No Iterations 4
ExecutionTime = 319.92 s ClockTime = 325 s
Time = 2183
smoothSolver: Solving for Ux, Initial residual = 0.000113778, Final residual = 7.31593e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00112354, Final residual = 7.53275e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00420889, Final residual = 3.80462e-05, No Iterations 4
time step continuity errors : sum local = 6.12985e-05, global = -1.32694e-05, cumulative = -0.311706
smoothSolver: Solving for omega, Initial residual = 3.01859e-05, Final residual = 2.85955e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000420667, Final residual = 2.97946e-05, No Iterations 4
ExecutionTime = 320.06 s ClockTime = 325 s
Time = 2184
smoothSolver: Solving for Ux, Initial residual = 0.0001134, Final residual = 7.2904e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00112047, Final residual = 7.51271e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.004187, Final residual = 3.86208e-05, No Iterations 4
time step continuity errors : sum local = 6.22844e-05, global = -1.36017e-05, cumulative = -0.31172
smoothSolver: Solving for omega, Initial residual = 3.00994e-05, Final residual = 2.85075e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000419314, Final residual = 2.96922e-05, No Iterations 4
ExecutionTime = 320.2 s ClockTime = 325 s
Time = 2185
smoothSolver: Solving for Ux, Initial residual = 0.000113025, Final residual = 7.26485e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00111757, Final residual = 7.49379e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00416931, Final residual = 4.04704e-05, No Iterations 4
time step continuity errors : sum local = 6.533e-05, global = -1.44708e-05, cumulative = -0.311734
smoothSolver: Solving for omega, Initial residual = 3.00113e-05, Final residual = 2.84192e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000417948, Final residual = 2.95889e-05, No Iterations 4
ExecutionTime = 320.35 s ClockTime = 325 s
Time = 2186
smoothSolver: Solving for Ux, Initial residual = 0.000112652, Final residual = 7.23936e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00111479, Final residual = 7.47497e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0041576, Final residual = 2.12082e-05, No Iterations 5
time step continuity errors : sum local = 3.42685e-05, global = 4.17752e-06, cumulative = -0.31173
smoothSolver: Solving for omega, Initial residual = 2.99269e-05, Final residual = 2.8331e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000416564, Final residual = 2.94845e-05, No Iterations 4
ExecutionTime = 320.49 s ClockTime = 325 s
Time = 2187
smoothSolver: Solving for Ux, Initial residual = 0.000112278, Final residual = 7.21409e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00111204, Final residual = 7.45644e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00414477, Final residual = 3.64404e-05, No Iterations 4
time step continuity errors : sum local = 5.89366e-05, global = -1.18179e-05, cumulative = -0.311742
smoothSolver: Solving for omega, Initial residual = 2.9834e-05, Final residual = 2.82418e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000415167, Final residual = 2.93789e-05, No Iterations 4
ExecutionTime = 320.63 s ClockTime = 325 s
Time = 2188
smoothSolver: Solving for Ux, Initial residual = 0.000111904, Final residual = 7.18822e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00110915, Final residual = 7.43694e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0041248, Final residual = 3.62616e-05, No Iterations 4
time step continuity errors : sum local = 5.87031e-05, global = -1.12599e-05, cumulative = -0.311753
smoothSolver: Solving for omega, Initial residual = 2.9748e-05, Final residual = 2.81532e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000413759, Final residual = 2.92724e-05, No Iterations 4
ExecutionTime = 320.76 s ClockTime = 326 s
Time = 2189
smoothSolver: Solving for Ux, Initial residual = 0.000111526, Final residual = 7.16253e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00110622, Final residual = 7.4173e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00410512, Final residual = 3.8368e-05, No Iterations 4
time step continuity errors : sum local = 6.21722e-05, global = -1.31999e-05, cumulative = -0.311766
smoothSolver: Solving for omega, Initial residual = 2.96587e-05, Final residual = 2.8065e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000412331, Final residual = 2.9165e-05, No Iterations 4
ExecutionTime = 320.9 s ClockTime = 326 s
Time = 2190
smoothSolver: Solving for Ux, Initial residual = 0.000111147, Final residual = 7.1372e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00110329, Final residual = 7.39752e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00408652, Final residual = 3.92492e-05, No Iterations 4
time step continuity errors : sum local = 6.36616e-05, global = -1.39149e-05, cumulative = -0.31178
smoothSolver: Solving for omega, Initial residual = 2.95713e-05, Final residual = 2.79772e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000410892, Final residual = 2.90561e-05, No Iterations 4
ExecutionTime = 321.03 s ClockTime = 326 s
Time = 2191
smoothSolver: Solving for Ux, Initial residual = 0.000110774, Final residual = 7.11183e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0011004, Final residual = 7.37774e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00407271, Final residual = 3.8639e-05, No Iterations 4
time step continuity errors : sum local = 6.27317e-05, global = -1.35488e-05, cumulative = -0.311794
smoothSolver: Solving for omega, Initial residual = 2.94858e-05, Final residual = 2.78894e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00040944, Final residual = 2.89465e-05, No Iterations 4
ExecutionTime = 321.17 s ClockTime = 326 s
Time = 2192
smoothSolver: Solving for Ux, Initial residual = 0.000110402, Final residual = 7.08649e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00109753, Final residual = 7.35817e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00405602, Final residual = 3.72787e-05, No Iterations 4
time step continuity errors : sum local = 6.05803e-05, global = -1.25307e-05, cumulative = -0.311806
smoothSolver: Solving for omega, Initial residual = 2.93976e-05, Final residual = 2.7801e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000407972, Final residual = 2.88359e-05, No Iterations 4
ExecutionTime = 321.31 s ClockTime = 326 s
Time = 2193
smoothSolver: Solving for Ux, Initial residual = 0.000110031, Final residual = 7.0611e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00109461, Final residual = 7.33865e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0040369, Final residual = 3.57997e-05, No Iterations 4
time step continuity errors : sum local = 5.82309e-05, global = -1.08764e-05, cumulative = -0.311817
smoothSolver: Solving for omega, Initial residual = 2.93076e-05, Final residual = 2.77116e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000406491, Final residual = 2.8724e-05, No Iterations 4
ExecutionTime = 321.45 s ClockTime = 326 s
Time = 2194
smoothSolver: Solving for Ux, Initial residual = 0.000109657, Final residual = 7.03574e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00109169, Final residual = 7.31912e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00401681, Final residual = 3.53373e-05, No Iterations 4
time step continuity errors : sum local = 5.75314e-05, global = -9.63248e-06, cumulative = -0.311827
smoothSolver: Solving for omega, Initial residual = 2.9218e-05, Final residual = 2.76231e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000404999, Final residual = 2.86114e-05, No Iterations 4
ExecutionTime = 321.6 s ClockTime = 326 s
Time = 2195
smoothSolver: Solving for Ux, Initial residual = 0.00010928, Final residual = 7.01056e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00108876, Final residual = 7.30041e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00399907, Final residual = 3.61596e-05, No Iterations 4
time step continuity errors : sum local = 5.89259e-05, global = -1.0127e-05, cumulative = -0.311837
smoothSolver: Solving for omega, Initial residual = 2.9129e-05, Final residual = 2.75355e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000403494, Final residual = 2.8498e-05, No Iterations 4
ExecutionTime = 321.75 s ClockTime = 327 s
Time = 2196
smoothSolver: Solving for Ux, Initial residual = 0.000108909, Final residual = 6.98526e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00108588, Final residual = 7.28288e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00398308, Final residual = 3.62174e-05, No Iterations 4
time step continuity errors : sum local = 5.90772e-05, global = -1.04478e-05, cumulative = -0.311847
smoothSolver: Solving for omega, Initial residual = 2.90416e-05, Final residual = 2.74483e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000401974, Final residual = 2.83833e-05, No Iterations 4
ExecutionTime = 321.89 s ClockTime = 327 s
Time = 2197
smoothSolver: Solving for Ux, Initial residual = 0.000108538, Final residual = 6.96002e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0010832, Final residual = 7.26552e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00396463, Final residual = 3.47327e-05, No Iterations 4
time step continuity errors : sum local = 5.67101e-05, global = -9.32654e-06, cumulative = -0.311857
smoothSolver: Solving for omega, Initial residual = 2.89568e-05, Final residual = 2.73608e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000400448, Final residual = 2.8268e-05, No Iterations 4
ExecutionTime = 322.03 s ClockTime = 327 s
Time = 2198
smoothSolver: Solving for Ux, Initial residual = 0.000108166, Final residual = 6.93496e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00108063, Final residual = 7.24802e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00394294, Final residual = 3.19547e-05, No Iterations 4
time step continuity errors : sum local = 5.22238e-05, global = -6.21713e-06, cumulative = -0.311863
smoothSolver: Solving for omega, Initial residual = 2.88691e-05, Final residual = 2.72731e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000398904, Final residual = 2.8152e-05, No Iterations 4
ExecutionTime = 322.18 s ClockTime = 327 s
Time = 2199
smoothSolver: Solving for Ux, Initial residual = 0.000107797, Final residual = 6.91014e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00107803, Final residual = 7.23018e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00392223, Final residual = 2.88494e-05, No Iterations 4
time step continuity errors : sum local = 4.71918e-05, global = -2.64553e-06, cumulative = -0.311866
smoothSolver: Solving for omega, Initial residual = 2.87795e-05, Final residual = 2.71855e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000397352, Final residual = 2.80348e-05, No Iterations 4
ExecutionTime = 322.32 s ClockTime = 327 s
Time = 2200
smoothSolver: Solving for Ux, Initial residual = 0.000107427, Final residual = 6.88533e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00107536, Final residual = 7.21191e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00390692, Final residual = 2.68667e-05, No Iterations 4
time step continuity errors : sum local = 4.39889e-05, global = -1.2922e-06, cumulative = -0.311867
smoothSolver: Solving for omega, Initial residual = 2.86903e-05, Final residual = 2.70973e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000395787, Final residual = 2.79171e-05, No Iterations 4
ExecutionTime = 322.66 s ClockTime = 328 s
Time = 2201
smoothSolver: Solving for Ux, Initial residual = 0.000107059, Final residual = 6.86057e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00107266, Final residual = 7.19374e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00389598, Final residual = 2.60845e-05, No Iterations 4
time step continuity errors : sum local = 4.27491e-05, global = -1.97978e-06, cumulative = -0.311869
smoothSolver: Solving for omega, Initial residual = 2.86031e-05, Final residual = 2.70109e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000394214, Final residual = 2.77986e-05, No Iterations 4
ExecutionTime = 322.8 s ClockTime = 328 s
Time = 2202
smoothSolver: Solving for Ux, Initial residual = 0.000106696, Final residual = 6.83581e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00107001, Final residual = 7.1761e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0038812, Final residual = 2.53902e-05, No Iterations 4
time step continuity errors : sum local = 4.16509e-05, global = -2.57648e-06, cumulative = -0.311871
smoothSolver: Solving for omega, Initial residual = 2.85166e-05, Final residual = 2.6925e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000392627, Final residual = 2.76793e-05, No Iterations 4
ExecutionTime = 322.94 s ClockTime = 328 s
Time = 2203
smoothSolver: Solving for Ux, Initial residual = 0.00010633, Final residual = 6.81115e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0010674, Final residual = 7.15884e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00386481, Final residual = 2.45663e-05, No Iterations 4
time step continuity errors : sum local = 4.03371e-05, global = -2.60149e-06, cumulative = -0.311874
smoothSolver: Solving for omega, Initial residual = 2.84308e-05, Final residual = 2.68385e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000391035, Final residual = 2.75593e-05, No Iterations 4
ExecutionTime = 323.09 s ClockTime = 328 s
Time = 2204
smoothSolver: Solving for Ux, Initial residual = 0.000105967, Final residual = 6.7867e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00106485, Final residual = 7.14175e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00385023, Final residual = 2.39057e-05, No Iterations 4
time step continuity errors : sum local = 3.92883e-05, global = -2.57385e-06, cumulative = -0.311877
smoothSolver: Solving for omega, Initial residual = 2.83436e-05, Final residual = 2.67523e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000389428, Final residual = 2.74388e-05, No Iterations 4
ExecutionTime = 323.24 s ClockTime = 328 s
Time = 2205
smoothSolver: Solving for Ux, Initial residual = 0.000105603, Final residual = 6.76234e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00106234, Final residual = 7.12467e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00384037, Final residual = 2.34896e-05, No Iterations 4
time step continuity errors : sum local = 3.86394e-05, global = -2.82002e-06, cumulative = -0.311879
smoothSolver: Solving for omega, Initial residual = 2.82562e-05, Final residual = 2.66663e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000387816, Final residual = 2.73174e-05, No Iterations 4
ExecutionTime = 323.38 s ClockTime = 329 s
Time = 2206
smoothSolver: Solving for Ux, Initial residual = 0.000105241, Final residual = 6.73822e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00105984, Final residual = 7.108e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00382521, Final residual = 2.3162e-05, No Iterations 4
time step continuity errors : sum local = 3.8135e-05, global = -3.21419e-06, cumulative = -0.311883
smoothSolver: Solving for omega, Initial residual = 2.81691e-05, Final residual = 2.65807e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000386194, Final residual = 2.71957e-05, No Iterations 4
ExecutionTime = 323.52 s ClockTime = 329 s
Time = 2207
smoothSolver: Solving for Ux, Initial residual = 0.000104883, Final residual = 6.71436e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00105742, Final residual = 7.09129e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00381018, Final residual = 2.28946e-05, No Iterations 4
time step continuity errors : sum local = 3.77293e-05, global = -3.55349e-06, cumulative = -0.311886
smoothSolver: Solving for omega, Initial residual = 2.80822e-05, Final residual = 2.64953e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000384563, Final residual = 2.70731e-05, No Iterations 4
ExecutionTime = 323.66 s ClockTime = 329 s
Time = 2208
smoothSolver: Solving for Ux, Initial residual = 0.000104528, Final residual = 6.69039e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00105498, Final residual = 7.07454e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00379144, Final residual = 2.22917e-05, No Iterations 4
time step continuity errors : sum local = 3.67694e-05, global = -3.66942e-06, cumulative = -0.31189
smoothSolver: Solving for omega, Initial residual = 2.79959e-05, Final residual = 2.64116e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.00038292, Final residual = 2.69501e-05, No Iterations 4
ExecutionTime = 323.81 s ClockTime = 329 s
Time = 2209
smoothSolver: Solving for Ux, Initial residual = 0.00010417, Final residual = 6.66641e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00105252, Final residual = 7.05766e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00377026, Final residual = 2.18075e-05, No Iterations 4
time step continuity errors : sum local = 3.60037e-05, global = -3.81027e-06, cumulative = -0.311894
smoothSolver: Solving for omega, Initial residual = 2.79105e-05, Final residual = 2.63278e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000381276, Final residual = 2.68268e-05, No Iterations 4
ExecutionTime = 323.94 s ClockTime = 329 s
Time = 2210
smoothSolver: Solving for Ux, Initial residual = 0.000103814, Final residual = 6.6426e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00105002, Final residual = 7.04043e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00374724, Final residual = 2.1338e-05, No Iterations 4
time step continuity errors : sum local = 3.52604e-05, global = -3.94108e-06, cumulative = -0.311898
smoothSolver: Solving for omega, Initial residual = 2.78266e-05, Final residual = 2.62435e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000379622, Final residual = 2.67029e-05, No Iterations 4
ExecutionTime = 324.08 s ClockTime = 329 s
Time = 2211
smoothSolver: Solving for Ux, Initial residual = 0.00010346, Final residual = 6.61918e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00104746, Final residual = 7.0227e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00372355, Final residual = 2.08985e-05, No Iterations 4
time step continuity errors : sum local = 3.45648e-05, global = -3.9988e-06, cumulative = -0.311902
smoothSolver: Solving for omega, Initial residual = 2.77417e-05, Final residual = 2.61594e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000377962, Final residual = 2.65784e-05, No Iterations 4
ExecutionTime = 324.23 s ClockTime = 329 s
Time = 2212
smoothSolver: Solving for Ux, Initial residual = 0.000103109, Final residual = 6.59599e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00104483, Final residual = 7.00448e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00370471, Final residual = 2.05276e-05, No Iterations 4
time step continuity errors : sum local = 3.39814e-05, global = -3.86527e-06, cumulative = -0.311906
smoothSolver: Solving for omega, Initial residual = 2.76569e-05, Final residual = 2.60763e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000376296, Final residual = 2.64538e-05, No Iterations 4
ExecutionTime = 324.37 s ClockTime = 330 s
Time = 2213
smoothSolver: Solving for Ux, Initial residual = 0.000102765, Final residual = 6.57312e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00104216, Final residual = 6.98608e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00368884, Final residual = 2.01607e-05, No Iterations 4
time step continuity errors : sum local = 3.34034e-05, global = -3.44341e-06, cumulative = -0.311909
smoothSolver: Solving for omega, Initial residual = 2.75717e-05, Final residual = 2.59938e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000374628, Final residual = 2.63288e-05, No Iterations 4
ExecutionTime = 324.51 s ClockTime = 330 s
Time = 2214
smoothSolver: Solving for Ux, Initial residual = 0.000102423, Final residual = 6.55018e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00103947, Final residual = 6.96758e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00367473, Final residual = 1.96635e-05, No Iterations 4
time step continuity errors : sum local = 3.26082e-05, global = -2.68637e-06, cumulative = -0.311912
smoothSolver: Solving for omega, Initial residual = 2.74874e-05, Final residual = 2.59123e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000372949, Final residual = 2.62031e-05, No Iterations 4
ExecutionTime = 324.65 s ClockTime = 330 s
Time = 2215
smoothSolver: Solving for Ux, Initial residual = 0.000102077, Final residual = 6.52713e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00103677, Final residual = 6.94894e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00366055, Final residual = 1.89776e-05, No Iterations 4
time step continuity errors : sum local = 3.14982e-05, global = -1.52091e-06, cumulative = -0.311913
smoothSolver: Solving for omega, Initial residual = 2.74042e-05, Final residual = 2.58311e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000371268, Final residual = 2.60776e-05, No Iterations 4
ExecutionTime = 324.79 s ClockTime = 330 s
Time = 2216
smoothSolver: Solving for Ux, Initial residual = 0.000101733, Final residual = 6.50431e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00103401, Final residual = 6.93004e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00364004, Final residual = 1.81339e-05, No Iterations 4
time step continuity errors : sum local = 3.0124e-05, global = -9.83437e-08, cumulative = -0.311913
smoothSolver: Solving for omega, Initial residual = 2.73217e-05, Final residual = 2.57498e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000369583, Final residual = 2.59514e-05, No Iterations 4
ExecutionTime = 324.92 s ClockTime = 330 s
Time = 2217
smoothSolver: Solving for Ux, Initial residual = 0.000101393, Final residual = 6.48186e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00103119, Final residual = 6.91082e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00361492, Final residual = 1.73116e-05, No Iterations 4
time step continuity errors : sum local = 2.87822e-05, global = 1.31648e-06, cumulative = -0.311912
smoothSolver: Solving for omega, Initial residual = 2.7241e-05, Final residual = 2.56692e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000367894, Final residual = 2.58252e-05, No Iterations 4
ExecutionTime = 325.07 s ClockTime = 330 s
Time = 2218
smoothSolver: Solving for Ux, Initial residual = 0.000101056, Final residual = 6.45971e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00102834, Final residual = 6.89143e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00359448, Final residual = 1.68597e-05, No Iterations 4
time step continuity errors : sum local = 2.80547e-05, global = 2.62645e-06, cumulative = -0.311909
smoothSolver: Solving for omega, Initial residual = 2.71585e-05, Final residual = 2.55894e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000366202, Final residual = 2.56986e-05, No Iterations 4
ExecutionTime = 325.2 s ClockTime = 330 s
Time = 2219
smoothSolver: Solving for Ux, Initial residual = 0.000100724, Final residual = 6.43811e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00102546, Final residual = 6.87194e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00357926, Final residual = 3.57695e-05, No Iterations 3
time step continuity errors : sum local = 5.95704e-05, global = -8.53203e-06, cumulative = -0.311918
smoothSolver: Solving for omega, Initial residual = 2.70757e-05, Final residual = 2.55096e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000364505, Final residual = 2.55721e-05, No Iterations 4
ExecutionTime = 325.32 s ClockTime = 331 s
Time = 2220
smoothSolver: Solving for Ux, Initial residual = 0.000100397, Final residual = 6.41597e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00102261, Final residual = 6.85276e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.0035673, Final residual = 1.79077e-05, No Iterations 4
time step continuity errors : sum local = 2.985e-05, global = 5.00058e-06, cumulative = -0.311913
smoothSolver: Solving for omega, Initial residual = 2.69991e-05, Final residual = 2.54312e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000362808, Final residual = 2.54451e-05, No Iterations 4
ExecutionTime = 325.47 s ClockTime = 331 s
Time = 2221
smoothSolver: Solving for Ux, Initial residual = 0.000100064, Final residual = 6.39455e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00101963, Final residual = 6.83259e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00356214, Final residual = 3.5533e-05, No Iterations 3
time step continuity errors : sum local = 5.92733e-05, global = -1.09211e-05, cumulative = -0.311924
smoothSolver: Solving for omega, Initial residual = 2.69152e-05, Final residual = 2.5354e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000361107, Final residual = 2.53184e-05, No Iterations 4
ExecutionTime = 325.6 s ClockTime = 331 s
Time = 2222
smoothSolver: Solving for Ux, Initial residual = 9.97348e-05, Final residual = 6.37268e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00101666, Final residual = 6.81266e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00355315, Final residual = 3.49489e-05, No Iterations 3
time step continuity errors : sum local = 5.83481e-05, global = -1.04167e-05, cumulative = -0.311934
smoothSolver: Solving for omega, Initial residual = 2.68371e-05, Final residual = 2.52765e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000359404, Final residual = 2.51914e-05, No Iterations 4
ExecutionTime = 325.73 s ClockTime = 331 s
Time = 2223
smoothSolver: Solving for Ux, Initial residual = 9.94084e-05, Final residual = 6.35123e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00101364, Final residual = 6.79252e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00354211, Final residual = 3.46689e-05, No Iterations 3
time step continuity errors : sum local = 5.79273e-05, global = -1.05773e-05, cumulative = -0.311945
smoothSolver: Solving for omega, Initial residual = 2.67584e-05, Final residual = 2.51993e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000357698, Final residual = 2.50643e-05, No Iterations 4
ExecutionTime = 325.86 s ClockTime = 331 s
Time = 2224
smoothSolver: Solving for Ux, Initial residual = 9.90844e-05, Final residual = 6.33027e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.0010106, Final residual = 6.77218e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00352044, Final residual = 3.47126e-05, No Iterations 3
time step continuity errors : sum local = 5.80448e-05, global = -1.16401e-05, cumulative = -0.311956
smoothSolver: Solving for omega, Initial residual = 2.66821e-05, Final residual = 2.5123e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000355995, Final residual = 2.49374e-05, No Iterations 4
ExecutionTime = 325.99 s ClockTime = 331 s
Time = 2225
smoothSolver: Solving for Ux, Initial residual = 9.87665e-05, Final residual = 6.31016e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00100755, Final residual = 6.75179e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00349653, Final residual = 1.95767e-05, No Iterations 4
time step continuity errors : sum local = 3.276e-05, global = 6.9418e-06, cumulative = -0.311949
smoothSolver: Solving for omega, Initial residual = 2.66056e-05, Final residual = 2.50468e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000354292, Final residual = 2.48106e-05, No Iterations 4
ExecutionTime = 326.13 s ClockTime = 331 s
Time = 2226
smoothSolver: Solving for Ux, Initial residual = 9.84541e-05, Final residual = 6.29018e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00100446, Final residual = 6.73098e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00347348, Final residual = 2.00231e-05, No Iterations 4
time step continuity errors : sum local = 3.35286e-05, global = 6.97234e-06, cumulative = -0.311943
smoothSolver: Solving for omega, Initial residual = 2.65237e-05, Final residual = 2.49712e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000352584, Final residual = 2.46838e-05, No Iterations 4
ExecutionTime = 326.26 s ClockTime = 331 s
Time = 2227
smoothSolver: Solving for Ux, Initial residual = 9.81434e-05, Final residual = 6.26962e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.00100134, Final residual = 6.7102e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00345319, Final residual = 2.04469e-05, No Iterations 4
time step continuity errors : sum local = 3.42645e-05, global = 6.71786e-06, cumulative = -0.311936
smoothSolver: Solving for omega, Initial residual = 2.64457e-05, Final residual = 2.48976e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000350881, Final residual = 2.45571e-05, No Iterations 4
ExecutionTime = 326.41 s ClockTime = 332 s
Time = 2228
smoothSolver: Solving for Ux, Initial residual = 9.78325e-05, Final residual = 6.24895e-06, No Iterations 4
smoothSolver: Solving for Uy, Initial residual = 0.000998238, Final residual = 6.68987e-05, No Iterations 4
GAMG: Solving for p, Initial residual = 0.00343366, Final residual = 2.07992e-05, No Iterations 4
time step continuity errors : sum local = 3.48837e-05, global = 6.9974e-06, cumulative = -0.311929
smoothSolver: Solving for omega, Initial residual = 2.63704e-05, Final residual = 2.48239e-06, No Iterations 3
smoothSolver: Solving for k, Initial residual = 0.000349177, Final residual = 2.44306e-05, No Iterations 4
ExecutionTime = 326.55 s ClockTime = 332 s
SIMPLE solution converged in 2228 iterations
End
|
D
|
/Users/student/VGLogger/DerivedData/Build/Intermediates/VGLogger.build/Debug-iphonesimulator/VGLogger.build/Objects-normal/x86_64/AppDelegate.o : /Users/student/VGLogger/VGLogger/Download.swift /Users/student/VGLogger/VGLogger/Models/BarCodeDataSource.swift /Users/student/VGLogger/VGLogger/Models/VideoGameDataSource.swift /Users/student/VGLogger/VGLogger/Models/BarCode.swift /Users/student/VGLogger/VGLogger/Models/VideoGame.swift /Users/student/VGLogger/VGLogger/Models/popularGame.swift /Users/student/VGLogger/VGLogger/Wishlist/WishlistDatabase.swift /Users/student/VGLogger/VGLogger/AppDelegate.swift /Users/student/VGLogger/VGLogger/Scanner/BarCodeTableViewCell.swift /Users/student/VGLogger/VGLogger/Search/VideoGameTableViewCell.swift /Users/student/VGLogger/VGLogger/Search/FilterSideBarTableViewCell.swift /Users/student/VGLogger/VGLogger/Wishlist/WishlistTableViewCell.swift /Users/student/VGLogger/VGLogger/Homepage/FeedCollectionViewCell.swift /Users/student/VGLogger/VGLogger/Homepage/FeedViewController.swift /Users/student/VGLogger/VGLogger/Search/VideoGameDetailedViewController.swift /Users/student/VGLogger/VGLogger/ThirdViewController.swift /Users/student/VGLogger/VGLogger/Scanner/BarCodeViewController.swift /Users/student/VGLogger/VGLogger/Scanner/BarCodeTableViewController.swift /Users/student/VGLogger/VGLogger/Search/SearchTableViewController.swift /Users/student/VGLogger/VGLogger/Search/FilterSideBarTableViewController.swift /Users/student/VGLogger/VGLogger/Wishlist/WishlistTableViewController.swift /Users/student/VGLogger/VGLogger/Homepage/FeedTableViewCells.swift /Users/student/VGLogger/VGLogger/Wishlist/WishlistObject.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Modules/SwiftyJSON.swiftmodule/x86_64.swiftmodule /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Modules/Alamofire.swiftmodule/x86_64.swiftmodule /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SQLite.swift/SQLite.framework/Modules/SQLite.swiftmodule/x86_64.swiftmodule /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Hex/Hex.framework/Modules/Hex.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreMedia.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/simd.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/AVFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreAudio.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Headers/SwiftyJSON-umbrella.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Headers/Alamofire-umbrella.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SQLite.swift/SQLite.framework/Headers/SQLite.swift-umbrella.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Hex/Hex.framework/Headers/Hex-umbrella.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SQLite.swift/SQLite.framework/Headers/SQLite.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SQLite.swift/SQLite.framework/Headers/SQLite-Bridging.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Headers/SwiftyJSON-Swift.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Headers/Alamofire-Swift.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SQLite.swift/SQLite.framework/Headers/SQLite-Swift.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Hex/Hex.framework/Headers/Hex-Swift.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Hex/Hex.framework/Headers/Hex.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Modules/module.modulemap /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Modules/module.modulemap /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SQLite.swift/SQLite.framework/Modules/module.modulemap /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Hex/Hex.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.0.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVFoundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.0.sdk/System/Library/Frameworks/SafariServices.framework/Headers/SafariServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.0.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers/AudioToolbox.apinotes
/Users/student/VGLogger/DerivedData/Build/Intermediates/VGLogger.build/Debug-iphonesimulator/VGLogger.build/Objects-normal/x86_64/AppDelegate~partial.swiftmodule : /Users/student/VGLogger/VGLogger/Download.swift /Users/student/VGLogger/VGLogger/Models/BarCodeDataSource.swift /Users/student/VGLogger/VGLogger/Models/VideoGameDataSource.swift /Users/student/VGLogger/VGLogger/Models/BarCode.swift /Users/student/VGLogger/VGLogger/Models/VideoGame.swift /Users/student/VGLogger/VGLogger/Models/popularGame.swift /Users/student/VGLogger/VGLogger/Wishlist/WishlistDatabase.swift /Users/student/VGLogger/VGLogger/AppDelegate.swift /Users/student/VGLogger/VGLogger/Scanner/BarCodeTableViewCell.swift /Users/student/VGLogger/VGLogger/Search/VideoGameTableViewCell.swift /Users/student/VGLogger/VGLogger/Search/FilterSideBarTableViewCell.swift /Users/student/VGLogger/VGLogger/Wishlist/WishlistTableViewCell.swift /Users/student/VGLogger/VGLogger/Homepage/FeedCollectionViewCell.swift /Users/student/VGLogger/VGLogger/Homepage/FeedViewController.swift /Users/student/VGLogger/VGLogger/Search/VideoGameDetailedViewController.swift /Users/student/VGLogger/VGLogger/ThirdViewController.swift /Users/student/VGLogger/VGLogger/Scanner/BarCodeViewController.swift /Users/student/VGLogger/VGLogger/Scanner/BarCodeTableViewController.swift /Users/student/VGLogger/VGLogger/Search/SearchTableViewController.swift /Users/student/VGLogger/VGLogger/Search/FilterSideBarTableViewController.swift /Users/student/VGLogger/VGLogger/Wishlist/WishlistTableViewController.swift /Users/student/VGLogger/VGLogger/Homepage/FeedTableViewCells.swift /Users/student/VGLogger/VGLogger/Wishlist/WishlistObject.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Modules/SwiftyJSON.swiftmodule/x86_64.swiftmodule /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Modules/Alamofire.swiftmodule/x86_64.swiftmodule /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SQLite.swift/SQLite.framework/Modules/SQLite.swiftmodule/x86_64.swiftmodule /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Hex/Hex.framework/Modules/Hex.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreMedia.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/simd.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/AVFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreAudio.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Headers/SwiftyJSON-umbrella.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Headers/Alamofire-umbrella.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SQLite.swift/SQLite.framework/Headers/SQLite.swift-umbrella.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Hex/Hex.framework/Headers/Hex-umbrella.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SQLite.swift/SQLite.framework/Headers/SQLite.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SQLite.swift/SQLite.framework/Headers/SQLite-Bridging.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Headers/SwiftyJSON-Swift.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Headers/Alamofire-Swift.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SQLite.swift/SQLite.framework/Headers/SQLite-Swift.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Hex/Hex.framework/Headers/Hex-Swift.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Hex/Hex.framework/Headers/Hex.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Modules/module.modulemap /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Modules/module.modulemap /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SQLite.swift/SQLite.framework/Modules/module.modulemap /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Hex/Hex.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.0.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVFoundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.0.sdk/System/Library/Frameworks/SafariServices.framework/Headers/SafariServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.0.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers/AudioToolbox.apinotes
/Users/student/VGLogger/DerivedData/Build/Intermediates/VGLogger.build/Debug-iphonesimulator/VGLogger.build/Objects-normal/x86_64/AppDelegate~partial.swiftdoc : /Users/student/VGLogger/VGLogger/Download.swift /Users/student/VGLogger/VGLogger/Models/BarCodeDataSource.swift /Users/student/VGLogger/VGLogger/Models/VideoGameDataSource.swift /Users/student/VGLogger/VGLogger/Models/BarCode.swift /Users/student/VGLogger/VGLogger/Models/VideoGame.swift /Users/student/VGLogger/VGLogger/Models/popularGame.swift /Users/student/VGLogger/VGLogger/Wishlist/WishlistDatabase.swift /Users/student/VGLogger/VGLogger/AppDelegate.swift /Users/student/VGLogger/VGLogger/Scanner/BarCodeTableViewCell.swift /Users/student/VGLogger/VGLogger/Search/VideoGameTableViewCell.swift /Users/student/VGLogger/VGLogger/Search/FilterSideBarTableViewCell.swift /Users/student/VGLogger/VGLogger/Wishlist/WishlistTableViewCell.swift /Users/student/VGLogger/VGLogger/Homepage/FeedCollectionViewCell.swift /Users/student/VGLogger/VGLogger/Homepage/FeedViewController.swift /Users/student/VGLogger/VGLogger/Search/VideoGameDetailedViewController.swift /Users/student/VGLogger/VGLogger/ThirdViewController.swift /Users/student/VGLogger/VGLogger/Scanner/BarCodeViewController.swift /Users/student/VGLogger/VGLogger/Scanner/BarCodeTableViewController.swift /Users/student/VGLogger/VGLogger/Search/SearchTableViewController.swift /Users/student/VGLogger/VGLogger/Search/FilterSideBarTableViewController.swift /Users/student/VGLogger/VGLogger/Wishlist/WishlistTableViewController.swift /Users/student/VGLogger/VGLogger/Homepage/FeedTableViewCells.swift /Users/student/VGLogger/VGLogger/Wishlist/WishlistObject.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Modules/SwiftyJSON.swiftmodule/x86_64.swiftmodule /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Modules/Alamofire.swiftmodule/x86_64.swiftmodule /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SQLite.swift/SQLite.framework/Modules/SQLite.swiftmodule/x86_64.swiftmodule /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Hex/Hex.framework/Modules/Hex.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreMedia.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/simd.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/AVFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreAudio.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Headers/SwiftyJSON-umbrella.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Headers/Alamofire-umbrella.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SQLite.swift/SQLite.framework/Headers/SQLite.swift-umbrella.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Hex/Hex.framework/Headers/Hex-umbrella.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SQLite.swift/SQLite.framework/Headers/SQLite.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SQLite.swift/SQLite.framework/Headers/SQLite-Bridging.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Headers/SwiftyJSON-Swift.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Headers/Alamofire-Swift.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SQLite.swift/SQLite.framework/Headers/SQLite-Swift.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Hex/Hex.framework/Headers/Hex-Swift.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Hex/Hex.framework/Headers/Hex.h /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Modules/module.modulemap /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Modules/module.modulemap /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/SQLite.swift/SQLite.framework/Modules/module.modulemap /Users/student/VGLogger/DerivedData/Build/Products/Debug-iphonesimulator/Hex/Hex.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.0.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVFoundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.0.sdk/System/Library/Frameworks/SafariServices.framework/Headers/SafariServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.0.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers/AudioToolbox.apinotes
|
D
|
module dgl.ext.NV_fragment_program4;
import dgl.opengl;
import dgl.glext;
version( D_Version2 ) {
import std.string : containsPattern = count;
import std.conv;
} else {
import tango.text.Util : containsPattern;
import tango.stdc.stringz : fromStringz;
alias char[] string;
}
private ushort extensionId__ = 78;
alias extensionId__ NV_fragment_program4;
import dgl.ext.NV_gpu_program4;
version (DglNoExtSupportAsserts) {
} else {
version = DglExtSupportAsserts;
}
static this() {
if (__extSupportCheckingFuncs.length <= extensionId__) {
__extSupportCheckingFuncs.length = extensionId__ + 1;
}
__extSupportCheckingFuncs[extensionId__] = &__supported;
}
version (all) {
public {
}
private {
extern (System) {
}
}
public {
}
private final bool __supported(GL gl_) {
auto gl = _getGL(gl_);
if (extensionId__ < cast(int)gl.extFuncs.length && gl.extFuncs[extensionId__] !is null) {
return gl.extFuncs[extensionId__][0] !is null;
}
synchronized (gl) {
if (extensionId__ < cast(int)gl.extFuncs.length && gl.extFuncs[extensionId__] !is null) {
return gl.extFuncs[extensionId__][0] !is null;
}
if (gl.extFuncs.length <= extensionId__) {
gl.extFuncs.length = extensionId__ + 1;
version (DglExtSupportAsserts) {
gl.extEnabled.length = extensionId__ + 1;
}
}
gl.extFuncs[extensionId__] = loadFunctions__(gl_);
return gl.extFuncs[extensionId__][0] !is null;
}
}
private void*[] loadFunctions__(GL gl) {
void*[] funcAddr = new void*[1];
{
char* extP = gl.GetString(GL_EXTENSIONS);
version( D_Version2 ) {
string extStr = extP is null ? null : to!(string)(extP);
} else {
string extStr = extP is null ? null : fromStringz(extP);
}
if (!extStr.containsPattern("GL_NV_fragment_program4")) { funcAddr[0] = null; return funcAddr; }
}
funcAddr[0] = cast(void*)≷
return funcAddr;
}
}
else {
private final bool __supported(GL gl_) {
return false;
}
}
|
D
|
/Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Single.o : /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Deprecated.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Cancelable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ObservableType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ObserverType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Reactive.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/RecursiveLock.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DeprecationWarner.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Errors.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/AtomicInt.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Event.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/First.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Extensions/String+Rx.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Rx.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/Platform.Linux.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/Target\ Support\ Files/RxAtomic/RxAtomic-umbrella.h /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxAtomic/RxAtomic/include/RxAtomic.h /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/build/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/build/Pods.build/Debug-iphonesimulator/RxAtomic.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Single~partial.swiftmodule : /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Deprecated.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Cancelable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ObservableType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ObserverType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Reactive.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/RecursiveLock.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DeprecationWarner.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Errors.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/AtomicInt.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Event.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/First.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Extensions/String+Rx.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Rx.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/Platform.Linux.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/Target\ Support\ Files/RxAtomic/RxAtomic-umbrella.h /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxAtomic/RxAtomic/include/RxAtomic.h /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/build/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/build/Pods.build/Debug-iphonesimulator/RxAtomic.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Single~partial.swiftdoc : /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Deprecated.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Cancelable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ObservableType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ObserverType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Reactive.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/RecursiveLock.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DeprecationWarner.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Errors.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/AtomicInt.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Event.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/First.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Extensions/String+Rx.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Rx.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/Platform/Platform.Linux.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/Target\ Support\ Files/RxAtomic/RxAtomic-umbrella.h /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxAtomic/RxAtomic/include/RxAtomic.h /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/build/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/build/Pods.build/Debug-iphonesimulator/RxAtomic.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
|
D
|
// PERMUTE_ARGS:
// REQUIRED_ARGS: -D -Dd${RESULTS_DIR}/compilable -o-
// TEST_OUTPUT_FILE: extra-files/ddoc_markdown_headings.html
// OUTPUT_FILES: ${RESULTS_DIR}/compilable/ddoc_markdown_headings.html
/++
# ATX-Style Headings
# H1
## H2
### H3
#### H4
##### H5
###### H6
### headings
## with initial
# spaces
## heading with *emphasis*
## heading with trailing `#`'s #######
## heading with trailing literal ##'s
## heading with another trailing literal#
## heading with backslash-escaped trailing #\##
## Some empty headers:
##
#
### ###
# Not Headings
#hashtag not a heading because there's no space after the `#`
####### Not a heading because it has more than 6 `#`'s
\## Not a heading because of the preceeding backslash
+/
module ddoc_markdown_headings;
|
D
|
/Users/anton/Developer/BellmanBindings-iOS/cargo/target/release/build/num-bigint-c09b2ca4914062ef/build_script_build-c09b2ca4914062ef: /Users/anton/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.2.2/build.rs
/Users/anton/Developer/BellmanBindings-iOS/cargo/target/release/build/num-bigint-c09b2ca4914062ef/build_script_build-c09b2ca4914062ef.d: /Users/anton/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.2.2/build.rs
/Users/anton/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.2.2/build.rs:
|
D
|
module pegged.examples.csv;
import pegged.grammar;
version(unittest)
{
import std.stdio;
}
mixin(grammar(`
CSV:
CsvFile <- Line* LastLine
Line <- :S* Item (:Sep Item)* :endOfLine
LastLine <- :S* Item (:Sep Item)* eoi
Item <- SimpleField
/ QuotedField
/ EmptyField
SimpleField <~ (!eoi !endOfLine !S !',' !doublequote .)+ :S*
QuotedField <~ doublequote EscapedField doublequote :S*
EscapedField <~ SubField (doublequote doublequote SubField)*
SubField <~ (!doublequote !eoi .)+
EmptyField <- eps :S*
Sep <- ',' :S*
S <- (' ' / '\t')
`));
unittest
{
assert(CSV("a,b,c").successful);
assert(CSV("a1,b2,c3, 3.14159").successful);
assert(CSV(`a1,,,b2,c3, 3.14159, άλφα, "abc", "abc""def"`).successful);
assert(CSV("1,2,3,").successful);
assert(CSV("1,2,,3").successful);
assert(CSV("1,,,,,").successful);
assert(CSV(",1").successful);
assert(CSV("").successful);
auto p1 = CSV(
"1, 2 , 3
4, 5, 6,,
7");
assert(p1.children[0].children.length == 3); // 3 lines
assert(p1.children[0].children[0].matches == ["1", "2", "3"]);
assert(p1.children[0].children[1].matches == ["4","5","6","",""]);
assert(p1.children[0].children[2].matches == ["7"]);
assert(CSV("1,
2,
3,
4,
").successful);
assert(!CSV("1 2 3").successful);
}
|
D
|
module dlangide.ui.dsourceedit;
import dlangui.core.logger;
import dlangui.core.signals;
import dlangui.graphics.drawbuf;
import dlangui.widgets.editors;
import dlangui.widgets.srcedit;
import dlangui.widgets.menu;
import dlangui.widgets.popup;
import ddc.lexer.textsource;
import ddc.lexer.exceptions;
import ddc.lexer.tokenizer;
import dlangide.workspace.workspace;
import dlangide.workspace.project;
import dlangide.ui.commands;
import dlangide.ui.settings;
import dlangide.tools.d.dsyntax;
import dlangide.tools.editorTool;
import ddebug.common.debugger;
import std.algorithm;
import std.utf : toUTF8, toUTF32;
interface BreakpointListChangeListener {
void onBreakpointListChanged(ProjectSourceFile sourceFile, Breakpoint[] breakpoints);
}
interface BookmarkListChangeListener {
void onBookmarkListChanged(ProjectSourceFile sourceFile, EditorBookmark[] bookmarks);
}
/// DIDE source file editor
class DSourceEdit : SourceEdit, EditableContentMarksChangeListener {
this(string ID) {
super(ID);
styleId = null;
backgroundColor = style.customColor("edit_background");
onThemeChanged();
//setTokenHightlightColor(TokenCategory.Identifier, 0x206000); // no colors
MenuItem editPopupItem = new MenuItem(null);
editPopupItem.add(ACTION_EDIT_COPY, ACTION_EDIT_PASTE, ACTION_EDIT_CUT, ACTION_EDIT_UNDO,
ACTION_EDIT_REDO, ACTION_EDIT_INDENT, ACTION_EDIT_UNINDENT, ACTION_EDIT_TOGGLE_LINE_COMMENT, ACTION_GET_COMPLETIONS,
ACTION_GO_TO_DEFINITION, ACTION_DEBUG_TOGGLE_BREAKPOINT);
//ACTION_GO_TO_DEFINITION, ACTION_GET_COMPLETIONS
popupMenu = editPopupItem;
showIcons = true;
showFolding = true;
content.marksChanged = this;
}
this() {
this("SRCEDIT");
}
Signal!BreakpointListChangeListener breakpointListChanged;
Signal!BookmarkListChangeListener bookmarkListChanged;
/// handle theme change: e.g. reload some themed resources
override void onThemeChanged() {
backgroundColor = style.customColor("edit_background");
setTokenHightlightColor(TokenCategory.Comment, style.customColor("syntax_highlight_comment")); // green
setTokenHightlightColor(TokenCategory.Keyword, style.customColor("syntax_highlight_keyword")); // blue
setTokenHightlightColor(TokenCategory.String, style.customColor("syntax_highlight_string")); // brown
setTokenHightlightColor(TokenCategory.Character, style.customColor("syntax_highlight_character")); // brown
setTokenHightlightColor(TokenCategory.Error, style.customColor("syntax_highlight_error")); // red
setTokenHightlightColor(TokenCategory.Comment_Documentation, style.customColor("syntax_highlight_comment_documentation"));
super.onThemeChanged();
}
protected IDESettings _settings;
@property DSourceEdit settings(IDESettings s) {
_settings = s;
return this;
}
@property IDESettings settings() {
return _settings;
}
void applySettings() {
if (!_settings)
return;
tabSize = _settings.tabSize;
useSpacesForTabs = _settings.useSpacesForTabs;
smartIndents = _settings.smartIndents;
smartIndentsAfterPaste = _settings.smartIndentsAfterPaste;
}
protected EditorTool _editorTool;
@property EditorTool editorTool() { return _editorTool; }
@property EditorTool editorTool(EditorTool tool) { return _editorTool = tool; };
protected ProjectSourceFile _projectSourceFile;
@property ProjectSourceFile projectSourceFile() { return _projectSourceFile; }
/// load by filename
override bool load(string fn) {
_projectSourceFile = null;
bool res = super.load(fn);
setSyntaxSupport();
return res;
}
@property bool isDSourceFile() {
return filename.endsWith(".d") || filename.endsWith(".dd") || filename.endsWith(".dh") || filename.endsWith(".ddoc");
}
override protected MenuItem getLeftPaneIconsPopupMenu(int line) {
MenuItem menu = super.getLeftPaneIconsPopupMenu(line);
if (isDSourceFile) {
Action action = ACTION_DEBUG_TOGGLE_BREAKPOINT.clone();
action.longParam = line;
action.objectParam = this;
menu.add(action);
action = ACTION_DEBUG_ENABLE_BREAKPOINT.clone();
action.longParam = line;
action.objectParam = this;
menu.add(action);
action = ACTION_DEBUG_DISABLE_BREAKPOINT.clone();
action.longParam = line;
action.objectParam = this;
menu.add(action);
}
return menu;
}
uint _executionLineHighlightColor = 0x808080FF;
int _executionLine = -1;
@property int executionLine() { return _executionLine; }
@property void executionLine(int line) {
if (line == _executionLine)
return;
_executionLine = line;
if (_executionLine >= 0) {
setCaretPos(_executionLine, 0, true);
}
invalidate();
}
/// override to custom highlight of line background
override protected void drawLineBackground(DrawBuf buf, int lineIndex, Rect lineRect, Rect visibleRect) {
if (lineIndex == _executionLine) {
buf.fillRect(visibleRect, _executionLineHighlightColor);
}
}
void setSyntaxSupport() {
if (isDSourceFile) {
content.syntaxSupport = new SimpleDSyntaxSupport(filename);
} else {
content.syntaxSupport = null;
}
}
/// returns project import paths - if file from project is opened in current editor
string[] importPaths() {
if (_projectSourceFile)
return _projectSourceFile.project.importPaths;
return null;
}
/// load by project item
bool load(ProjectSourceFile f) {
if (!load(f.filename)) {
_projectSourceFile = null;
return false;
}
_projectSourceFile = f;
setSyntaxSupport();
return true;
}
/// save to the same file
bool save() {
return _content.save();
}
void insertCompletion(dstring completionText) {
TextRange range;
TextPosition p = caretPos;
range.start = range.end = p;
dstring lineText = content.line(p.line);
dchar prevChar = p.pos > 0 ? lineText[p.pos - 1] : 0;
dchar nextChar = p.pos < lineText.length ? lineText[p.pos] : 0;
if (isIdentMiddleChar(prevChar)) {
while(range.start.pos > 0 && isIdentMiddleChar(lineText[range.start.pos - 1]))
range.start.pos--;
if (isIdentMiddleChar(nextChar)) {
while(range.end.pos < lineText.length && isIdentMiddleChar(lineText[range.end.pos]))
range.end.pos++;
}
}
EditOperation edit = new EditOperation(EditAction.Replace, range, completionText);
_content.performOperation(edit, this);
setFocus();
}
/// override to handle specific actions
override bool handleAction(const Action a) {
import ddc.lexer.tokenizer;
if (a) {
switch (a.id) {
case IDEActions.FileSave:
save();
return true;
case IDEActions.InsertCompletion:
insertCompletion(a.label);
return true;
case IDEActions.DebugToggleBreakpoint:
case IDEActions.DebugEnableBreakpoint:
case IDEActions.DebugDisableBreakpoint:
handleBreakpointAction(a);
return true;
case EditorActions.ToggleBookmark:
super.handleAction(a);
notifyBookmarkListChanged();
return true;
default:
break;
}
}
return super.handleAction(a);
}
protected void addBreakpoint(int line) {
import std.path;
Breakpoint bp = new Breakpoint();
bp.file = baseName(filename);
bp.line = line + 1;
bp.fullFilePath = filename;
if (projectSourceFile) {
bp.projectName = toUTF8(projectSourceFile.project.name);
bp.projectFilePath = projectSourceFile.project.absoluteToRelativePath(filename);
}
LineIcon icon = new LineIcon(LineIconType.breakpoint, line, bp);
content.lineIcons.add(icon);
notifyBreakpointListChanged();
}
protected void removeBreakpoint(int line, LineIcon icon) {
content.lineIcons.remove(icon);
notifyBreakpointListChanged();
}
void setBreakpointList(Breakpoint[] breakpoints) {
// remove all existing breakpoints
content.lineIcons.removeByType(LineIconType.breakpoint);
// add new breakpoints
foreach(bp; breakpoints) {
LineIcon icon = new LineIcon(LineIconType.breakpoint, bp.line - 1, bp);
content.lineIcons.add(icon);
}
}
Breakpoint[] getBreakpointList() {
LineIcon[] icons = content.lineIcons.findByType(LineIconType.breakpoint);
Breakpoint[] breakpoints;
foreach(icon; icons) {
Breakpoint bp = cast(Breakpoint)icon.objectParam;
if (bp)
breakpoints ~= bp;
}
return breakpoints;
}
void setBookmarkList(EditorBookmark[] bookmarks) {
// remove all existing breakpoints
content.lineIcons.removeByType(LineIconType.bookmark);
// add new breakpoints
foreach(bp; bookmarks) {
LineIcon icon = new LineIcon(LineIconType.bookmark, bp.line - 1);
content.lineIcons.add(icon);
}
}
EditorBookmark[] getBookmarkList() {
import std.path;
LineIcon[] icons = content.lineIcons.findByType(LineIconType.bookmark);
EditorBookmark[] bookmarks;
if (projectSourceFile) {
foreach(icon; icons) {
EditorBookmark bp = new EditorBookmark();
bp.line = icon.line + 1;
bp.file = baseName(filename);
bp.projectName = projectSourceFile.project.name8;
bp.fullFilePath = filename;
bp.projectFilePath = projectSourceFile.project.absoluteToRelativePath(filename);
bookmarks ~= bp;
}
}
return bookmarks;
}
protected void onMarksChange(EditableContent content, LineIcon[] movedMarks, LineIcon[] removedMarks) {
bool changed = false;
bool bookmarkChanged = false;
foreach(moved; movedMarks) {
if (moved.type == LineIconType.breakpoint) {
Breakpoint bp = cast(Breakpoint)moved.objectParam;
if (bp) {
// update Breakpoint line
bp.line = moved.line + 1;
changed = true;
}
} else if (moved.type == LineIconType.bookmark) {
EditorBookmark bp = cast(EditorBookmark)moved.objectParam;
if (bp) {
// update Breakpoint line
bp.line = moved.line + 1;
bookmarkChanged = true;
}
}
}
foreach(removed; removedMarks) {
if (removed.type == LineIconType.breakpoint) {
Breakpoint bp = cast(Breakpoint)removed.objectParam;
if (bp) {
changed = true;
}
} else if (removed.type == LineIconType.bookmark) {
EditorBookmark bp = cast(EditorBookmark)removed.objectParam;
if (bp) {
bookmarkChanged = true;
}
}
}
if (changed)
notifyBreakpointListChanged();
if (bookmarkChanged)
notifyBookmarkListChanged();
}
protected void notifyBreakpointListChanged() {
if (projectSourceFile) {
if (breakpointListChanged.assigned)
breakpointListChanged(projectSourceFile, getBreakpointList());
}
}
protected void notifyBookmarkListChanged() {
if (projectSourceFile) {
if (bookmarkListChanged.assigned)
bookmarkListChanged(projectSourceFile, getBookmarkList());
}
}
protected void handleBreakpointAction(const Action a) {
int line = a.longParam >= 0 ? cast(int)a.longParam : caretPos.line;
LineIcon icon = content.lineIcons.findByLineAndType(line, LineIconType.breakpoint);
switch(a.id) {
case IDEActions.DebugToggleBreakpoint:
if (icon)
removeBreakpoint(line, icon);
else
addBreakpoint(line);
break;
case IDEActions.DebugEnableBreakpoint:
break;
case IDEActions.DebugDisableBreakpoint:
break;
default:
break;
}
}
/// override to handle specific actions state (e.g. change enabled state for supported actions)
override bool handleActionStateRequest(const Action a) {
switch (a.id) {
case IDEActions.GoToDefinition:
case IDEActions.GetCompletionSuggestions:
case IDEActions.DebugToggleBreakpoint:
case IDEActions.DebugEnableBreakpoint:
case IDEActions.DebugDisableBreakpoint:
if (isDSourceFile)
a.state = ACTION_STATE_ENABLED;
else
a.state = ACTION_STATE_DISABLE;
return true;
default:
return super.handleActionStateRequest(a);
}
}
void showCompletionPopup(dstring[] suggestions) {
if(suggestions.length == 0) {
setFocus();
return;
}
if (suggestions.length == 1) {
insertCompletion(suggestions[0]);
return;
}
MenuItem completionPopupItems = new MenuItem(null);
//Add all the suggestions.
foreach(int i, dstring suggestion ; suggestions) {
auto action = new Action(IDEActions.InsertCompletion, suggestion);
completionPopupItems.add(action);
}
completionPopupItems.updateActionState(this);
PopupMenu popupMenu = new PopupMenu(completionPopupItems);
popupMenu.menuItemAction = this;
popupMenu.maxHeight(400);
popupMenu.selectItem(0);
PopupWidget popup = window.showPopup(popupMenu, this, PopupAlign.Point | PopupAlign.Right, textPosToClient(_caretPos).left + left + _leftPaneWidth, textPosToClient(_caretPos).top + top + margins.top);
popup.setFocus();
popup.popupClosed = delegate(PopupWidget source) { setFocus(); };
popup.flags = PopupFlags.CloseOnClickOutside;
Log.d("Showing popup at ", textPosToClient(_caretPos).left, " ", textPosToClient(_caretPos).top);
}
}
|
D
|
module winmain;
//https://github.com/smjgordon/bindings.git
//put win32 bindings in ...\dmd2\src\druntime\import\win32
import core.runtime;
import core.sys.windows.windows;
import core.sys.windows.commctrl;
import std.string;
import std.utf;
import std.stdio;
import file_pane;
import window_anchor;
import windows_etc;
import worker_thread_module;
import resource;
import console;
enum epane_id{left,right};
class MainWindow
{
HWND hinstance;
HWND hwnd;
HWND hmenu;
HWND hpanel_left,hpanel_right;
HWND hsplit;
HWND hcmd_info,hcommand;
HWND hgrippy;
WORKER_CONTROL wctrl;
CONTROL_ANCHOR[] main_win_achor=[
{IDC_CMD_PATH, ANCHOR_LEFT|ANCHOR_BOTTOM},
{IDC_CMD_EDIT, ANCHOR_LEFT|ANCHOR_RIGHT|ANCHOR_BOTTOM},
{IDC_GRIPPY, ANCHOR_RIGHT|ANCHOR_BOTTOM}
];
enum esplit{vertical,horizontal};
esplit split_style=esplit.vertical;
float split_percent=.50;
FilePane[2] fpanes;
void get_handles(HWND hparent)
{
struct CTRL_LIST{HWND *hwnd; int idc;}
CTRL_LIST[] ctrl_list=[
{&hpanel_left, IDC_FILE_PANEL_LEFT},
{&hpanel_right, IDC_FILE_PANEL_RIGHT},
{&hcmd_info, IDC_CMD_PATH},
{&hcommand, IDC_CMD_EDIT},
{&hgrippy, IDC_GRIPPY}
];
foreach(ctrl;ctrl_list){
*ctrl.hwnd=GetDlgItem(hparent,ctrl.idc);
}
}
this(HINSTANCE hinst,int dlg_id)
{
LPARAM lparam;
hinstance=hinst;
hwnd=CreateDialogParam(hinstance,MAKEINTRESOURCE(dlg_id),NULL,&main_win_proc,cast(LPARAM)cast(void*)this);
if(hwnd==NULL){
MessageBox(NULL,"Unable to create window","ERROR",MB_OK|MB_SYSTEMMODAL);
return;
}
get_handles(hwnd);
load_menu(hwnd,IDR_MAIN_MENU);
init_grippy(hwnd,IDC_GRIPPY);
anchor_init(hwnd,main_win_achor);
create_fpanels(hwnd);
resize_main_win();
if(initialize_worker_control(wctrl)){
wctrl.hthread=CreateThread(NULL,0,&worker_thread,cast(void*)&wctrl,0,&wctrl.thread_id);
}
}
nothrow
int load_menu(HWND hparent,int menu_id)
{
int result=FALSE;
HMENU hmenu=LoadMenu(hinstance,MAKEINTRESOURCE(menu_id));
if(hmenu!=NULL){
RECT rect;
int delta;
GetClientRect(hparent,&rect);
delta=rect.bottom-rect.top;
SetMenu(hparent,hmenu);
GetClientRect(hparent,&rect);
delta-=rect.bottom-rect.top;
if(delta<0)
delta=0;
foreach(idc;[IDC_CMD_PATH,IDC_CMD_EDIT,IDC_GRIPPY,IDC_FILE_PANEL_LEFT,IDC_FILE_PANEL_RIGHT]){
import std.algorithm.comparison;
HWND htmp=GetDlgItem(hwnd,idc);
int x,y,h,w;
int flag=SWP_NOSIZE|SWP_NOZORDER;
GetClientRect(htmp,&rect);
MapWindowPoints(htmp,hparent,cast(POINT*)&rect,2);
x=rect.left;
y=rect.top-delta;
if(idc.among(IDC_FILE_PANEL_LEFT,IDC_FILE_PANEL_RIGHT)){
flag=SWP_NOZORDER;
y+=delta;
w=rect.right-rect.left;
h=rect.bottom-rect.top-delta;
}
SetWindowPos(htmp,NULL,x,y,w,h,flag);
}
result=TRUE;
}
return result;
}
int create_fpanels(HWND hparent)
{
int result=FALSE;
struct CTRL_LIST{HWND *hwnd; int idc; epane_id eid;}
CTRL_LIST[] ctrl_list=[
{&hpanel_left, IDC_FILE_PANEL_LEFT, epane_id.left},
{&hpanel_right, IDC_FILE_PANEL_RIGHT, epane_id.right}
];
foreach(i,ref ctrl;ctrl_list){
if(init_pane(hparent,fpanes[i],ctrl.idc,ctrl.eid))
*ctrl.hwnd=fpanes[i].hwnd;
}
return result;
}
int init_pane(HWND hparent,ref FilePane fpane,int idc,epane_id id)
{
int result=FALSE;
fpane=new FilePane(hinstance,hparent,id,idc);
if(fpane.hwnd!=NULL){
result=TRUE;
}
return result;
}
int init_grippy(HWND hparent,int idc)
{
int result=FALSE;
HWND hgrippy;
LONG style;
if(hparent==NULL)
return result;
hgrippy=GetDlgItem(hparent,idc);
if(hgrippy==NULL)
return result;
style=WS_CHILD|WS_VISIBLE|SBS_SIZEGRIP;
result=SetWindowLong(hgrippy,GWL_STYLE,style);
return result;
}
nothrow
int resize_main_win()
{
anchor_resize(hwnd,main_win_achor);
resize_panes();
return TRUE;
}
nothrow
int resize_panes()
{
int result=FALSE;
int bottom_y;
{
RECT rect;
GetClientRect(hcommand,&rect);
MapWindowPoints(hcommand,hwnd,cast(LPPOINT)&rect,2);
bottom_y=rect.top;
}
HWND hparent;
int center;
int x1,y1,x2,y2;
int w1,h1,w2,h2;
RECT rect;
hparent=hwnd;
if(hparent==NULL)
return result;
GetClientRect(hparent,&rect);
if(split_style==esplit.horizontal){
int height=bottom_y;
center=cast(int)(cast(float)height*split_percent);
x1=x2=0;
y1=0;
h1=center-3;
y2=center+3;
h2=height-y2;
w1=w2=rect.right-rect.left;
SetWindowPos(hpanel_left,NULL,x1,y1,w1,h1,SWP_NOZORDER);
SetWindowPos(hpanel_right,NULL,x2,y2,w2,h2,SWP_NOZORDER);
}
else{ //vertical
int width=(rect.right-rect.left);
center=cast(int)(cast(float)width*split_percent);
x1=0;
y1=y2=0;
w1=center-3;
x2=center+3;
w2=width-x2;
h1=h2=bottom_y;
SetWindowPos(hpanel_left,NULL,x1,y1,w1,h1,SWP_NOZORDER);
SetWindowPos(hpanel_right,NULL,x2,y2,w2,h2,SWP_NOZORDER);
}
return result;
}
}
nothrow
extern (Windows)
BOOL main_win_proc(HWND hwnd,UINT msg,WPARAM wparam,LPARAM lparam)
{
switch(msg){
case WM_INITDIALOG:
MainWindow mwin=cast(MainWindow)cast(void*)lparam;
if(mwin is null)
break;
/*
mwin.load_menu(hwnd,IDR_MAIN_MENU);
*/
//create_fileview(hwnd,&ghfileview1,0);
//create_fileview(hwnd,&ghfileview2,0);
break;
case WM_COMMAND:
switch(LOWORD(wparam)){
case IDCANCEL:
PostQuitMessage(0);
break;
default:
break;
}
break;
case WM_SIZE:
case WM_SIZING:
if(main_win!is null)
main_win.resize_main_win();
break;
default:
break;
}
return 0;
}
__gshared MainWindow main_win;
extern (Windows)
int WinMain(HINSTANCE hinstance, HINSTANCE hprevinstance, LPSTR cmd_line, int cmd_show)
{
MSG msg;
INITCOMMONCONTROLSEX ctrls;
Runtime.initialize();
ctrls.dwSize=ctrls.sizeof;
ctrls.dwICC=ICC_LISTVIEW_CLASSES;
InitCommonControlsEx(&ctrls);
open_console();
set_console_size(120,80,800);
main_win=new MainWindow(hinstance,IDD_MAIN_DLG);
ShowWindow(main_win.hwnd,SW_SHOW);
move_console(1920,0);
add_work_task(COMMAND.CMD_LOAD_SETTINGS,"","");
while(GetMessage(&msg,NULL,0,0))
{
if(!IsDialogMessage(main_win.hwnd,&msg)){
TranslateMessage(&msg);
DispatchMessage(&msg);
}
}
return 0;
}
|
D
|
/**
Internal module with common functionality for REST interface generators.
Copyright: © 2015 RejectedSoftware e.K.
License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file.
Authors: Sönke Ludwig
*/
module vibe.web.internal.rest.common;
import vibe.web.rest;
/**
Provides all necessary tools to implement an automated REST interface.
The given `TImpl` must be an `interface` or a `class` deriving from one.
*/
/*package(vibe.web.web)*/ struct RestInterface(TImpl)
if (is(TImpl == class) || is(TImpl == interface))
{
import std.traits : FunctionTypeOf, InterfacesTuple, MemberFunctionsTuple,
ParameterIdentifierTuple, ParameterStorageClass,
ParameterStorageClassTuple, ParameterTypeTuple, ReturnType;
import std.typetuple : TypeTuple;
import vibe.inet.url : URL;
import vibe.internal.meta.funcattr : IsAttributedParameter;
import vibe.internal.meta.uda;
/// The settings used to generate the interface
RestInterfaceSettings settings;
/// Full base path of the interface, including an eventual `@path` annotation.
string basePath;
/// Full base URL of the interface, including an eventual `@path` annotation.
string baseURL;
// determine the implementation interface I and check for validation errors
private alias BaseInterfaces = InterfacesTuple!TImpl;
static assert (BaseInterfaces.length > 0 || is (TImpl == interface),
"Cannot registerRestInterface type '" ~ TImpl.stringof
~ "' because it doesn't implement an interface");
static if (BaseInterfaces.length > 1)
pragma(msg, "Type '" ~ TImpl.stringof ~ "' implements more than one interface: make sure the one describing the REST server is the first one");
static if (is(TImpl == interface))
alias I = TImpl;
else
alias I = BaseInterfaces[0];
static assert(getInterfaceValidationError!I is null, getInterfaceValidationError!(I));
/// The name of each interface member
enum memberNames = [__traits(allMembers, I)];
/// Aliases to all interface methods
alias AllMethods = GetAllMethods!();
/** Aliases for each route method
This tuple has the same number of entries as `routes`.
*/
alias RouteFunctions = GetRouteFunctions!();
enum routeCount = RouteFunctions.length;
/** Information about each route
This array has the same number of fields as `RouteFunctions`
*/
Route[routeCount] routes;
/// Static (compile-time) information about each route
static if (routeCount) static const StaticRoute[routeCount] staticRoutes = computeStaticRoutes();
else static const StaticRoute[0] staticRoutes;
/** Aliases for each sub interface method
This array has the same number of entries as `subInterfaces` and
`SubInterfaceTypes`.
*/
alias SubInterfaceFunctions = GetSubInterfaceFunctions!();
/** The type of each sub interface
This array has the same number of entries as `subInterfaces` and
`SubInterfaceFunctions`.
*/
alias SubInterfaceTypes = GetSubInterfaceTypes!();
enum subInterfaceCount = SubInterfaceFunctions.length;
/** Information about sub interfaces
This array has the same number of entries as `SubInterfaceFunctions` and
`SubInterfaceTypes`.
*/
SubInterface[subInterfaceCount] subInterfaces;
/** Fills the struct with information.
Params:
settings = Optional settings object.
*/
this(RestInterfaceSettings settings, bool is_client)
{
import vibe.internal.meta.uda : findFirstUDA;
this.settings = settings ? settings.dup : new RestInterfaceSettings;
if (is_client) {
assert(this.settings.baseURL != URL.init,
"RESTful clients need to have a valid RestInterfaceSettings.baseURL set.");
} else if (this.settings.baseURL == URL.init) {
// use a valid dummy base URL to be able to construct sub-URLs
// for nested interfaces
this.settings.baseURL = URL("http://localhost/");
}
this.basePath = this.settings.baseURL.path.toString();
enum uda = findFirstUDA!(PathAttribute, I);
static if (uda.found) {
static if (uda.value.data == "") {
auto path = "/" ~ adjustMethodStyle(I.stringof, this.settings.methodStyle);
this.basePath = concatURL(this.basePath, path);
} else {
this.basePath = concatURL(this.basePath, uda.value.data);
}
}
URL bu = this.settings.baseURL;
bu.pathString = this.basePath;
this.baseURL = bu.toString();
computeRoutes();
computeSubInterfaces();
}
// copying this struct is costly, so we forbid it
@disable this(this);
private void computeRoutes()
{
foreach (si, RF; RouteFunctions) {
enum sroute = staticRoutes[si];
Route route;
route.functionName = sroute.functionName;
route.method = sroute.method;
static if (sroute.pathOverride) route.pattern = sroute.rawName;
else route.pattern = adjustMethodStyle(stripTUnderscore(sroute.rawName, settings), settings.methodStyle);
route.method = sroute.method;
route.parameters.length = sroute.parameters.length;
alias PT = ParameterTypeTuple!RF;
foreach (i, _; PT) {
enum sparam = sroute.parameters[i];
Parameter pi;
pi.name = sparam.name;
pi.kind = sparam.kind;
pi.isIn = sparam.isIn;
pi.isOut = sparam.isOut;
static if (sparam.kind != ParameterKind.attributed && sparam.fieldName.length == 0) {
pi.fieldName = stripTUnderscore(pi.name, settings);
} else pi.fieldName = sparam.fieldName;
static if (i == 0 && sparam.name == "id") {
route.pattern = concatURL(":id", route.pattern);
route.pathParts = PathPart(true, "id") ~ route.pathParts;
route.pathHasPlaceholders = true;
}
route.parameters[i] = pi;
final switch (pi.kind) {
case ParameterKind.query: route.queryParameters ~= pi; break;
case ParameterKind.body_: route.bodyParameters ~= pi; break;
case ParameterKind.header: route.headerParameters ~= pi; break;
case ParameterKind.internal: route.internalParameters ~= pi; break;
case ParameterKind.attributed: route.attributedParameters ~= pi; break;
}
}
route.fullPattern = concatURL(this.basePath, route.pattern);
extractPathParts(route);
routes[si] = route;
}
}
private static StaticRoute[routeCount] computeStaticRoutes()
{
assert(__ctfe);
StaticRoute[routeCount] ret;
foreach (fi, func; RouteFunctions) {
StaticRoute route;
route.functionName = __traits(identifier, func);
alias FuncType = FunctionTypeOf!func;
alias ParameterTypes = ParameterTypeTuple!FuncType;
alias ReturnType = std.traits.ReturnType!FuncType;
enum parameterNames = [ParameterIdentifierTuple!func];
enum meta = extractHTTPMethodAndName!(func, false)();
route.method = meta.method;
route.rawName = meta.url;
route.pathOverride = meta.hadPathUDA;
foreach (i, PT; ParameterTypes) {
enum pname = parameterNames[i];
alias WPAT = UDATuple!(WebParamAttribute, func);
// Comparison template for anySatisfy
//template Cmp(WebParamAttribute attr) { enum Cmp = (attr.identifier == ParamNames[i]); }
alias CompareParamName = GenCmp!("Loop", i, parameterNames[i]);
mixin(CompareParamName.Decl);
StaticParameter pi;
pi.name = parameterNames[i];
// determine in/out storage class
foreach (SC; ParameterStorageClassTuple!func) {
static if (SC & ParameterStorageClass.out_) {
pi.isOut = true;
} else static if (SC & ParameterStorageClass.ref_) {
pi.isIn = true;
pi.isOut = true;
} else {
pi.isIn = true;
}
}
// determine parameter source/destination
if (IsAttributedParameter!(func, pname)) {
pi.kind = ParameterKind.attributed;
} else static if (anySatisfy!(mixin(CompareParamName.Name), WPAT)) {
alias PWPAT = Filter!(mixin(CompareParamName.Name), WPAT);
pi.kind = PWPAT[0].origin;
pi.fieldName = PWPAT[0].field;
} else static if (pname.startsWith("_")) {
pi.kind = ParameterKind.internal;
pi.fieldName = parameterNames[i][1 .. $];
} else static if (i == 0 && pname == "id") {
pi.kind = ParameterKind.internal;
pi.fieldName = "id";
} else {
pi.kind = route.method == HTTPMethod.GET ? ParameterKind.query : ParameterKind.body_;
}
route.parameters ~= pi;
}
ret[fi] = route;
}
return ret;
}
private void computeSubInterfaces()
{
foreach (i, func; SubInterfaceFunctions) {
enum meta = extractHTTPMethodAndName!(func, false)();
static if (meta.hadPathUDA) string url = meta.url;
else string url = adjustMethodStyle(stripTUnderscore(meta.url, settings), settings.methodStyle);
SubInterface si;
si.settings = settings.dup;
si.settings.baseURL = URL(concatURL(this.baseURL, url, true));
subInterfaces[i] = si;
}
assert(subInterfaces.length == SubInterfaceFunctions.length);
}
private template GetSubInterfaceFunctions() {
template Impl(size_t idx) {
static if (idx < AllMethods.length) {
alias R = ReturnType!(AllMethods[idx]);
static if (is(R == interface)) {
alias Impl = TypeTuple!(AllMethods[idx], Impl!(idx+1));
} else {
alias Impl = Impl!(idx+1);
}
} else alias Impl = TypeTuple!();
}
alias GetSubInterfaceFunctions = Impl!0;
}
private template GetSubInterfaceTypes() {
template Impl(size_t idx) {
static if (idx < AllMethods.length) {
alias R = ReturnType!(FunctionTypeOf!(AllMethods[idx]));
static if (is(R == interface)) {
alias Impl = TypeTuple!(R, Impl!(idx+1));
} else {
alias Impl = Impl!(idx+1);
}
} else alias Impl = TypeTuple!();
}
alias GetSubInterfaceTypes = Impl!0;
}
private template GetRouteFunctions() {
template Impl(size_t idx) {
static if (idx < AllMethods.length) {
alias F = AllMethods[idx];
static if (!is(ReturnType!(FunctionTypeOf!F) == interface))
alias Impl = TypeTuple!(F, Impl!(idx+1));
else alias Impl = Impl!(idx+1);
} else alias Impl = TypeTuple!();
}
alias GetRouteFunctions = Impl!0;
}
private template GetAllMethods() {
template Impl(size_t idx) {
static if (idx < memberNames.length) {
enum name = memberNames[idx];
// WORKAROUND #1045 / @@BUG14375@@
static if (name.length != 0)
alias Impl = TypeTuple!(MemberFunctionsTuple!(I, name), Impl!(idx+1));
else alias Impl = Impl!(idx+1);
} else alias Impl = TypeTuple!();
}
alias GetAllMethods = Impl!0;
}
}
struct Route {
string functionName; // D name of the function
HTTPMethod method;
string pattern; // relative route path (relative to baseURL)
string fullPattern; // absolute version of 'pattern'
bool pathHasPlaceholders; // true if path/pattern contains any :placeholers
PathPart[] pathParts; // path separated into text and placeholder parts
Parameter[] parameters;
Parameter[] queryParameters;
Parameter[] bodyParameters;
Parameter[] headerParameters;
Parameter[] attributedParameters;
Parameter[] internalParameters;
}
struct PathPart {
/// interpret `text` as a parameter name (including the leading underscore) or as raw text
bool isParameter;
string text;
}
struct Parameter {
ParameterKind kind;
string name;
string fieldName;
bool isIn, isOut;
}
struct StaticRoute {
string functionName; // D name of the function
string rawName; // raw name as returned
bool pathOverride; // @path UDA was used
HTTPMethod method;
StaticParameter[] parameters;
}
struct StaticParameter {
ParameterKind kind;
string name;
string fieldName; // only set for parameters where the field name can be statically determined - use Parameter.fieldName in usual cases
bool isIn, isOut;
}
enum ParameterKind {
query, // req.query[]
body_, // JSON body
header, // req.header[]
attributed, // @before
internal // req.params[]
}
struct SubInterface {
RestInterfaceSettings settings;
}
private void extractPathParts(ref Route route)
{
import std.string : indexOf;
string p = route.pattern;
while (p.length) {
auto cidx = p.indexOf(':');
if (cidx < 0) break;
if (cidx > 0) route.pathParts ~= PathPart(false, p[0 .. cidx]);
p = p[cidx+1 .. $];
auto sidx = p.indexOf('/');
if (sidx < 0) sidx = p.length;
assert(sidx > 0, "Empty path placeholders are illegal.");
route.pathParts ~= PathPart(true, "_" ~ p[0 .. sidx]);
route.pathHasPlaceholders = true;
}
if (p.length) route.pathParts ~= PathPart(false, p);
}
unittest {
interface IDUMMY { void test(int dummy); }
class DUMMY : IDUMMY { void test(int) {} }
auto test = RestInterface!DUMMY(null, false);
}
unittest {
interface IDUMMY {}
class DUMMY : IDUMMY {}
auto test = RestInterface!DUMMY(null, false);
}
|
D
|
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/google/apis-client-generator/
* Modify at your own risk.
*/
module Google.Apis.Gmail.v1.Data.ListFiltersResponse;
import vibe.data.json: optional;
import std.typecons: Nullable;
import std.datetime : SysTime;
import std.conv: to;
import Google.Apis.Gmail.v1.GmailMyNullable;
import Google.Apis.Gmail.v1.Data.Filter;
/**
* Response for the ListFilters method.
*
* This is the D data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Gmail API. For a detailed explanation see:
*
*
* @author Robert Aron.
*/
public struct ListFiltersResponse {
/**
* List of a user's filters.
* The value may be {@code null}.
*/
@optional public Filter[] _filter;
/**
* List of a user's filters.
* @return value or {@code null} for none
*/
public Filter[] getFilter() {
return _filter;
}
/**
* List of a user's filters.
* @param filter filter or {@code null} for none
*/
public ListFiltersResponse setFilter(Filter[] _filter) {
this._filter = _filter;
return this;
}
}
|
D
|
import vibe.core.core;
import vibe.core.log;
import vibe.inet.url;
import vibe.http.server;
import vibe.http.websockets;
shared static this()
{
auto settings = new HTTPServerSettings;
// 10k + issue number -> Avoid bind errors
settings.port = 11332;
settings.bindAddresses = ["::1", "127.0.0.1"];
listenHTTP(settings, handleWebSockets((scope ws) {
assert(ws.receiveText() == "foo");
ws.send("hello");
assert(ws.receiveText() == "bar");
ws.close();
}));
runTask({
scope(exit) exitEventLoop(true);
connectWebSocket(URL("http://127.0.0.1:11332/"), (scope ws) {
ws.send("foo");
assert(ws.receiveText() == "hello");
ws.send("bar");
assert(!ws.waitForData);
ws.close();
logInfo("WebSocket test successful");
});
});
}
|
D
|
/Users/yermakovanton/Desktop/privatNbyTest/DerivedData/privatNbyTest/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/ParameterEncoding.o : /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/MultipartFormData.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/MultipartUpload.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/HTTPMethod.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/URLConvertible+URLRequestConvertible.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/OperationQueue+Alamofire.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/URLSessionConfiguration+Alamofire.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Alamofire.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Response.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/ParameterEncoding.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Session.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Validation.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/ServerTrustEvaluation.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/ResponseSerialization.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/RequestTaskMap.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/SessionStateProvider.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/ParameterEncoder.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/RequestRetrier.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/RequestAdapter.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/AFError.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Protector.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/EventMonitor.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Notifications.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/HTTPHeaders.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Result.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Request.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/yermakovanton/Desktop/privatNbyTest/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/yermakovanton/Desktop/privatNbyTest/DerivedData/privatNbyTest/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/yermakovanton/Desktop/privatNbyTest/DerivedData/privatNbyTest/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/ParameterEncoding~partial.swiftmodule : /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/MultipartFormData.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/MultipartUpload.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/HTTPMethod.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/URLConvertible+URLRequestConvertible.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/OperationQueue+Alamofire.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/URLSessionConfiguration+Alamofire.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Alamofire.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Response.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/ParameterEncoding.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Session.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Validation.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/ServerTrustEvaluation.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/ResponseSerialization.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/RequestTaskMap.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/SessionStateProvider.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/ParameterEncoder.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/RequestRetrier.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/RequestAdapter.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/AFError.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Protector.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/EventMonitor.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Notifications.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/HTTPHeaders.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Result.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Request.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/yermakovanton/Desktop/privatNbyTest/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/yermakovanton/Desktop/privatNbyTest/DerivedData/privatNbyTest/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/yermakovanton/Desktop/privatNbyTest/DerivedData/privatNbyTest/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/ParameterEncoding~partial.swiftdoc : /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/MultipartFormData.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/MultipartUpload.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/HTTPMethod.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/URLConvertible+URLRequestConvertible.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/OperationQueue+Alamofire.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/URLSessionConfiguration+Alamofire.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Alamofire.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Response.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/ParameterEncoding.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Session.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Validation.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/ServerTrustEvaluation.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/ResponseSerialization.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/RequestTaskMap.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/SessionStateProvider.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/ParameterEncoder.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/RequestRetrier.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/RequestAdapter.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/AFError.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Protector.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/EventMonitor.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Notifications.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/HTTPHeaders.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Result.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Request.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/yermakovanton/Desktop/privatNbyTest/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/yermakovanton/Desktop/privatNbyTest/DerivedData/privatNbyTest/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
|
D
|
module LD.Font;
import D2D;
import LD.Rect;
import LD.TextureManager;
import std.file;
struct CharInfo
{
char id;
int x, y, width, height;
int xoffset, yoffset;
int xadvance;
int textureN;
}
struct Kerning
{
char first;
char second;
byte amount;
}
struct FontInfo
{
int width, height;
int lineHeight;
int baseY;
Kerning[] kernings;
CharInfo[char] characters;
}
class Text : IDrawable
{
private:
static
{
FontInfo info;
Texture[int] fonts;
ShaderProgram shader;
}
RepeatedRectangle[] characters;
vec2 pos;
vec2 _scaling;
vec4 _color = vec4(1, 1, 1, 1);
float width, lh;
public:
this(string text, float scale)
{
int x = 0;
float iWidth = 1.0f / info.width;
float iHeight = 1.0f / info.height;
foreach (i, c; text)
{
if ((c in info.characters) !is null)
{
byte kerning = 0;
if (i > 0)
{
kerning = getKerning(text[i - 1], c);
}
auto r = Rect.createRepeatOff(fonts[info.characters[c].textureN],
vec2(x + info.characters[c].xoffset + kerning, info.characters[c].yoffset) * scale,
vec2(info.characters[c].width, info.characters[c].height) * scale,
vec2(info.characters[c].x * iWidth, info.characters[c].y * iHeight) +
vec2(info.characters[c].width * iWidth, info.characters[c].height * iHeight),
vec2(info.characters[c].x * iWidth, info.characters[c].y * iHeight));
characters ~= r;
x += info.characters[c].xadvance;
}
else
{
std.stdio.writeln("CHARACTER ", c, " NOT FOUND");
}
}
pos = vec2(0, 0);
_scaling = vec2(1, 1);
width = x * scale;
lh = info.lineHeight * scale;
}
public void set(string text, float scale)
{
int x = 0;
float iWidth = 1.0f / info.width;
float iHeight = 1.0f / info.height;
characters.length = 0;
foreach (i, c; text)
{
if ((c in info.characters) !is null)
{
byte kerning = 0;
if (i > 0)
{
kerning = getKerning(text[i - 1], c);
}
auto r = Rect.createRepeatOff(fonts[info.characters[c].textureN],
vec2(x + info.characters[c].xoffset + kerning, info.characters[c].yoffset) * scale,
vec2(info.characters[c].width, info.characters[c].height) * scale,
vec2(info.characters[c].x * iWidth, info.characters[c].y * iHeight) +
vec2(info.characters[c].width * iWidth, info.characters[c].height * iHeight),
vec2(info.characters[c].x * iWidth, info.characters[c].y * iHeight));
characters ~= r;
x += info.characters[c].xadvance;
}
else
{
std.stdio.writeln("CHARACTER ", c, " NOT FOUND");
}
}
width = x * scale;
lh = info.lineHeight * scale;
}
@property float textWidth()
{
return width;
}
@property float lineHeight()
{
return lh;
}
static byte getKerning(char a, char b)
{
foreach (kerning; info.kernings)
{
if (kerning.first == a && kerning.second == b)
return kerning.amount;
}
return 0;
}
@property ref vec2 position()
{
return pos;
}
@property ref vec4 color()
{
return _color;
}
void draw(IRenderTarget target, ShaderProgram shader = null)
{
matrixStack.push();
matrixStack.top = matrixStack.top * mat4.translation(position.x, position.y, 0);
foreach (c; characters)
{
this.shader.bind();
this.shader.set("color", _color);
c.draw(target, this.shader);
}
matrixStack.pop();
}
static void setShader(ShaderProgram shader)
{
Text.shader = shader;
}
static void setTexture(TextureManager textures, string fontPath)
{
static import std.regex;
import std.conv;
string[] lines = readText(fontPath ~ ".fnt").split("\n");
auto reg = std.regex.regex(r"\s+");
foreach (line; lines)
{
if (line.strip() == "")
continue;
string[] parts = std.regex.split(line, reg);
string type = parts[0];
parts = parts[1 .. $];
switch (type)
{
case "info":
break;
case "chars":
break;
case "kernings":
break;
case "common":
foreach (part; parts)
{
if (part.strip() == "")
continue;
string[] sides = part.split("=");
switch (sides[0])
{
case "lineHeight":
info.lineHeight = parse!(int)(sides[1]);
break;
case "base":
info.baseY = parse!(int)(sides[1]);
break;
case "scaleW":
info.width = parse!(int)(sides[1]);
break;
case "scaleH":
info.height = parse!(int)(sides[1]);
break;
case "pages":
break;
case "packed":
break;
case "alphaChnl":
break;
case "redChnl":
break;
case "greenChnl":
break;
case "blueChnl":
break;
default:
std.stdio.writeln("NOT FOUND: common.", sides[0]);
break;
}
}
break;
case "page":
int pgID = 0;
string file = "";
foreach (part; parts)
{
if (part.strip() == "")
continue;
string[] sides = part.split("=");
switch (sides[0])
{
case "id":
pgID = parse!(int)(sides[1]);
break;
case "file":
import std.algorithm;
file = sides[1].strip('"');
break;
default:
std.stdio.writeln("NOT FOUND: page.", sides[0]);
break;
}
}
textures.tryLoad(file);
fonts[pgID] = textures.get(file[0 .. file.indexOf(".")]);
break;
case "char":
CharInfo c;
foreach (part; parts)
{
if (part.strip() == "")
continue;
string[] sides = part.split("=");
switch (sides[0])
{
case "id":
c.id = cast(char) parse!(int)(sides[1]);
break;
case "x":
c.x = parse!(int)(sides[1]);
break;
case "y":
c.y = parse!(int)(sides[1]);
break;
case "width":
c.width = parse!(int)(sides[1]);
break;
case "height":
c.height = parse!(int)(sides[1]);
break;
case "xoffset":
c.xoffset = parse!(int)(sides[1]);
break;
case "yoffset":
c.yoffset = parse!(int)(sides[1]);
break;
case "xadvance":
c.xadvance = parse!(int)(sides[1]);
break;
case "page":
c.textureN = parse!(int)(sides[1]);
break;
case "chnl":
break;
default:
std.stdio.writeln("NOT FOUND: char.", sides[0]);
break;
}
}
info.characters[c.id] = c;
break;
case "kerning":
Kerning kerning;
foreach (part; parts)
{
if (part.strip() == "")
continue;
string[] sides = part.split("=");
switch (sides[0])
{
case "first":
kerning.first = cast(char) parse!(int)(sides[1]);
break;
case "second":
kerning.second = cast(char) parse!(int)(sides[1]);
break;
case "amount":
kerning.amount = parse!(byte)(sides[1]);
break;
default:
std.stdio.writeln("NOT FOUND: kerning.", sides[0]);
break;
}
}
info.kernings ~= kerning;
break;
default:
std.stdio.writeln("NOT FOUND: ", type);
break;
}
}
}
}
|
D
|
//****************************
// EVT_SCOPENSLASTDOOR_FUNC (letzte Tür vor dem Untoten Drachen!!!!!!!)
//****************************
func void EVT_SCOPENSLASTDOOR_FUNC ()
{
};
|
D
|
module example.ex05;
// Generic Vec2 variant
struct Vec2(T)
{
T x;
T y;
Vec2!T opBinary(string op)(const Vec2!T rhs) const
if (op == "+" || op == "-")
{
Vec2!T res;
res.x = mixin("x " ~ op ~ " rhs.x");
res.y = mixin("y " ~ op ~ " rhs.y");
return res;
}
}
// Eponymous template
template Value(alias T)
{
enum Value = T;
}
alias Secret = Value!42;
void fun()
{
enum ctval = Secret;
int val = Secret;
}
|
D
|
int f(int i)
{
if (i == 0)
return 1;
return i * f(i - 1);
}
pragma(msg, f== 120);
|
D
|
/Users/sharmpi/Documents/Piyush\ Data/Desktop\ Items/Swift/Demos/UnitTestingDemo/Build/Intermediates/UnitTestingDemo.build/Debug-iphonesimulator/UnitTestingDemo.build/Objects-normal/x86_64/AppDelegate.o : /Users/sharmpi/Documents/Piyush\ Data/Desktop\ Items/Swift/Demos/UnitTestingDemo/UnitTestingDemo/ViewController.swift /Users/sharmpi/Documents/Piyush\ Data/Desktop\ Items/Swift/Demos/UnitTestingDemo/UnitTestingDemo/AppDelegate.swift /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule
/Users/sharmpi/Documents/Piyush\ Data/Desktop\ Items/Swift/Demos/UnitTestingDemo/Build/Intermediates/UnitTestingDemo.build/Debug-iphonesimulator/UnitTestingDemo.build/Objects-normal/x86_64/AppDelegate~partial.swiftmodule : /Users/sharmpi/Documents/Piyush\ Data/Desktop\ Items/Swift/Demos/UnitTestingDemo/UnitTestingDemo/ViewController.swift /Users/sharmpi/Documents/Piyush\ Data/Desktop\ Items/Swift/Demos/UnitTestingDemo/UnitTestingDemo/AppDelegate.swift /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule
/Users/sharmpi/Documents/Piyush\ Data/Desktop\ Items/Swift/Demos/UnitTestingDemo/Build/Intermediates/UnitTestingDemo.build/Debug-iphonesimulator/UnitTestingDemo.build/Objects-normal/x86_64/AppDelegate~partial.swiftdoc : /Users/sharmpi/Documents/Piyush\ Data/Desktop\ Items/Swift/Demos/UnitTestingDemo/UnitTestingDemo/ViewController.swift /Users/sharmpi/Documents/Piyush\ Data/Desktop\ Items/Swift/Demos/UnitTestingDemo/UnitTestingDemo/AppDelegate.swift /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Users/sharmpi/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule
|
D
|
/Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/Core.build/LosslessDataConvertible.swift.o : /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/Data+Base64URL.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/NestedData.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/Thread+Async.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/Deprecated.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/NotFound.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/CodableReflection/ReflectionDecodable.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/CodableReflection/Decodable+Reflectable.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/Reflectable.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/LosslessDataConvertible.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/File.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/MediaType.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/OptionalType.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/Process+Execute.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/HeaderValue.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/DirectoryConfig.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/CaseInsensitiveString.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/Future+Unwrap.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/FutureEncoder.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/CoreError.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/String+Utilities.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/DataCoders.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/CodableReflection/ReflectionDecoders.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/Exports.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/Data+Hex.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/BasicKey.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/Core.build/LosslessDataConvertible~partial.swiftmodule : /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/Data+Base64URL.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/NestedData.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/Thread+Async.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/Deprecated.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/NotFound.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/CodableReflection/ReflectionDecodable.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/CodableReflection/Decodable+Reflectable.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/Reflectable.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/LosslessDataConvertible.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/File.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/MediaType.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/OptionalType.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/Process+Execute.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/HeaderValue.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/DirectoryConfig.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/CaseInsensitiveString.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/Future+Unwrap.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/FutureEncoder.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/CoreError.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/String+Utilities.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/DataCoders.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/CodableReflection/ReflectionDecoders.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/Exports.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/Data+Hex.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/BasicKey.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/Core.build/LosslessDataConvertible~partial.swiftdoc : /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/Data+Base64URL.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/NestedData.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/Thread+Async.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/Deprecated.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/NotFound.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/CodableReflection/ReflectionDecodable.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/CodableReflection/Decodable+Reflectable.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/Reflectable.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/LosslessDataConvertible.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/File.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/MediaType.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/OptionalType.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/Process+Execute.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/HeaderValue.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/DirectoryConfig.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/CaseInsensitiveString.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/Future+Unwrap.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/FutureEncoder.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/CoreError.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/String+Utilities.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/DataCoders.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/CodableReflection/ReflectionDecoders.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/Exports.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/Data+Hex.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/core/Sources/Core/BasicKey.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
|
D
|
module allegro5.allegro_image;
version(ALLEGRO_NO_PRAGMA_LIB) {}
else
{
pragma(lib, "allegro_image");
}
import allegro5.allegro;
nothrow @nogc extern (C)
{
bool al_init_image_addon();
void al_shutdown_image_addon();
uint al_get_allegro_image_version();
}
|
D
|
/*******************************************************************************
Request event dispatcher for use with multi-fiber requests.
Three types of events are handled:
1. "Signals" (ubyte codes) sent between fibers.
2. Messages received over the connection.
3. Connection readiness to send a payload.
4. The passing of an epoll event-loop cycle.
The types of events are handled somewhat differently, as follows:
1. Only one request handler fiber may register to be notified of each
type of signal.
2. Messages reveived over the connection are expected to begin with a
byte representing the message type. Only one request handler fiber
may register to be notified of each type of message.
3. Each request handler fiber may only register once (at a time) for
notification of connection send readiness. Send readiness
notifications are handled in order of registration (i.e. fibers will
be notified of successive send readiness in the order in which they
registered to receive this notification.)
4. Each request handler fiber may only register once (at a time) for
notification of an epoll event-loop cycle ending, but when the
notification occurs, all fibers registered for this event are
resumed (in order of registration).
Copyright: Copyright (c) 2017 dunnhumby Germany GmbH. All rights reserved
License:
Boost Software License Version 1.0. See LICENSE.txt for details.
*******************************************************************************/
module swarm.neo.request.RequestEventDispatcher;
import core.stdc.string;
import ocean.transition;
import ocean.core.SmartUnion;
import ocean.core.Verify;
import swarm.neo.util.VoidBufferAsArrayOf;
/*******************************************************************************
Smart union of events which can be registered with the dispatcher. An
instance of the union, registered with the dispatcher, represents a fiber
awaiting the event specified by the active field. A single fiber may be
registered for mutliple events, but some event types may only be registered
for a single fiber (see RequestEventDispatcher.register).
*******************************************************************************/
private alias SmartUnion!(EventRegistrationUnion) EventRegistration;
/*******************************************************************************
Union of events which can be registered with the dispatcher.
*******************************************************************************/
private union EventRegistrationUnion
{
/// Waiting to receive a message over the connection.
Message message;
/// Waiting to receive a signal from another fiber.
Signal signal;
/// Waiting to send a message over the connection.
Send send;
/// Waiting for an epoll event-loop cycle to occur.
Yield yield;
}
/*******************************************************************************
Struct representing a fiber awaiting a certain message over the connection.
Each message is required to begin with a single byte representing the
message type.
*******************************************************************************/
public struct Message
{
/// The type of the message being awaited.
ubyte type;
}
/*******************************************************************************
Struct representing a fiber awaiting a signal with a certain code.
*******************************************************************************/
public struct Signal
{
/// The signal being awaited.
ubyte code;
}
/*******************************************************************************
Struct representing a fiber awaiting the completion of sending a payload
over the connection.
*******************************************************************************/
public struct Send
{
import swarm.neo.connection.RequestOnConnBase;
/// Alias for a delegate type to set the payload of the message to send.
alias void delegate ( RequestOnConnBase.EventDispatcher.Payload payload )
GetPayloadDg;
/// Delegate to set the payload of the message to send.
GetPayloadDg get_payload;
}
/*******************************************************************************
Struct representing a fiber awaiting the completion of an epoll event-loop
cycle.
*******************************************************************************/
public struct Yield
{
// Dummy struct with no data, used purely as a "flag" in the smart union to
// indicate the awaited event.
}
/*******************************************************************************
Smart union of events which the dispatcher can notify clients of. An
instance of this union is returned from the dispatcher method which
suspended a waiting fiber (see RequestEventDispatcher.nextEvent), informing
it of the event which has occurred.
*******************************************************************************/
public alias SmartUnion!(EventNotificationUnion) EventNotification;
/*******************************************************************************
Union of events which the dispatcher can notify clients of.
*******************************************************************************/
private union EventNotificationUnion
{
/// A message was received over the connection.
ReceivedMessage message;
/// A signal was passed from another fiber.
Signalled signal;
/// A message was sent over the connection.
Sent sent;
/// An epoll event-loop cycle occurred.
YieldedThenResumed yielded_resumed;
}
/*******************************************************************************
A message received over the connection, broken down into its type and
payload.
*******************************************************************************/
public struct ReceivedMessage
{
/// The type of the message.
ubyte type;
/// The message payload.
Const!(void)[] payload;
}
/*******************************************************************************
A signal which occurred.
*******************************************************************************/
public struct Signalled
{
/// Code of the signal.
ubyte code;
}
/*******************************************************************************
Struct representing the successful sending of a payload over the connection.
*******************************************************************************/
public struct Sent
{
// Dummy struct with no data, used purely as a "flag" in the smart union to
// indicate the event which occurred. (As each fiber is only allowed to
// send one thing at a time (see RequestEventDispatcher.register), there is
// no need to for this struct to have any fields.
}
/*******************************************************************************
Struct representing the completion of an epoll event-loop cycle.
*******************************************************************************/
public struct YieldedThenResumed
{
// Dummy struct with no data, used purely as a "flag" in the smart union to
// indicate the event which occurred.
}
/*******************************************************************************
Request event dispatcher for use with multi-fiber requests.
Three types of events are handled:
1. "Signals" (ubyte codes) sent between fibers.
2. Messages received over the connection.
3. Connection readiness to send a payload.
The types of events are handled somewhat differently, as follows:
1. Only one request handler fiber may register to be notified of each
type of signal.
2. Messages reveived over the connection are expected to begin with a
byte representing the message type. Only one request handler fiber
may register to be notified of each type of message.
3. Each request handler fiber may only register once (at a time) for
notification of connection send readiness. Send readiness
notifications are handled in order of registration (i.e. fibers will
be notified of successive send readiness in the order in which they
registered to receive this notification.)
Note that it's absolutely necessary to call initialise method on it before
doing any work.
*******************************************************************************/
public struct RequestEventDispatcher
{
import ocean.core.Enforce;
import Array = ocean.core.Array : moveToEnd, removeShift, contains, copy;
import swarm.neo.util.MessageFiber;
import swarm.neo.connection.RequestOnConnBase;
/// Struct wrapping a waiting fiber along with the event it is awaiting.
private struct WaitingFiber
{
/// Fiber which is waiting.
MessageFiber fiber;
/// Event being awaited.
EventRegistration event;
/// Is this instance currently enabled? If false, it will be ignored
/// when dispatching events.
bool enabled;
}
/// The total count of currently enabled events (see WaitingFiber.enabled).
private uint enabled_events;
/// Fibers currently awaiting events. Note that the WaitingFiber.enabled
/// flag means that it's never necessary to actually remove an element from
/// this array. This is an optimisation, as array remove operations were
/// found (by profiling) to be taking a significant number of CPU cycles.
private VoidBufferAsArrayOf!(WaitingFiber) waiting_fibers;
/// Buffer into which waiting_fibers are copied when performing an iteration
/// that can modify the contents of waiting_fibers.
private VoidBufferAsArrayOf!(WaitingFiber) waiting_fibers_to_iterate;
/// Event which has fired, to be returned by nextEvent(). (This value is set
/// by notifyWaitingFiber(), just before resuming the waiting fiber.)
private EventNotification last_event;
/// Token passed to fiber suspend/resume calls.
private static MessageFiber.Token token =
MessageFiber.Token("RequestEventDispatcher");
/// List of signals which occurred while the request-on-conn fiber was
/// running. (Signals which occur when the fiber is suspended are passed to
/// the fiber resume method, waking it up.)
private VoidBufferAsArrayOf!(ubyte) queued_signals;
/***************************************************************************
Initialises the RequestEventDispatcher setting its initial state.
Params:
getVoidArray = void array acquirer. This instance will call this
delegate multiple times, to acquire the buffers it
needs internally. The request's acquired resources
must not be relinquished during the lifetime of this
instance.
***************************************************************************/
public void initialise ( void[]* delegate() getVoidArray)
{
verify(this.last_event == this.last_event.init);
this.waiting_fibers = VoidBufferAsArrayOf!(WaitingFiber)(getVoidArray());
this.waiting_fibers_to_iterate
= VoidBufferAsArrayOf!(WaitingFiber)(getVoidArray());
this.queued_signals = VoidBufferAsArrayOf!(ubyte)(getVoidArray());
}
/***************************************************************************
Suspends `fiber` until one of the specified events occurs.
Params:
T = tuple of types of events
fiber = fiber to suspend until one of the specified events occurs
events = tuple of events to await
Returns:
struct describing the event which occurred
***************************************************************************/
public EventNotification nextEvent ( T ... ) ( MessageFiber fiber, T events )
{
foreach ( event; events )
{
EventRegistration register_event;
static if( is(typeof(event) == Message) )
register_event.message = event;
else static if( is(typeof(event) == Signal) )
register_event.signal = event;
else static if( is(typeof(event) == Send) )
register_event.send = event;
else static if( is(typeof(event) == Yield) )
register_event.yield = event;
else
static assert(false, "Invalid event type");
this.register(fiber, register_event);
}
scope ( exit )
{
// This unregisters *all* events for this fiber. Since it's illegal
// for events to be registered for a fiber while it's not suspended,
// this is safe.
this.unregisterFiber(fiber);
this.last_event = this.last_event.init;
verify(this.last_event.active == this.last_event.active.none);
}
fiber.suspend(this.token);
// The code which resumes the fiber is expected to set the value of
// this.last_event immediately before calling resume().
verify(this.last_event.active != this.last_event.active.none);
return this.last_event;
}
/***************************************************************************
Convenience wrapper around `nextEvent` for sending only.
Params:
fiber = fiber to suspend until the specified payload has been sent
fill_payload = delegate which should fill in the payload to send
***************************************************************************/
public void send ( MessageFiber fiber, Send.GetPayloadDg fill_payload )
{
auto event = this.nextEvent(fiber, Send(fill_payload));
enforce(event.active == event.active.sent,
"Unexpected event: waiting only for write success");
}
/***************************************************************************
Convenience wrapper around `nextEvent` for receiving only.
Params:
T = tuple of types of messages
fiber = fiber to suspend until one of the specified messages is
received
messages = tuple of messages to await
Returns:
message which was received
***************************************************************************/
public ReceivedMessage receive ( T ... ) ( MessageFiber fiber, T messages )
{
foreach ( message; messages )
static assert(is(typeof(message) == Message));
auto event = this.nextEvent(fiber, messages);
return event.message;
}
/***************************************************************************
Convenience wrapper around `nextEvent` for yielding only.
Params:
fiber = fiber to suspend until the an event-loop cycle has occurred
***************************************************************************/
public void yield ( MessageFiber fiber )
{
auto event = this.nextEvent(fiber, Yield());
}
/***************************************************************************
Every `yield_after` calls, suspends `fiber` and resumes it on the next
event-loop cycle. Otherwise does nothing.
Params:
fiber = fiber to suspend until the an event-loop cycle has occurred
call_count = counter incremented each time this method is called
yield_after = the number of calls after which this method, when
called again, should yield
***************************************************************************/
public void periodicYield ( MessageFiber fiber, ref uint call_count,
Const!(uint) yield_after )
{
if ( call_count >= yield_after )
{
call_count = 0;
this.yield(fiber);
}
else
call_count++;
}
/***************************************************************************
Unregisters all waiting events of `fiber` and kills the fiber.
Params:
fiber = fiber to unregister and abort
***************************************************************************/
public void abort ( MessageFiber fiber )
{
verify(!fiber.running, "Cannot abort self");
this.unregisterFiber(fiber);
if ( fiber.finished )
return;
verify(fiber.waiting);
fiber.kill();
}
/***************************************************************************
Triggers a signal with the specified code. Any fiber which is awaiting
this signal will be resumed in the next eventLoop cycle.
Params:
conn = request-on-conn event dispatcher (required in order to
resume the request-on-conn fiber, if it is currently suspended)
code = signal code to trigger
***************************************************************************/
public void signal ( RequestOnConnBase.EventDispatcher conn, ubyte code )
{
if ( !conn.resumeFiber(code) )
{
// Each signal is only allowed to be handled by one registered
// fiber, so we must only add each signal once to the list -- the
// waiting fiber doesn't care how *often* the signal has fired.
// (Otherwise, a signal can be popped from the list, the waiting
// fiber resumed, then the signal popped again -- now there's no
// fiber waiting for it.)
if ( !Array.contains(this.queued_signals.array(), code) )
this.queued_signals ~= code;
}
}
/***************************************************************************
Runs the event loop cycle (wait for events, notify waiting fibers) until
no waiting fibers are registered.
Note that the event loop can be aborted by aborting each fiber which has
events registered (see abort()).
Params:
conn = request-on-conn event dispatcher to multiplex fiber I/O
events over
Throws:
any exceptions thrown by the request-on-conn
***************************************************************************/
public void eventLoop ( RequestOnConnBase.EventDispatcher conn )
{
WaitingFiber writer;
try while ( this.enabled_events )
{
writer = writer.init;
this.dispatchQueuedSignals(conn);
if ( this.waitingWriters() )
writer = this.popWaitingWriter();
else if ( !this.enabled_events )
break;
this.handleNextEvent(conn, writer);
}
catch ( Exception e )
{
// If the request-on-conn throws, abort all waiting fibers as they
// can no longer function in a consistent manner.
MessageFiber.Message msg;
msg.exc = e;
// Copy all WaitingFibers into a separate buffer. This is to avoid
// the array being iterated over being modified by one of the fibers
// which is resumed from inside the loop.
this.waiting_fibers_to_iterate.length = this.waiting_fibers.length;
this.waiting_fibers_to_iterate.array()[] = this.waiting_fibers.array()[];
foreach ( waiting_fiber; this.waiting_fibers_to_iterate.array() )
if ( waiting_fiber.fiber.waiting )
waiting_fiber.fiber.resume(this.token, null, msg);
// If a writer fiber was popped from the list, abort that too.
if ( writer.fiber !is null && writer.fiber.waiting )
writer.fiber.resume(this.token, null, msg);
this.waiting_fibers.length = 0;
throw e;
}
}
/***************************************************************************
Sends the payload requested by the provided writer fiber (if non-null)
and handles other events that occur in the meantime.
Params:
conn = request-on-conn event dispatcher to multiplex fiber I/O
events over
writer = optional writer fiber / event to handle
***************************************************************************/
private void handleNextEvent ( RequestOnConnBase.EventDispatcher conn,
WaitingFiber writer )
{
bool sending = writer != writer.init;
bool sent;
Const!(void)[] received;
do
{
this.dispatchQueuedSignals(conn);
RequestOnConnBase.EventDispatcher.NextEventFlags flags;
flags = flags.Receive | this.nextEventYieldResumeFlags();
auto event = conn.nextEvent(flags,
sending ? writer.event.send.get_payload : null);
switch ( event.active )
{
case event.active.sent:
sent = true;
EventNotification fired_event;
fired_event.sent = Sent();
this.notifyWaitingFiber(writer.fiber, fired_event);
break;
case event.active.received:
this.dispatchReceivedPayload(conn, event.received.payload);
break;
case event.active.resumed:
this.dispatchSignal(conn, event.resumed.code);
break;
case event.active.yielded_resumed:
this.resumeYieldedFibers(conn);
break;
default:
assert(false);
}
}
while ( sending && !sent );
}
/***************************************************************************
Registers `fiber` as awaiting `event`.
Params:
fiber = fiber to register as awaiting an event
event = event which fiber is awaiting
Throws:
1. if a message is being awaited and that message type is already
registered as being awaited (by the same or another fiber) --
each message type may only be handled by one fiber.
2. if a signal is being awaited and that code is already registered
as being awaited (by the same or another fiber) -- each signal
may only be handled by one fiber.
3. if sending a payload is being awaited and the fiber is already
awaiting another payload being sent -- each fiber may only send
one payload at a time.
4. if yielding then resuming is being awaited and the fiber is
already awaiting this event -- each fiber may only register one
yield event at a time.
***************************************************************************/
private void register ( MessageFiber fiber, EventRegistration event )
{
// See if a matching element is already in this.waiting_fibers.
WaitingFiber* in_list;
foreach ( ref waiting_fiber; this.waiting_fibers.array() )
{
if ( waiting_fiber.fiber == fiber && waiting_fiber.event == event )
{
verify(in_list is null);
verify(!waiting_fiber.enabled);
in_list = &waiting_fiber;
}
// Ensure the user isn't trying to do anything crazy.
if ( waiting_fiber.enabled &&
waiting_fiber.event.active == event.active )
{
with ( event.Active ) switch ( event.active )
{
case message:
verify(waiting_fiber.event.message.type
!= event.message.type,
"Only one fiber may handle each message type");
break;
case signal:
verify(waiting_fiber.event.signal.code
!= event.signal.code,
"Only one fiber may handle each signal");
break;
case send:
verify(waiting_fiber.fiber != fiber,
"Each fiber may only send one thing at a time");
break;
case yield:
verify(waiting_fiber.fiber != fiber,
"Each fiber may only yield once at a time");
break;
default:
assert(false);
}
}
}
// Add the new fiber/event to the list, if it was not found.
if ( in_list is null )
{
this.waiting_fibers ~= WaitingFiber(fiber, event);
in_list = &this.waiting_fibers.array()[$-1];
}
// Set the list element to enabled.
this.enable(*in_list);
}
/***************************************************************************
Unregisters `fiber` as awaiting `event`.
Params:
fiber = fiber to unregister as awaiting an event
event = event which fiber is no longer awaiting
***************************************************************************/
private void unregister ( MessageFiber fiber, EventRegistration event )
{
foreach ( ref waiting_fiber; this.waiting_fibers.array() )
{
if ( waiting_fiber.fiber == fiber && waiting_fiber.event == event )
{
this.disable(waiting_fiber);
break;
}
}
}
/***************************************************************************
Unregisters all events for `fiber`.
Params:
fiber = fiber to unregister events for
***************************************************************************/
private void unregisterFiber ( MessageFiber fiber )
{
foreach ( ref waiting_fiber; this.waiting_fibers.array() )
{
if ( waiting_fiber.fiber == fiber )
this.disable(waiting_fiber);
}
}
/***************************************************************************
Returns:
true if any registered fibers are awaiting a send
***************************************************************************/
private bool waitingWriters ( )
{
foreach ( waiting_fiber; this.waiting_fibers.array() )
if ( waiting_fiber.enabled &&
waiting_fiber.event.active == waiting_fiber.event.active.send )
return true;
return false;
}
/***************************************************************************
Returns:
flags to pass to EventDispatcher.nextEvent(), with Resume and/or
Yield bits set, based on the events that registered fibers are
waiting for.
***************************************************************************/
RequestOnConnBase.EventDispatcher.NextEventFlags nextEventYieldResumeFlags ()
{
RequestOnConnBase.EventDispatcher.NextEventFlags flags;
// All the flags that this method sets, used for short-circuit the
// array iteration if we set all relevant flags.
const all_set_flags = flags.Yield | flags.Resume;
foreach ( waiting_fiber; this.waiting_fibers.array() )
{
if ( waiting_fiber.enabled )
{
switch (waiting_fiber.event.active)
{
case waiting_fiber.event.active.signal:
flags |= flags.Resume;
break;
case waiting_fiber.event.active.yield:
flags |= flags.Yield;
break;
default:
break;
}
if (flags == all_set_flags)
return flags;
}
}
return flags;
}
/***************************************************************************
Pops the first fiber awaiting a send from the list of waiting fibers.
Should only be called after waitingWriters() returns true.
Returns:
the first fiber awaiting a send from the list of waiting fibers
***************************************************************************/
private WaitingFiber popWaitingWriter ( )
out ( const_waiting_fiber )
{
auto waiting_fiber = cast(WaitingFiber)const_waiting_fiber;
assert(waiting_fiber.event.active == waiting_fiber.event.active.send);
}
body
{
verify(this.waiting_fibers.length > 0);
verify(this.enabled_events > 0);
foreach ( ref waiting_fiber; this.waiting_fibers.array() )
if ( waiting_fiber.enabled &&
waiting_fiber.event.active == waiting_fiber.event.active.send )
{
this.disable(waiting_fiber);
return waiting_fiber;
}
assert(false, "popWaitingWriter() should not be called if waitingWriters() is false");
}
/***************************************************************************
Dispatches any signals which occurred while the request-on-conn fiber
was running. These are queued up in this.queue_signals.
Params:
conn = request-on-conn event dispatcher (require by dispatchSignal)
***************************************************************************/
private void dispatchQueuedSignals ( RequestOnConnBase.EventDispatcher conn )
out
{
assert(this.queued_signals.length == 0);
}
body
{
while ( this.queued_signals.length > 0 )
{
auto code = this.queued_signals.array()[0];
// Shift all the elements to the left by one
void* src = this.queued_signals.array().ptr + 1;
void* dst = this.queued_signals.array().ptr;
size_t num = ubyte.sizeof * (this.queued_signals.length - 1);
memmove(dst, src, num);
// adjust buffer length
this.queued_signals.length = this.queued_signals.length - 1;
this.dispatchSignal(conn, code);
}
}
/***************************************************************************
Helper function for eventLoop(). Dispatches the specified signal to the
appropriate waiting fiber.
Params:
conn = request-on-conn event dispatcher (used to throw a protocol
error, if the signal is not handled)
signal = signal code
Throws:
if the signal is not handled by any waiting fiber
***************************************************************************/
private void dispatchSignal ( RequestOnConnBase.EventDispatcher conn,
int signal )
{
if ( signal < 0 ) // Standard send/receive codes
return;
verify(signal <= 255);
ubyte signal_ubyte = cast(ubyte)signal;
foreach ( waiting_fiber; this.waiting_fibers.array() )
{
if ( waiting_fiber.enabled &&
waiting_fiber.event.active == waiting_fiber.event.active.signal
&& waiting_fiber.event.signal.code == signal_ubyte )
{
EventNotification fired_event;
fired_event.signal = Signalled(signal_ubyte);
this.notifyWaitingFiber(waiting_fiber.fiber, fired_event);
return;
}
}
throw conn.shutdownWithProtocolError("Unhandled signal code");
}
/***************************************************************************
Helper function for eventLoop(). Dispatches the specified message
payload to the appropriate waiting fiber, via the first byte which
represents the type of the message.
Params:
conn = request-on-conn event dispatcher (used to parse the message
type from the payload and to throw a protocol error, if the
message type is not handled)
payload = received message
Throws:
if the message type is not handled by any waiting fiber
***************************************************************************/
private void dispatchReceivedPayload ( RequestOnConnBase.EventDispatcher conn,
Const!(void)[] payload )
{
auto message_type = *conn.message_parser.getValue!(ubyte)(payload);
foreach ( waiting_fiber; this.waiting_fibers.array() )
{
if ( waiting_fiber.enabled &&
waiting_fiber.event.active == waiting_fiber.event.active.message
&& waiting_fiber.event.message.type == message_type )
{
EventNotification fired_event;
fired_event.message = ReceivedMessage(message_type, payload);
this.notifyWaitingFiber(waiting_fiber.fiber, fired_event);
return;
}
}
throw conn.shutdownWithProtocolError("Unhandled message");
}
/***************************************************************************
Helper function for eventLoop(). When the request-on-conn fiber is
resumed after being yielded, resumes any fibers which asked to be
resumed after yielding.
Params:
conn = request-on-conn event dispatcher (used to throw a protocol
error, if no fibers were waiting)
Throws:
if no waiting fiber asked to yield
***************************************************************************/
private void resumeYieldedFibers ( RequestOnConnBase.EventDispatcher conn )
{
// Copy WaitingFibers which are registered to be woken up after yielding
// into a separate buffer. This is to avoid the array being iterated
// over being modified by one of the fibers which is resumed from inside
// the loop.
this.waiting_fibers_to_iterate.length = 0;
foreach ( waiting_fiber; this.waiting_fibers.array() )
{
if ( waiting_fiber.enabled &&
waiting_fiber.event.active == waiting_fiber.event.active.yield )
{
this.waiting_fibers_to_iterate ~= waiting_fiber;
}
}
if ( this.waiting_fibers_to_iterate.length == 0 )
throw conn.shutdownWithProtocolError("Unhandled resume after yield");
foreach ( fiber_to_notify; this.waiting_fibers_to_iterate.array() )
{
EventNotification fired_event;
fired_event.yielded_resumed = YieldedThenResumed();
this.notifyWaitingFiber(fiber_to_notify.fiber, fired_event);
}
}
/***************************************************************************
Sets the specified WaitingFiber instance to enabled and adjusts the
total enabled count as appropriate.
Params:
waiting_fiber = instance to enable
***************************************************************************/
private void enable ( ref WaitingFiber waiting_fiber )
{
if ( !waiting_fiber.enabled )
{
waiting_fiber.enabled = true;
this.enabled_events++;
}
}
/***************************************************************************
Sets the specified WaitingFiber instance to disabled and adjusts the
total enabled count as appropriate.
Params:
waiting_fiber = instance to disable
***************************************************************************/
private void disable ( ref WaitingFiber waiting_fiber )
{
if ( waiting_fiber.enabled )
{
waiting_fiber.enabled = false;
this.enabled_events--;
}
}
/***************************************************************************
Passes the specified event to the specified suspended fiber via the
return value of a call to nextEvent() which suspended the fiber. The
fiber is resumed.
Params:
fiber = fiber to resume with the event
event = the event to pass to the fiber
***************************************************************************/
private void notifyWaitingFiber ( MessageFiber fiber, EventNotification event )
{
verify(this.last_event.active == this.last_event.active.none);
this.last_event = event;
verify(this.last_event.active != this.last_event.active.none);
fiber.resume(this.token);
}
}
|
D
|
convey, draw off, or empty by or as if by a siphon
move a liquid from one container into another by means of a siphon or a siphoning action
|
D
|
/Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/FluentMySQL.build/SchemaBuilder+Order.swift.o : /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/FluentMySQLSchema.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/QueryBuilder+Metadata.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLType.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/QueryBuilder+CreateIgnore.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+SchemaSupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+KeyedCacheSupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+LogSupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+JoinSupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+MigrationSupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+TransactionSupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+QuerySupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLModel.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/FluentMySQLProvider.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/SchemaBuilder+Order.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLLogger.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLSerializer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/Exports.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/Fluent+MySQLUpsert.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/FluentMySQLQuery.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/SQL.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/FluentSQL.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/MySQL.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOOpenSSL.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOTLS.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Command.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Console.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Logging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Random.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Crypto.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Fluent.swiftmodule /usr/local/Cellar/libressl/3.0.2/include/openssl/asn1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/tls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dtls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs12.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl23.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509v3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/md5.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs7.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509.h /usr/local/Cellar/libressl/3.0.2/include/openssl/sha.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/rsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/obj_mac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/hmac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ec.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /usr/local/Cellar/libressl/3.0.2/include/openssl/rand.h /usr/local/Cellar/libressl/3.0.2/include/openssl/conf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslconf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/lhash.h /usr/local/Cellar/libressl/3.0.2/include/openssl/stack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/safestack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include/c_nio_openssl.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include/c_crypto_openssl.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bn.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bio.h /usr/local/Cellar/libressl/3.0.2/include/openssl/crypto.h /usr/local/Cellar/libressl/3.0.2/include/openssl/srtp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/evp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ossl_typ.h /usr/local/Cellar/libressl/3.0.2/include/openssl/buffer.h /usr/local/Cellar/libressl/3.0.2/include/openssl/err.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslfeatures.h /usr/local/Cellar/libressl/3.0.2/include/openssl/objects.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslv.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509_vfy.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOHTTP1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/SQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/FluentSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/MySQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/FluentMySQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIO.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/HTTP.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOTLS.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Async.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Command.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Service.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Console.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Core.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/SQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/FluentSQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOPriorityQueue.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Logging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Debugging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Routing.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/SQLBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/FluentBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/COperatingSystem.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Random.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/URLEncodedForm.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Authentication.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Validation.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Crypto.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/App.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Vapor.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Bits.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/WebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOWebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/DatabaseKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/TemplateKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Fluent.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Multipart.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/crypto/Sources/CBase32/include/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio-zlib-support/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio-ssl-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/FluentMySQL.build/SchemaBuilder+Order~partial.swiftmodule : /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/FluentMySQLSchema.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/QueryBuilder+Metadata.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLType.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/QueryBuilder+CreateIgnore.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+SchemaSupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+KeyedCacheSupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+LogSupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+JoinSupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+MigrationSupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+TransactionSupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+QuerySupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLModel.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/FluentMySQLProvider.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/SchemaBuilder+Order.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLLogger.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLSerializer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/Exports.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/Fluent+MySQLUpsert.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/FluentMySQLQuery.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/SQL.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/FluentSQL.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/MySQL.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOOpenSSL.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOTLS.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Command.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Console.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Logging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Random.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Crypto.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Fluent.swiftmodule /usr/local/Cellar/libressl/3.0.2/include/openssl/asn1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/tls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dtls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs12.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl23.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509v3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/md5.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs7.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509.h /usr/local/Cellar/libressl/3.0.2/include/openssl/sha.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/rsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/obj_mac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/hmac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ec.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /usr/local/Cellar/libressl/3.0.2/include/openssl/rand.h /usr/local/Cellar/libressl/3.0.2/include/openssl/conf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslconf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/lhash.h /usr/local/Cellar/libressl/3.0.2/include/openssl/stack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/safestack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include/c_nio_openssl.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include/c_crypto_openssl.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bn.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bio.h /usr/local/Cellar/libressl/3.0.2/include/openssl/crypto.h /usr/local/Cellar/libressl/3.0.2/include/openssl/srtp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/evp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ossl_typ.h /usr/local/Cellar/libressl/3.0.2/include/openssl/buffer.h /usr/local/Cellar/libressl/3.0.2/include/openssl/err.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslfeatures.h /usr/local/Cellar/libressl/3.0.2/include/openssl/objects.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslv.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509_vfy.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOHTTP1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/SQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/FluentSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/MySQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/FluentMySQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIO.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/HTTP.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOTLS.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Async.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Command.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Service.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Console.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Core.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/SQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/FluentSQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOPriorityQueue.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Logging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Debugging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Routing.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/SQLBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/FluentBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/COperatingSystem.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Random.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/URLEncodedForm.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Authentication.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Validation.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Crypto.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/App.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Vapor.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Bits.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/WebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOWebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/DatabaseKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/TemplateKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Fluent.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Multipart.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/crypto/Sources/CBase32/include/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio-zlib-support/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio-ssl-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/FluentMySQL.build/SchemaBuilder+Order~partial.swiftdoc : /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/FluentMySQLSchema.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/QueryBuilder+Metadata.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLType.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/QueryBuilder+CreateIgnore.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+SchemaSupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+KeyedCacheSupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+LogSupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+JoinSupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+MigrationSupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+TransactionSupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+QuerySupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLModel.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/FluentMySQLProvider.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/SchemaBuilder+Order.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLLogger.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLSerializer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/Exports.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/Fluent+MySQLUpsert.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/FluentMySQLQuery.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/SQL.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/FluentSQL.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/MySQL.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOOpenSSL.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOTLS.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Command.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Console.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Logging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Random.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Crypto.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Fluent.swiftmodule /usr/local/Cellar/libressl/3.0.2/include/openssl/asn1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/tls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dtls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs12.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl23.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509v3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/md5.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs7.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509.h /usr/local/Cellar/libressl/3.0.2/include/openssl/sha.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/rsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/obj_mac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/hmac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ec.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /usr/local/Cellar/libressl/3.0.2/include/openssl/rand.h /usr/local/Cellar/libressl/3.0.2/include/openssl/conf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslconf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/lhash.h /usr/local/Cellar/libressl/3.0.2/include/openssl/stack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/safestack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include/c_nio_openssl.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include/c_crypto_openssl.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bn.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bio.h /usr/local/Cellar/libressl/3.0.2/include/openssl/crypto.h /usr/local/Cellar/libressl/3.0.2/include/openssl/srtp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/evp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ossl_typ.h /usr/local/Cellar/libressl/3.0.2/include/openssl/buffer.h /usr/local/Cellar/libressl/3.0.2/include/openssl/err.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslfeatures.h /usr/local/Cellar/libressl/3.0.2/include/openssl/objects.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslv.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509_vfy.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOHTTP1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/SQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/FluentSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/MySQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/FluentMySQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIO.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/HTTP.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOTLS.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Async.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Command.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Service.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Console.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Core.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/SQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/FluentSQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOPriorityQueue.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Logging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Debugging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Routing.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/SQLBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/FluentBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/COperatingSystem.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Random.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/URLEncodedForm.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Authentication.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Validation.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Crypto.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/App.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Vapor.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Bits.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/WebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOWebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/DatabaseKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/TemplateKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Fluent.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Multipart.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/crypto/Sources/CBase32/include/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio-zlib-support/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio-ssl-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/FluentMySQL.build/SchemaBuilder+Order~partial.swiftsourceinfo : /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/FluentMySQLSchema.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/QueryBuilder+Metadata.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLType.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/QueryBuilder+CreateIgnore.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+SchemaSupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+KeyedCacheSupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+LogSupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+JoinSupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+MigrationSupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+TransactionSupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLDatabase+QuerySupporting.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLModel.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/FluentMySQLProvider.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/SchemaBuilder+Order.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLLogger.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/MySQLSerializer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/Exports.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/Fluent+MySQLUpsert.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/fluent-mysql/Sources/FluentMySQL/FluentMySQLQuery.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/SQL.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/FluentSQL.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/MySQL.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOOpenSSL.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOTLS.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Command.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Console.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Logging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Random.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Crypto.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Fluent.swiftmodule /usr/local/Cellar/libressl/3.0.2/include/openssl/asn1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/tls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dtls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs12.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl23.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509v3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/md5.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs7.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509.h /usr/local/Cellar/libressl/3.0.2/include/openssl/sha.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/rsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/obj_mac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/hmac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ec.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /usr/local/Cellar/libressl/3.0.2/include/openssl/rand.h /usr/local/Cellar/libressl/3.0.2/include/openssl/conf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslconf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/lhash.h /usr/local/Cellar/libressl/3.0.2/include/openssl/stack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/safestack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include/c_nio_openssl.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include/c_crypto_openssl.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bn.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bio.h /usr/local/Cellar/libressl/3.0.2/include/openssl/crypto.h /usr/local/Cellar/libressl/3.0.2/include/openssl/srtp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/evp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ossl_typ.h /usr/local/Cellar/libressl/3.0.2/include/openssl/buffer.h /usr/local/Cellar/libressl/3.0.2/include/openssl/err.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslfeatures.h /usr/local/Cellar/libressl/3.0.2/include/openssl/objects.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslv.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509_vfy.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOHTTP1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/SQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/FluentSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/MySQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/FluentMySQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIO.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/HTTP.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOTLS.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Async.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Command.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Service.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Console.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Core.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/SQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/FluentSQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOPriorityQueue.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Logging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Debugging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Routing.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/SQLBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/FluentBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/COperatingSystem.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Random.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/URLEncodedForm.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Authentication.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Validation.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Crypto.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/App.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Vapor.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Bits.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/WebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/NIOWebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/DatabaseKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/TemplateKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Fluent.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/Multipart.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/crypto/Sources/CBase32/include/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio-zlib-support/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppAcronyms/.build/checkouts/swift-nio-ssl-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
|
D
|
/Users/piaojin/Desktop/PiaojinSwiftServer/.build/debug/PerfectThread.build/Threading.swift.o : /Users/piaojin/Desktop/PiaojinSwiftServer/.build/checkouts/Perfect-Thread.git-6541237758607105655/Sources/Promise.swift /Users/piaojin/Desktop/PiaojinSwiftServer/.build/checkouts/Perfect-Thread.git-6541237758607105655/Sources/Threading.swift /Users/piaojin/Desktop/PiaojinSwiftServer/.build/checkouts/Perfect-Thread.git-6541237758607105655/Sources/ThreadQueue.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreText.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.apinotesc
/Users/piaojin/Desktop/PiaojinSwiftServer/.build/debug/PerfectThread.build/Threading~partial.swiftmodule : /Users/piaojin/Desktop/PiaojinSwiftServer/.build/checkouts/Perfect-Thread.git-6541237758607105655/Sources/Promise.swift /Users/piaojin/Desktop/PiaojinSwiftServer/.build/checkouts/Perfect-Thread.git-6541237758607105655/Sources/Threading.swift /Users/piaojin/Desktop/PiaojinSwiftServer/.build/checkouts/Perfect-Thread.git-6541237758607105655/Sources/ThreadQueue.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreText.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.apinotesc
/Users/piaojin/Desktop/PiaojinSwiftServer/.build/debug/PerfectThread.build/Threading~partial.swiftdoc : /Users/piaojin/Desktop/PiaojinSwiftServer/.build/checkouts/Perfect-Thread.git-6541237758607105655/Sources/Promise.swift /Users/piaojin/Desktop/PiaojinSwiftServer/.build/checkouts/Perfect-Thread.git-6541237758607105655/Sources/Threading.swift /Users/piaojin/Desktop/PiaojinSwiftServer/.build/checkouts/Perfect-Thread.git-6541237758607105655/Sources/ThreadQueue.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreText.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.apinotesc
|
D
|
module dcore;
public import config;
public import log;
public import docman;
public import project;
//public import symbols;
public import search;
public import shellfilter;
public import ddocconvert;
public import debugger;
CONFIG Config;
LOG Log;
DOCMAN DocMan;
PROJECT Project;
//SYMBOLS Symbols;
void Engage(string[] CmdLineArgs)
{
Log = new LOG;
Config = new CONFIG;
DocMan = new DOCMAN;
Project = new PROJECT;
// Symbols = new SYMBOLS;
Config. Engage(CmdLineArgs);
Log. Engage();
DocMan. Engage();
Project. Engage();
// Symbols. Engage();
search. Engage();
Log.Entry("Engaged");
}
void PostEngage()
{
Config. PostEngage();
Log. PostEngage();
DocMan. PostEngage();
Project. PostEngage();
// Symbols. PostEngage();
search. PostEngage();
Log.Entry("PostEngaged");
}
void Disengage()
{
search. Disengage();
//Symbols. Disengage();
Project. Disengage();
DocMan. Disengage();
Config. Disengage();
Log. Entry("Disengaged");
Log. Disengage();
}
|
D
|
module debugs;
public import std.string : format;
public import std.conv : to;
import std.stdio : writefln;
import std.stdio : write;
import std.conv;
import std.string : repeat;
import std.traits : ParameterTypeTuple;
void debugout(T...)(T args) if( (T.length==1 || T.length>=3) && is(T[0] : string) ){
writefln(args);
}
T[1] debugout(T...)(T args) if( (T.length==2) && is(T[0] : string) ){
writefln(args);
return args[1];
}
T debugout(T)(T arg) if( __traits(compiles, arg.debugOut) ){
alias ParameterTypeTuple!(typeof(arg.debugOut)) Prms;
static if( Prms.length==1 && is(Prms[0] == TreeOut) ){
void put(string s){ write(s); };
arg.debugOut(tree_out(&put, 0));
put("\n");
}else{
static assert(0);
}
return arg;
}
private TreeOut tree_out(void delegate(string) dg, size_t lv){
TreeOut dout;
dout.raw_put = dg;
dout.level = lv;
return dout;
}
/**
* future improvement issues:
* 空リスト/配列に対する表示
* [
* ]
* ----
* []
* 子要素を持たないXを1つだけ持つ要素の表示
* (header
* X
* )
* ----
* (header X)
*/
struct TreeOut
{
enum ParenL = "(";
enum ParenR = ")";
enum InlineCloseParen = true;
enum InlineSimpleNode = InlineCloseParen && true;
enum tab = " ";
void delegate(string) raw_put;
size_t level = 0;
void opCall(T...)(lazy T args){
//pragma(msg, T.stringof);
static if( InlineSimpleNode && args.length==2 && !(__traits(compiles, args[1]().debugOut) || is(typeof(args[1]) U == U[])) ){
enum InlineSimpleNode2 = true;
}else{
enum InlineSimpleNode2 = false;
}
void put1(U)(void delegate(string) raw_put, size_t lv, size_t i, U arg){
static if( __traits(compiles, arg.debugOut) ){
alias ParameterTypeTuple!(typeof(arg.debugOut)) Prms;
static if( Prms.length==1 && is(Prms[0] == TreeOut) ){
if( i == 0 ) raw_put("\n");
arg.debugOut(tree_out(raw_put, lv));
}else{
static assert(0);
}
}else{
if( InlineSimpleNode2 && i==1 ){
raw_put(" ");
}else if( i != 0 ){
raw_put(repeat(tab, lv));
}else{
//do nothing
}
static if( is(typeof(arg) == string) ){
raw_put(arg);
}else static if( is(typeof(arg) U == U[]) ){
raw_put("[");
if( !arg.length ){
static if( !InlineCloseParen ) raw_put("\n");
}else{
foreach( j, e; arg ){
put1(raw_put, lv+1, j, e);
if( !InlineCloseParen || j!=arg.length-1 ) raw_put("\n");
}
}
static if( !InlineCloseParen ) raw_put(repeat(tab, lv));
raw_put("]");
}else{
raw_put(to!string(arg));
}
}
}
raw_put(repeat(tab, level));
raw_put(ParenL);
foreach( i,arg; args ){
put1(raw_put, level+1, i, args[i]());
static if( InlineCloseParen && i==args.length-1 ){
//do nothing
}else static if( InlineSimpleNode2 && i==0 ){
//do nothing
}else{
raw_put("\n");
}
}
static if( !InlineCloseParen ) raw_put(repeat(tab, level));
raw_put(")");
}
}
import std.typecons, std.traits, std.typetuple;
import parse, trans, T = tree;
import frame, assem, machine;
struct Ast2Stm
{
Frame frame;
AstNode node;
}
Ast2Stm[T.Stm] ast_to_stm;
struct Frame2Instr
{
Instr[] prologue;
Tuple!(AstNode, T.Stm, Instr[])[] bodycode;
Instr[] epilogue;
}
Frame2Instr[Frame] frame_to_instr;
void debugCodeMap(Level lv, AstNode n, Ex x)
{
// private field にアクセス
// auto frame = __traits(getMember, lv, "frame"); // 駄目
auto frame = lv.tupleof[staticIndexOf!(Frame, FieldTypeTuple!Level)];
ast_to_stm[unNx(x)] = Ast2Stm(frame, n);
}
void debugCodeMap(T.Stm stm, Instr[] instr)
{
if (auto ps = stm in ast_to_stm)
{
if (ps.frame in frame_to_instr)
frame_to_instr[ps.frame].bodycode ~= tuple(ps.node, stm, instr);
else
frame_to_instr[ps.frame] = Frame2Instr(null, [tuple(ps.node, stm, instr)], null);
}
}
Instr[] debugCodeMapPrologue(Frame frame, Instr[] instr)
{
frame_to_instr[frame].prologue = instr;
return instr;
}
Instr[] debugCodeMapEpilogue(Frame frame, Instr[] instr)
{
frame_to_instr[frame].epilogue = instr;
return instr;
}
void debugCodeMapPrint()
{
writefln("/*****************************");
writefln(" * statement to instructions");
writefln(" *****************************/");
foreach (f, f2i; frame_to_instr)
{
writefln("Frame.name : %s", f.name);
writefln("--");
(new Machine(f2i.prologue)).print();
foreach (tup; f2i.bodycode)
{
auto n = tup[0];
auto stm = tup[1];
auto instr = tup[2];
writefln("%s:%s %s", n.pos.line+1, n.pos.column+1, n.toShortString);
debug(munch) debugout(stm);
(new Machine(instr)).print();
}
writefln("--");
(new Machine(f2i.epilogue)).print();
writefln("----");
}
writefln("========\n");
}
|
D
|
module workspaced.com.dcdext;
import dparse.ast;
import dparse.lexer;
import dparse.parser;
import dparse.rollback_allocator;
import core.thread;
import std.algorithm;
import std.array;
import std.ascii;
import std.conv;
import std.file;
import std.functional;
import std.json;
import std.meta;
import std.range;
import std.string;
import workspaced.api;
import workspaced.com.dcd;
import workspaced.com.dfmt;
import workspaced.com.importer;
import workspaced.dparseext;
import workspaced.visitors.classifier;
import workspaced.visitors.methodfinder;
public import workspaced.visitors.methodfinder : InterfaceDetails, FieldDetails,
MethodDetails, ArgumentInfo;
@component("dcdext")
class DCDExtComponent : ComponentWrapper
{
mixin DefaultComponentWrapper;
static immutable CodeRegionProtection[] mixableProtection = [
CodeRegionProtection.public_ | CodeRegionProtection.default_,
CodeRegionProtection.package_, CodeRegionProtection.packageIdentifier,
CodeRegionProtection.protected_, CodeRegionProtection.private_
];
/// Loads dcd extension methods. Call with `{"cmd": "load", "components": ["dcdext"]}`
void load()
{
config.stringBehavior = StringBehavior.source;
}
/// Extracts calltips help information at a given position.
/// The position must be within the arguments of the function and not
/// outside the parentheses or inside some child call.
///
/// When generating the call parameters for a function definition, the position must be inside the normal parameters,
/// otherwise the template arguments will be put as normal arguments.
///
/// Returns: the position of significant locations for parameter extraction.
/// Params:
/// code = code to analyze
/// position = byte offset where to check for function arguments
/// definition = true if this hints is a function definition (templates don't have an exclamation point '!')
CalltipsSupport extractCallParameters(scope const(char)[] code, int position,
bool definition = false)
{
auto tokens = getTokensForParser(cast(ubyte[]) code, config, &workspaced.stringCache);
if (!tokens.length)
return CalltipsSupport.init;
if (tokens[0].type == tok!"(")
{
// add dummy name if we start with '('
if (definition)
tokens = [Token(tok!"void"), Token(tok!"identifier")] ~ tokens;
else
tokens = [Token(tok!"identifier")] ~ tokens;
}
// TODO: can probably use tokenIndexAtByteIndex here
auto queuedToken = tokens.countUntil!(a => a.index >= position) - 1;
if (queuedToken == -2)
queuedToken = cast(ptrdiff_t) tokens.length - 1;
else if (queuedToken == -1)
return CalltipsSupport.init;
// TODO: refactor code to be more readable
// all this code does is:
// - go back all tokens until a starting ( is found. (with nested {} scope checks for delegates and () for calls)
// - abort if not found
// - set "isTemplate" if directly before the ( is a `!` token and an identifier
// - if inTemplate is true:
// - go forward to starting ( of normal arguments -- this code has checks if startParen is `!`, which currently can't be the case but might be useful
// - else not in template arguments, so
// - if before ( comes a ) we are definitely in a template, so track back until starting (
// - otherwise check if it's even a template (single argument: `!`, then a token, then `(`)
// - determine function name & all parents (strips out index operators)
// - split template & function arguments
// - return all information
// it's reasonably readable with the variable names and that pseudo explanation there pretty much directly maps to the code,
// so it shouldn't be too hard of a problem, it's just a lot return values per step and taking in multiple returns from previous steps.
/// describes if the target position is inside template arguments rather than function arguments (only works for calls and not for definition)
bool inTemplate;
int depth, subDepth;
/// contains opening parentheses location for arguments or exclamation point for templates.
auto startParen = queuedToken;
while (startParen >= 0)
{
const c = tokens[startParen];
const p = startParen > 0 ? tokens[startParen - 1] : Token.init;
if (c.type == tok!"{")
{
if (subDepth == 0)
{
// we went too far, probably not inside a function (or we are in a delegate, where we don't want calltips)
return CalltipsSupport.init;
}
else
subDepth--;
}
else if (c.type == tok!"}")
{
subDepth++;
}
else if (subDepth == 0 && c.type == tok!";")
{
// this doesn't look like function arguments anymore
return CalltipsSupport.init;
}
else if (depth == 0 && !definition && c.type == tok!"!" && p.type == tok!"identifier")
{
inTemplate = true;
break;
}
else if (c.type == tok!")")
{
depth++;
}
else if (c.type == tok!"(")
{
if (depth == 0 && subDepth == 0)
{
if (startParen > 1 && p.type == tok!"!" && tokens[startParen - 2].type
== tok!"identifier")
{
startParen--;
inTemplate = true;
}
break;
}
else
depth--;
}
startParen--;
}
if (startParen <= 0)
return CalltipsSupport.init;
/// Token index where the opening template parentheses or exclamation point is. At first this is only set if !definition but later on this is resolved.
auto templateOpen = inTemplate ? startParen : 0;
/// Token index where the normal argument parentheses start or 0 if it doesn't exist for this call/definition
auto functionOpen = inTemplate ? 0 : startParen;
bool hasTemplateParens = false;
if (inTemplate)
{
// go forwards to function arguments
if (templateOpen + 2 < tokens.length)
{
if (tokens[templateOpen + 1].type == tok!"(")
{
hasTemplateParens = true;
templateOpen++;
functionOpen = findClosingParenForward(tokens, templateOpen,
"in template function open finder");
functionOpen++;
if (functionOpen >= tokens.length)
functionOpen = 0;
}
else
{
// single template arg (can only be one token)
// https://dlang.org/spec/grammar.html#TemplateSingleArgument
if (tokens[templateOpen + 2] == tok!"(")
functionOpen = templateOpen + 2;
}
}
else
return CalltipsSupport.init; // syntax error
}
else
{
// go backwards to template arguments
if (functionOpen > 0 && tokens[functionOpen - 1].type == tok!")")
{
// multi template args
depth = 0;
subDepth = 0;
templateOpen = functionOpen - 1;
const minTokenIndex = definition ? 1 : 2;
while (templateOpen >= minTokenIndex)
{
const c = tokens[templateOpen];
if (c == tok!")")
depth++;
else
{
if (depth == 1 && templateOpen > minTokenIndex && c.type == tok!"(")
{
if (definition
? tokens[templateOpen - 1].type == tok!"identifier" : (tokens[templateOpen - 1].type == tok!"!"
&& tokens[templateOpen - 2].type == tok!"identifier"))
break;
}
if (depth == 0)
{
templateOpen = 0;
break;
}
if (c == tok!"(")
depth--;
}
templateOpen--;
}
if (templateOpen < minTokenIndex)
templateOpen = 0;
else
hasTemplateParens = true;
}
else
{
// single template arg (can only be one token) or no template at all here
if (functionOpen >= 3 && tokens[functionOpen - 2] == tok!"!"
&& tokens[functionOpen - 3] == tok!"identifier")
{
templateOpen = functionOpen - 2;
}
}
}
depth = 0;
subDepth = 0;
bool inFuncName = true;
auto callStart = (templateOpen ? templateOpen : functionOpen) - 1;
auto funcNameStart = callStart;
while (callStart >= 0)
{
const c = tokens[callStart];
const p = callStart > 0 ? tokens[callStart - 1] : Token.init;
if (c.type == tok!"]")
depth++;
else if (c.type == tok!"[")
{
if (depth == 0)
{
// this is some sort of `foo[(4` situation
return CalltipsSupport.init;
}
depth--;
}
else if (c.type == tok!")")
subDepth++;
else if (c.type == tok!"(")
{
if (subDepth == 0)
{
// this is some sort of `foo((4` situation
return CalltipsSupport.init;
}
subDepth--;
}
else if (depth == 0)
{
if (c.type.isCalltipable)
{
if (c.type == tok!"identifier" && p.type == tok!"." && (callStart < 2
|| !tokens[callStart - 2].type.among!(tok!";", tok!",",
tok!"{", tok!"}", tok!"(")))
{
// member function, traverse further...
if (inFuncName)
{
funcNameStart = callStart;
inFuncName = false;
}
callStart--;
}
else
{
break;
}
}
else
{
// this is some sort of `4(5` or `if(4` situtation
return CalltipsSupport.init;
}
}
// we ignore stuff inside brackets and parens such as `foo[4](5).bar[6](a`
callStart--;
}
if (inFuncName)
funcNameStart = callStart;
ptrdiff_t templateClose;
if (templateOpen)
{
if (hasTemplateParens)
{
if (functionOpen)
templateClose = functionOpen - 1;
else
templateClose = findClosingParenForward(tokens, templateOpen,
"in template close finder");
}
else
templateClose = templateOpen + 2;
}
//dfmt on
auto functionClose = functionOpen ? findClosingParenForward(tokens,
functionOpen, "in function close finder") : 0;
CalltipsSupport.Argument[] templateArgs;
if (templateOpen)
templateArgs = splitArgs(tokens[templateOpen + 1 .. templateClose], true);
CalltipsSupport.Argument[] functionArgs;
if (functionOpen)
functionArgs = splitArgs(tokens[functionOpen + 1 .. functionClose], false);
int activeParameter = -1;
foreach (i, arg; functionArgs)
{
if (arg.contentRange[0] <= position && arg.contentRange[1] >= position)
{
activeParameter = cast(int)i;
break;
}
if (arg.contentRange[1] != 0 && arg.contentRange[1] < position)
activeParameter = cast(int)i + 1;
}
return CalltipsSupport([
tokens.tokenIndex(templateOpen),
templateClose ? tokens.tokenEndIndex(templateClose) : 0
], hasTemplateParens, templateArgs, [
tokens.tokenIndex(functionOpen),
functionClose ? tokens.tokenEndIndex(functionClose) : 0
], functionArgs, funcNameStart != callStart, tokens.tokenIndex(funcNameStart),
tokens.tokenIndex(callStart), inTemplate, activeParameter);
}
/// Finds the token range of the declaration at the given position.
/// You can optionally decide if you want to include the function body in
/// this range or not.
size_t[2] getDeclarationRange(scope const(char)[] code, size_t position,
bool includeDefinition)
{
RollbackAllocator rba;
auto tokens = getTokensForParser(cast(ubyte[]) code, config, &workspaced.stringCache);
auto parsed = parseModule(tokens, "getCodeBlockRange_input.d", &rba);
auto reader = new DeclarationFinder(position, includeDefinition);
reader.visit(parsed);
reader.finish(code);
return reader.range;
}
/// Finds the immediate surrounding code block at a position or returns CodeBlockInfo.init for none/module block.
/// See_Also: CodeBlockInfo
CodeBlockInfo getCodeBlockRange(scope const(char)[] code, int position)
{
RollbackAllocator rba;
auto tokens = getTokensForParser(cast(ubyte[]) code, config, &workspaced.stringCache);
auto parsed = parseModule(tokens, "getCodeBlockRange_input.d", &rba);
auto reader = new CodeBlockInfoFinder(position);
reader.visit(parsed);
return reader.block;
}
/// Inserts a generic method after the corresponding block inside the scope where position is.
/// If it can't find a good spot it will insert the code properly indented ata fitting location.
// make public once usable
private CodeReplacement[] insertCodeInContainer(string insert, scope const(char)[] code,
int position, bool insertInLastBlock = true, bool insertAtEnd = true)
{
auto container = getCodeBlockRange(code, position);
scope const(char)[] codeBlock = code[container.innerRange[0] .. container.innerRange[1]];
RollbackAllocator rba;
scope tokensInsert = getTokensForParser(cast(ubyte[]) insert, config,
&workspaced.stringCache);
scope parsedInsert = parseModule(tokensInsert, "insertCode_insert.d", &rba);
scope insertReader = new CodeDefinitionClassifier(insert);
insertReader.visit(parsedInsert);
scope insertRegions = insertReader.regions.sort!"a.type < b.type".uniq.array;
scope tokens = getTokensForParser(cast(ubyte[]) codeBlock, config, &workspaced.stringCache);
scope parsed = parseModule(tokens, "insertCode_code.d", &rba);
scope reader = new CodeDefinitionClassifier(codeBlock);
reader.visit(parsed);
scope regions = reader.regions;
CodeReplacement[] ret;
foreach (CodeDefinitionClassifier.Region toInsert; insertRegions)
{
auto insertCode = insert[toInsert.region[0] .. toInsert.region[1]];
scope existing = regions.enumerate.filter!(a => a.value.sameBlockAs(toInsert));
if (existing.empty)
{
const checkProtection = CodeRegionProtection.init.reduce!"a | b"(
mixableProtection.filter!(a => (a & toInsert.protection) != 0));
bool inIncompatible = false;
bool lastFit = false;
int fittingProtection = -1;
int firstStickyProtection = -1;
int regionAfterFitting = -1;
foreach (i, stickyProtection; regions)
{
if (stickyProtection.affectsFollowing
&& stickyProtection.protection != CodeRegionProtection.init)
{
if (firstStickyProtection == -1)
firstStickyProtection = cast(int) i;
if ((stickyProtection.protection & checkProtection) != 0)
{
fittingProtection = cast(int) i;
lastFit = true;
if (!insertInLastBlock)
break;
}
else
{
if (lastFit)
{
regionAfterFitting = cast(int) i;
lastFit = false;
}
inIncompatible = true;
}
}
}
assert(firstStickyProtection != -1 || !inIncompatible);
assert(regionAfterFitting != -1 || fittingProtection == -1 || !inIncompatible);
if (inIncompatible)
{
int insertRegion = fittingProtection == -1 ? firstStickyProtection : regionAfterFitting;
insertCode = text(indent(insertCode, regions[insertRegion].minIndentation), "\n\n");
auto len = cast(uint) insertCode.length;
toInsert.region[0] = regions[insertRegion].region[0];
toInsert.region[1] = regions[insertRegion].region[0] + len;
foreach (ref r; regions[insertRegion .. $])
{
r.region[0] += len;
r.region[1] += len;
}
}
else
{
auto lastRegion = regions.back;
insertCode = indent(insertCode, lastRegion.minIndentation).idup;
auto len = cast(uint) insertCode.length;
toInsert.region[0] = lastRegion.region[1];
toInsert.region[1] = lastRegion.region[1] + len;
}
regions ~= toInsert;
ret ~= CodeReplacement([toInsert.region[0], toInsert.region[0]], insertCode);
}
else
{
auto target = insertInLastBlock ? existing.tail(1).front : existing.front;
insertCode = text("\n\n", indent(insertCode, regions[target.index].minIndentation));
const codeLength = cast(int) insertCode.length;
if (insertAtEnd)
{
ret ~= CodeReplacement([
target.value.region[1], target.value.region[1]
], insertCode);
toInsert.region[0] = target.value.region[1];
toInsert.region[1] = target.value.region[1] + codeLength;
regions[target.index].region[1] = toInsert.region[1];
foreach (ref other; regions[target.index + 1 .. $])
{
other.region[0] += codeLength;
other.region[1] += codeLength;
}
}
else
{
ret ~= CodeReplacement([
target.value.region[0], target.value.region[0]
], insertCode);
regions[target.index].region[1] += codeLength;
foreach (ref other; regions[target.index + 1 .. $])
{
other.region[0] += codeLength;
other.region[1] += codeLength;
}
}
}
}
return ret;
}
/// Implements the interfaces or abstract classes of a specified class/interface.
/// Helper function which returns all functions as one block for most primitive use.
Future!string implement(scope const(char)[] code, int position,
bool formatCode = true, string[] formatArgs = [])
{
auto ret = new typeof(return);
gthreads.create({
mixin(traceTask);
try
{
auto impl = implementAllSync(code, position, formatCode, formatArgs);
auto buf = appender!string;
string lastBaseClass;
foreach (ref func; impl)
{
if (func.baseClass != lastBaseClass)
{
buf.put("// implement " ~ func.baseClass ~ "\n\n");
lastBaseClass = func.baseClass;
}
buf.put(func.code);
buf.put("\n\n");
}
ret.finish(buf.data.length > 2 ? buf.data[0 .. $ - 2] : buf.data);
}
catch (Throwable t)
{
ret.error(t);
}
});
return ret;
}
/// Implements the interfaces or abstract classes of a specified class/interface.
/// The async implementation is preferred when used in background tasks to prevent disruption
/// of other services as a lot of code is parsed and processed multiple times for this function.
/// Params:
/// code = input file to parse and edit.
/// position = position of the superclass or interface to implement after the colon in a class definition.
/// formatCode = automatically calls dfmt on all function bodys when true.
/// formatArgs = sets the formatter arguments to pass to dfmt if formatCode is true.
/// snippetExtensions = if true, snippets according to the vscode documentation will be inserted in place of method content. See https://code.visualstudio.com/docs/editor/userdefinedsnippets#_creating-your-own-snippets
/// Returns: a list of newly implemented methods
Future!(ImplementedMethod[]) implementAll(scope const(char)[] code, int position,
bool formatCode = true, string[] formatArgs = [], bool snippetExtensions = false)
{
mixin(
gthreadsAsyncProxy!`implementAllSync(code, position, formatCode, formatArgs, snippetExtensions)`);
}
/// ditto
ImplementedMethod[] implementAllSync(scope const(char)[] code, int position,
bool formatCode = true, string[] formatArgs = [], bool snippetExtensions = false)
{
auto tree = describeInterfaceRecursiveSync(code, position);
auto availableVariables = tree.availableVariables;
string[] implementedMethods = tree.details
.methods
.filter!"!a.needsImplementation"
.map!"a.identifier"
.array;
int snippetIndex = 0;
// maintains snippet ids and their value in an AA so they can be replaced after formatting
string[string] snippetReplacements;
auto methods = appender!(ImplementedMethod[]);
void processTree(ref InterfaceTree tree)
{
auto details = tree.details;
if (details.methods.length)
{
foreach (fn; details.methods)
{
if (implementedMethods.canFind(fn.identifier))
continue;
if (!fn.needsImplementation)
{
implementedMethods ~= fn.identifier;
continue;
}
//dfmt off
ImplementedMethod method = {
baseClass: details.name,
name: fn.name
};
//dfmt on
auto buf = appender!string;
snippetIndex++;
bool writtenSnippet;
string snippetId;
auto snippetBuf = appender!string;
void startSnippet(bool withDefault = true)
{
if (writtenSnippet || !snippetExtensions)
return;
snippetId = format!`/+++__WORKSPACED_SNIPPET__%s__+++/`(snippetIndex);
buf.put(snippetId);
swap(buf, snippetBuf);
buf.put("${");
buf.put(snippetIndex.to!string);
if (withDefault)
buf.put(":");
writtenSnippet = true;
}
void endSnippet()
{
if (!writtenSnippet || !snippetExtensions)
return;
buf.put("}");
swap(buf, snippetBuf);
snippetReplacements[snippetId] = snippetBuf.data;
}
if (details.needsOverride)
buf.put("override ");
buf.put(fn.signature[0 .. $ - 1]);
buf.put(" {");
if (fn.optionalImplementation)
{
buf.put("\n\t");
startSnippet();
buf.put("// TODO: optional implementation\n");
}
string propertySearch;
if (fn.signature.canFind("@property") && fn.arguments.length <= 1)
propertySearch = fn.name;
else if ((fn.name.startsWith("get") && fn.arguments.length == 0)
|| (fn.name.startsWith("set") && fn.arguments.length == 1))
propertySearch = fn.name[3 .. $];
string foundProperty;
if (propertySearch)
{
// frontOrDefault
const matching = availableVariables.find!(a => fieldNameMatches(a.name,
propertySearch));
if (!matching.empty)
foundProperty = matching.front.name;
}
if (foundProperty.length)
{
method.autoProperty = true;
buf.put("\n\t");
startSnippet();
if (fn.returnType != "void")
{
method.getter = true;
buf.put("return ");
}
if (fn.name.startsWith("set") || fn.arguments.length == 1)
{
method.setter = true;
buf.put(foundProperty ~ " = " ~ fn.arguments[0].name);
}
else
{
// neither getter nor setter, but we will just put the property here anyway
buf.put(foundProperty);
}
buf.put(";");
endSnippet();
buf.put("\n");
}
else if (fn.hasBody)
{
method.callsSuper = true;
buf.put("\n\t");
startSnippet();
if (fn.returnType != "void")
buf.put("return ");
buf.put("super." ~ fn.name);
if (fn.arguments.length)
buf.put("(" ~ format("%(%s, %)", fn.arguments)
.translate(['\\': `\\`, '{': `\{`, '$': `\$`, '}': `\}`]) ~ ")");
else if (fn.returnType == "void")
buf.put("()"); // make functions that don't return add (), otherwise they might be attributes and don't need that
buf.put(";");
endSnippet();
buf.put("\n");
}
else if (fn.returnType != "void")
{
method.debugImpl = true;
buf.put("\n\t");
if (snippetExtensions)
{
startSnippet(false);
buf.put('|');
// choice snippet
if (fn.returnType.endsWith("[]"))
buf.put("return null; // TODO: implement");
else
buf.put("return " ~ fn.returnType.translate([
'\\': `\\`,
'{': `\{`,
'$': `\$`,
'}': `\}`,
'|': `\|`,
',': `\,`
]) ~ ".init; // TODO: implement");
buf.put(',');
buf.put(`assert(false\, "Method ` ~ fn.name ~ ` not implemented");`);
buf.put('|');
endSnippet();
}
else
{
if (fn.isNothrowOrNogc)
{
if (fn.returnType.endsWith("[]"))
buf.put("return null; // TODO: implement");
else
buf.put("return " ~ fn.returnType.translate([
'\\': `\\`,
'{': `\{`,
'$': `\$`,
'}': `\}`
]) ~ ".init; // TODO: implement");
}
else
buf.put(`assert(false, "Method ` ~ fn.name ~ ` not implemented");`);
}
buf.put("\n");
}
else if (snippetExtensions)
{
buf.put("\n\t");
startSnippet(false);
endSnippet();
buf.put("\n");
}
buf.put("}");
method.code = buf.data;
methods.put(method);
}
}
foreach (parent; tree.inherits)
processTree(parent);
}
processTree(tree);
if (formatCode && has!DfmtComponent)
{
foreach (ref method; methods.data)
method.code = get!DfmtComponent.formatSync(method.code, formatArgs).strip;
}
foreach (ref method; methods.data)
{
// TODO: replacing using aho-corasick would be far more efficient but there is nothing like that in phobos
foreach (key, value; snippetReplacements)
{
method.code = method.code.replace(key, value);
}
}
return methods.data;
}
/// Looks up a declaration of a type and then extracts information about it as class or interface.
InterfaceDetails lookupInterface(scope const(char)[] code, int position)
{
auto data = get!DCDComponent.findDeclaration(code, position).getBlocking;
string file = data.file;
int newPosition = data.position;
if (!file.length || !newPosition)
return InterfaceDetails.init;
auto newCode = code;
if (file != "stdin")
newCode = readText(file);
return getInterfaceDetails(file, newCode, newPosition);
}
/// Extracts information about a given class or interface at the given position.
InterfaceDetails getInterfaceDetails(string file, scope const(char)[] code, int position)
{
RollbackAllocator rba;
auto tokens = getTokensForParser(cast(ubyte[]) code, config, &workspaced.stringCache);
auto parsed = parseModule(tokens, file, &rba);
auto reader = new InterfaceMethodFinder(code, position);
reader.visit(parsed);
return reader.details;
}
Future!InterfaceTree describeInterfaceRecursive(scope const(char)[] code, int position)
{
mixin(gthreadsAsyncProxy!`describeInterfaceRecursiveSync(code, position)`);
}
InterfaceTree describeInterfaceRecursiveSync(scope const(char)[] code, int position)
{
auto baseInterface = getInterfaceDetails("stdin", code, position);
InterfaceTree tree = InterfaceTree(baseInterface);
InterfaceTree* treeByName(InterfaceTree* tree, string name)
{
if (tree.details.name == name)
return tree;
foreach (ref parent; tree.inherits)
{
InterfaceTree* t = treeByName(&parent, name);
if (t !is null)
return t;
}
return null;
}
void traverseTree(ref InterfaceTree sub)
{
foreach (i, parent; sub.details.parentPositions)
{
string parentName = sub.details.normalizedParents[i];
if (treeByName(&tree, parentName) is null)
{
auto details = lookupInterface(sub.details.code, parent);
details.name = parentName;
sub.inherits ~= InterfaceTree(details);
}
}
foreach (ref inherit; sub.inherits)
traverseTree(inherit);
}
traverseTree(tree);
return tree;
}
Related[] highlightRelated(scope const(char)[] code, int position)
{
auto tokens = getTokensForParser(cast(ubyte[]) code, config, &workspaced.stringCache);
if (!tokens.length)
return null;
auto token = tokens.tokenIndexAtByteIndex(position);
if (token >= tokens.length || !tokens[token].isLikeIdentifier)
return null;
Module _parsed;
RollbackAllocator rba;
Module parsed()
{
if (_parsed)
return _parsed;
return _parsed = parseModule(tokens, "stdin", &rba);
}
Related[] ret;
switch (tokens[token].type)
{
case tok!"static":
if (token + 1 < tokens.length)
{
if (tokens[token + 1].type == tok!"if")
{
token++;
goto case tok!"if";
}
else if (tokens[token + 1].type == tok!"foreach" || tokens[token + 1].type == tok!"foreach_reverse")
{
token++;
goto case tok!"for";
}
}
goto default;
case tok!"if":
case tok!"else":
// if lister
auto finder = new IfFinder();
finder.target = tokens[token].index;
finder.visit(parsed);
foreach (ifToken; finder.foundIf)
ret ~= Related(Related.Type.controlFlow, [ifToken.index, ifToken.index + ifToken.tokenText.length]);
break;
case tok!"for":
case tok!"foreach":
case tok!"foreach_reverse":
case tok!"while":
case tok!"do":
case tok!"break":
case tok!"continue":
// loop and switch matcher
// special case for switch
auto finder = new BreakFinder();
finder.target = tokens[token].index;
finder.isBreak = tokens[token].type == tok!"break";
finder.isLoop = !(tokens[token].type == tok!"break" || tokens[token].type == tok!"continue");
if (token + 1 < tokens.length && tokens[token + 1].type == tok!"identifier")
finder.label = tokens[token + 1].text;
finder.visit(parsed);
if (finder.isLoop && finder.foundBlock.length)
{
auto retFinder = new ReverseReturnFinder();
retFinder.target = finder.target;
retFinder.visit(parsed);
finder.foundBlock ~= retFinder.returns;
finder.foundBlock.sort!"a.index < b.index";
}
foreach (blockToken; finder.foundBlock)
ret ~= Related(Related.Type.controlFlow, [blockToken.index, blockToken.index + blockToken.tokenText.length]);
break;
case tok!"switch":
case tok!"case":
case tok!"default":
// switch/case lister
auto finder = new SwitchFinder();
finder.target = tokens[token].index;
finder.visit(parsed);
foreach (switchToken; finder.foundSwitch)
ret ~= Related(Related.Type.controlFlow, [switchToken.index, switchToken.index + switchToken.tokenText.length]);
break;
case tok!"return":
// return effect lister
auto finder = new ReturnFinder();
finder.target = tokens[token].index;
finder.visit(parsed);
foreach (switchToken; finder.related)
ret ~= Related(Related.Type.controlFlow, [switchToken.index, switchToken.index + switchToken.tokenText.length]);
break;
default:
// exact token / string matcher
auto currentText = tokens[token].tokenText;
foreach (i, tok; tokens)
{
if (tok.type == tokens[token].type && tok.text == tokens[token].text)
ret ~= Related(Related.Type.exactToken, [tok.index, tok.index + currentText.length]);
else if (tok.type.isSomeString && tok.evaluateExpressionString == currentText)
ret ~= Related(Related.Type.exactString, [tok.index, tok.index + tok.text.length]);
}
break;
}
return ret;
}
FoldingRange[] getFoldingRanges(scope const(char)[] code)
{
auto ret = appender!(FoldingRange[]);
LexerConfig config = this.config;
config.whitespaceBehavior = WhitespaceBehavior.skip;
config.commentBehavior = CommentBehavior.noIntern;
auto tokens = appender!(Token[])();
auto lexer = DLexer(code, config, &workspaced.stringCache);
loop: foreach (token; lexer) switch (token.type)
{
case tok!"specialTokenSequence":
case tok!"whitespace":
break;
case tok!"comment":
auto commentText = token.text;
if (commentText.canFind("\n"))
{
ret ~= FoldingRange(
token.index,
token.index + token.text.length,
FoldingRangeType.comment
);
}
break;
case tok!"__EOF__":
break loop;
default:
tokens.put(token);
break;
}
if (!tokens.data.length)
return ret.data;
RollbackAllocator rba;
auto tokensSlice = tokens.data;
scope parsed = parseModule(tokensSlice, "getFoldingRanges_input.d", &rba);
scope visitor = new FoldingRangeGenerator(tokensSlice);
visitor.visit(parsed);
foreach (found; visitor.ranges.data)
if (found.start != -1 && found.end != -1)
ret ~= found;
if (has!ImporterComponent)
foreach (importBlock; get!ImporterComponent.findImportCodeSlices(code))
ret ~= FoldingRange(importBlock.start, importBlock.end, FoldingRangeType.imports);
return ret.data;
}
/// Formats DCD definitions (symbol declarations) in a readable format.
/// For functions this formats each argument in a separate line.
/// For other symbols the definition is returned as-is.
string formatDefinitionBlock(string definition)
{
// DCD definition help contains calltips for functions, which always end
// with )
if (!definition.endsWith(")"))
return definition;
auto tokens = getTokensForParser(cast(const(ubyte)[]) definition ~ ';',
config, &workspaced.stringCache);
if (!tokens.length)
return definition;
RollbackAllocator rba;
auto parser = new Parser();
parser.fileName = "stdin";
parser.tokens = tokens;
parser.messageFunction = null;
parser.messageDelegate = null;
parser.allocator = &rba;
const Declaration decl = parser.parseDeclaration(
false, // strict
true // must be declaration (for constructor)
);
if (!decl)
return definition;
const FunctionDeclaration funcdecl = decl.functionDeclaration;
const Constructor ctor = decl.constructor;
if (!funcdecl && !ctor)
return definition;
auto ret = appender!string();
ret.reserve(definition.length);
if (funcdecl)
ret.put(definition[0 .. funcdecl.name.index + funcdecl.name.text.length]);
else if (ctor)
ret.put("this");
const templateParameters = funcdecl ? funcdecl.templateParameters : ctor.templateParameters;
if (templateParameters && templateParameters.templateParameterList)
{
const params = templateParameters.templateParameterList.items;
ret.put("(\n");
foreach (i, param; params)
{
assert(param.tokens.length, "no tokens for template parameter?!");
const start = param.tokens[0].index;
const end = param.tokens[$ - 1].index + tokenText(param.tokens[$ - 1]).length;
const hasNext = i + 1 < params.length;
ret.put("\t");
ret.put(definition[start .. end]);
if (hasNext)
ret.put(",");
ret.put("\n");
}
ret.put(")");
}
const parameters = funcdecl ? funcdecl.parameters : ctor.parameters;
if (parameters && (parameters.parameters.length || parameters.hasVarargs))
{
const params = parameters.parameters;
ret.put("(\n");
foreach (i, param; params)
{
assert(param.tokens.length, "no tokens for parameter?!");
const start = param.tokens[0].index;
const end = param.tokens[$ - 1].index + tokenText(param.tokens[$ - 1]).length;
const hasNext = parameters.hasVarargs || i + 1 < params.length;
ret.put("\t");
ret.put(definition[start .. end]);
if (hasNext)
ret.put(",");
ret.put("\n");
}
if (parameters.hasVarargs)
ret.put("\t...\n");
ret.put(")");
}
else
{
ret.put("()");
}
return ret.data;
}
private:
LexerConfig config;
}
///
enum CodeRegionType : int
{
/// null region (unset)
init,
/// Imports inside the block
imports = 1 << 0,
/// Aliases `alias foo this;`, `alias Type = Other;`
aliases = 1 << 1,
/// Nested classes/structs/unions/etc.
types = 1 << 2,
/// Raw variables `Type name;`
fields = 1 << 3,
/// Normal constructors `this(Args args)`
ctor = 1 << 4,
/// Copy constructors `this(this)`
copyctor = 1 << 5,
/// Destructors `~this()`
dtor = 1 << 6,
/// Properties (functions annotated with `@property`)
properties = 1 << 7,
/// Regular functions
methods = 1 << 8,
}
///
enum CodeRegionProtection : int
{
/// null protection (unset)
init,
/// default (unmarked) protection
default_ = 1 << 0,
/// public protection
public_ = 1 << 1,
/// package (automatic) protection
package_ = 1 << 2,
/// package (manual package name) protection
packageIdentifier = 1 << 3,
/// protected protection
protected_ = 1 << 4,
/// private protection
private_ = 1 << 5,
}
///
enum CodeRegionStatic : int
{
/// null static (unset)
init,
/// non-static code
instanced = 1 << 0,
/// static code
static_ = 1 << 1,
}
/// Represents a class/interface/struct/union/template with body.
struct CodeBlockInfo
{
///
enum Type : int
{
// keep the underlines in these values for range checking properly
///
class_,
///
interface_,
///
struct_,
///
union_,
///
template_,
}
static immutable string[] typePrefixes = [
"class ", "interface ", "struct ", "union ", "template "
];
///
Type type;
///
string name;
/// Outer range inside the code spanning curly braces and name but not type keyword.
uint[2] outerRange;
/// Inner range of body of the block touching, but not spanning curly braces.
uint[2] innerRange;
string prefix() @property
{
return typePrefixes[cast(int) type];
}
}
///
struct CalltipsSupport
{
///
struct Argument
{
/// Ranges of type, name and value not including commas or parentheses, but being right next to them. For calls this is the only important and accurate value.
int[2] contentRange;
/// Range of just the type, or for templates also `alias`
int[2] typeRange;
/// Range of just the name
int[2] nameRange;
/// Range of just the default value
int[2] valueRange;
/// True if the type declaration is variadic (using ...), or without typeRange a completely variadic argument
bool variadic;
/// Creates Argument(range, range, range, 0)
static Argument templateType(int[2] range)
{
return Argument(range, range, range);
}
/// Creates Argument(range, 0, range, range)
static Argument templateValue(int[2] range)
{
return Argument(range, typeof(range).init, range, range);
}
/// Creates Argument(range, 0, 0, 0, true)
static Argument anyVariadic(int[2] range)
{
return Argument(range, typeof(range).init, typeof(range).init, typeof(range).init, true);
}
}
bool hasTemplate() @property
{
return hasTemplateParens || templateArgumentsRange != typeof(templateArgumentsRange).init;
}
/// Range starting before exclamation point until after closing bracket or before function opening bracket.
int[2] templateArgumentsRange;
///
bool hasTemplateParens;
///
Argument[] templateArgs;
/// Range starting before opening parentheses until after closing parentheses.
int[2] functionParensRange;
///
Argument[] functionArgs;
/// True if the function is UFCS or a member function of some object or namespace.
/// False if this is a global function call.
bool hasParent;
/// Start of the function itself.
int functionStart;
/// Start of the whole call going up all call parents. (`foo.bar.function` having `foo.bar` as parents)
int parentStart;
/// True if cursor is in template parameters
bool inTemplateParameters;
/// Number of the active parameter (where the cursor is) or -1 if in none
int activeParameter = -1;
}
/// Represents one method automatically implemented off a base interface.
struct ImplementedMethod
{
/// Contains the interface or class name from where this method is implemented.
string baseClass;
/// The name of the function being implemented.
string name;
/// True if an automatic implementation calling the base class has been made.
bool callsSuper;
/// True if a default implementation that should definitely be changed (assert or for nogc/nothrow simple init return) has been implemented.
bool debugImpl;
/// True if the method has been detected as property and implemented as such.
bool autoProperty;
/// True if the method is either a getter or a setter but not both. Is none for non-autoProperty methods but also when a getter has been detected but the method returns void.
bool getter, setter;
/// Actual code to insert for this class without class indentation but optionally already formatted.
string code;
}
/// Contains details about an interface or class and all extended or implemented interfaces/classes recursively.
struct InterfaceTree
{
/// Details of the template in question.
InterfaceDetails details;
/// All inherited classes in lexical order.
InterfaceTree[] inherits;
const(FieldDetails)[] availableVariables(bool onlyPublic = false) const
{
if (!inherits.length && !onlyPublic)
return details.fields;
// start with private, add all the public ones later in traverseTree
auto ret = appender!(typeof(return));
if (onlyPublic)
ret.put(details.fields.filter!(a => !a.isPrivate));
else
ret.put(details.fields);
foreach (sub; inherits)
ret.put(sub.availableVariables(true));
return ret.data;
}
}
/// Represents one selection for things related to the queried cursor position.
struct Related
{
///
enum Type
{
/// token is the same as the selected token (except for non-text tokens)
exactToken,
/// string content is exactly equal to identifier text
exactString,
/// token is related to control flow:
/// - all if/else keywords when checking any of them
/// - loop/switch keyword when checking a break/continue
controlFlow
}
/// The type of the related selection.
Type type;
/// Byte range [from-inclusive, to-exclusive] of the related selection.
size_t[2] range;
}
/// Represents the kind of folding range
enum FoldingRangeType
{
/// Represents a generic region, such as code blocks
region,
/// Emitted on comments that are larger than one line
comment,
/// Emitted on blocks of imports
imports,
}
/// Represents a folding range where code can be collapsed.
struct FoldingRange
{
/// Start and end byte positions (before the first character and after the
/// last character respectively)
size_t start, end;
/// Describes what kind of range this is.
FoldingRangeType type;
}
private:
bool isCalltipable(IdType type)
{
return type == tok!"identifier" || type == tok!"assert" || type == tok!"import"
|| type == tok!"mixin" || type == tok!"super" || type == tok!"this" || type == tok!"__traits";
}
int[2] tokenRange(const Token token)
{
return [cast(int) token.index, cast(int)(token.index + token.tokenText.length)];
}
int tokenEnd(const Token token)
{
return cast(int)(token.index + token.tokenText.length);
}
int tokenEnd(const Token[] token)
{
if (token.length)
return tokenEnd(token[$ - 1]);
else
return -1;
}
int tokenIndex(const(Token)[] tokens, ptrdiff_t i)
{
if (i > 0 && i == tokens.length)
return cast(int)(tokens[$ - 1].index + tokens[$ - 1].tokenText.length);
return i >= 0 ? cast(int) tokens[i].index : 0;
}
int tokenEndIndex(const(Token)[] tokens, ptrdiff_t i)
{
if (i > 0 && i == tokens.length)
return cast(int)(tokens[$ - 1].index + tokens[$ - 1].text.length);
return i >= 0 ? cast(int)(tokens[i].index + tokens[i].tokenText.length) : 0;
}
/// Returns the index of the closing parentheses in tokens starting at the opening parentheses which is must be at tokens[open].
ptrdiff_t findClosingParenForward(const(Token)[] tokens, ptrdiff_t open, string what = null)
in(tokens[open].type == tok!"(",
"Calling findClosingParenForward must be done on a ( token and not on a " ~ str(
tokens[open].type) ~ " token! " ~ what)
{
if (open >= tokens.length || open < 0)
return open;
open++;
int depth = 1;
int subDepth = 0;
while (open < tokens.length)
{
const c = tokens[open];
if (c == tok!"(" || c == tok!"[")
depth++;
else if (c == tok!"{")
subDepth++;
else if (c == tok!"}")
{
if (subDepth == 0)
break;
subDepth--;
}
else
{
if (c == tok!";" && subDepth == 0)
break;
if (c == tok!")" || c == tok!"]")
depth--;
if (depth == 0)
break;
}
open++;
}
return open;
}
CalltipsSupport.Argument[] splitArgs(const(Token)[] tokens, bool templateArgs)
{
auto ret = appender!(CalltipsSupport.Argument[]);
size_t start = 0;
size_t valueStart = 0;
int depth, subDepth;
const targetDepth = tokens.length > 0 && tokens[0].type == tok!"(" ? 1 : 0;
bool gotValue;
void putArg(size_t end)
{
if (start >= end || start >= tokens.length)
return;
CalltipsSupport.Argument arg;
auto typename = tokens[start .. end];
arg.contentRange = [cast(int) typename[0].index, typename[$ - 1].tokenEnd];
if (gotValue && valueStart > start && valueStart <= end)
{
typename = tokens[start .. valueStart - 1];
auto val = tokens[valueStart .. end];
if (val.length)
arg.valueRange = [cast(int) val[0].index, val[$ - 1].tokenEnd];
}
if (typename.length && typename[$ - 1].type == tok!"...")
{
arg.variadic = true;
typename = typename[0 .. $ - 1];
}
if (typename.length)
{
if (typename.length >= 2 && typename[$ - 1].type == tok!"identifier")
{
arg.typeRange = [cast(int) typename[0].index, typename[$ - 2].tokenEnd];
arg.nameRange = typename[$ - 1].tokenRange;
}
else
{
arg.typeRange = arg.nameRange = [cast(int) typename[0].index, typename[$ - 1].tokenEnd];
}
}
ret.put(arg);
gotValue = false;
start = end + 1;
}
foreach (i, token; tokens)
{
if (token.type == tok!"{")
subDepth++;
else if (token.type == tok!"}")
{
if (subDepth == 0)
break;
subDepth--;
}
else if (token.type == tok!"(" || token.type == tok!"[")
depth++;
else if (token.type == tok!")" || token.type == tok!"]")
{
if (depth <= targetDepth)
break;
depth--;
}
if (depth == targetDepth)
{
if (token.type == tok!",")
putArg(i);
else if (token.type == tok!":" || token.type == tok!"=")
{
if (!gotValue)
{
valueStart = i + 1;
gotValue = true;
}
}
}
}
putArg(tokens.length);
return ret.data;
}
auto indent(scope const(char)[] code, string indentation)
{
return code.lineSplitter!(KeepTerminator.yes)
.map!(a => a.length ? indentation ~ a : a)
.join;
}
bool fieldNameMatches(string field, in char[] expected)
{
import std.uni : sicmp;
if (field.startsWith("_"))
field = field[1 .. $];
else if (field.startsWith("m_"))
field = field[2 .. $];
else if (field.length >= 2 && field[0] == 'm' && field[1].isUpper)
field = field[1 .. $];
return field.sicmp(expected) == 0;
}
auto sliceIdentifierChain(scope return inout(Token)[] tokens)
{
size_t start = 0;
if (tokens.length && tokens[0].type == tok!".")
start = 1;
if (start >= tokens.length || tokens[start].type != tok!"identifier")
return false;
start++;
auto expectDot = true;
foreach (t; tokens[start .. $])
{
if (expectDot && t != tok!".")
return start;
if (!expectDot && t != tok!"identifier")
return start;
expectDot = !expectDot;
start++;
}
return start;
}
final class CodeBlockInfoFinder : ASTVisitor
{
this(int targetPosition)
{
this.targetPosition = targetPosition;
}
override void visit(const ClassDeclaration dec)
{
visitContainer(dec.name, CodeBlockInfo.Type.class_, dec.structBody);
}
override void visit(const InterfaceDeclaration dec)
{
visitContainer(dec.name, CodeBlockInfo.Type.interface_, dec.structBody);
}
override void visit(const StructDeclaration dec)
{
visitContainer(dec.name, CodeBlockInfo.Type.struct_, dec.structBody);
}
override void visit(const UnionDeclaration dec)
{
visitContainer(dec.name, CodeBlockInfo.Type.union_, dec.structBody);
}
override void visit(const TemplateDeclaration dec)
{
if (cast(int) targetPosition >= cast(int) dec.name.index && targetPosition < dec.endLocation)
{
block = CodeBlockInfo.init;
block.type = CodeBlockInfo.Type.template_;
block.name = dec.name.text;
block.outerRange = [
cast(uint) dec.name.index, cast(uint) dec.endLocation + 1
];
block.innerRange = [
cast(uint) dec.startLocation + 1, cast(uint) dec.endLocation
];
dec.accept(this);
}
}
private void visitContainer(const Token name, CodeBlockInfo.Type type, const StructBody structBody)
{
if (!structBody)
return;
if (cast(int) targetPosition >= cast(int) name.index && targetPosition < structBody.endLocation)
{
block = CodeBlockInfo.init;
block.type = type;
block.name = name.text;
block.outerRange = [
cast(uint) name.index, cast(uint) structBody.endLocation + 1
];
block.innerRange = [
cast(uint) structBody.startLocation + 1, cast(uint) structBody.endLocation
];
structBody.accept(this);
}
}
alias visit = ASTVisitor.visit;
CodeBlockInfo block;
int targetPosition;
}
version (unittest) static immutable string SimpleClassTestCode = q{
module foo;
class FooBar
{
public:
int i; // default instanced fields
string s;
long l;
public this() // public instanced ctor
{
i = 4;
}
protected:
int x; // protected instanced field
private:
static const int foo() @nogc nothrow pure @system // private static methods
{
if (s == "a")
{
i = 5;
}
}
static void bar1() {}
void bar2() {} // private instanced methods
void bar3() {}
struct Something { string bar; }
FooBar.Something somefunc() { return Something.init; }
Something somefunc2() { return Something.init; }
}}.replace("\r\n", "\n");
unittest
{
scope backend = new WorkspaceD();
auto workspace = makeTemporaryTestingWorkspace;
auto instance = backend.addInstance(workspace.directory);
backend.register!DCDExtComponent;
DCDExtComponent dcdext = instance.get!DCDExtComponent;
assert(dcdext.getCodeBlockRange(SimpleClassTestCode, 123) == CodeBlockInfo(CodeBlockInfo.Type.class_,
"FooBar", [20, SimpleClassTestCode.length], [
28, SimpleClassTestCode.length - 1
]));
assert(dcdext.getCodeBlockRange(SimpleClassTestCode, 19) == CodeBlockInfo.init);
assert(dcdext.getCodeBlockRange(SimpleClassTestCode, 20) != CodeBlockInfo.init);
auto replacements = dcdext.insertCodeInContainer("void foo()\n{\n\twriteln();\n}",
SimpleClassTestCode, 123);
// TODO: make insertCodeInContainer work properly?
}
unittest
{
import std.conv;
scope backend = new WorkspaceD();
auto workspace = makeTemporaryTestingWorkspace;
auto instance = backend.addInstance(workspace.directory);
backend.register!DCDExtComponent;
DCDExtComponent dcdext = instance.get!DCDExtComponent;
auto extract = dcdext.extractCallParameters("int x; foo.bar(4, fgerg\n\nfoo(); int y;", 23);
assert(!extract.hasTemplate);
assert(extract.parentStart == 7);
assert(extract.functionStart == 11);
assert(extract.functionParensRange[0] == 14);
assert(extract.functionParensRange[1] <= 31);
assert(extract.functionArgs.length == 2);
assert(extract.functionArgs[0].contentRange == [15, 16]);
assert(extract.functionArgs[1].contentRange[0] == 18);
assert(extract.functionArgs[1].contentRange[1] <= 31);
extract = dcdext.extractCallParameters("int x; foo.bar(4, fgerg)\n\nfoo(); int y;", 23);
assert(!extract.hasTemplate);
assert(extract.parentStart == 7);
assert(extract.functionStart == 11);
assert(extract.functionParensRange == [14, 24]);
assert(extract.functionArgs.length == 2);
assert(extract.functionArgs[0].contentRange == [15, 16]);
assert(extract.functionArgs[1].contentRange == [18, 23]);
extract = dcdext.extractCallParameters("void foo()", 9, true);
assert(extract != CalltipsSupport.init);
extract = dcdext.extractCallParameters("void foo()", 10, true);
assert(extract == CalltipsSupport.init);
// caused segfault once, doesn't return anything important
extract = dcdext.extractCallParameters(`SomeType!(int,"int_")foo(T,Args...)(T a,T b,string[string] map,Other!"(" stuff1,SomeType!(double,")double")myType,Other!"(" stuff,Other!")")`,
140, true);
assert(extract == CalltipsSupport.init);
extract = dcdext.extractCallParameters(
`auto bar(int foo, Button, my.Callback cb, ..., int[] arr ...)`, 60, true);
assert(extract != CalltipsSupport.init);
assert(!extract.hasTemplate);
assert(!extract.inTemplateParameters);
assert(extract.activeParameter == 4);
assert(extract.functionStart == 5);
assert(extract.parentStart == 5);
assert(extract.functionParensRange == [8, 61]);
assert(extract.functionArgs.length == 5);
assert(extract.functionArgs[0].contentRange == [9, 16]);
assert(extract.functionArgs[0].typeRange == [9, 12]);
assert(extract.functionArgs[0].nameRange == [13, 16]);
assert(extract.functionArgs[1].contentRange == [18, 24]);
assert(extract.functionArgs[1].typeRange == [18, 24]);
assert(extract.functionArgs[1].nameRange == [18, 24]);
assert(extract.functionArgs[2].contentRange == [26, 40]);
assert(extract.functionArgs[2].typeRange == [26, 37]);
assert(extract.functionArgs[2].nameRange == [38, 40]);
assert(extract.functionArgs[3].contentRange == [42, 45]);
assert(extract.functionArgs[3].variadic);
assert(extract.functionArgs[4].contentRange == [47, 60]);
assert(extract.functionArgs[4].typeRange == [47, 52]);
assert(extract.functionArgs[4].nameRange == [53, 56]);
assert(extract.functionArgs[4].variadic);
extract = dcdext.extractCallParameters(q{SomeType!(int, "int_") foo(T, Args...)(T a, T b, string[string] map, Other!"(" stuff1, SomeType!(double, ")double") myType, Other!"(" stuff, Other!")")},
150, true);
assert(extract != CalltipsSupport.init);
assert(extract.hasTemplate);
assert(extract.templateArgumentsRange == [26, 38]);
assert(extract.templateArgs.length == 2);
assert(extract.templateArgs[0].contentRange == [27, 28]);
assert(extract.templateArgs[0].nameRange == [27, 28]);
assert(extract.templateArgs[1].contentRange == [30, 37]);
assert(extract.templateArgs[1].nameRange == [30, 34]);
assert(extract.functionStart == 23);
assert(extract.parentStart == 23);
assert(extract.functionParensRange == [38, 151]);
assert(extract.functionArgs.length == 7);
assert(extract.functionArgs[0].contentRange == [39, 42]);
assert(extract.functionArgs[0].typeRange == [39, 40]);
assert(extract.functionArgs[0].nameRange == [41, 42]);
assert(extract.functionArgs[1].contentRange == [44, 47]);
assert(extract.functionArgs[1].typeRange == [44, 45]);
assert(extract.functionArgs[1].nameRange == [46, 47]);
assert(extract.functionArgs[2].contentRange == [49, 67]);
assert(extract.functionArgs[2].typeRange == [49, 63]);
assert(extract.functionArgs[2].nameRange == [64, 67]);
assert(extract.functionArgs[3].contentRange == [69, 85]);
assert(extract.functionArgs[3].typeRange == [69, 78]);
assert(extract.functionArgs[3].nameRange == [79, 85]);
assert(extract.functionArgs[4].contentRange == [87, 122]);
assert(extract.functionArgs[4].typeRange == [87, 115]);
assert(extract.functionArgs[4].nameRange == [116, 122]);
assert(extract.functionArgs[5].contentRange == [124, 139]);
assert(extract.functionArgs[5].typeRange == [124, 133]);
assert(extract.functionArgs[5].nameRange == [134, 139]);
assert(extract.functionArgs[6].contentRange == [141, 150]);
assert(extract.functionArgs[6].typeRange == [141, 150]);
extract = dcdext.extractCallParameters(`some_garbage(code); before(this); funcCall(4`, 44);
assert(extract != CalltipsSupport.init);
assert(!extract.hasTemplate);
assert(extract.activeParameter == 0);
assert(extract.functionStart == 34);
assert(extract.parentStart == 34);
assert(extract.functionArgs.length == 1);
assert(extract.functionArgs[0].contentRange == [43, 44]);
extract = dcdext.extractCallParameters(`some_garbage(code); before(this); funcCall(4, f(4)`, 50);
assert(extract != CalltipsSupport.init);
assert(!extract.hasTemplate);
assert(extract.activeParameter == 1);
assert(extract.functionStart == 34);
assert(extract.parentStart == 34);
assert(extract.functionArgs.length == 2);
assert(extract.functionArgs[0].contentRange == [43, 44]);
assert(extract.functionArgs[1].contentRange == [46, 50]);
extract = dcdext.extractCallParameters(q{some_garbage(code); before(this); funcCall(4, ["a"], JSONValue(["b": JSONValue("c")]), recursive(func, call!s()), "texts )\"(too"},
129);
assert(extract != CalltipsSupport.init);
assert(!extract.hasTemplate);
assert(extract.functionStart == 34);
assert(extract.parentStart == 34);
assert(extract.functionArgs.length == 5);
assert(extract.functionArgs[0].contentRange == [43, 44]);
assert(extract.functionArgs[1].contentRange == [46, 51]);
assert(extract.functionArgs[2].contentRange == [53, 85]);
assert(extract.functionArgs[3].contentRange == [87, 112]);
assert(extract.functionArgs[4].contentRange == [114, 129]);
extract = dcdext.extractCallParameters(`void log(T t = T.x, A...)(A a) { call(Foo(["bar":"hello"])); } bool x() const @property { return false; } /// This is not code, but rather documentation`,
127);
assert(extract == CalltipsSupport.init);
extract = dcdext.extractCallParameters(`(io.File output = io.stdout)`,
27, true);
assert(extract != CalltipsSupport.init);
assert(!extract.hasTemplate);
assert(extract.functionStart == 0);
assert(extract.parentStart == 0);
assert(extract.functionArgs.length == 1);
assert(extract.functionArgs[0].contentRange == [1, 27]);
assert(extract.functionArgs[0].typeRange == [1, 8]);
assert(extract.functionArgs[0].nameRange == [9, 15]);
assert(extract.functionArgs[0].valueRange == [18, 27]);
extract = dcdext.extractCallParameters(`(string[] args)`,
14, true);
assert(extract != CalltipsSupport.init);
assert(!extract.hasTemplate);
assert(extract.functionStart == 0);
assert(extract.parentStart == 0);
assert(extract.functionArgs.length == 1);
assert(extract.functionArgs[0].contentRange == [1, 14]);
assert(extract.functionArgs[0].typeRange == [1, 9]);
assert(extract.functionArgs[0].nameRange == [10, 14]);
assert(extract.functionArgs[0].valueRange == [0, 0]);
}
unittest
{
scope backend = new WorkspaceD();
auto workspace = makeTemporaryTestingWorkspace;
auto instance = backend.addInstance(workspace.directory);
backend.register!DCDExtComponent;
DCDExtComponent dcdext = instance.get!DCDExtComponent;
auto info = dcdext.describeInterfaceRecursiveSync(SimpleClassTestCode, 23);
assert(info.details.name == "FooBar");
assert(info.details.blockRange == [27, 554]);
assert(info.details.referencedTypes.length == 2);
assert(info.details.referencedTypes[0].name == "Something");
assert(info.details.referencedTypes[0].location == 455);
assert(info.details.referencedTypes[1].name == "string");
assert(info.details.referencedTypes[1].location == 74);
assert(info.details.fields.length == 4);
assert(info.details.fields[0].name == "i");
assert(info.details.fields[1].name == "s");
assert(info.details.fields[2].name == "l");
assert(info.details.fields[3].name == "x");
assert(info.details.types.length == 1);
assert(info.details.types[0].type == TypeDetails.Type.struct_);
assert(info.details.types[0].name == ["FooBar", "Something"]);
assert(info.details.types[0].nameLocation == 420);
assert(info.details.methods.length == 6);
assert(info.details.methods[0].name == "foo");
assert(
info.details.methods[0].signature
== "private static const int foo() @nogc nothrow pure @system;");
assert(info.details.methods[0].returnType == "int");
assert(info.details.methods[0].isNothrowOrNogc);
assert(info.details.methods[0].hasBody);
assert(!info.details.methods[0].needsImplementation);
assert(!info.details.methods[0].optionalImplementation);
assert(info.details.methods[0].definitionRange == [222, 286]);
assert(info.details.methods[0].blockRange == [286, 324]);
assert(info.details.methods[1].name == "bar1");
assert(info.details.methods[1].signature == "private static void bar1();");
assert(info.details.methods[1].returnType == "void");
assert(!info.details.methods[1].isNothrowOrNogc);
assert(info.details.methods[1].hasBody);
assert(!info.details.methods[1].needsImplementation);
assert(!info.details.methods[1].optionalImplementation);
assert(info.details.methods[1].definitionRange == [334, 346]);
assert(info.details.methods[1].blockRange == [346, 348]);
assert(info.details.methods[2].name == "bar2");
assert(info.details.methods[2].signature == "private void bar2();");
assert(info.details.methods[2].returnType == "void");
assert(!info.details.methods[2].isNothrowOrNogc);
assert(info.details.methods[2].hasBody);
assert(!info.details.methods[2].needsImplementation);
assert(!info.details.methods[2].optionalImplementation);
assert(info.details.methods[2].definitionRange == [351, 363]);
assert(info.details.methods[2].blockRange == [363, 365]);
assert(info.details.methods[3].name == "bar3");
assert(info.details.methods[3].signature == "private void bar3();");
assert(info.details.methods[3].returnType == "void");
assert(!info.details.methods[3].isNothrowOrNogc);
assert(info.details.methods[3].hasBody);
assert(!info.details.methods[3].needsImplementation);
assert(!info.details.methods[3].optionalImplementation);
assert(info.details.methods[3].definitionRange == [396, 408]);
assert(info.details.methods[3].blockRange == [408, 410]);
assert(info.details.methods[4].name == "somefunc");
assert(info.details.methods[4].signature == "private FooBar.Something somefunc();");
assert(info.details.methods[4].returnType == "FooBar.Something");
assert(!info.details.methods[4].isNothrowOrNogc);
assert(info.details.methods[4].hasBody);
assert(!info.details.methods[4].needsImplementation);
assert(!info.details.methods[4].optionalImplementation);
assert(info.details.methods[4].definitionRange == [448, 476]);
assert(info.details.methods[4].blockRange == [476, 502]);
// test normalization of types
assert(info.details.methods[5].name == "somefunc2");
assert(info.details.methods[5].signature == "private FooBar.Something somefunc2();",
info.details.methods[5].signature);
assert(info.details.methods[5].returnType == "FooBar.Something");
assert(!info.details.methods[5].isNothrowOrNogc);
assert(info.details.methods[5].hasBody);
assert(!info.details.methods[5].needsImplementation);
assert(!info.details.methods[5].optionalImplementation);
assert(info.details.methods[5].definitionRange == [504, 526]);
assert(info.details.methods[5].blockRange == [526, 552]);
}
unittest
{
string testCode = q{package interface Foo0
{
string stringMethod();
Tuple!(int, string, Array!bool)[][] advancedMethod(int a, int b, string c);
void normalMethod();
int attributeSuffixMethod() nothrow @property @nogc;
private
{
void middleprivate1();
void middleprivate2();
}
extern(C) @property @nogc ref immutable int attributePrefixMethod() const;
final void alreadyImplementedMethod() {}
deprecated("foo") void deprecatedMethod() {}
static void staticMethod() {}
protected void protectedMethod();
private:
void barfoo();
}}.replace("\r\n", "\n");
scope backend = new WorkspaceD();
auto workspace = makeTemporaryTestingWorkspace;
auto instance = backend.addInstance(workspace.directory);
backend.register!DCDExtComponent;
DCDExtComponent dcdext = instance.get!DCDExtComponent;
auto info = dcdext.describeInterfaceRecursiveSync(testCode, 20);
assert(info.details.name == "Foo0");
assert(info.details.blockRange == [23, 523]);
assert(info.details.referencedTypes.length == 3);
assert(info.details.referencedTypes[0].name == "Array");
assert(info.details.referencedTypes[0].location == 70);
assert(info.details.referencedTypes[1].name == "Tuple");
assert(info.details.referencedTypes[1].location == 50);
assert(info.details.referencedTypes[2].name == "string");
assert(info.details.referencedTypes[2].location == 26);
assert(info.details.fields.length == 0);
assert(info.details.methods[0 .. 4].all!"!a.hasBody");
assert(info.details.methods[0 .. 4].all!"a.needsImplementation");
assert(info.details.methods.all!"!a.optionalImplementation");
assert(info.details.methods.length == 12);
assert(info.details.methods[0].name == "stringMethod");
assert(info.details.methods[0].signature == "string stringMethod();");
assert(info.details.methods[0].returnType == "string");
assert(!info.details.methods[0].isNothrowOrNogc);
assert(info.details.methods[1].name == "advancedMethod");
assert(info.details.methods[1].signature
== "Tuple!(int, string, Array!bool)[][] advancedMethod(int a, int b, string c);");
assert(info.details.methods[1].returnType == "Tuple!(int, string, Array!bool)[][]");
assert(!info.details.methods[1].isNothrowOrNogc);
assert(info.details.methods[2].name == "normalMethod");
assert(info.details.methods[2].signature == "void normalMethod();");
assert(info.details.methods[2].returnType == "void");
assert(info.details.methods[3].name == "attributeSuffixMethod");
assert(info.details.methods[3].signature == "int attributeSuffixMethod() nothrow @property @nogc;");
assert(info.details.methods[3].returnType == "int");
assert(info.details.methods[3].isNothrowOrNogc);
assert(info.details.methods[4].name == "middleprivate1");
assert(info.details.methods[4].signature == "private void middleprivate1();");
assert(info.details.methods[4].returnType == "void");
assert(info.details.methods[5].name == "middleprivate2");
assert(info.details.methods[6].name == "attributePrefixMethod");
assert(info.details.methods[6].signature
== "extern (C) @property @nogc ref immutable int attributePrefixMethod() const;");
assert(info.details.methods[6].returnType == "int");
assert(info.details.methods[6].isNothrowOrNogc);
assert(info.details.methods[7].name == "alreadyImplementedMethod");
assert(info.details.methods[7].signature == "void alreadyImplementedMethod();");
assert(info.details.methods[7].returnType == "void");
assert(!info.details.methods[7].needsImplementation);
assert(info.details.methods[7].hasBody);
assert(info.details.methods[8].name == "deprecatedMethod");
assert(info.details.methods[8].signature == `deprecated("foo") void deprecatedMethod();`);
assert(info.details.methods[8].returnType == "void");
assert(info.details.methods[8].needsImplementation);
assert(info.details.methods[8].hasBody);
assert(info.details.methods[9].name == "staticMethod");
assert(info.details.methods[9].signature == `static void staticMethod();`);
assert(info.details.methods[9].returnType == "void");
assert(!info.details.methods[9].needsImplementation);
assert(info.details.methods[9].hasBody);
assert(info.details.methods[10].name == "protectedMethod");
assert(info.details.methods[10].signature == `protected void protectedMethod();`);
assert(info.details.methods[10].returnType == "void");
assert(info.details.methods[10].needsImplementation);
assert(!info.details.methods[10].hasBody);
assert(info.details.methods[11].name == "barfoo");
assert(info.details.methods[11].signature == `private void barfoo();`);
assert(info.details.methods[11].returnType == "void");
assert(!info.details.methods[11].needsImplementation);
assert(!info.details.methods[11].hasBody);
}
unittest
{
string testCode = q{module hello;
interface MyInterface
{
void foo();
}
class ImplA : MyInterface
{
}
class ImplB : MyInterface
{
void foo() {}
}
}.replace("\r\n", "\n");
scope backend = new WorkspaceD();
auto workspace = makeTemporaryTestingWorkspace;
auto instance = backend.addInstance(workspace.directory);
backend.register!DCDExtComponent;
DCDExtComponent dcdext = instance.get!DCDExtComponent;
auto info = dcdext.getInterfaceDetails("stdin", testCode, 72);
assert(info.blockRange == [81, 85]);
}
unittest
{
scope backend = new WorkspaceD();
auto workspace = makeTemporaryTestingWorkspace;
auto instance = backend.addInstance(workspace.directory);
backend.register!DCDExtComponent;
DCDExtComponent dcdext = instance.get!DCDExtComponent;
assert(dcdext.formatDefinitionBlock("Foo!(int, string) x") == "Foo!(int, string) x");
assert(dcdext.formatDefinitionBlock("void foo()") == "void foo()");
assert(dcdext.formatDefinitionBlock("void foo(string x)") == "void foo(\n\tstring x\n)");
assert(dcdext.formatDefinitionBlock("void foo(string x,)") == "void foo(\n\tstring x\n)");
assert(dcdext.formatDefinitionBlock("void foo(string x, int y)") == "void foo(\n\tstring x,\n\tint y\n)");
assert(dcdext.formatDefinitionBlock("void foo(string, int)") == "void foo(\n\tstring,\n\tint\n)");
assert(dcdext.formatDefinitionBlock("this(string, int)") == "this(\n\tstring,\n\tint\n)");
assert(dcdext.formatDefinitionBlock("auto foo(string, int)") == "auto foo(\n\tstring,\n\tint\n)");
assert(dcdext.formatDefinitionBlock("ComplexTemplate!(int, 'a', string, Nested!(Foo)) foo(string, int)")
== "ComplexTemplate!(int, 'a', string, Nested!(Foo)) foo(\n\tstring,\n\tint\n)");
assert(dcdext.formatDefinitionBlock("auto foo(T, V)(string, int)") == "auto foo(\n\tT,\n\tV\n)(\n\tstring,\n\tint\n)");
assert(dcdext.formatDefinitionBlock("auto foo(string, int f, ...)") == "auto foo(\n\tstring,\n\tint f,\n\t...\n)");
}
final class IfFinder : ASTVisitor
{
Token[] currentIf, foundIf;
size_t target;
alias visit = ASTVisitor.visit;
mixin ASTSearchScopeLimit!("target", FunctionBody);
mixin ASTFinisher;
static foreach (If; AliasSeq!(IfStatement, ConditionalStatement))
override void visit(const If ifStatement)
{
if (foundIf.length)
return;
auto lastIf = currentIf;
scope (exit)
currentIf = lastIf;
currentIf = [ifStatement.tokens[0]];
static auto thenStatement(const If v)
{
static if (is(If == IfStatement))
return v.thenStatement;
else
return v.trueStatement;
}
static auto elseStatement(const If v)
{
static if (is(If == IfStatement))
return v.elseStatement;
else
return v.falseStatement;
}
if (thenStatement(ifStatement))
thenStatement(ifStatement).accept(this);
const(BaseNode) elseStmt = elseStatement(ifStatement);
while (elseStmt)
{
auto elseToken = elseStmt.tokens.ptr - 1;
// possible from if declarations
if (elseToken.type == tok!"{" || elseToken.type == tok!":")
elseToken--;
if (elseToken.type == tok!"else")
{
if (!currentIf.length || currentIf[$ - 1] != *elseToken)
currentIf ~= *elseToken;
}
if (auto elseIf = cast(IfStatement) elseStmt)
{
currentIf ~= elseIf.tokens[0];
elseIf.accept(this);
cast()elseStmt = elseIf.elseStatement;
}
else if (auto elseStaticIf = cast(ConditionalStatement) elseStmt)
{
currentIf ~= elseStaticIf.tokens[0];
currentIf ~= elseStaticIf.tokens[1];
elseStaticIf.accept(this);
cast()elseStmt = elseStaticIf.falseStatement;
}
else if (auto declOrStatement = cast(DeclarationOrStatement) elseStmt)
{
if (declOrStatement.statement && declOrStatement.statement.statementNoCaseNoDefault)
{
if (declOrStatement.statement.statementNoCaseNoDefault.conditionalStatement)
{
cast()elseStmt = declOrStatement.statement.statementNoCaseNoDefault.conditionalStatement;
}
else if (declOrStatement.statement.statementNoCaseNoDefault.ifStatement)
{
cast()elseStmt = declOrStatement.statement.statementNoCaseNoDefault.ifStatement;
}
else
{
elseStmt.accept(this);
cast()elseStmt = null;
}
}
else if (declOrStatement.declaration && declOrStatement.declaration.conditionalDeclaration)
{
auto cond = declOrStatement.declaration.conditionalDeclaration;
if (cond.trueDeclarations.length)
{
auto ifSearch = cond.trueDeclarations[0].tokens.ptr;
while (!ifSearch.type.among!(tok!"if", tok!";", tok!"}", tok!"module"))
ifSearch--;
if (ifSearch.type == tok!"if")
{
if ((ifSearch - 1).type == tok!"static")
currentIf ~= *(ifSearch - 1);
currentIf ~= *ifSearch;
}
}
if (cond.hasElse && cond.falseDeclarations.length == 1)
{
elseStmt.accept(this);
cast()elseStmt = cast()cond.falseDeclarations[0];
}
else
{
elseStmt.accept(this);
cast()elseStmt = null;
}
}
else
{
elseStmt.accept(this);
cast()elseStmt = null;
}
}
else
{
elseStmt.accept(this);
cast()elseStmt = null;
}
}
saveIfMatching();
}
void saveIfMatching()
{
if (foundIf.length)
return;
foreach (v; currentIf)
if (v.index == target)
{
foundIf = currentIf;
exitVisitor = true;
return;
}
}
}
unittest
{
scope backend = new WorkspaceD();
auto workspace = makeTemporaryTestingWorkspace;
auto instance = backend.addInstance(workspace.directory);
backend.register!DCDExtComponent;
DCDExtComponent dcdext = instance.get!DCDExtComponent;
assert(dcdext.highlightRelated(`void foo()
{
if (true) {}
else static if (true) {}
else if (true) {}
else {}
if (true) {}
else static if (true) {}
else {}
}`, 35) == [
Related(Related.Type.controlFlow, [14, 16]),
Related(Related.Type.controlFlow, [28, 32]),
Related(Related.Type.controlFlow, [33, 39]),
Related(Related.Type.controlFlow, [40, 42]),
Related(Related.Type.controlFlow, [54, 58]),
Related(Related.Type.controlFlow, [59, 61]),
Related(Related.Type.controlFlow, [73, 77]),
]);
assert(dcdext.highlightRelated(`void foo()
{
if (true) {}
else static if (true) {}
else if (true) {}
else {}
if (true) {}
else static if (true) { int a; }
else { int b;}
}`, 83) == [
Related(Related.Type.controlFlow, [83, 85]),
Related(Related.Type.controlFlow, [97, 101]),
Related(Related.Type.controlFlow, [102, 108]),
Related(Related.Type.controlFlow, [109, 111]),
Related(Related.Type.controlFlow, [131, 135]),
]);
}
final class SwitchFinder : ASTVisitor
{
Token[] currentSwitch, foundSwitch;
const(Statement) currentStatement;
size_t target;
alias visit = ASTVisitor.visit;
mixin ASTSearchScopeLimit!("target", FunctionBody);
mixin ASTFinisher;
override void visit(const SwitchStatement stmt)
{
if (foundSwitch.length)
return;
auto lastSwitch = currentSwitch;
scope (exit)
currentSwitch = lastSwitch;
currentSwitch = [stmt.tokens[0]];
stmt.accept(this);
saveIfMatching();
}
override void visit(const CaseRangeStatement stmt)
{
if (currentStatement)
{
auto curr = currentStatement.tokens[0];
if (curr.type == tok!"case")
currentSwitch ~= curr;
}
auto last = *(stmt.high.tokens.ptr - 1);
if (last.type == tok!"case")
currentSwitch ~= last;
stmt.accept(this);
}
override void visit(const CaseStatement stmt)
{
if (currentStatement)
{
auto curr = currentStatement.tokens[0];
if (curr.type == tok!"case")
currentSwitch ~= curr;
}
stmt.accept(this);
}
override void visit(const DefaultStatement stmt)
{
currentSwitch ~= stmt.tokens[0];
stmt.accept(this);
}
override void visit(const Statement stmt)
{
auto last = currentStatement;
scope (exit)
cast()currentStatement = cast()last;
cast()currentStatement = cast()stmt;
stmt.accept(this);
}
void saveIfMatching()
{
if (foundSwitch.length)
return;
foreach (v; currentSwitch)
if (v.index == target)
{
foundSwitch = currentSwitch;
exitVisitor = true;
return;
}
}
}
unittest
{
scope backend = new WorkspaceD();
auto workspace = makeTemporaryTestingWorkspace;
auto instance = backend.addInstance(workspace.directory);
backend.register!DCDExtComponent;
DCDExtComponent dcdext = instance.get!DCDExtComponent;
assert(dcdext.highlightRelated(`void foo()
{
switch (foo)
{
case 1: .. case 3:
break;
case 5:
switch (bar)
{
case 6:
break;
default:
break;
}
break;
default:
break;
}
}`.normLF, 35) == [
Related(Related.Type.controlFlow, [14, 20]),
Related(Related.Type.controlFlow, [32, 36]),
Related(Related.Type.controlFlow, [43, 47]),
Related(Related.Type.controlFlow, [63, 67]),
Related(Related.Type.controlFlow, [154, 161]),
]);
}
final class BreakFinder : ASTVisitor
{
Token[] currentBlock, foundBlock;
const(Statement) currentStatement;
bool inSwitch;
size_t target;
bool isBreak; // else continue if not loop
bool isLoop; // checking loop token (instead of break/continue)
string label;
alias visit = ASTVisitor.visit;
mixin ASTSearchScopeLimit!("target", FunctionBody);
mixin ASTFinisher;
override void visit(const LabeledStatement stmt)
{
if (foundBlock.length)
return;
if (label.length && label == stmt.identifier.text)
{
foundBlock = [stmt.identifier];
return;
}
stmt.accept(this);
}
override void visit(const SwitchStatement stmt)
{
if (foundBlock.length)
return;
bool wasSwitch = inSwitch;
scope (exit)
inSwitch = wasSwitch;
inSwitch = true;
if (isBreak)
{
auto lastSwitch = currentBlock;
scope (exit)
currentBlock = lastSwitch;
currentBlock = [stmt.tokens[0]];
stmt.accept(this);
saveIfMatching();
}
else
{
stmt.accept(this);
}
}
static foreach (LoopT; AliasSeq!(ForeachStatement, StaticForeachDeclaration,
StaticForeachStatement, ForStatement, WhileStatement))
override void visit(const LoopT stmt)
{
if (foundBlock.length)
return;
auto lastSwitch = currentBlock;
scope (exit)
currentBlock = lastSwitch;
currentBlock = [stmt.tokens[0]];
stmt.accept(this);
saveIfMatching();
}
override void visit(const DoStatement stmt)
{
if (foundBlock.length)
return;
auto lastSwitch = currentBlock;
scope (exit)
currentBlock = lastSwitch;
currentBlock = [stmt.tokens[0]];
auto whileTok = *(stmt.expression.tokens.ptr - 2);
stmt.accept(this);
if (whileTok.type == tok!"while")
currentBlock ~= whileTok;
saveIfMatching();
}
static foreach (IgnoreT; AliasSeq!(FunctionBody, FunctionDeclaration, StructBody))
override void visit(const IgnoreT stmt)
{
if (foundBlock.length)
return;
auto lastSwitch = currentBlock;
scope (exit)
currentBlock = lastSwitch;
currentBlock = null;
stmt.accept(this);
}
override void visit(const CaseRangeStatement stmt)
{
if (isBreak)
{
if (currentStatement)
{
auto curr = currentStatement.tokens[0];
if (curr.type == tok!"case")
currentBlock ~= curr;
}
auto last = *(stmt.high.tokens.ptr - 1);
if (last.type == tok!"case")
currentBlock ~= last;
}
stmt.accept(this);
}
override void visit(const CaseStatement stmt)
{
if (currentStatement && isBreak)
{
auto curr = currentStatement.tokens[0];
if (curr.type == tok!"case")
currentBlock ~= curr;
}
stmt.accept(this);
}
override void visit(const DefaultStatement stmt)
{
if (isBreak)
currentBlock ~= stmt.tokens[0];
stmt.accept(this);
}
override void visit(const Statement stmt)
{
auto last = currentStatement;
scope (exit)
cast()currentStatement = cast()last;
cast()currentStatement = cast()stmt;
stmt.accept(this);
}
override void visit(const BreakStatement stmt)
{
if (stmt.tokens[0].index == target || isLoop)
if (isBreak)
currentBlock ~= stmt.tokens[0];
stmt.accept(this);
}
override void visit(const ContinueStatement stmt)
{
// break token:
// continue in switch: ignore
// continue outside switch: include
// other token:
// continue in switch: include
// continue outside switch: include
if (stmt.tokens[0].index == target || isLoop)
if (!(isBreak && inSwitch))
currentBlock ~= stmt.tokens[0];
stmt.accept(this);
}
void saveIfMatching()
{
if (foundBlock.length || label.length)
return;
foreach (v; currentBlock)
if (v.index == target)
{
foundBlock = currentBlock;
exitVisitor = true;
return;
}
}
}
class ReverseReturnFinder : ASTVisitor
{
Token[] returns;
size_t target;
bool record;
alias visit = ASTVisitor.visit;
static foreach (DeclT; AliasSeq!(Declaration, Statement))
override void visit(const DeclT stmt)
{
if (returns.length && !record)
return;
bool matches = stmt.tokens.length && stmt.tokens[0].index == target;
if (matches)
record = true;
stmt.accept(this);
if (matches)
record = false;
}
override void visit(const ReturnStatement ret)
{
if (record)
returns ~= ret.tokens[0];
ret.accept(this);
}
}
unittest
{
scope backend = new WorkspaceD();
auto workspace = makeTemporaryTestingWorkspace;
auto instance = backend.addInstance(workspace.directory);
backend.register!DCDExtComponent;
DCDExtComponent dcdext = instance.get!DCDExtComponent;
assert(dcdext.highlightRelated(`void foo()
{
while (true)
{
foreach (a; b)
{
switch (a)
{
case 1:
break;
case 2:
continue;
default:
return;
}
}
}
}`.normLF, 88) == [
Related(Related.Type.controlFlow, [54, 60]),
Related(Related.Type.controlFlow, [73, 77]),
Related(Related.Type.controlFlow, [85, 90]),
Related(Related.Type.controlFlow, [95, 99]),
Related(Related.Type.controlFlow, [120, 127]),
]);
assert(dcdext.highlightRelated(`void foo()
{
while (true)
{
foreach (a; b)
{
switch (a)
{
case 1:
break;
case 2:
continue;
default:
return;
}
}
}
}`.normLF, 111) == [
Related(Related.Type.controlFlow, [32, 39]),
Related(Related.Type.controlFlow, [107, 115]),
]);
assert(dcdext.highlightRelated(`void foo()
{
while (true)
{
foreach (a; b)
{
switch (a)
{
case 1:
break;
case 2:
continue;
default:
return;
}
}
}
}`.normLF, 15) == [
Related(Related.Type.controlFlow, [14, 19]),
Related(Related.Type.controlFlow, [133, 139]),
]);
}
class ReturnFinder : ASTVisitor
{
Token[] returns;
Token[] currentScope;
bool inTargetBlock;
Token[] related;
size_t target;
alias visit = ASTVisitor.visit;
static foreach (DeclT; AliasSeq!(FunctionBody))
override void visit(const DeclT stmt)
{
if (inTargetBlock || related.length)
return;
auto lastScope = currentScope;
scope (exit)
currentScope = lastScope;
currentScope = null;
auto lastReturns = returns;
scope (exit)
returns = lastReturns;
returns = null;
stmt.accept(this);
if (inTargetBlock)
{
related ~= returns;
related.sort!"a.index < b.index";
}
}
static foreach (ScopeT; AliasSeq!(SwitchStatement, ForeachStatement,
StaticForeachDeclaration, StaticForeachStatement, ForStatement, WhileStatement))
override void visit(const ScopeT stmt)
{
auto lastScope = currentScope;
scope (exit)
currentScope = lastScope;
currentScope ~= stmt.tokens[0];
stmt.accept(this);
}
override void visit(const DoStatement stmt)
{
auto lastScope = currentScope;
scope (exit)
currentScope = lastScope;
currentScope ~= stmt.tokens[0];
auto whileTok = *(stmt.expression.tokens.ptr - 2);
if (whileTok.type == tok!"while")
currentScope ~= whileTok;
stmt.accept(this);
}
override void visit(const ReturnStatement ret)
{
returns ~= ret.tokens[0];
if (target == ret.tokens[0].index)
{
inTargetBlock = true;
related ~= currentScope;
}
ret.accept(this);
}
}
unittest
{
scope backend = new WorkspaceD();
auto workspace = makeTemporaryTestingWorkspace;
auto instance = backend.addInstance(workspace.directory);
backend.register!DCDExtComponent;
DCDExtComponent dcdext = instance.get!DCDExtComponent;
assert(dcdext.highlightRelated(`void foo()
{
foreach (a; b)
return;
void bar()
{
return;
}
bar();
return;
}`.normLF, 33) == [
Related(Related.Type.controlFlow, [14, 21]),
Related(Related.Type.controlFlow, [31, 37]),
Related(Related.Type.controlFlow, [79, 85]),
]);
}
final class DeclarationFinder : ASTVisitor
{
this(size_t targetPosition, bool includeDefinition)
{
this.targetPosition = targetPosition;
this.includeDefinition = includeDefinition;
}
static foreach (DeclLike; AliasSeq!(Declaration, Parameter, TemplateDeclaration))
override void visit(const DeclLike dec)
{
if (dec.tokens.length
&& dec.tokens[0].index <= targetPosition
&& dec.tokens[$ - 1].tokenEnd >= targetPosition)
{
deepest = cast()dec;
static if (is(DeclLike == Parameter))
definition = cast()dec.default_;
else static if (is(DeclLike == TemplateDeclaration))
definition = dec.declarations.length ? cast()dec.declarations[0] : null;
else
definition = null;
dec.accept(this);
}
}
override void visit(const Parameters p)
{
auto b = inParameter;
inParameter = true;
p.accept(this);
inParameter = b;
}
static foreach (DefinitionOutsideParameter; AliasSeq!(FunctionBody, StructBody))
override void visit(const DefinitionOutsideParameter defPart)
{
if (deepest !is null
&& definition is null
&& !inParameter
&& defPart.tokens[0].index >= deepest.tokens[0].index
&& defPart.tokens[0].index <= deepest.tokens[$ - 1].tokenEnd)
{
definition = cast()defPart;
}
auto b = inParameter;
inParameter = false;
defPart.accept(this);
inParameter = b;
}
override void visit(const Initializer init)
{
if (deepest !is null
&& definition is null
&& init.tokens[0].index >= deepest.tokens[0].index
&& init.tokens[0].index <= deepest.tokens[$ - 1].tokenEnd)
{
definition = cast()init;
}
init.accept(this);
}
alias visit = ASTVisitor.visit;
void finish(scope const(char)[] code)
{
if (deepest is null)
return;
range = [
deepest.tokens[0].index,
deepest.tokens[$ - 1].tokenEnd
];
if (!includeDefinition && definition !is null)
{
range[1] = definition.tokens[0].index;
}
if (range[1] > code.length)
range[1] = code.length;
if (range[0] > range[1])
range[0] = range[1];
auto slice = code[range[0] .. range[1]];
while (slice.length)
{
slice = slice.stripRight;
if (slice.endsWith(";", "=", ",", "{"))
slice = slice[0 .. $ - 1];
else
break;
}
range[1] = range[0] + slice.length;
}
BaseNode deepest;
BaseNode definition;
bool inParameter;
size_t[2] range;
size_t targetPosition;
bool includeDefinition;
}
unittest
{
scope backend = new WorkspaceD();
auto workspace = makeTemporaryTestingWorkspace;
auto instance = backend.addInstance(workspace.directory);
backend.register!DCDExtComponent;
DCDExtComponent dcdext = instance.get!DCDExtComponent;
static immutable code = `void foo()
{
foreach (a; b)
return;
void bar()
{
return;
}
auto foo = bar();
int x = 1;
@attr
struct Foo
{
int field;
}
return;
}`.normLF;
assert(dcdext.getDeclarationRange(code, 5, false) == [0, 10]);
assert(dcdext.getDeclarationRange(code, 5, true) == [0, code.length]);
assert(dcdext.getDeclarationRange(code, 46, false) == [41, 51]);
assert(dcdext.getDeclarationRange(code, 46, true) == [41, 67]);
assert(dcdext.getDeclarationRange(code, 75, false) == [70, 78]);
assert(dcdext.getDeclarationRange(code, 75, true) == [70, 86]);
assert(dcdext.getDeclarationRange(code, 94, false) == [90, 95]);
assert(dcdext.getDeclarationRange(code, 94, true) == [90, 99]);
assert(dcdext.getDeclarationRange(code, 117, false) == [103, 120]);
assert(dcdext.getDeclarationRange(code, 117, true) == [103, 139]);
assert(dcdext.getDeclarationRange(code, 130, false) == [126, 135]);
assert(dcdext.getDeclarationRange(code, 130, true) == [126, 135]);
static immutable tplCode = `template foo()
{
static if (x)
{
alias foo = bar;
}
}`.normLF;
assert(dcdext.getDeclarationRange(tplCode, 9, false) == [0, 14]);
assert(dcdext.getDeclarationRange(tplCode, 9, true) == [0, tplCode.length]);
}
class FoldingRangeGenerator : ASTVisitor
{
enum supressBlockMixin = `bool _supressTmp = suppressThisBlock; suppressThisBlock = true; scope (exit) suppressThisBlock = _supressTmp;`;
enum supressArgListMixin = `bool _supressTmp2 = suppressThisArgumentList; suppressThisArgumentList = true; scope (exit) suppressThisArgumentList = _supressTmp2;`;
Appender!(FoldingRange[]) ranges;
bool suppressThisBlock;
bool suppressThisArgumentList;
size_t lastCase = -1;
const(Token)[] allTokens;
this(const(Token)[] allTokens)
{
this.allTokens = allTokens;
ranges = appender!(FoldingRange[]);
}
alias visit = ASTVisitor.visit;
override void visit(const IfStatement stmt)
{
mixin(supressBlockMixin);
if (stmt.thenStatement && stmt.condition)
ranges.put(FoldingRange(
// go 1 token over length because that's our `)` token (which should exist because stmt.thenStatement is defined)
stmt.condition.tokens.via(allTokens, stmt.condition.tokens.length).tokenEnd,
stmt.thenStatement.tokens.tokenEnd,
FoldingRangeType.region));
if (stmt.thenStatement && stmt.elseStatement)
ranges.put(FoldingRange(
// go 1 token over length because that's our `else` token (which should exist because stmt.elseStatement is defined)
stmt.thenStatement.tokens.via(allTokens, stmt.thenStatement.tokens.length).tokenEnd,
stmt.elseStatement.tokens.tokenEnd,
FoldingRangeType.region));
stmt.accept(this);
}
override void visit(const ConditionalStatement stmt)
{
mixin(supressBlockMixin);
if (stmt.trueStatement && stmt.compileCondition)
ranges.put(FoldingRange(
stmt.compileCondition.tokens[$ - 1].tokenEnd,
stmt.trueStatement.tokens.tokenEnd,
FoldingRangeType.region));
if (stmt.trueStatement && stmt.falseStatement)
ranges.put(FoldingRange(
// go 1 token over length because that's our `else` token (which should exist because stmt.falseStatement is defined)
stmt.trueStatement.tokens.via(allTokens, stmt.trueStatement.tokens.length).tokenEnd,
stmt.falseStatement.tokens.tokenEnd,
FoldingRangeType.region));
stmt.accept(this);
}
override void visit(const ConditionalDeclaration stmt)
{
mixin(supressBlockMixin);
if (stmt.trueDeclarations.length)
{
auto lastTrueConditionToken = &stmt.compileCondition.tokens[$ - 1];
// we go one over to see if there is a `:`
if (stmt.trueStyle == DeclarationListStyle.colon
&& lastTrueConditionToken[1].type == tok!":")
lastTrueConditionToken++;
ranges.put(FoldingRange(
(*lastTrueConditionToken).tokenEnd,
stmt.trueDeclarations[$ - 1].tokens.tokenEnd,
FoldingRangeType.region));
}
if (stmt.hasElse && stmt.falseDeclarations.length)
{
auto elseToken = &stmt.falseDeclarations[0].tokens[0];
foreach (i; 0 .. 4)
{
if ((*elseToken).type == tok!"else")
break;
elseToken--;
}
if ((*elseToken).type == tok!"else")
{
if (stmt.falseStyle == DeclarationListStyle.colon
&& elseToken[1].type == tok!":")
elseToken++;
ranges.put(FoldingRange(
(*elseToken).tokenEnd,
stmt.falseDeclarations[$ - 1].tokens.tokenEnd,
FoldingRangeType.region));
}
}
stmt.accept(this);
}
override void visit(const SwitchStatement stmt)
{
mixin(supressBlockMixin);
if (stmt.expression && stmt.statement)
ranges.put(FoldingRange(
// go 1 token over length because that's our `)` token (which should exist because stmt.statement is defined)
stmt.expression.tokens.via(allTokens, stmt.expression.tokens.length).tokenEnd,
stmt.tokens.tokenEnd,
FoldingRangeType.region
));
stmt.accept(this);
}
static foreach (T; AliasSeq!(CaseStatement, DefaultStatement, CaseRangeStatement))
override void visit(const T stmt)
{
if (stmt.declarationsAndStatements && stmt.declarationsAndStatements.declarationsAndStatements.length)
{
if (lastCase != -1 && ranges.data[lastCase].end == stmt.tokens.tokenEnd)
{
// fallthrough from previous case, adjust range of it
ranges.data[lastCase].end = stmt.tokens.via(allTokens, -1).tokenEnd;
}
lastCase = ranges.data.length;
ranges.put(FoldingRange(
stmt.colonLocation + 1,
stmt.tokens.tokenEnd,
FoldingRangeType.region
));
}
scope (exit)
lastCase = -1;
stmt.accept(this);
}
override void visit(const FunctionDeclaration decl)
{
mixin(supressBlockMixin);
if (decl.parameters)
ranges.put(FoldingRange(
decl.parameters.tokens.tokenEnd,
decl.tokens.tokenEnd,
FoldingRangeType.region
));
decl.accept(this);
}
override void visit(const Unittest decl)
{
mixin(supressBlockMixin);
size_t unittestTok = -1;
foreach (i, t; decl.tokens)
{
if (t.type == tok!"unittest")
{
unittestTok = i;
break;
}
}
if (unittestTok != -1)
ranges.put(FoldingRange(
decl.tokens[unittestTok].tokenEnd,
decl.tokens.tokenEnd,
FoldingRangeType.region
));
decl.accept(this);
}
static foreach (Ctor; AliasSeq!(Constructor, Postblit, Destructor))
override void visit(const Ctor stmt)
{
mixin(supressBlockMixin);
if (stmt.functionBody && stmt.functionBody.tokens.length)
ranges.put(FoldingRange(
stmt.functionBody.tokens.via(allTokens, -1).tokenEnd,
stmt.functionBody.tokens[$ - 1].tokenEnd,
FoldingRangeType.region
));
stmt.accept(this);
}
override void visit(const BlockStatement stmt)
{
auto localSuppress = suppressThisBlock;
if (!localSuppress)
ranges.put(FoldingRange(
stmt.startLocation,
stmt.endLocation,
FoldingRangeType.region
));
suppressThisBlock = false;
scope (exit)
suppressThisBlock = localSuppress;
stmt.accept(this);
}
static foreach (T; AliasSeq!(
ClassDeclaration,
UnionDeclaration,
StructDeclaration,
InterfaceDeclaration,
TemplateDeclaration
))
override void visit(const T decl)
{
mixin(supressBlockMixin);
size_t start = decl.name.tokenEnd;
if (decl.templateParameters)
start = decl.templateParameters.tokens.tokenEnd;
ranges.put(FoldingRange(
start,
decl.tokens.tokenEnd,
FoldingRangeType.region
));
decl.accept(this);
}
override void visit(const StructBody stmt)
{
auto localSuppress = suppressThisBlock;
if (!localSuppress)
ranges.put(FoldingRange(
stmt.startLocation,
stmt.endLocation,
FoldingRangeType.region
));
suppressThisBlock = false;
scope (exit)
suppressThisBlock = localSuppress;
stmt.accept(this);
}
override void visit(const EnumBody stmt)
{
ranges.put(FoldingRange(
stmt.tokens.via(allTokens, -1).tokenEnd,
stmt.tokens[$ - 1].tokenEnd,
FoldingRangeType.region
));
stmt.accept(this);
}
override void visit(const StaticForeachDeclaration decl)
{
mixin(supressBlockMixin);
if (decl.declarations.length)
{
auto start = decl.declarations[0].tokens.ptr;
foreach (i; 0 .. 4)
{
start--;
if ((*start).type == tok!")")
break;
}
if ((*start).type == tok!")")
ranges.put(FoldingRange(
(*start).tokenEnd,
decl.tokens.tokenEnd,
FoldingRangeType.region
));
}
decl.accept(this);
}
static foreach (T; AliasSeq!(ForeachStatement, ForStatement, WhileStatement, WithStatement))
override void visit(const T stmt)
{
mixin(supressBlockMixin);
if (stmt.declarationOrStatement)
ranges.put(FoldingRange(
stmt.declarationOrStatement.tokens.via(allTokens, -1).tokenEnd,
stmt.tokens.tokenEnd,
FoldingRangeType.region
));
stmt.accept(this);
}
override void visit(const DoStatement stmt)
{
mixin(supressBlockMixin);
if (stmt.statementNoCaseNoDefault && stmt.expression)
ranges.put(FoldingRange(
stmt.statementNoCaseNoDefault.tokens.via(allTokens, -1).tokenEnd,
stmt.expression.tokens.via(allTokens, -2).index,
FoldingRangeType.region
));
stmt.accept(this);
}
static foreach (T; AliasSeq!(ArrayLiteral, AssocArrayLiteral, ArrayInitializer, StructInitializer))
override void visit(const T literal)
{
mixin(supressArgListMixin);
if (literal.tokens.length > 2)
ranges.put(FoldingRange(
literal.tokens[0].tokenEnd,
literal.tokens[$ - 1].index,
FoldingRangeType.region
));
literal.accept(this);
}
override void visit(const AsmStatement stmt)
{
mixin(supressBlockMixin);
if (stmt.functionAttributes.length)
ranges.put(FoldingRange(
stmt.functionAttributes[$ - 1].tokens.tokenEnd,
stmt.tokens.tokenEnd,
FoldingRangeType.region
));
else if (stmt.tokens.length > 3)
ranges.put(FoldingRange(
stmt.tokens[0].tokenEnd,
stmt.tokens.tokenEnd,
FoldingRangeType.region
));
stmt.accept(this);
}
override void visit(const FunctionLiteralExpression expr)
{
mixin(supressBlockMixin);
if (expr.specifiedFunctionBody && expr.specifiedFunctionBody.tokens.length)
ranges.put(FoldingRange(
expr.specifiedFunctionBody.tokens[0].tokenEnd,
expr.specifiedFunctionBody.tokens[$ - 1].index,
FoldingRangeType.region
));
expr.accept(this);
}
static foreach (T; AliasSeq!(TemplateArgumentList, ArgumentList, NamedArgumentList, NamedTemplateArgumentList))
override void visit(const T stmt)
{
auto localSuppress = suppressThisArgumentList;
suppressThisArgumentList = false;
scope (exit)
suppressThisArgumentList = localSuppress;
stmt.accept(this);
// add this after other ranges (so they are prioritized)
if (!localSuppress && stmt.tokens.length && stmt.tokens[0].line != stmt.tokens[$ - 1].line)
ranges.put(FoldingRange(
stmt.tokens.via(allTokens, -1).tokenEnd,
stmt.tokens[$ - 1].tokenEnd,
FoldingRangeType.region
));
}
}
unittest
{
scope backend = new WorkspaceD();
auto workspace = makeTemporaryTestingWorkspace;
auto instance = backend.addInstance(workspace.directory);
backend.register!DCDExtComponent;
DCDExtComponent dcdext = instance.get!DCDExtComponent;
auto foldings = dcdext.getFoldingRanges(`/**
* This does foo
*/
void foo()
{
foreach (a; b)
return;
if (foo)
{
if (bar)
doFoo();
else
doBar();
ok();
} else
doBaz();
void bar()
{
return;
}
switch (x)
{
case 1:
case 2:
writeln("1 or 2");
break;
case 3:
writeln("drei");
break;
default:
writeln("default");
break;
}
return;
}`.normLF);
assert(foldings == [
FoldingRange(0, 24, FoldingRangeType.comment),
FoldingRange(35, 342),
FoldingRange(53, 63),
FoldingRange(74, 130),
FoldingRange(135, 146),
FoldingRange(88, 100),
FoldingRange(107, 119),
FoldingRange(159, 175),
FoldingRange(188, 330),
FoldingRange(211, 243),
FoldingRange(253, 283), // wrong case end
FoldingRange(294, 327),
], foldings.map!(to!string).join(",\n"));
assert(dcdext.getFoldingRanges(`unittest {
}`.normLF) == [FoldingRange(8, 12)]);
assert(dcdext.getFoldingRanges(`unittest {
if (x)
y = z;
}`.normLF)[1 .. $] == [FoldingRange(18, 27)], "if not folding properly");
assert(dcdext.getFoldingRanges(`unittest {
static if (x)
y = z;
else
bar = baz;
}`.normLF)[1 .. 3] == [FoldingRange(25, 34), FoldingRange(40, 53)], "static if not folding properly");
assert(dcdext.getFoldingRanges(`struct S {
static if (x)
int z;
else
int baz;
}`.normLF)[1 .. 3] == [FoldingRange(25, 34), FoldingRange(40, 51)], "static if (decl only) not folding properly");
assert(dcdext.getFoldingRanges(`unittest {
version (foo)
y = z;
else
bar = baz;
}`.normLF)[1 .. 3] == [FoldingRange(25, 34), FoldingRange(40, 53)], "version not folding properly");
assert(dcdext.getFoldingRanges(`struct S {
version (foo)
int z;
else
int baz;
}`.normLF)[1 .. 3] == [FoldingRange(25, 34), FoldingRange(40, 51)], "version (decl only) not folding properly");
assert(dcdext.getFoldingRanges(`unittest {
debug (foooo)
y = z;
else
bar = baz;
}`.normLF)[1 .. 3] == [FoldingRange(25, 34), FoldingRange(40, 53)], "debug not folding properly");
assert(dcdext.getFoldingRanges(`struct S {
debug (foooo)
int z;
else
int baz;
}`.normLF)[1 .. 3] == [FoldingRange(25, 34), FoldingRange(40, 51)], "debug (decl only) not folding properly");
assert(dcdext.getFoldingRanges(`unittest {
foreach (x; y) {
foo();
}
}`.normLF)[1 .. $] == [FoldingRange(26, 40)], "foreach not folding properly");
assert(dcdext.getFoldingRanges(`struct S {
static foreach (x; y) {
int x;
}
}`.normLF)[1 .. $] == [FoldingRange(33, 47)], "static foreach (decl only) not folding properly");
assert(dcdext.getFoldingRanges(`unittest {
static foreach (x; y) {
foo();
}
}`.normLF)[1 .. $] == [FoldingRange(33, 47)], "static foreach not folding properly");
assert(dcdext.getFoldingRanges(`unittest {
for (int i = 0; i < 10; i++) {
foo();
}
}`.normLF)[1 .. $] == [FoldingRange(40, 54)], "for loop not folding properly");
assert(dcdext.getFoldingRanges(`unittest {
while (x) {
foo();
}
}`.normLF)[1 .. $] == [FoldingRange(21, 35)], "while loop not folding properly");
assert(dcdext.getFoldingRanges(`unittest {
do {
foo();
} while (x);
}`.normLF)[1 .. $] == [FoldingRange(14, 29)], "do-while not folding properly");
assert(dcdext.getFoldingRanges(`unittest {
with (Foo) {
bar();
}
}`.normLF)[1 .. $] == [FoldingRange(22, 36)], "with not folding properly");
assert(dcdext.getFoldingRanges(`unittest {
int[] x = [
1,
2,
3
];
}`.normLF)[1 .. $] == [FoldingRange(23, 39)], "array not folding properly");
assert(dcdext.getFoldingRanges(`unittest {
int[string] x = [
"a": 1,
"b": 2,
"c": 3,
];
}`.normLF)[1 .. $] == [FoldingRange(29, 61)], "AA not folding properly");
assert(dcdext.getFoldingRanges(`unittest {
Foo foo = {
a: 1,
b: 2,
c: 3
};
}`.normLF)[1 .. $] == [FoldingRange(23, 48)], "struct initializer not folding properly");
// TODO: asm folding not working properly yet
assert(dcdext.getFoldingRanges(`unittest {
asm {
nop;
}
}`.normLF)[1 .. $] == [FoldingRange(15, 27)], "asm not folding properly");
assert(dcdext.getFoldingRanges(`unittest {
asm nothrow {
nop;
}
}`.normLF)[1 .. $] == [FoldingRange(23, 35)], "asm with attributes not folding properly");
assert(dcdext.getFoldingRanges(`unittest {
foo(() {
bar();
}, () {
baz();
});
}`.normLF)[1 .. $] == [FoldingRange(20, 31), FoldingRange(38, 49), FoldingRange(16, 50)], "delegate not folding properly");
assert(dcdext.getFoldingRanges(`unittest {
tp!(() {
bar();
}, () {
baz();
});
}`.normLF)[1 .. $] == [FoldingRange(20, 31), FoldingRange(38, 49), FoldingRange(16, 50)], "delegate (template) not folding properly");
assert(dcdext.getFoldingRanges(`struct Foo {
int a;
}`.normLF) == [FoldingRange(10, 22)], "struct not folding properly");
assert(dcdext.getFoldingRanges(`enum Foo {
a,
b,
c
}`.normLF) == [FoldingRange(8, 23)], "enum not folding properly");
assert(dcdext.getFoldingRanges(`unittest {
writeln(
"hello",
"world"
);
}`.normLF)[1 .. $] == [
FoldingRange(20, 41),
], "multi-line call not folding properly");
}
private const(T) via(T)(scope const(T)[] slice, scope const(T)[] srcArray, long at)
{
assert(srcArray.length);
if (at >= 0 && at < slice.length)
return slice[cast(size_t)at];
if (&slice[0] >= &srcArray[0] && &slice[0] < &srcArray.ptr[srcArray.length])
{
int i = cast(int)(&slice[0] - &srcArray[0]);
i += cast(int)at;
if (i < 0)
i = 0;
else if (i > srcArray.length)
i = cast(int)(srcArray.length - 1);
return srcArray[i];
}
assert(false, "used `via` on slice that is not part of source array!");
}
|
D
|
/***********************************************************************\
* nddeapi.d *
* *
* Windows API header module *
* *
* Translated from MinGW Windows headers *
* by Stewart Gordon *
* *
* Placed into public domain *
\***********************************************************************/
module os.win32.nddeapi;
private import os.win32.windef;
// FIXME: check types and grouping of constants
/+
#ifndef CNLEN /* also in lmcons.h */
#define CNLEN 15
#define UNCLEN (CNLEN + 2)
#endif
+/
const char SEP_CHAR = ',';
const char[] BAR_CHAR = "|";
const wchar SEP_WCHAR = ',';
const wchar[] BAR_WCHAR = "|";
enum {
NDDE_NO_ERROR,
NDDE_ACCESS_DENIED,
NDDE_BUF_TOO_SMALL,
NDDE_ERROR_MORE_DATA,
NDDE_INVALID_SERVER,
NDDE_INVALID_SHARE,
NDDE_INVALID_PARAMETER,
NDDE_INVALID_LEVEL,
NDDE_INVALID_PASSWORD,
NDDE_INVALID_ITEMNAME,
NDDE_INVALID_TOPIC,
NDDE_INTERNAL_ERROR,
NDDE_OUT_OF_MEMORY,
NDDE_INVALID_APPNAME,
NDDE_NOT_IMPLEMENTED,
NDDE_SHARE_ALREADY_EXIST,
NDDE_SHARE_NOT_EXIST,
NDDE_INVALID_FILENAME,
NDDE_NOT_RUNNING,
NDDE_INVALID_WINDOW,
NDDE_INVALID_SESSION,
NDDE_INVALID_ITEM_LIST,
NDDE_SHARE_DATA_CORRUPTED,
NDDE_REGISTRY_ERROR,
NDDE_CANT_ACCESS_SERVER,
NDDE_INVALID_SPECIAL_COMMAND,
NDDE_INVALID_SECURITY_DESC,
NDDE_TRUST_SHARE_FAIL
}
const size_t
MAX_NDDESHARENAME = 256,
MAX_DOMAINNAME = 15,
MAX_USERNAME = 15,
MAX_APPNAME = 255,
MAX_TOPICNAME = 255,
MAX_ITEMNAME = 255;
const NDDEF_NOPASSWORDPROMPT = 1;
const NDDEF_NOCACHELOOKUP = 2;
const NDDEF_STRIP_NDDE = 4;
const SHARE_TYPE_OLD = 1;
const SHARE_TYPE_NEW = 2;
const SHARE_TYPE_STATIC = 4;
const uint
NDDE_CMD_SHOW_MASK = 0x0000FFFF,
NDDE_TRUST_CMD_SHOW = 0x10000000,
NDDE_TRUST_SHARE_DEL = 0x20000000,
NDDE_TRUST_SHARE_INIT = 0x40000000,
NDDE_TRUST_SHARE_START = 0x80000000;
struct NDdeShareInfo_tag {
LONG lRevision;
LPTSTR lpszShareName;
LONG lShareType;
LPTSTR lpszAppTopicList;
LONG fSharedFlag;
LONG fService;
LONG fStartAppFlag;
LONG nCmdShow;
LONG[2] qModifyId;
LONG cNumItems;
LPTSTR lpszItemList;
}
extern (C) { // huh?
NDdeShareInfo_tag NDDESHAREINFO;
NDdeShareInfo_tag* PNDDESHAREINFO;
}
extern (Windows) {
UINT NDdeGetErrorStringA(UINT, LPSTR, DWORD);
UINT NDdeGetErrorStringW(UINT, LPWSTR, DWORD);
UINT NDdeGetShareSecurityA(LPSTR, LPSTR, SECURITY_INFORMATION,
PSECURITY_DESCRIPTOR, DWORD, PDWORD);
UINT NDdeGetShareSecurityW(LPWSTR, LPWSTR, SECURITY_INFORMATION,
PSECURITY_DESCRIPTOR, DWORD, PDWORD);
UINT NDdeGetTrustedShareA(LPSTR, LPSTR, PDWORD, PDWORD, PDWORD);
UINT NDdeGetTrustedShareW(LPWSTR, LPWSTR, PDWORD, PDWORD, PDWORD);
BOOL NDdeIsValidShareNameA(LPSTR);
BOOL NDdeIsValidShareNameW(LPWSTR);
BOOL NDdeIsValidAppTopicListA(LPSTR);
BOOL NDdeIsValidAppTopicListW(LPWSTR);
UINT NDdeSetShareSecurityA(LPSTR, LPSTR, SECURITY_INFORMATION,
PSECURITY_DESCRIPTOR);
UINT NDdeSetShareSecurityW(LPWSTR, LPWSTR, SECURITY_INFORMATION,
PSECURITY_DESCRIPTOR);
UINT NDdeSetTrustedShareA(LPSTR, LPSTR, DWORD);
UINT NDdeSetTrustedShareW(LPWSTR, LPWSTR, DWORD);
UINT NDdeShareAddA(LPSTR, UINT, PSECURITY_DESCRIPTOR, PBYTE, DWORD);
UINT NDdeShareAddW(LPWSTR, UINT, PSECURITY_DESCRIPTOR, PBYTE, DWORD);
UINT NDdeShareDelA(LPSTR, LPSTR, UINT);
UINT NDdeShareDelW(LPWSTR, LPWSTR, UINT);
UINT NDdeShareEnumA(LPSTR, UINT, PBYTE, DWORD, PDWORD, PDWORD);
UINT NDdeShareEnumW(LPWSTR, UINT, PBYTE, DWORD, PDWORD, PDWORD);
UINT NDdeShareGetInfoA(LPSTR, LPSTR, UINT, PBYTE, DWORD, PDWORD, PWORD);
UINT NDdeShareGetInfoW(LPWSTR, LPWSTR, UINT, PBYTE, DWORD, PDWORD, PWORD);
UINT NDdeShareSetInfoA(LPSTR, LPSTR, UINT, PBYTE, DWORD, WORD);
UINT NDdeShareSetInfoW(LPWSTR, LPWSTR, UINT, PBYTE, DWORD, WORD);
UINT NDdeTrustedShareEnumA(LPSTR, UINT, PBYTE, DWORD, PDWORD, PDWORD);
UINT NDdeTrustedShareEnumW(LPWSTR, UINT, PBYTE, DWORD, PDWORD, PDWORD);
}
version (Unicode) {
alias NDdeShareAddW NDdeShareAdd;
alias NDdeShareDelW NDdeShareDel;
alias NDdeSetShareSecurityW NDdeSetShareSecurity;
alias NDdeGetShareSecurityW NDdeGetShareSecurity;
alias NDdeShareEnumW NDdeShareEnum;
alias NDdeShareGetInfoW NDdeShareGetInfo;
alias NDdeShareSetInfoW NDdeShareSetInfo;
alias NDdeGetErrorStringW NDdeGetErrorString;
alias NDdeIsValidShareNameW NDdeIsValidShareName;
alias NDdeIsValidAppTopicListW NDdeIsValidAppTopicList;
alias NDdeSetTrustedShareW NDdeSetTrustedShare;
alias NDdeGetTrustedShareW NDdeGetTrustedShare;
alias NDdeTrustedShareEnumW NDdeTrustedShareEnum;
} else {
alias NDdeShareAddA NDdeShareAdd;
alias NDdeShareDelA NDdeShareDel;
alias NDdeSetShareSecurityA NDdeSetShareSecurity;
alias NDdeGetShareSecurityA NDdeGetShareSecurity;
alias NDdeShareEnumA NDdeShareEnum;
alias NDdeShareGetInfoA NDdeShareGetInfo;
alias NDdeShareSetInfoA NDdeShareSetInfo;
alias NDdeGetErrorStringA NDdeGetErrorString;
alias NDdeIsValidShareNameA NDdeIsValidShareName;
alias NDdeIsValidAppTopicListA NDdeIsValidAppTopicList;
alias NDdeSetTrustedShareA NDdeSetTrustedShare;
alias NDdeGetTrustedShareA NDdeGetTrustedShare;
alias NDdeTrustedShareEnumA NDdeTrustedShareEnum;
}
|
D
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.